/usr/include/KF5/KGlobalAccel/private/kglobalacceld.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 | /*
This file is part of the KDE libraries
Copyright (c) 2007 Andreas Hartmetz <ahartmetz@gmail.com>
Copyright (c) 2008 Michael Jansen <kde@michael-jansen.biz>
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 KGLOBALACCELD_H
#define KGLOBALACCELD_H
#include "kf5globalaccelprivate_export.h"
#include <kglobalshortcutinfo.h>
#include <QtCore/QStringList>
#include <QtCore/QList>
#include <QtDBus/QtDBus>
struct KGlobalAccelDPrivate;
/**
* @todo get rid of all of those QStringList parameters.
*/
class KF5GLOBALACCELPRIVATE_EXPORT KGlobalAccelD : public QObject, protected QDBusContext
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.KGlobalAccel")
Q_ENUMS(SetShortcutFlag)
public:
enum SetShortcutFlag
{
SetPresent = 2,
NoAutoloading = 4,
IsDefault = 8
};
Q_FLAGS(SetShortcutFlags)
KGlobalAccelD(QObject* parent = NULL);
~KGlobalAccelD();
bool init();
public Q_SLOTS:
/**
* Get the dbus path for all known components.
*
* The returned path is absolute. No need to prepend anything.
*/
Q_SCRIPTABLE QList<QDBusObjectPath> allComponents() const;
Q_SCRIPTABLE QList<QStringList> allMainComponents() const;
Q_SCRIPTABLE QList<QStringList> allActionsForComponent(const QStringList &actionId) const;
Q_SCRIPTABLE QStringList action(int key) const;
//to be called by main components not owning the action
Q_SCRIPTABLE QList<int> shortcut(const QStringList &actionId) const;
//to be called by main components not owning the action
Q_SCRIPTABLE QList<int> defaultShortcut(const QStringList &actionId) const;
/**
* Get the dbus path for @ componentUnique
*
* @param componentUnique the components unique identifier
*
* @return the absolute dbus path
*/
Q_SCRIPTABLE QDBusObjectPath getComponent(const QString &componentUnique) const;
//to be called by main components owning the action
Q_SCRIPTABLE QList<int> setShortcut(const QStringList &actionId,
const QList<int> &keys, uint flags);
//this is used if application A wants to change shortcuts of application B
Q_SCRIPTABLE void setForeignShortcut(const QStringList &actionId, const QList<int> &keys);
//to be called when a KAction is destroyed. The shortcut stays in the data structures for
//conflict resolution but won't trigger.
Q_SCRIPTABLE void setInactive(const QStringList &actionId);
Q_SCRIPTABLE void doRegister(const QStringList &actionId);
//! @see unregister
Q_SCRIPTABLE QT_DEPRECATED void unRegister(const QStringList &actionId);
Q_SCRIPTABLE void activateGlobalShortcutContext(
const QString &component,
const QString &context);
/**
* Returns the shortcuts registered for @p key.
*
* If there is more than one shortcut they are guaranteed to be from the
* same component but different contexts. All shortcuts are searched.
*/
Q_SCRIPTABLE QList<KGlobalShortcutInfo> getGlobalShortcutsByKey(int key) const;
/**
* Return true if the @p shortcut is available for @p component.
*/
Q_SCRIPTABLE bool isGlobalShortcutAvailable(
int key,
const QString &component) const;
/**
* Delete the shortcut with @a component and @name.
*
* The shortcut is removed from the registry even if it is currently
* present. It is removed from all contexts.
*
* @param componentUnique the components unique identifier
* @param shortcutUnique the shortcut id
*
* @return @c true if the shortcuts was deleted, @c false if it didn't * exist.
*/
Q_SCRIPTABLE bool unregister(
const QString &componentUnique,
const QString &shortcutUnique);
Q_SCRIPTABLE void blockGlobalShortcuts(bool);
Q_SIGNALS:
Q_SCRIPTABLE void yourShortcutGotChanged(const QStringList &actionId, const QList<int> &newKeys);
private:
void scheduleWriteSettings() const;
KGlobalAccelDPrivate *const d;
};
#endif //KGLOBALACCELD_H
|