diff --git a/plugins/messageviewer/bodypartformatter/syncitiphandler.cpp b/plugins/messageviewer/bodypartformatter/syncitiphandler.cpp index 6585ecce30..67f6a6e030 100644 --- a/plugins/messageviewer/bodypartformatter/syncitiphandler.cpp +++ b/plugins/messageviewer/bodypartformatter/syncitiphandler.cpp @@ -1,68 +1,75 @@ /* This file is part of kdepim. Copyright (c) 2013 Sérgio Martins This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA In addition, as a special exception, the copyright holders give permission to link the code of this program with any edition of the Qt library by Trolltech AS, Norway (or with modified versions of Qt that use the same license as Qt), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than Qt. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ #include "syncitiphandler.h" +#include +#include + SyncItipHandler::SyncItipHandler(const QString &receiver, const QString &iCal, const QString &type, QObject *parent) : QObject(parent) , m_result(Akonadi::ITIPHandler::ResultSuccess) { Akonadi::ITIPHandler *handler = new Akonadi::ITIPHandler(this); + //We assume it is already loaded, since we already used it in the memorycalendarmemento + m_calendar = Akonadi::ETMCalendar::Ptr( new Akonadi::ETMCalendar( CalendarSupport::calendarSingleton() ) ); + handler->setCalendar(m_calendar); + QObject::connect(handler, SIGNAL(iTipMessageProcessed(Akonadi::ITIPHandler::Result,QString)), SLOT(onITipMessageProcessed(Akonadi::ITIPHandler::Result,QString))); m_counterProposalEditorDelegate = new IncidenceEditorNG::GroupwareUiDelegate(); handler->setGroupwareUiDelegate(m_counterProposalEditorDelegate); handler->processiTIPMessage(receiver, iCal, type); m_eventLoop.exec(); } void SyncItipHandler::onITipMessageProcessed(Akonadi::ITIPHandler::Result result, const QString &errorMessage) { m_result = result; m_errorMessage = errorMessage; m_eventLoop.exit(); deleteLater(); delete m_counterProposalEditorDelegate; m_counterProposalEditorDelegate = 0; } QString SyncItipHandler::errorMessage() const { return m_errorMessage; } Akonadi::ITIPHandler::Result SyncItipHandler::result() const { return m_result; } diff --git a/plugins/messageviewer/bodypartformatter/syncitiphandler.h b/plugins/messageviewer/bodypartformatter/syncitiphandler.h index 174d049b1a..98c3058768 100644 --- a/plugins/messageviewer/bodypartformatter/syncitiphandler.h +++ b/plugins/messageviewer/bodypartformatter/syncitiphandler.h @@ -1,62 +1,64 @@ /* This file is part of kdepim. Copyright (c) 2013 Sérgio Martins This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA In addition, as a special exception, the copyright holders give permission to link the code of this program with any edition of the Qt library by Trolltech AS, Norway (or with modified versions of Qt that use the same license as Qt), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than Qt. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ #ifndef SYNCITIPHANDLER_H #define SYNCITIPHANDLER_H #include #include +#include #include #include class SyncItipHandler : public QObject { Q_OBJECT public: SyncItipHandler(const QString &receiver, const QString &iCal, const QString &type, QObject *parent = 0); public Q_SLOTS: void onITipMessageProcessed(Akonadi::ITIPHandler::Result, const QString &errorMessage); public: QString errorMessage() const; Akonadi::ITIPHandler::Result result() const; private: QString m_errorMessage; Akonadi::ITIPHandler::Result m_result; QEventLoop m_eventLoop; IncidenceEditorNG::GroupwareUiDelegate *m_counterProposalEditorDelegate; + Akonadi::ETMCalendar::Ptr m_calendar; }; #endif // SYNCITIPHANDLER_H