summaryrefslogtreecommitdiff
path: root/client/dialog.h
blob: f841f2b4a5b60e3fa581b14de0360b2a27687101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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