#ifndef PROXY_DIALOG #define PROXY_DIALOG #include #include 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