summaryrefslogtreecommitdiff
path: root/client/Dialog.h
diff options
context:
space:
mode:
authorAlex Borisov <borisov.alexandr@rambler.ru>2011-10-26 19:11:40 +0300
committerAlex Borisov <borisov.alexandr@rambler.ru>2011-10-26 19:11:40 +0300
commit894b5d02a04d01ce486786d272c0328377b6ea38 (patch)
tree6a8998c89913cdd8f21ba8f053678e4e385058d1 /client/Dialog.h
parent3899450af16a0162aac8e91c5487c2a802c609d7 (diff)
Checkboxes are working now
Diffstat (limited to 'client/Dialog.h')
-rw-r--r--client/Dialog.h9
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