diff options
author | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-10-26 19:11:40 +0300 |
---|---|---|
committer | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-10-26 19:11:40 +0300 |
commit | 894b5d02a04d01ce486786d272c0328377b6ea38 (patch) | |
tree | 6a8998c89913cdd8f21ba8f053678e4e385058d1 /client/Dialog.h | |
parent | 3899450af16a0162aac8e91c5487c2a802c609d7 (diff) |
Checkboxes are working now
Diffstat (limited to 'client/Dialog.h')
-rw-r--r-- | client/Dialog.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/client/Dialog.h b/client/Dialog.h index d8cd7a9..64b42ec 100644 --- a/client/Dialog.h +++ b/client/Dialog.h @@ -5,8 +5,9 @@ #include <QDialog> #include <vector> -class QLabel; class QComboBox; +class QLabel; +class QVBoxLayout; class ProxyEntryGeneric; class ProxyEntryStatic; @@ -16,6 +17,11 @@ class ProxyDialog: public QDialog public: ProxyDialog(QWidget *parent = 0); + +private slots: + void CountryActivated(int index); + void StateActivated(int index); + void CityActivated(int index); private: QLabel *topLabel; @@ -23,6 +29,7 @@ private: QComboBox *countryBox; QComboBox *stateBox; QComboBox *cityBox; + QVBoxLayout *comboBoxLayout; }; #endif
\ No newline at end of file |