diff options
author | deva <deva> | 2008-07-02 07:49:31 +0000 |
---|---|---|
committer | deva <deva> | 2008-07-02 07:49:31 +0000 |
commit | 4d7617cbf20985b7cf2231675d8aadd01f77c3d2 (patch) | |
tree | 673a098723c6f6cef90719e0ffa65b2cb31c37b6 /client/widgets/checkbox.h | |
parent | ef408f5639958ce51170978433a0e483240a3ff2 (diff) |
Added disable/enable methods on widgets and exposed them to lua.
Diffstat (limited to 'client/widgets/checkbox.h')
-rw-r--r-- | client/widgets/checkbox.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/widgets/checkbox.h b/client/widgets/checkbox.h index 9db7bf2..65a0356 100644 --- a/client/widgets/checkbox.h +++ b/client/widgets/checkbox.h @@ -33,15 +33,17 @@ class CheckBox : public QCheckBox, public Widget { +Q_OBJECT public: CheckBox(QDomNode &node, MacroWindow *macrowindow); bool isValid(); -public slots: QString getValue(); void setValue(QString value); +public slots: + void state_change(); }; #endif/*__PRACRO_CHECKBOX_H__*/ |