From 21ad7eac963bc329395fa893300fb5c8f721fd77 Mon Sep 17 00:00:00 2001 From: Alex Borisov Date: Sun, 23 Oct 2011 04:10:55 +0300 Subject: Logging facility, Config class, tray icon, custom QApplication subclass --- client/Dialog.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 client/Dialog.h (limited to 'client/Dialog.h') diff --git a/client/Dialog.h b/client/Dialog.h new file mode 100644 index 0000000..d8cd7a9 --- /dev/null +++ b/client/Dialog.h @@ -0,0 +1,28 @@ + +#ifndef PROXY_DIALOG +#define PROXY_DIALOG + +#include +#include + +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 \ No newline at end of file -- cgit v1.2.3