File indexing completed on 2024-04-28 16:24:39

0001 /*  This file is part of the KDE project
0002     Copyright (C) 2006 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
0003               (C) 2004 Laurent Montel <montel@kde.org>
0004 
0005     This library is free software; you can redistribute it and/or
0006     modify it under the terms of the GNU Lesser General Public
0007     License as published by the Free Software Foundation; either
0008     version 2.1 of the License, or (at your option) any later version.
0009 
0010     This library is distributed in the hope that it will be useful,
0011     but WITHOUT ANY WARRANTY; without even the implied warranty of
0012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0013     Lesser General Public License for more details.
0014 
0015     You should have received a copy of the GNU Lesser General Public
0016     License along with this library; if not, write to the Free Software
0017     Foundation, Inc., 51 Franklin Street, Fifth Floor,
0018     Boston, MA  02110-1301  USA
0019 */
0020 
0021 // clazy:excludeall=qstring-arg
0022 #include "KPtViewAdaptor.h"
0023 #include "kptview.h"
0024 
0025 
0026 namespace KPlato
0027 {
0028 
0029 /************************************************
0030  *
0031  * ViewAdaptor
0032  *
0033  ************************************************/
0034 
0035 ViewAdaptor::ViewAdaptor(View* t)
0036     : KoViewAdaptor(t)
0037 {
0038 //     setAutoRelaySignals(true);
0039     m_view = t;
0040 }
0041 
0042 ViewAdaptor::~ViewAdaptor()
0043 {
0044 }
0045 
0046 // void ViewAdaptor::slotEditResource()
0047 // {
0048 //   m_view->slotEditResource();
0049 // }
0050 // 
0051 // void ViewAdaptor::slotEditCut()
0052 // {
0053 //   m_view->slotEditCut();
0054 // }
0055 // 
0056 // void ViewAdaptor::slotEditCopy()
0057 // {
0058 //   m_view->slotEditCopy();
0059 // }
0060 // 
0061 // void ViewAdaptor::slotEditPaste()
0062 // {
0063 //   m_view->slotEditPaste();
0064 // }
0065 // 
0066 // void ViewAdaptor::slotAddTask()
0067 // {
0068 //   m_view->slotAddTask();
0069 // }
0070 // 
0071 // void ViewAdaptor::slotAddSubTask()
0072 // {
0073 //   m_view->slotAddSubTask();
0074 // }
0075 // 
0076 // void ViewAdaptor::slotAddMilestone()
0077 // {
0078 //   m_view->slotAddMilestone();
0079 // }
0080 // 
0081 // void ViewAdaptor::slotProjectEdit()
0082 // {
0083 //   m_view->slotProjectEdit();
0084 // }
0085 // 
0086 // void ViewAdaptor::slotConfigure()
0087 // {
0088 //   m_view->slotConfigure();
0089 // }
0090 
0091 }  //KPlato namespace
0092