summaryrefslogtreecommitdiff
path: root/client/Dialog.h
blob: d8cd7a91bf0fe07b27ddda0dcf033e8ad6a9cf98 (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

#ifndef PROXY_DIALOG
#define PROXY_DIALOG

#include <QDialog>
#include <vector>

class QLabel;
class QComboBox;
class ProxyEntryGeneric;
class ProxyEntryStatic;

class ProxyDialog: public QDialog
{
	Q_OBJECT
	
public:
	ProxyDialog(QWidget *parent = 0);
	
private:
	QLabel *topLabel;
	QLabel *bottomLabel;
	QComboBox *countryBox;
	QComboBox *stateBox;
	QComboBox *cityBox;
};

#endif