diff options
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 |