/usr/include/akonadi/trashrestorejob.h is in kdepimlibs5-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | /*
* Copyright (c) 2011 Christian Mollekopf <chrigi_1@fastmail.fm>
*
* 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_TRASHRESTOREJOB_H
#define AKONADI_TRASHRESTOREJOB_H
#include "akonadi_export.h"
#include <akonadi/item.h>
#include <akonadi/collection.h>
#include <akonadi/job.h>
namespace Akonadi
{
/**
* @short Job that restores entites from trash
*
* This job restores the given entites from trash.
* The EntityDeletedAttribute is removed and the item is restored to the stored restore collection.
*
* If the stored restore collection is not available, the root collection of the original resource is used.
* If also this is not available, setTargetCollection has to be used to restore the item to a specific collection.
*
* Example:
*
* @code
*
* const Akonadi::Item::List items = ...
*
* TrashRestoreJob *job = new TrashRestoreJob( items );
* connect( job, SIGNAL( result( KJob* ) ), this, SLOT( restoreResult( KJob* ) ) );
*
* @endcode
*
* @author Christian Mollekopf <chrigi_1@fastmail.fm>
* @since 4.8
*/
class AKONADI_EXPORT TrashRestoreJob : public Job
{
Q_OBJECT
public:
/**
* All items need to be from the same resource
*/
explicit TrashRestoreJob( const Item &item, QObject *parent = 0 );
explicit TrashRestoreJob( const Item::List &items, QObject *parent = 0 );
explicit TrashRestoreJob( const Collection &collection, QObject *parent = 0 );
~TrashRestoreJob();
/**
* Sets the target collection, where the item is moved to.
* If not set the item will be restored in the collection saved in the EntityDeletedAttribute.
* @param collection the collection to set as target
*/
void setTargetCollection( const Collection collection );
Item::List items() const;
protected:
virtual void doStart();
private:
//@cond PRIVATE
class TrashRestoreJobPrivate;
Q_DECLARE_PRIVATE( TrashRestoreJob )
Q_PRIVATE_SLOT( d_func(), void selectResult( KJob* ) )
Q_PRIVATE_SLOT( d_func(), void targetCollectionFetched( KJob* ) )
Q_PRIVATE_SLOT( d_func(), void removeAttribute( const Akonadi::Collection::List & ) )
Q_PRIVATE_SLOT( d_func(), void removeAttribute( const Akonadi::Item::List & ) )
Q_PRIVATE_SLOT( d_func(), void collectionsReceived( const Akonadi::Collection::List & ) )
Q_PRIVATE_SLOT( d_func(), void itemsReceived( const Akonadi::Item::List & ) )
//@endcond
};
}
#endif
|