/usr/include/KF5/akonadi/contact/standardcontactactionmanager.h is in libkf5akonadicontact-dev 4:17.12.3-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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | /*
This file is part of Akonadi Contact.
Copyright (c) 2009 - 2010 Tobias Koenig <tokoe@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_STANDARDCONTACTACTIONMANAGER_H
#define AKONADI_STANDARDCONTACTACTIONMANAGER_H
#include "akonadi-contact_export.h"
#include <standardactionmanager.h>
#include <QObject>
class QAction;
class KActionCollection;
class QItemSelectionModel;
class QWidget;
namespace Akonadi {
class Item;
/**
* @short Manages contact specific actions for collection and item views.
*
* @author Tobias Koenig <tokoe@kde.org>
* @since 4.6
*/
class AKONADI_CONTACT_EXPORT StandardContactActionManager : public QObject
{
Q_OBJECT
public:
/**
* Describes the supported actions.
*/
enum Type {
CreateContact = StandardActionManager::LastType + 1, ///< Creates a new contact
CreateContactGroup, ///< Creates a new contact group
EditItem, ///< Edits the selected contact resp. contact group
LastType ///< Marks last action
};
/**
* Creates a new standard contact action manager.
*
* @param actionCollection The action collection to operate on.
* @param parent The parent widget.
*/
explicit StandardContactActionManager(KActionCollection *actionCollection, QWidget *parent = nullptr);
/**
* Destroys the standard contact action manager.
*/
~StandardContactActionManager();
/**
* Sets the collection selection model based on which the collection
* related actions should operate. If none is set, all collection actions
* will be disabled.
* @param selectionModel the selection model for collections
*/
void setCollectionSelectionModel(QItemSelectionModel *selectionModel);
/**
* Sets the item selection model based on which the item related actions
* should operate. If none is set, all item actions will be disabled.
* @param selectionModel the selection model for items
*/
void setItemSelectionModel(QItemSelectionModel *selectionModel);
/**
* Creates the action of the given type and adds it to the action collection
* specified in the constructor if it does not exist yet. The action is
* connected to its default implementation provided by this class.
* @param type the type of action to create
*/
QAction *createAction(Type type);
/**
* Creates the action of the given type and adds it to the action collection
* specified in the constructor if it does not exist yet. The action is
* connected to its default implementation provided by this class.
* @param type the type of action to create
*/
QAction *createAction(StandardActionManager::Type type);
/**
* Convenience method to create all standard actions.
* @see createAction()
*/
void createAllActions();
/**
* Returns the action of the given type, 0 if it has not been created (yet).
*/
QAction *action(Type type) const;
/**
* Returns the action of the given type, 0 if it has not been created (yet).
* @param type the type of action to return
*/
QAction *action(StandardActionManager::Type type) const;
/**
* Sets the label of the action @p type to @p text, which is used during
* updating the action state and substituted according to the number of
* selected objects. This is mainly useful to customize the label of actions
* that can operate on multiple objects.
*
* Example:
* @code
* acctMgr->setActionText( Akonadi::StandardActionManager::CopyItems,
* ki18np( "Copy Item", "Copy %1 Items" ) );
* @endcode
*/
void setActionText(StandardActionManager::Type type, const KLocalizedString &text);
/**
* Sets whether the default implementation for the given action @p type
* shall be executed when the action is triggered.
*
* @param intercept If @c false, the default implementation will be executed,
* if @c true no action is taken.
*/
void interceptAction(Type type, bool intercept = true);
/**
* Sets whether the default implementation for the given action @p type
* shall be executed when the action is triggered.
*
* @param intercept If @c false, the default implementation will be executed,
* if @c true no action is taken.
*/
void interceptAction(StandardActionManager::Type type, bool intercept = true);
/**
* Returns the list of collections that are currently selected.
* The list is empty if no collection is currently selected.
*/
Akonadi::Collection::List selectedCollections() const;
/**
* Returns the list of items that are currently selected.
* The list is empty if no item is currently selected.
*/
Akonadi::Item::List selectedItems() const;
/**
* @param names the list of names to set as collection properties page names
* @since 4.8.2
*/
void setCollectionPropertiesPageNames(const QStringList &names);
Q_SIGNALS:
/**
* This signal is emitted whenever the action state has been updated.
* In case you have special needs for changing the state of some actions,
* connect to this signal and adjust the action state.
*/
void actionStateUpdated();
private:
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
};
}
#endif
|