diff options
author | deva <deva> | 2008-07-14 09:32:45 +0000 |
---|---|---|
committer | deva <deva> | 2008-07-14 09:32:45 +0000 |
commit | 48f92d13fa3a42007a068baf1d63f418b22a2b3e (patch) | |
tree | d5a2f314b6da4162e5a45afcf5473529152da288 /editor/toolbox.h | |
parent | 0ca2a008e3d6f2578246326ba4180cf21d8064ca (diff) |
Made the setValue actually set the values in the GUI. Fixed resize problem when labels got text filled into them. Added a simple toXml method to dunp xml from the contructed gui to stdout.
Diffstat (limited to 'editor/toolbox.h')
-rw-r--r-- | editor/toolbox.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/editor/toolbox.h b/editor/toolbox.h index a74293a..66e77d1 100644 --- a/editor/toolbox.h +++ b/editor/toolbox.h @@ -29,11 +29,18 @@ #include <QDialog> #include <QDomNode> +#include "macrowindow.h" class Toolbox : public QDialog { Q_OBJECT public: - Toolbox(QDomNode &node); + Toolbox(QDomNode &node, MacroWindow *macrowindow); + +public slots: + void toXml(); + +private: + MacroWindow *macrowindow; }; #endif/*__PRACRO_TOOLBOX_H__*/ |