summaryrefslogtreecommitdiff
path: root/client/Dialog.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2011-11-01 18:51:54 +0200
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2011-11-01 18:51:54 +0200
commit0b167475b3d838bc0a71d30e0356ccff2d819d8f (patch)
tree3f156ec51094970405fe943cd5feef1e1987b11e /client/Dialog.h
parente67c03ae17cdc2d25b234df8abc70fad7f2cf71a (diff)
parent103a6a013b6e6df1d1dbbcd073fc9a931fa4cf0a (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.h10
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