diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kplato/KPtViewIface.cc | |
download | koffice-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.cc')
-rw-r--r-- | kplato/KPtViewIface.cc | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/kplato/KPtViewIface.cc b/kplato/KPtViewIface.cc new file mode 100644 index 00000000..e9a9e332 --- /dev/null +++ b/kplato/KPtViewIface.cc @@ -0,0 +1,88 @@ + +#include "KPtViewIface.h" +#include "kptview.h" + +#include <kapplication.h> +#include <dcopclient.h> +#include <dcopref.h> + +namespace KPlato +{ + +/************************************************ + * + * ViewIface + * + ************************************************/ + +ViewIface::ViewIface( View* t ) + : KoViewIface( t ) +{ + m_view = t; +} + +ViewIface::~ViewIface() +{ +} + +void ViewIface::slotEditResource() +{ + m_view->slotEditResource(); +} + +void ViewIface::slotEditCut() +{ + m_view->slotEditCut(); +} + +void ViewIface::slotEditCopy() +{ + m_view->slotEditCopy(); +} + +void ViewIface::slotEditPaste() +{ + m_view->slotEditPaste(); +} + +void ViewIface::slotViewGantt() +{ + m_view->slotViewGantt(); +} + +void ViewIface::slotViewPert() +{ + m_view->slotViewPert(); +} + +void ViewIface::slotViewResources() +{ + m_view->slotViewResources(); +} + +void ViewIface::slotAddTask() +{ + m_view->slotAddTask(); +} + +void ViewIface::slotAddSubTask() +{ + m_view->slotAddSubTask(); +} + +void ViewIface::slotAddMilestone() +{ + m_view->slotAddMilestone(); +} + +void ViewIface::slotProjectEdit() +{ + m_view->slotProjectEdit(); +} + +void ViewIface::slotConfigure() +{ + m_view->slotConfigure(); +} + +} //KPlato namespace |