From 4ac3da0fe4400b9109636143e8da53dbef6c3984 Mon Sep 17 00:00:00 2001 From: Alex Borisov Date: Wed, 19 Oct 2011 03:13:11 +0300 Subject: Main window mockup --- client/dialog.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 client/dialog.h (limited to 'client/dialog.h') 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 + +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 -- cgit v1.2.3