Warning: That file was not part of the compilation database. It may have many parsing errors.

1/* This file is part of the KDE project
2 Copyright (C) 2006 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
3 (C) 2004 Laurent Montel <montel@kde.org>
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301 USA
19*/
20
21#include "KPtViewAdaptor.h"
22#include "kptview.h"
23
24
25namespace KPlato
26{
27
28/************************************************
29 *
30 * ViewAdaptor
31 *
32 ************************************************/
33
34ViewAdaptor::ViewAdaptor( View* t )
35 : KoViewAdaptor( t )
36{
37// setAutoRelaySignals(true);
38 m_view = t;
39}
40
41ViewAdaptor::~ViewAdaptor()
42{
43}
44
45// void ViewAdaptor::slotEditResource()
46// {
47// m_view->slotEditResource();
48// }
49//
50// void ViewAdaptor::slotEditCut()
51// {
52// m_view->slotEditCut();
53// }
54//
55// void ViewAdaptor::slotEditCopy()
56// {
57// m_view->slotEditCopy();
58// }
59//
60// void ViewAdaptor::slotEditPaste()
61// {
62// m_view->slotEditPaste();
63// }
64//
65// void ViewAdaptor::slotAddTask()
66// {
67// m_view->slotAddTask();
68// }
69//
70// void ViewAdaptor::slotAddSubTask()
71// {
72// m_view->slotAddSubTask();
73// }
74//
75// void ViewAdaptor::slotAddMilestone()
76// {
77// m_view->slotAddMilestone();
78// }
79//
80// void ViewAdaptor::slotProjectEdit()
81// {
82// m_view->slotProjectEdit();
83// }
84//
85// void ViewAdaptor::slotConfigure()
86// {
87// m_view->slotConfigure();
88// }
89
90} //KPlato namespace
91
92

Warning: That file was not part of the compilation database. It may have many parsing errors.