summaryrefslogtreecommitdiffstats
path: root/kplato/KPtViewIface.cc
blob: dafd718d355f4f41701550df724dd9e068d62762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88

#include "KPtViewIface.h"
#include "kptview.h"

#include <tdeapplication.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