summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics/rbfont.h
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-07-05 22:15:17 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-07-05 22:15:17 +0000
commit6a04479d63dd4d7dfc54849e4c925d360d55fa9c (patch)
tree581a953843da7537f89dfda67e06633b19719398 /utils/themeeditor/graphics/rbfont.h
parent8a23b8eb1e5e9add6dcf8ab60067d9cf45aba8d0 (diff)
downloadrockbox-6a04479d63dd4d7dfc54849e4c925d360d55fa9c.tar.gz
rockbox-6a04479d63dd4d7dfc54849e4c925d360d55fa9c.zip
Theme Editor: Began working on font loading. Font header info is now read and spewed out onto the debug console
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27301 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/graphics/rbfont.h')
-rw-r--r--utils/themeeditor/graphics/rbfont.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/themeeditor/graphics/rbfont.h b/utils/themeeditor/graphics/rbfont.h
index 61a171e081..2c1f8a9dce 100644
--- a/utils/themeeditor/graphics/rbfont.h
+++ b/utils/themeeditor/graphics/rbfont.h
@@ -25,6 +25,7 @@
25#include <QString> 25#include <QString>
26#include <QFile> 26#include <QFile>
27#include <QGraphicsSimpleTextItem> 27#include <QGraphicsSimpleTextItem>
28#include <QHash>
28 29
29class RBFont 30class RBFont
30{ 31{
@@ -37,7 +38,7 @@ public:
37 int lineHeight(){ return 8; } 38 int lineHeight(){ return 8; }
38 39
39private: 40private:
40 QString filename; 41 QHash<QString, QVariant> header;
41}; 42};
42 43
43#endif // RBFONT_H 44#endif // RBFONT_H