diff options
author | Alex Borisov <b0ris@b0ris-universe.localdomain> | 2011-10-19 03:13:11 +0300 |
---|---|---|
committer | Alex Borisov <b0ris@b0ris-universe.localdomain> | 2011-10-19 03:13:11 +0300 |
commit | 4ac3da0fe4400b9109636143e8da53dbef6c3984 (patch) | |
tree | 71ca352b7f181c429ecc9929caaad8f9c5125d56 /client/dialog.h | |
parent | b7c741ecba97c00d8f5ade3ea388fe42a4511b04 (diff) |
Main window mockup
Diffstat (limited to 'client/dialog.h')
-rw-r--r-- | client/dialog.h | 29 |
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 |