summaryrefslogtreecommitdiffstats
path: root/kplato/KPtViewIface.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kplato/KPtViewIface.h
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 000000000..bb134b740
--- /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