summaryrefslogtreecommitdiff
path: root/core/pim/todo/templateeditor.h
Side-by-side diff
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 @@
+#ifndef OPIE_TEMPLATE_EDITOR_H
+#define OPIE_TEMPLATE_EDITOR_H
+
+#include <qobject.h>
+#include <qdialog.h>
+#include <qstring.h>
+
+namespace Todo {
+
+ class MainWindow;
+ class TemplateManager;
+ class TemplateEditor : public QObject{
+ Q_OBJECT
+ public:
+ TemplateEditor( MainWindow* win,
+ TemplateManager* man);
+ ~TemplateEditor();
+
+ signals:
+ void configChanged();
+ private:
+ void init();
+ MainWindow* m_main;
+ TemplateManager* m_man;
+private slots:
+ void setUp();
+
+ };
+};
+
+#endif