X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fsettingsdialog.h;fp=src%2Fsettingsdialog.h;h=2298a6e3135e404767c0fbf503ac50d574c9d2e2;hb=344e2456de66d38ce7afb86604e0fa714fa95006;hp=0000000000000000000000000000000000000000;hpb=d41ddd699001f6bbf6ac621f5c467bd13efb6087;p=architektonas diff --git a/src/settingsdialog.h b/src/settingsdialog.h new file mode 100644 index 0000000..2298a6e --- /dev/null +++ b/src/settingsdialog.h @@ -0,0 +1,24 @@ +#ifndef __SETTINGSDIALOG_H__ +#define __SETTINGSDIALOG_H__ + +#include + +class GeneralTab; + +class SettingsDialog: public QDialog +{ + Q_OBJECT + + public: + SettingsDialog(QWidget * parent = 0); + ~SettingsDialog(); + + private: + QTabWidget * tabWidget; + QDialogButtonBox * buttonBox; + + public: + GeneralTab * generalTab; +}; + +#endif // __SETTINGSDIALOG_H__