summaryrefslogtreecommitdiff
path: root/client/Dialog.h
blob: 2c07747ee7affa52b8985e6fcf8753de112c122a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

#ifndef PROXY_DIALOG
#define PROXY_DIALOG

#include <QDialog>
#include <vector>

class QButtonGroup;
class QComboBox;
class QGridLayout;
class QLabel;
class ProxyEntryGeneric;
class ProxyEntryStatic;

/**
 * @brief	Dialog window to choose proxy configuration
 */
class ProxyDialog: public QDialog
{
	Q_OBJECT
public:
	/**
	 * @brief	Create an instance of dialog window
	 * @param	parent	parent window
	 */
	ProxyDialog(QWidget *parent = 0);

protected:
	void resizeEvent(QResizeEvent* event);

private slots:
	void Closed(int i);
	void ProxyToggled(bool on);
	void StaticProxyToggled(bool on);
	void CountryActivated(int index);
	void StateActivated(int index);
	void CityActivated(int index);
		
private:
	QButtonGroup *genericProxyGroup;
	QButtonGroup *staticProxyGroup;
	QComboBox *countryBox;
	QComboBox *stateBox;
	QComboBox *cityBox;
	QGridLayout *topPanelLayout;
	QLabel *topLabel;
	QLabel *bottomLabel;
};

#endif