summaryrefslogtreecommitdiff
path: root/client/Dialog.h
diff options
context:
space:
mode:
authorAlex <b0ris@b0ris-satellite.(none)>2011-11-01 02:49:07 +0200
committerAlex <b0ris@b0ris-satellite.(none)>2011-11-01 02:49:07 +0200
commit103a6a013b6e6df1d1dbbcd073fc9a931fa4cf0a (patch)
treec2e99d49e43fd6661e8568f8aac54b1445d7e9a8 /client/Dialog.h
parenta6e060642537eadc3785a19f2b6daac0f63c5179 (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.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