summaryrefslogtreecommitdiff
path: root/client/dialog.h
diff options
context:
space:
mode:
authorAlex Borisov <b0ris@b0ris-universe.localdomain>2011-10-19 03:13:11 +0300
committerAlex Borisov <b0ris@b0ris-universe.localdomain>2011-10-19 03:13:11 +0300
commit4ac3da0fe4400b9109636143e8da53dbef6c3984 (patch)
tree71ca352b7f181c429ecc9929caaad8f9c5125d56 /client/dialog.h
parentb7c741ecba97c00d8f5ade3ea388fe42a4511b04 (diff)
Main window mockup
Diffstat (limited to 'client/dialog.h')
-rw-r--r--client/dialog.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/client/dialog.h b/client/dialog.h
new file mode 100644
index 0000000..f841f2b
--- /dev/null
+++ b/client/dialog.h
@@ -0,0 +1,29 @@
+
+#ifndef PROXY_DIALOG
+#define PROXY_DIALOG
+
+#include <QDialog>
+
+class QLabel;
+class QComboBox;
+
+class ProxyDialog: public QDialog
+{
+ Q_OBJECT
+
+ public:
+ ProxyDialog(QWidget *parent = 0);
+
+ signals:
+ //move to special Proxy class
+ void AddProxy(QString proxy);
+
+ private:
+ QLabel *topLabel;
+ QComboBox *countryBox;
+ QComboBox *stateBox;
+ QComboBox *cityBox;
+ QLabel *bottomLabel;
+};
+
+#endif \ No newline at end of file