1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Robert Bieber 2010-07-05 22:15:17 +00:00
parent 8a23b8eb1e
commit 6a04479d63
2 changed files with 69 additions and 2 deletions

View file

@ -25,6 +25,7 @@
#include <QString>
#include <QFile>
#include <QGraphicsSimpleTextItem>
#include <QHash>
class RBFont
{
@ -37,7 +38,7 @@ public:
int lineHeight(){ return 8; }
private:
QString filename;
QHash<QString, QVariant> header;
};
#endif // RBFONT_H