]> Shamusworld >> Repos - schematic/blob - src/notedialog.h
ada9970934834909650ba0e5c32d991028d4f96a
[schematic] / src / notedialog.h
1 //
2 // notedialog.h: Note entry/editing
3 //
4 // by James Hammons
5 // (C) 2012 Underground Software
6 //
7
8 #ifndef __NOTEDIALOG_H__
9 #define __NOTEDIALOG_H__
10
11 #include <QtGui>
12
13 //class GeneralTab;
14
15 class NoteDialog: public QDialog
16 {
17         Q_OBJECT
18
19         public:
20                 NoteDialog(QWidget * parent = 0);
21                 ~NoteDialog();
22
23         private:
24 //              QTabWidget * tabWidget;
25                 QDialogButtonBox * buttonBox;
26
27         public:
28                 QTextEdit * note;
29 //              GeneralTab * generalTab;
30 };
31
32 #endif  // __NOTEDIALOG_H__
33