diff options
author | Alex <b0ris@b0ris-satellite.(none)> | 2011-11-01 02:49:07 +0200 |
---|---|---|
committer | Alex <b0ris@b0ris-satellite.(none)> | 2011-11-01 02:49:07 +0200 |
commit | 103a6a013b6e6df1d1dbbcd073fc9a931fa4cf0a (patch) | |
tree | c2e99d49e43fd6661e8568f8aac54b1445d7e9a8 /client/Dialog.h | |
parent | a6e060642537eadc3785a19f2b6daac0f63c5179 (diff) |
Fix generic proxy parsing bug. New generic proxy button layouting. Static proxy button functionality
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 |