]> Shamusworld >> Repos - schematic/blobdiff - src/notedialog.h
Added Note capability.
[schematic] / src / notedialog.h
diff --git a/src/notedialog.h b/src/notedialog.h
new file mode 100644 (file)
index 0000000..ada9970
--- /dev/null
@@ -0,0 +1,33 @@
+//
+// notedialog.h: Note entry/editing
+//
+// by James Hammons
+// (C) 2012 Underground Software
+//
+
+#ifndef __NOTEDIALOG_H__
+#define __NOTEDIALOG_H__
+
+#include <QtGui>
+
+//class GeneralTab;
+
+class NoteDialog: public QDialog
+{
+       Q_OBJECT
+
+       public:
+               NoteDialog(QWidget * parent = 0);
+               ~NoteDialog();
+
+       private:
+//             QTabWidget * tabWidget;
+               QDialogButtonBox * buttonBox;
+
+       public:
+               QTextEdit * note;
+//             GeneralTab * generalTab;
+};
+
+#endif // __NOTEDIALOG_H__
+