diff options
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__*/ |