]> Shamusworld >> Repos - architektonas/blobdiff - src/settingsdialog.h
Added Settings dialog.
[architektonas] / src / settingsdialog.h
diff --git a/src/settingsdialog.h b/src/settingsdialog.h
new file mode 100644 (file)
index 0000000..2298a6e
--- /dev/null
@@ -0,0 +1,24 @@
+#ifndef __SETTINGSDIALOG_H__
+#define __SETTINGSDIALOG_H__
+
+#include <QtGui>
+
+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__