mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
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:
parent
d03f5e4977
commit
a472ef8a93
17 changed files with 1238 additions and 233 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue