blob: 64b42ecf0f99d35a79f83772ab70197321e852dd (
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
|
#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;
QVBoxLayout *comboBoxLayout;
};
#endif
|