summaryrefslogtreecommitdiff
path: root/client/Dialog.h
diff options
context:
space:
mode:
authorAlex Borisov <borisov.alexandr@rambler.ru>2011-10-23 04:10:55 +0300
committerAlex Borisov <borisov.alexandr@rambler.ru>2011-10-23 04:10:55 +0300
commit21ad7eac963bc329395fa893300fb5c8f721fd77 (patch)
tree10dda6e6170071332aab490faeeb599f10ff6e03 /client/Dialog.h
parent3eef0376635624c354a5e1b8a2680b74eb23a423 (diff)
Logging facility, Config class, tray icon, custom QApplication subclass
Diffstat (limited to 'client/Dialog.h')
-rw-r--r--client/Dialog.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/client/Dialog.h b/client/Dialog.h
new file mode 100644
index 0000000..d8cd7a9
--- /dev/null
+++ b/client/Dialog.h
@@ -0,0 +1,28 @@
+
+#ifndef PROXY_DIALOG
+#define PROXY_DIALOG
+
+#include <QDialog>
+#include <vector>
+
+class QLabel;
+class QComboBox;
+class ProxyEntryGeneric;
+class ProxyEntryStatic;
+
+class ProxyDialog: public QDialog
+{
+ Q_OBJECT
+
+public:
+ ProxyDialog(QWidget *parent = 0);
+
+private:
+ QLabel *topLabel;
+ QLabel *bottomLabel;
+ QComboBox *countryBox;
+ QComboBox *stateBox;
+ QComboBox *cityBox;
+};
+
+#endif \ No newline at end of file