summaryrefslogtreecommitdiff
path: root/client/widgets/combobox.h
diff options
context:
space:
mode:
authordeva <deva>2008-07-02 07:49:31 +0000
committerdeva <deva>2008-07-02 07:49:31 +0000
commit4d7617cbf20985b7cf2231675d8aadd01f77c3d2 (patch)
tree673a098723c6f6cef90719e0ffa65b2cb31c37b6 /client/widgets/combobox.h
parentef408f5639958ce51170978433a0e483240a3ff2 (diff)
Added disable/enable methods on widgets and exposed them to lua.
Diffstat (limited to 'client/widgets/combobox.h')
-rw-r--r--client/widgets/combobox.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/client/widgets/combobox.h b/client/widgets/combobox.h
index 9ad2323..0a5724f 100644
--- a/client/widgets/combobox.h
+++ b/client/widgets/combobox.h
@@ -38,10 +38,15 @@ Q_OBJECT
public:
ComboBox(QDomNode &node, MacroWindow *macrowindow);
-public slots:
bool isValid();
+
QString getValue();
void setValue(QString value);
+
+ void enable();
+ void disable();
+
+public slots:
void changed();
private: