summaryrefslogtreecommitdiff
path: root/core/pim/notes/editwindow.h
Unidiff
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 @@
1#include <qdialog.h>
2#include <qlayout.h>
3#include <qmultilineedit.h>
4#include <qmessagebox.h>
5#include <qtextstream.h>
6#include <qfile.h>
7#include <qfileinfo.h>
8
9class editWindowWidget : public QDialog
10{
11 Q_OBJECT
12
13 public:
14 editWindowWidget::editWindowWidget(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
15 ~editWindowWidget();
16 void loadFile(QString fileName);
17 void saveFile(QString fileName);
18
19 private:
20 QMultiLineEdit *editArea;
21
22};