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#ifndef KPT_VIEW_ADAPTOR_H
22#define KPT_VIEW_ADAPTOR_H
23
24#include <KoViewAdaptor.h>
25
26#include <QRect>
27
28namespace KPlato
29{
30
31class View;
32
33class ViewAdaptor : public KoViewAdaptor
34{
35 Q_OBJECT
36 Q_CLASSINFO("D-Bus Interface", "org.kde.calligra.projectmanaging.view")
37
38public:
39 explicit ViewAdaptor( View* );
40 virtual ~ViewAdaptor();
41
42public Q_SLOTS:
43// void slotEditResource();
44// void slotEditCut();
45// void slotEditCopy();
46// void slotEditPaste();
47// void slotAddTask();
48// void slotAddSubTask();
49// void slotAddMilestone();
50// void slotProjectEdit();
51// void slotConfigure();
52
53private:
54 View* m_view;
55};
56
57} //KPlato namespace
58
59#endif
60

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