]> git.sur5r.net Git - minitube/blob - src/fontutils.cpp
Merge tag 'upstream/2.5.1'
[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
25 QFont createFont(bool isBold, double sizeScale) {
26     QFont font;
27     font.setPointSize(font.pointSize() * sizeScale);
28     font.setBold(isBold);
29     return font;
30 }
31
32 QFont createFontWithMinSize(bool isBold, double sizeScale) {
33     const int MIN_PIXEL_SIZE = 12;
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
42 const QFont &FontUtils::small() {
43     static const QFont font = createFontWithMinSize(false, .9);
44     return font;
45 }
46
47 const QFont &FontUtils::smallBold() {
48     static const QFont font = createFontWithMinSize(true, .9);
49     return font;
50 }
51
52 const QFont &FontUtils::medium() {
53     static const QFont font = createFont(false, 1.1);
54     return font;
55 }
56
57 const QFont &FontUtils::mediumBold() {
58     static const QFont font = createFont(true, 1.1);
59     return font;
60 }
61
62 const QFont &FontUtils::big() {
63     static const QFont font = createFont(false, 1.5);
64     return font;
65 }
66
67 const QFont &FontUtils::bigBold() {
68     static const QFont font = createFont(true, 1.5);
69     return font;
70 }