]> git.sur5r.net Git - minitube/blobdiff - src/fontutils.h
Changelog for 3.1-1
[minitube] / src / fontutils.h
index 7048ea8e22462cff9bb5c93c4c31da408fddcbe4..d7894e5c86bfaca343b446b7c83dcb940e5304e8 100644 (file)
@@ -21,17 +21,18 @@ $END_LICENSE */
 #ifndef FONTUTILS_H
 #define FONTUTILS_H
 
-#include <QFont>
+#include <QtGui>
 
 class FontUtils {
 
 public:
-    static const QFont small();
-    static const QFont smallBold();
-    static const QFont medium();
-    static const QFont mediumBold();
-    static const QFont big();
-    static const QFont bigBold();
+    static const QFont &small();
+    static const QFont &smallBold();
+    static const QFont &medium();
+    static const QFont &mediumBold();
+    static const QFont &big();
+    static const QFont &bigBold();
+    static QFont light(int pointSize);
 
 };