blob: 1b66b553c949076633e239e1ac6edef9139688cf (
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
|
#ifndef PROXY_DIALOG
#define PROXY_DIALOG
#include <QDialog>
#include <vector>
class QComboBox;
class QLabel;
class QVBoxLayout;
class ProxyEntryGeneric;
class ProxyEntryStatic;
class ProxyDialog: public QDialog
{
Q_OBJECT
public:
ProxyDialog(QWidget *parent = 0);
private slots:
void CountryActivated(int index);
void StateActivated(int index);
void CityActivated(int index);
private:
QLabel *topLabel;
QLabel *bottomLabel;
QComboBox *countryBox;
QComboBox *stateBox;
QComboBox *cityBox;
};
#endif
|