summaryrefslogtreecommitdiff
path: root/client/Dialog.h
diff options
context:
space:
mode:
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