summaryrefslogtreecommitdiff
path: root/utils/wpseditor/gui/src/qwpsdrawer.h
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2008-09-04 14:49:53 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2008-09-04 14:49:53 +0000
commit561df3827e091c5646648a50b94278843a7554aa (patch)
tree997ea7525cf3140f47b5a05ce7669cbf4ffaa7b8 /utils/wpseditor/gui/src/qwpsdrawer.h
parentebe3e032b9dcc4aec2aac7892a190477700bb6c9 (diff)
downloadrockbox-561df3827e091c5646648a50b94278843a7554aa.tar.gz
rockbox-561df3827e091c5646648a50b94278843a7554aa.zip
WPS editor:
* Simplify Makefile * Get rid of buildall.* * Change library loading behaviour to work with MODEL_NAME Screenshot: * Simplify Makefile config-*.h: * Add MODEL_NAME git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18407 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/wpseditor/gui/src/qwpsdrawer.h')
-rw-r--r--utils/wpseditor/gui/src/qwpsdrawer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/wpseditor/gui/src/qwpsdrawer.h b/utils/wpseditor/gui/src/qwpsdrawer.h
index 65e98723f5..eec4300286 100644
--- a/utils/wpseditor/gui/src/qwpsdrawer.h
+++ b/utils/wpseditor/gui/src/qwpsdrawer.h
@@ -5,6 +5,7 @@
5#include <QPixmap> 5#include <QPixmap>
6#include <QPointer> 6#include <QPointer>
7#include <QTemporaryFile> 7#include <QTemporaryFile>
8#include <QMap>
8 9
9#include "wpsstate.h" 10#include "wpsstate.h"
10 11
@@ -37,6 +38,13 @@ class QWpsDrawer : public QWidget {
37 QString mWpsString; 38 QString mWpsString;
38 QString mCurTarget; 39 QString mCurTarget;
39 static QString mTmpWpsString; 40 static QString mTmpWpsString;
41
42 struct lib_t
43 {
44 QString target_name;
45 QString lib;
46 };
47 QMap<int, lib_t> libs_array;
40 48
41 49
42protected: 50protected: