summaryrefslogtreecommitdiff
path: root/core/pim/notes/editwindow.h
Side-by-side diff
Diffstat (limited to 'core/pim/notes/editwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/notes/editwindow.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/core/pim/notes/editwindow.h b/core/pim/notes/editwindow.h
new file mode 100644
index 0000000..57c5241
--- a/dev/null
+++ b/core/pim/notes/editwindow.h
@@ -0,0 +1,22 @@
+#include <qdialog.h>
+#include <qlayout.h>
+#include <qmultilineedit.h>
+#include <qmessagebox.h>
+#include <qtextstream.h>
+#include <qfile.h>
+#include <qfileinfo.h>
+
+class editWindowWidget : public QDialog
+{
+ Q_OBJECT
+
+ public:
+ editWindowWidget::editWindowWidget(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
+ ~editWindowWidget();
+ void loadFile(QString fileName);
+ void saveFile(QString fileName);
+
+ private:
+ QMultiLineEdit *editArea;
+
+};