Allow configuring keyboard shortcuts (#9643)

Closes #2689

The design of the respective code is loosely based on KDE's KActionCollection. The ActionCollection manages all actions that can be shortcut configured. These actions are then exposed in the config and a user can assign a different shortcut.

Actions inside the MainWindow have been added to the ActionCollection.

---------

Co-authored-by: Jonathan White <support@dmapps.us>
This commit is contained in:
Waqar Ahmed 2024-02-04 16:29:04 +05:00 committed by GitHub
parent d03f5e4977
commit a472ef8a93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 1238 additions and 233 deletions

View file

@ -597,4 +597,28 @@ void Config::createTempFileInstance()
tmpFile->setParent(m_instance);
}
QList<Config::ShortcutEntry> Config::getShortcuts() const
{
m_settings->beginGroup("Shortcuts");
const auto keys = m_settings->childKeys();
QList<ShortcutEntry> ret;
ret.reserve(keys.size());
for (const auto& key : keys) {
const auto shortcut = m_settings->value(key).toString();
ret.push_back(ShortcutEntry{key, shortcut});
}
m_settings->endGroup();
return ret;
}
void Config::setShortcuts(const QList<ShortcutEntry>& shortcuts)
{
m_settings->beginGroup("Shortcuts");
m_settings->remove(""); // clear previous
for (const auto& shortcutEntry : shortcuts) {
m_settings->setValue(shortcutEntry.name, shortcutEntry.shortcut);
}
m_settings->endGroup();
}
#undef QS