kde-playground/kdepimlibs/akonadi/pastehelper_p.h
Ivailo Monev a9b00154bc generic: replace forward class declarations with header inclusions
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-07-31 18:05:48 +00:00

71 lines
2.2 KiB
C++

/*
Copyright (c) 2008 Volker Krause <vkrause@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 AKONADI_PASTEHELPER_P_H
#define AKONADI_PASTEHELPER_P_H
#include <akonadi/collection.h>
#include <QtCore/QList>
class KJob;
#include <QMimeData>
namespace Akonadi {
class Session;
/**
@internal
Helper methods for pasting/droping content into a collection.
@todo Use in item/collection models as well for dnd
*/
namespace PasteHelper
{
/**
Check whether the given mime data can be pasted into the given collection.
@param mimeData The pasted/dropped data.
@param collection The collection to paste/drop into.
*/
bool canPaste(const QMimeData *mimeData, const Collection &collection);
/**
Paste/drop the given mime data into the given collection.
@param mimeData The pasted/dropped data.
@param collection The target collection.
@param copy Indicate whether this is a copy or a move.
@returns The job performing the paste, 0 if there is nothing to paste.
*/
KJob *paste(const QMimeData *mimeData, const Collection &collection, bool copy = true, Session *session = 0);
/**
URI list paste/drop.
@param mimeData The pasted/dropped data.
@param collection The target collection.
@param action The drop action (copy/move/link).
@returns The job performing the paste, 0 if there is nothing to paste.
*/
KJob *pasteUriList(const QMimeData *mimeData, const Collection &collection, Qt::DropAction action, Session *session = 0);
}
}
#endif