summaryrefslogtreecommitdiffstats
path: root/kplato/KPtViewIface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kplato/KPtViewIface.h')
-rw-r--r--kplato/KPtViewIface.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/kplato/KPtViewIface.h b/kplato/KPtViewIface.h
new file mode 100644
index 00000000..bb134b74
--- /dev/null
+++ b/kplato/KPtViewIface.h
@@ -0,0 +1,43 @@
+
+#ifndef KPT_VIEW_IFACE_H
+#define KPT_VIEW_IFACE_H
+
+#include <KoViewIface.h>
+
+#include <qstring.h>
+#include <qrect.h>
+#include <qcolor.h>
+
+namespace KPlato
+{
+
+class View;
+
+class ViewIface : public KoViewIface
+{
+ K_DCOP
+public:
+ ViewIface( View* );
+ ~ViewIface();
+
+k_dcop:
+ void slotEditResource();
+ void slotEditCut();
+ void slotEditCopy();
+ void slotEditPaste();
+ void slotViewGantt();
+ void slotViewPert();
+ void slotViewResources();
+ void slotAddTask();
+ void slotAddSubTask();
+ void slotAddMilestone();
+ void slotProjectEdit();
+ void slotConfigure();
+
+private:
+ View* m_view;
+};
+
+} //KPlato namespace
+
+#endif