diff options
Diffstat (limited to 'client/macrodrawer.h')
-rw-r--r-- | client/macrodrawer.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/client/macrodrawer.h b/client/macrodrawer.h index a6a5d6d..0ad09f5 100644 --- a/client/macrodrawer.h +++ b/client/macrodrawer.h @@ -29,24 +29,22 @@ #include <QGroupBox> #include <QString> -#include "macrowindow.h" +#include "macro.h" class MacroDrawer : public QGroupBox { Q_OBJECT public: - MacroDrawer(MacroWindow *p, QString title); + MacroDrawer(Macro *macro, QString title); protected: bool eventFilter(QObject *obj, QEvent *event); public slots: void toggleMe(); + void activationChange(bool active); signals: void toggle(); - -private: - MacroWindow *mw; }; #endif/*__PRACRO_MACRODRAWER_H__*/ |