]> git.sur5r.net Git - minitube/blob - src/fontutils.cpp
c9bf5c28d4457c8b0aa08a261e8ba20e09ee5cb3
[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 #ifdef APP_MAC
23 #include "macutils.h"
24 #endif
25
26 namespace {
27
28 QFont createFont(bool isBold, double sizeScale) {
29     QFont font;
30     font.setPointSize(font.pointSize() * sizeScale);
31     font.setBold(isBold);
32     return font;
33 }
34
35 QFont createFontWithMinSize(bool isBold, double sizeScale) {
36     const int minPixels = 11;
37     QFont font = createFont(isBold, sizeScale);
38     if (font.pixelSize() < minPixels)
39         font.setPixelSize(minPixels);
40     return font;
41 }
42
43 }
44
45 const QFont &FontUtils::small() {
46     static const QFont font = createFontWithMinSize(false, .9);
47     return font;
48 }
49
50 const QFont &FontUtils::smallBold() {
51     static const QFont font = createFontWithMinSize(true, .9);
52     return font;
53 }
54
55 const QFont &FontUtils::medium() {
56     static const QFont font = createFont(false, 1.1);
57     return font;
58 }
59
60 const QFont &FontUtils::mediumBold() {
61     static const QFont font = createFont(true, 1.1);
62     return font;
63 }
64
65 const QFont &FontUtils::big() {
66     static const QFont font = createFont(false, 1.5);
67     return font;
68 }
69
70 const QFont &FontUtils::bigBold() {
71     static const QFont font = createFont(true, 1.5);
72     return font;
73 }
74
75 QFont FontUtils::light(int pointSize) {
76 #ifdef APP_MAC
77     QVariant v = mac::lightFont(pointSize);
78     if (!v.isNull()) return qvariant_cast<QFont>(v);
79 #endif
80     QFont f;
81 #ifdef APP_WIN
82     f.setFamily(QStringLiteral("Segoe UI Light"));
83 #endif
84     f.setPointSize(pointSize);
85     f.setStyleName(QStringLiteral("Light"));
86     f.setWeight(QFont::Light);
87     return f;
88 }