summaryrefslogtreecommitdiff
path: root/utils/themeeditor/main.cpp
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-05-26 21:13:14 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-05-26 21:13:14 +0000
commit565cd0096393dcd3a33b546d76714c64c2c786e3 (patch)
tree2b1882d987048bb00cd394a50f1cb24585b08af5 /utils/themeeditor/main.cpp
parent28a7c5d3692e59b5c80a9f713cf931b6453cb1ca (diff)
downloadrockbox-565cd0096393dcd3a33b546d76714c64c2c786e3.tar.gz
rockbox-565cd0096393dcd3a33b546d76714c64c2c786e3.zip
Trying to implement QAbstractItemModel for parse trees, haven't got it working yet (current state will spawn an empty treeview window)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26318 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/main.cpp')
-rw-r--r--utils/themeeditor/main.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/utils/themeeditor/main.cpp b/utils/themeeditor/main.cpp
index 45ea662944..b43b419143 100644
--- a/utils/themeeditor/main.cpp
+++ b/utils/themeeditor/main.cpp
@@ -32,9 +32,10 @@ namespace wps
32#include <cstdio> 32#include <cstdio>
33 33
34#include <QtGui/QApplication> 34#include <QtGui/QApplication>
35#include <QFileSystemModel>
36#include <QTreeView> 35#include <QTreeView>
37 36
37#include "parsetreemodel.h"
38
38int main(int argc, char* argv[]) 39int main(int argc, char* argv[])
39{ 40{
40 41
@@ -46,6 +47,14 @@ int main(int argc, char* argv[])
46 47
47 wps::skin_free_tree(test); 48 wps::skin_free_tree(test);
48 49
50 QApplication app(argc, argv);
51
52 QTreeView tree;
53 ParseTreeModel model(doc);
54 tree.setModel(&model);
55 tree.show();
56
57 return app.exec();
49 58
50 return 0; 59 return 0;
51} 60}