diff options
Diffstat (limited to 'client/macrodrawer.h')
-rw-r--r-- | client/macrodrawer.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/client/macrodrawer.h b/client/macrodrawer.h index 0ad09f5..7aaf2ec 100644 --- a/client/macrodrawer.h +++ b/client/macrodrawer.h @@ -29,12 +29,15 @@ #include <QGroupBox> #include <QString> +#include <QPushButton> #include "macro.h" +class Macro; + class MacroDrawer : public QGroupBox { Q_OBJECT public: - MacroDrawer(Macro *macro, QString title); + MacroDrawer(Macro *macro, QString title, QWidget *edge); protected: bool eventFilter(QObject *obj, QEvent *event); @@ -45,6 +48,10 @@ public slots: signals: void toggle(); + +private: + QWidget *edge; + QPushButton *button; }; #endif/*__PRACRO_MACRODRAWER_H__*/ |