QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Shortcuts manager is a class that contains a list of QActions and QShortcuts that have been registered and their shortcuts can be changed. More...
#include <qgsshortcutsmanager.h>
Public Member Functions | |
QgsShortcutsManager (QObject *parent=nullptr, const QString &settingsRoot="/shortcuts/") | |
Constructor for QgsShortcutsManager. More... | |
QAction * | actionByName (const QString &name) const |
Returns an action by its name, or nullptr if nothing found. More... | |
QAction * | actionForSequence (const QKeySequence &sequence) const |
Returns the action which is associated for a shortcut sequence, or nullptr if no action is associated. More... | |
QString | defaultKeySequence (QAction *action) const |
Returns the default sequence for an action. More... | |
QString | defaultKeySequence (QShortcut *shortcut) const |
Returns the default sequence for a shortcut. More... | |
QList< QAction * > | listActions () const |
Returns a list of all actions in the manager. More... | |
QList< QObject * > | listAll () const |
Returns a list of both actions and shortcuts in the manager. More... | |
QList< QShortcut * > | listShortcuts () const |
Returns a list of shortcuts in the manager. More... | |
QString | objectDefaultKeySequence (QObject *object) const |
Returns the default sequence for an object (either a QAction or QShortcut). More... | |
QObject * | objectForSequence (const QKeySequence &sequence) const |
Returns the object (QAction or QShortcut) matching the specified key sequence,. More... | |
bool | registerAction (QAction *action, const QString &defaultShortcut=QString()) |
Registers an action with the manager so the shortcut can be configured in GUI. More... | |
void | registerAllChildActions (QObject *object, bool recursive=false) |
Automatically registers all QActions which are children of the passed object. More... | |
void | registerAllChildren (QObject *object, bool recursive=false) |
Automatically registers all QActions and QShortcuts which are children of the passed object. More... | |
void | registerAllChildShortcuts (QObject *object, bool recursive=false) |
Automatically registers all QShortcuts which are children of the passed object. More... | |
bool | registerShortcut (QShortcut *shortcut, const QString &defaultSequence=QString()) |
Registers a QShortcut with the manager so the shortcut can be configured in GUI. More... | |
bool | setKeySequence (const QString &name, const QString &sequence) |
Modifies an action or shortcut's key sequence. More... | |
bool | setKeySequence (QAction *action, const QString &sequence) |
Modifies an action's key sequence. More... | |
bool | setKeySequence (QShortcut *shortcut, const QString &sequence) |
Modifies a shortcuts's key sequence. More... | |
bool | setObjectKeySequence (QObject *object, const QString &sequence) |
Modifies an object's (either a QAction or a QShortcut) key sequence. More... | |
QString | settingsPath () const |
Returns the root settings path used to store shortcut customization. More... | |
QShortcut * | shortcutByName (const QString &name) const |
Returns a shortcut by its name, or nullptr if nothing found. More... | |
QShortcut * | shortcutForSequence (const QKeySequence &sequence) const |
Returns the shortcut which is associated for a key sequence, or nullptr if no shortcut is associated. More... | |
bool | unregisterAction (QAction *action) |
Removes an action from the manager. More... | |
bool | unregisterShortcut (QShortcut *shortcut) |
Removes a shortcut from the manager. More... | |
Shortcuts manager is a class that contains a list of QActions and QShortcuts that have been registered and their shortcuts can be changed.
QgsShortcutsManager is not usually directly created, but rather accessed through QgsGui::shortcutsManager().
Definition at line 37 of file qgsshortcutsmanager.h.
QgsShortcutsManager::QgsShortcutsManager | ( | QObject * | parent = nullptr , |
const QString & | settingsRoot = "/shortcuts/" |
||
) |
Constructor for QgsShortcutsManager.
parent | parent object |
settingsRoot | root QgsSettings path for storing settings, e.g., "/myplugin/shortcuts". Leave as the default value to store settings alongside built in QGIS shortcuts, but care must be taken to not register actions which conflict with the built in QGIS actions. |
Definition at line 22 of file qgsshortcutsmanager.cpp.
QAction * QgsShortcutsManager::actionByName | ( | const QString & | name | ) | const |
Returns an action by its name, or nullptr
if nothing found.
name | action name. Must match QAction's text. |
Definition at line 291 of file qgsshortcutsmanager.cpp.
QAction * QgsShortcutsManager::actionForSequence | ( | const QKeySequence & | sequence | ) | const |
Returns the action which is associated for a shortcut sequence, or nullptr
if no action is associated.
sequence | shortcut key sequence |
Definition at line 263 of file qgsshortcutsmanager.cpp.
QString QgsShortcutsManager::defaultKeySequence | ( | QAction * | action | ) | const |
Returns the default sequence for an action.
An empty return string indicates no default sequence.
action | action to return default key sequence for |
Definition at line 197 of file qgsshortcutsmanager.cpp.
QString QgsShortcutsManager::defaultKeySequence | ( | QShortcut * | shortcut | ) | const |
Returns the default sequence for a shortcut.
An empty return string indicates no default sequence.
shortcut | shortcut to return default key sequence for |
Definition at line 202 of file qgsshortcutsmanager.cpp.
QList< QAction * > QgsShortcutsManager::listActions | ( | ) | const |
Returns a list of all actions in the manager.
Definition at line 161 of file qgsshortcutsmanager.cpp.
QList< QObject * > QgsShortcutsManager::listAll | ( | ) | const |
Returns a list of both actions and shortcuts in the manager.
Definition at line 171 of file qgsshortcutsmanager.cpp.
QList< QShortcut * > QgsShortcutsManager::listShortcuts | ( | ) | const |
Returns a list of shortcuts in the manager.
Definition at line 166 of file qgsshortcutsmanager.cpp.
QString QgsShortcutsManager::objectDefaultKeySequence | ( | QObject * | object | ) | const |
Returns the default sequence for an object (either a QAction or QShortcut).
An empty return string indicates no shortcut.
object | QAction or QShortcut to return default key sequence for |
Definition at line 187 of file qgsshortcutsmanager.cpp.
QObject * QgsShortcutsManager::objectForSequence | ( | const QKeySequence & | sequence | ) | const |
Returns the object (QAction or QShortcut) matching the specified key sequence,.
sequence | key sequence to find |
nullptr
if not found Definition at line 253 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::registerAction | ( | QAction * | action, |
const QString & | defaultShortcut = QString() |
||
) |
Registers an action with the manager so the shortcut can be configured in GUI.
action | action to register. The action must have a unique text string for identification. |
defaultShortcut | default key sequence for action |
true
if action was successfully registered Definition at line 82 of file qgsshortcutsmanager.cpp.
void QgsShortcutsManager::registerAllChildActions | ( | QObject * | object, |
bool | recursive = false |
||
) |
Automatically registers all QActions which are children of the passed object.
object | parent object containing actions to register |
recursive | set to true to recursively add child actions |
Definition at line 34 of file qgsshortcutsmanager.cpp.
void QgsShortcutsManager::registerAllChildren | ( | QObject * | object, |
bool | recursive = false |
||
) |
Automatically registers all QActions and QShortcuts which are children of the passed object.
object | parent object containing actions and shortcuts to register |
recursive | set to true to recursively add child actions and shortcuts |
Definition at line 28 of file qgsshortcutsmanager.cpp.
void QgsShortcutsManager::registerAllChildShortcuts | ( | QObject * | object, |
bool | recursive = false |
||
) |
Automatically registers all QShortcuts which are children of the passed object.
object | parent object containing shortcuts to register |
recursive | set to true to recursively add child shortcuts |
Definition at line 58 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::registerShortcut | ( | QShortcut * | shortcut, |
const QString & | defaultSequence = QString() |
||
) |
Registers a QShortcut with the manager so the shortcut can be configured in GUI.
shortcut | QShortcut to register. The shortcut must have a unique QObject::objectName() for identification. |
defaultSequence | default key sequence for shortcut |
true
if shortcut was successfully registered Definition at line 121 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::setKeySequence | ( | const QString & | name, |
const QString & | sequence | ||
) |
Modifies an action or shortcut's key sequence.
name | name of action or shortcut to modify. Must match the action's QAction::text() or the shortcut's QObject::objectName() |
sequence | new shortcut key sequence |
Definition at line 207 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::setKeySequence | ( | QAction * | action, |
const QString & | sequence | ||
) |
Modifies an action's key sequence.
action | action to modify |
sequence | new shortcut key sequence |
Definition at line 227 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::setKeySequence | ( | QShortcut * | shortcut, |
const QString & | sequence | ||
) |
Modifies a shortcuts's key sequence.
shortcut | QShortcut to modify |
sequence | new shortcut key sequence |
Definition at line 241 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::setObjectKeySequence | ( | QObject * | object, |
const QString & | sequence | ||
) |
Modifies an object's (either a QAction or a QShortcut) key sequence.
object | QAction or QShortcut to modify |
sequence | new shortcut key sequence |
Definition at line 217 of file qgsshortcutsmanager.cpp.
|
inline |
Returns the root settings path used to store shortcut customization.
Definition at line 243 of file qgsshortcutsmanager.h.
QShortcut * QgsShortcutsManager::shortcutByName | ( | const QString & | name | ) | const |
Returns a shortcut by its name, or nullptr
if nothing found.
name | shortcut name. Must match QShortcut's QObject::objectName() property. |
Definition at line 302 of file qgsshortcutsmanager.cpp.
QShortcut * QgsShortcutsManager::shortcutForSequence | ( | const QKeySequence & | sequence | ) | const |
Returns the shortcut which is associated for a key sequence, or nullptr
if no shortcut is associated.
sequence | shortcut key sequence |
Definition at line 277 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::unregisterAction | ( | QAction * | action | ) |
Removes an action from the manager.
action | action to remove |
true
if action was previously registered in manager and has been removed, or false
if action was not previously registered in manager Definition at line 143 of file qgsshortcutsmanager.cpp.
bool QgsShortcutsManager::unregisterShortcut | ( | QShortcut * | shortcut | ) |
Removes a shortcut from the manager.
shortcut | shortcut to remove |
true
if shortcut was previously registered in manager and has been removed, or false
if shortcut was not previously registered in manager Definition at line 152 of file qgsshortcutsmanager.cpp.