]> Shamusworld >> Repos - schematic/blob - src/configdialog.h
Move DB access to NoteDialog class, new AlertDialog class.
[schematic] / src / configdialog.h
1 #ifndef __CONFIGDIALOG_H__
2 #define __CONFIGDIALOG_H__
3
4 #include <QtGui>
5
6 class GeneralTab;
7
8 class ConfigDialog: public QDialog
9 {
10         Q_OBJECT
11
12         public:
13                 ConfigDialog(QWidget * parent = 0);
14                 ~ConfigDialog();
15
16         private:
17                 QTabWidget * tabWidget;
18                 QDialogButtonBox * buttonBox;
19
20         public:
21                 GeneralTab * generalTab;
22 };
23
24 #endif  // __CONFIGDIALOG_H__