diff options
author | deva <deva> | 2008-08-20 10:28:35 +0000 |
---|---|---|
committer | deva <deva> | 2008-08-20 10:28:35 +0000 |
commit | 3eebecacd576c35605aff01324ec66ad9825b0d7 (patch) | |
tree | a4f58503967707cdc1ecab07a0b15b67d32bdab6 /client/widgets/combobox.h | |
parent | 45702265ce206381bcb02a53b413ad987897b02b (diff) |
Fixed various small bugs.
Diffstat (limited to 'client/widgets/combobox.h')
-rw-r--r-- | client/widgets/combobox.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/client/widgets/combobox.h b/client/widgets/combobox.h index 0a5724f..f072bea 100644 --- a/client/widgets/combobox.h +++ b/client/widgets/combobox.h @@ -32,6 +32,12 @@ #include <QComboBox> #include <QRegExp> +typedef enum { + SELECT, + EDIT, + SEARCH +} types_t; + class ComboBox : public QComboBox, public Widget { Q_OBJECT @@ -52,6 +58,7 @@ public slots: private: QRegExp rx; QString combo_value; + types_t combotype; }; #endif/*__PRACRO_COMBOBOX_H__*/ |