blob: 60e653c850044cb81058e6471c39c99dca5e999a (
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
|
#ifndef KPT_VIEW_IFACE_H
#define KPT_VIEW_IFACE_H
#include <KoViewIface.h>
#include <tqstring.h>
#include <tqrect.h>
#include <tqcolor.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
|