You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
665 B
44 lines
665 B
|
|
#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
|