]> git.sur5r.net Git - minitube/blob - src/fontutils.cpp
7ca99183dc9d24e25c7f941d64d1f4ae23383df4
[minitube] / src / fontutils.cpp
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 Minitube is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #include "fontutils.h"
22
23 namespace {
24 static const int MIN_PIXEL_SIZE = 11;
25
26 QFont createFont(bool isBold, double sizeScale) {
27     QFont font;
28     font.setPointSize(font.pointSize() * sizeScale);
29     font.setBold(isBold);
30     return font;
31 }
32
33 QFont createFontWithMinSize(bool isBold, double sizeScale) {
34     QFont font = createFont(isBold, sizeScale);
35     if (font.pixelSize() < MIN_PIXEL_SIZE)
36         font.setPixelSize(MIN_PIXEL_SIZE);
37     return font;
38 }
39 }
40
41 const QFont FontUtils::small() {
42     static QFont font = createFontWithMinSize(false, .85);
43     return font;
44 }
45
46 const QFont FontUtils::smallBold() {
47     static QFont font = createFontWithMinSize(true, .85);
48     return font;
49 }
50
51 const QFont FontUtils::medium() {
52     static QFont font = createFont(false, 1.1);
53     return font;
54 }
55
56 const QFont FontUtils::mediumBold() {
57     static QFont font = createFont(true, 0.9);
58     return font;
59 }
60
61 const QFont FontUtils::big() {
62     static QFont font = createFont(false, 1.5);
63     return font;
64 }
65
66 const QFont FontUtils::bigBold() {
67     static QFont font = createFont(true, 1.5);
68     return font;
69 }