diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-01 18:51:54 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-01 18:51:54 +0200 |
commit | 0b167475b3d838bc0a71d30e0356ccff2d819d8f (patch) | |
tree | 3f156ec51094970405fe943cd5feef1e1987b11e /client/Dialog.h | |
parent | e67c03ae17cdc2d25b234df8abc70fad7f2cf71a (diff) | |
parent | 103a6a013b6e6df1d1dbbcd073fc9a931fa4cf0a (diff) |
Merge branch 'master' of ssh://sss.chaoslab.ru//home/private_git/proxy_ui
Diffstat (limited to 'client/Dialog.h')
-rw-r--r-- | client/Dialog.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/client/Dialog.h b/client/Dialog.h index 1b66b55..7155673 100644 --- a/client/Dialog.h +++ b/client/Dialog.h @@ -5,9 +5,10 @@ #include <QDialog> #include <vector> +class QButtonGroup; class QComboBox; +class QGridLayout; class QLabel; -class QVBoxLayout; class ProxyEntryGeneric; class ProxyEntryStatic; @@ -24,11 +25,14 @@ private slots: void CityActivated(int index); private: - QLabel *topLabel; - QLabel *bottomLabel; + QButtonGroup *genericProxyGroup; + QButtonGroup *staticProxyGroup; QComboBox *countryBox; QComboBox *stateBox; QComboBox *cityBox; + QGridLayout *topPanelLayout; + QLabel *topLabel; + QLabel *bottomLabel; }; #endif
\ No newline at end of file |