Page MenuHomePhorge

kolabhandler.h
No OneTemporary

kolabhandler.h

/*
Copyright (c) 2009 Andras Mantia <amantia@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library 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 Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
//
#ifndef KOLABHANDLER_H
#define KOLABHANDLER_H
#include <akonadi/item.h>
#include <kmime/kmime_message.h>
namespace Akonadi {
class Collection;
}
/**
@author Andras Mantia <amantia@kde.org>
*/
class KolabHandler : public QObject{
Q_OBJECT
public:
static KolabHandler *createHandler(const QByteArray& type);
/**
Returns the Kolab folder type for the given collection.
*/
static QByteArray kolabTypeForCollection( const Akonadi::Collection &collection );
virtual ~KolabHandler();
/**
* Translates Kolab items into the items supported by the handler.
* @param addrs
* @return the translated items
*/
virtual Akonadi::Item::List translateItems(const Akonadi::Item::List & addrs) = 0;
/**
* Translates an item into Kolab format.
* @param item the item to be translated
* @param imapItem the item that will hold the Kolab format payload data.
*/
virtual void toKolabFormat(const Akonadi::Item &item, Akonadi::Item &imapItem) = 0;
/**
* Return the mimetypes for the collections managed by the handler.
*/
virtual QStringList contentMimeTypes() = 0;
/**
* Returns the default icon for this folder type.
*/
virtual QString iconName() const = 0;
virtual QByteArray mimeType() const;
virtual void itemDeleted(const Akonadi::Item &item) { Q_UNUSED( item ); }
virtual void itemAdded(const Akonadi::Item &item) { Q_UNUSED( item ); }
Q_SIGNALS:
void deleteItemFromImap(const Akonadi::Item& item);
void addItemToImap(const Akonadi::Item& item, Akonadi::Entity::Id collectionId);
protected:
explicit KolabHandler();
static KMime::Content *findContentByType(const KMime::Message::Ptr &data, const QByteArray &type);
static KMime::Content *findContentByName(const KMime::Message::Ptr &data, const QString &name, QByteArray &type);
/** Create the top-level message object of an Kolab MIME message, including the explanation part. */
static KMime::Message::Ptr createMessage( const QString &mimeType );
/** Creates the explanation part added to every Kolab MIME message. */
static KMime::Content* createExplanationPart();
/** Creates the main Kolab MIME part. */
static KMime::Content* createMainPart( const QString &mimeType, const QByteArray &decodedContent );
/** Create a MIME part for an attachment. */
static KMime::Content* createAttachmentPart( const QString &mimeType, const QString &fileName, const QByteArray &decodedContent );
QByteArray m_mimeType;
};
#endif

File Metadata

Mime Type
text/x-c++
Expires
Fri, Nov 1, 8:53 AM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
10075326
Default Alt Text
kolabhandler.h (3 KB)

Event Timeline