/usr/include/KF5/KGlobalAccel/kglobalaccel.h is in libkf5globalaccel-dev 5.28.0-1.
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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | /* This file is part of the KDE libraries
Copyright (C) 2001,2002 Ellis Whitehead <ellis@kde.org>
Copyright (C) 2006 Hamish Rodda <rodda@kde.org>
Copyright (C) 2007 Andreas Hartmetz <ahartmetz@gmail.com>
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 _KGLOBALACCEL_H_
#define _KGLOBALACCEL_H_
#include <kglobalaccel_export.h>
#include "kglobalshortcutinfo.h"
#include <QtCore/QObject>
#include <QKeySequence>
#include <QList>
class QAction;
class OrgKdeKglobalaccelComponentInterface;
/**
* @short Configurable global shortcut support
*
* KGlobalAccel allows you to have global accelerators that are independent of
* the focused window. Unlike regular shortcuts, the application's window does not need focus
* for them to be activated.
*
* @see KKeyChooser
* @see KKeyDialog
*/
class KGLOBALACCEL_EXPORT KGlobalAccel : public QObject
{
Q_OBJECT
public:
/**
* An enum about global shortcut setter semantics
*/
enum GlobalShortcutLoading {
/// Look up the action in global settings (using its main component's name and text())
/// and set the shortcut as saved there.
/// @see setGlobalShortcut()
Autoloading = 0x0,
/// Prevent autoloading of saved global shortcut for action
NoAutoloading = 0x4
};
/**
* Index for actionId QStringLists
*/
enum actionIdFields {
ComponentUnique = 0, //!< Components Unique Name (ID)
ActionUnique = 1, //!< Actions Unique Name(ID)
ComponentFriendly = 2, //!< Components Friendly Translated Name
ActionFriendly = 3 //!< Actions Friendly Translated Name
};
/**
* Returns (and creates if necessary) the singleton instance
*/
static KGlobalAccel *self();
/**
* Take away the given shortcut from the named action it belongs to.
* This applies to all actions with global shortcuts in any KDE application.
*
* @see promptStealShortcutSystemwide()
*/
static void stealShortcutSystemwide(const QKeySequence &seq);
/**
* Set global shortcut context.
*
* A global shortcut context allows an application to have different sets
* of global shortcuts and to switch between them. This is used by
* plasma to switch the active global shortcuts when switching between
* activities.
*
* @param context the name of the context.
*
* @since 4.2
*/
static void activateGlobalShortcutContext(
const QString &contextUnique,
const QString &contextFriendly,
const QString &programName);
/**
* Clean the shortcuts for component @a componentUnique.
*
* If the component is not active all global shortcut registrations are
* purged and the component is removed completely.
*
* If the component is active all global shortcut registrations not in use
* will be purged. If there is no shortcut registration left the component
* is purged too.
*
* If a purged component or shortcut is activated the next time it will
* reregister itself. All you probably will lose on wrong usage are the
* user's set shortcuts.
*
* If you make sure your component is running and all global shortcuts it
* has are active this function can be used to clean up the registry.
*
* Handle with care!
*
* If the method return @c true at least one shortcut was purged so handle
* all previously acquired information with care.
*/
static bool cleanComponent(const QString &componentUnique);
/**
* Check if @a component is active.
*
* @param componentUnique the components unique identifier
* @return @c true if active, @false if not
*/
static bool isComponentActive(const QString &componentName);
/**
* Returns a list of global shortcuts registered for the shortcut @seq.
*
* If the list contains more that one entry it means the component
* that registered the shortcuts uses global shortcut contexts. All
* returned shortcuts belong to the same component.
*
* @since 4.2
*/
static QList<KGlobalShortcutInfo> getGlobalShortcutsByKey(const QKeySequence &seq);
/**
* Check if the shortcut @seq is available for the @p component. The
* component is only of interest if the current application uses global shortcut
* contexts. In that case a global shortcut by @p component in an inactive
* global shortcut contexts does not block the @p seq for us.
*
* @since 4.2
*/
static bool isGlobalShortcutAvailable(
const QKeySequence &seq,
const QString &component = QString());
/**
* Show a messagebox to inform the user that a global shortcut is already occupied,
* and ask to take it away from its current action(s). This is GUI only, so nothing will
* be actually changed.
*
* @see stealShortcutSystemwide()
*
* @since 4.2
*/
static bool promptStealShortcutSystemwide(
QWidget *parent,
const QList<KGlobalShortcutInfo> &shortcuts,
const QKeySequence &seq);
/**
* Assign a default global shortcut for a given QAction.
* For more information about global shortcuts @see setShortcut
* Upon shortcut change the globalShortcutChanged will be triggered so other applications get notified
*
* @sa globalShortcutChanged
*
* @since 5.0
*/
bool setDefaultShortcut(QAction *action, const QList<QKeySequence> &shortcut, GlobalShortcutLoading loadFlag = Autoloading);
/**
* Assign a global shortcut for the given action. Global shortcuts
* allow an action to respond to key shortcuts independently of the focused window,
* i.e. the action will trigger if the keys were pressed no matter where in the X session.
*
* The action must have a per main component unique
* action->objectName() to enable cross-application bookeeping. If the action->objectName() is empty this method will
* do nothing and will return false.
*
* It is mandatory that the action->objectName() doesn't change once the shortcut has been sucessfully registered.
*
* \note KActionCollection::insert(name, action) will set action's objectName to name so you often
* don't have to set an objectName explicitly.
*
* When an action, identified by main component name and objectName(), is assigned
* a global shortcut for the first time on a KDE installation the assignment will
* be saved. The shortcut will then be restored every time setGlobalShortcut() is
* called with @p loading == Autoloading.
*
* If you actually want to change the global shortcut you have to set
* @p loading to NoAutoloading. The new shortcut will be automatically saved again.
*
* @param action the action for which the shortcut will be assigned
* @param shortcut global shortcut(s) to assign. Will be ignored unless @p loading is set to NoAutoloading or this is the first time ever you call this method (see above).
* @param loadFlag if Autoloading, assign the global shortcut this action has previously had if any.
* That way user preferences and changes made to avoid clashes will be conserved.
* if NoAutoloading the given shortcut will be assigned without looking up old values.
* You should only do this if the user wants to change the shortcut or if you have
* another very good reason. Key combinations that clash with other shortcuts will be
* dropped.
*
* \note the default shortcut will never be influenced by autoloading - it will be set as given.
* @sa shortcut()
* @sa globalShortcutChanged
* @since 5.0
*/
bool setShortcut(QAction *action, const QList<QKeySequence> &shortcut, GlobalShortcutLoading loadFlag = Autoloading);
/**
* Convenient method to set both active and default shortcut.
*
* If more control for loading the shortcuts is needed use the variants offering more control.
*
* @sa setShortcut
* @sa setDefaultShortcut
* @since 5.0
**/
static bool setGlobalShortcut(QAction *action, const QList<QKeySequence> &shortcut);
/**
* Convenient method to set both active and default shortcut.
*
* This method is suited for the case that only one shortcut is to be configured.
*
* If more control for loading the shortcuts is needed use the variants offering more control.
*
* @sa setShortcut
* @sa setDefaultShortcut
* @since 5.0
**/
static bool setGlobalShortcut(QAction *action, const QKeySequence &shortcut);
/**
* Get the global default shortcut for this action, if one exists. Global shortcuts
* allow your actions to respond to accellerators independently of the focused window.
* Unlike regular shortcuts, the application's window does not need focus
* for them to be activated.
*
* @sa setDefaultShortcut()
* @since 5.0
*/
QList<QKeySequence> defaultShortcut(const QAction *action) const;
/**
* Get the global shortcut for this action, if one exists. Global shortcuts
* allow your actions to respond to accellerators independently of the focused window.
* Unlike regular shortcuts, the application's window does not need focus
* for them to be activated.
*
* @note that this method only works together with setShortcut() because the action pointer
* is used to retrieve the result. If you would like to retrieve the shortcut as stored
* in the global settings, use the globalShortcut(componentName, actionId) instead.
*
* @sa setShortcut()
* @since 5.0
*/
QList<QKeySequence> shortcut(const QAction *action) const;
/**
* Retrieves the shortcut as defined in global settings by
* componentName (e.g. "kwin") and actionId (e.g. "Kill Window").
*
* @since 5.10
*/
QList<QKeySequence> globalShortcut(const QString& componentName, const QString& actionId) const;
/**
* Unregister and remove all defined global shortcuts for the given action.
*
* @since 5.0
*/
void removeAllShortcuts(QAction *action);
/**
* Returns true if a shortcut or a default shortcut has been registered for the given action
*
* @since 5.0
*/
bool hasShortcut(const QAction *action) const;
/**
* No effect.
*
* @deprecated
*/
#ifndef KGLOBALACCEL_NO_DEPRECATED
KGLOBALACCEL_DEPRECATED bool isEnabled() const;
#endif
/**
* No effect.
*
* @deprecated
*/
#ifndef KGLOBALACCEL_NO_DEPRECATED
KGLOBALACCEL_DEPRECATED void setEnabled(bool enabled);
#endif
/**
* Return the unique and common names of all main components that have global shortcuts.
* The action strings of the returned actionId stringlists will be empty.
*
* @deprecated
*/
#ifndef KGLOBALACCEL_NO_DEPRECATED
KGLOBALACCEL_DEPRECATED QList<QStringList> allMainComponents();
#endif
/**
* @see getGlobalShortcutsByComponent
*
* @deprecated
*/
#ifndef KGLOBALACCEL_NO_DEPRECATED
KGLOBALACCEL_DEPRECATED QList<QStringList> allActionsForComponent(const QStringList &actionId);
#endif
/**
* @see getGlobalShortcutsByKey
*
* @deprecated
*/
#ifndef KGLOBALACCEL_NO_DEPRECATED
KGLOBALACCEL_DEPRECATED static QStringList findActionNameSystemwide(const QKeySequence &seq);
#endif
/**
* @see promptStealShortcutSystemwide below
*
* @deprecated
*/
#ifndef KGLOBALACCEL_NO_DEPRECATED
KGLOBALACCEL_DEPRECATED static bool promptStealShortcutSystemwide(QWidget *parent, const QStringList &actionIdentifier, const QKeySequence &seq);
#endif
/**
* TODO KF6 remove
* @internal
*/
bool eventFilter(QObject *watched, QEvent *event) Q_DECL_OVERRIDE;
Q_SIGNALS:
/**
* Emitted when the global shortcut is changed. A global shortcut is
* subject to be changed by the global shortcuts kcm.
*
* @param action pointer to the action for which the changed shortcut was registered
* @param seq the key sequence that corresponds to the changed shortcut
*
* @see setGlobalShortcut
* @see setDefaultShortcut
* @since 5.0
*
* @todo KF6: add const to the QAction parameter
*/
void globalShortcutChanged(/*const would be better*/QAction *action, const QKeySequence &seq);
private:
/// Creates a new KGlobalAccel object
KGlobalAccel();
/// Destructor
~KGlobalAccel();
//! get component @p componentUnique
OrgKdeKglobalaccelComponentInterface *getComponent(const QString &componentUnique);
class KGlobalAccelPrivate *const d;
Q_PRIVATE_SLOT(d, void _k_invokeAction(const QString &, const QString &, qlonglong))
Q_PRIVATE_SLOT(d, void _k_shortcutGotChanged(const QStringList &, const QList<int> &))
Q_PRIVATE_SLOT(d, void _k_serviceOwnerChanged(const QString &, const QString &, const QString &))
friend class KGlobalAccelSingleton;
};
#endif // _KGLOBALACCEL_H_
|