summaryrefslogtreecommitdiff
path: root/core/pim/todo/templateeditor.h
Unidiff
Diffstat (limited to 'core/pim/todo/templateeditor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/templateeditor.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/core/pim/todo/templateeditor.h b/core/pim/todo/templateeditor.h
new file mode 100644
index 0000000..e551328
--- a/dev/null
+++ b/core/pim/todo/templateeditor.h
@@ -0,0 +1,31 @@
1#ifndef OPIE_TEMPLATE_EDITOR_H
2#define OPIE_TEMPLATE_EDITOR_H
3
4#include <qobject.h>
5#include <qdialog.h>
6#include <qstring.h>
7
8namespace Todo {
9
10 class MainWindow;
11 class TemplateManager;
12 class TemplateEditor : public QObject{
13 Q_OBJECT
14 public:
15 TemplateEditor( MainWindow* win,
16 TemplateManager* man);
17 ~TemplateEditor();
18
19 signals:
20 void configChanged();
21 private:
22 void init();
23 MainWindow* m_main;
24 TemplateManager* m_man;
25private slots:
26 void setUp();
27
28 };
29};
30
31#endif