From 894b5d02a04d01ce486786d272c0328377b6ea38 Mon Sep 17 00:00:00 2001 From: Alex Borisov Date: Wed, 26 Oct 2011 19:11:40 +0300 Subject: Checkboxes are working now --- client/Dialog.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'client/Dialog.h') 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 #include -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 -- cgit v1.2.3