2015-01-04 11:36:57 -06:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 08:58:59 -05:00
|
|
|
#include <QShortcut>
|
2016-09-17 19:38:01 -05:00
|
|
|
#include <QtGlobal>
|
2016-09-21 01:52:38 -05:00
|
|
|
#include "citra_qt/hotkeys.h"
|
2019-08-14 23:38:54 -05:00
|
|
|
#include "citra_qt/uisettings.h"
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2018-08-06 23:43:07 -05:00
|
|
|
HotkeyRegistry::HotkeyRegistry() = default;
|
2023-04-26 23:38:28 -05:00
|
|
|
|
2018-08-06 23:43:07 -05:00
|
|
|
HotkeyRegistry::~HotkeyRegistry() = default;
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2018-08-06 23:43:07 -05:00
|
|
|
void HotkeyRegistry::SaveHotkeys() {
|
|
|
|
UISettings::values.shortcuts.clear();
|
|
|
|
for (const auto& group : hotkey_groups) {
|
|
|
|
for (const auto& hotkey : group.second) {
|
2018-05-22 14:30:36 -05:00
|
|
|
UISettings::values.shortcuts.push_back(
|
|
|
|
{hotkey.first, group.first,
|
2023-02-04 12:06:20 -06:00
|
|
|
UISettings::ContextualShortcut(
|
|
|
|
{hotkey.second.keyseq.toString(), hotkey.second.context})});
|
2018-08-06 23:43:07 -05:00
|
|
|
}
|
2014-03-31 21:26:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-22 14:30:36 -05:00
|
|
|
void HotkeyRegistry::LoadHotkeys() {
|
|
|
|
// Make sure NOT to use a reference here because it would become invalid once we call
|
|
|
|
// beginGroup()
|
2023-07-04 23:00:24 -05:00
|
|
|
for (auto shortcut : UISettings::values.shortcuts) {
|
2018-05-22 14:30:36 -05:00
|
|
|
Hotkey& hk = hotkey_groups[shortcut.group][shortcut.name];
|
2023-02-04 12:06:20 -06:00
|
|
|
if (!shortcut.shortcut.keyseq.isEmpty()) {
|
|
|
|
hk.keyseq =
|
|
|
|
QKeySequence::fromString(shortcut.shortcut.keyseq, QKeySequence::NativeText);
|
|
|
|
hk.context = static_cast<Qt::ShortcutContext>(shortcut.shortcut.context);
|
2018-05-22 14:30:36 -05:00
|
|
|
}
|
2018-12-12 09:44:27 -06:00
|
|
|
if (hk.shortcut) {
|
|
|
|
hk.shortcut->disconnect();
|
2018-05-22 14:30:36 -05:00
|
|
|
hk.shortcut->setKey(hk.keyseq);
|
2018-12-12 09:44:27 -06:00
|
|
|
}
|
2018-08-06 23:43:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-05 05:10:34 -05:00
|
|
|
QShortcut* HotkeyRegistry::GetHotkey(const QString& group, const QString& action, QObject* widget) {
|
2014-03-31 21:26:50 -05:00
|
|
|
Hotkey& hk = hotkey_groups[group][action];
|
|
|
|
|
2023-02-04 12:06:20 -06:00
|
|
|
if (!hk.shortcut) {
|
2014-12-03 12:57:57 -06:00
|
|
|
hk.shortcut = new QShortcut(hk.keyseq, widget, nullptr, nullptr, hk.context);
|
2023-02-04 12:06:20 -06:00
|
|
|
}
|
2014-03-31 21:26:50 -05:00
|
|
|
|
|
|
|
return hk.shortcut;
|
|
|
|
}
|
|
|
|
|
2018-05-22 14:30:36 -05:00
|
|
|
QKeySequence HotkeyRegistry::GetKeySequence(const QString& group, const QString& action) {
|
|
|
|
Hotkey& hk = hotkey_groups[group][action];
|
|
|
|
return hk.keyseq;
|
2014-03-31 21:26:50 -05:00
|
|
|
}
|
2018-07-23 23:23:38 -05:00
|
|
|
|
2018-05-22 14:30:36 -05:00
|
|
|
Qt::ShortcutContext HotkeyRegistry::GetShortcutContext(const QString& group,
|
|
|
|
const QString& action) {
|
|
|
|
Hotkey& hk = hotkey_groups[group][action];
|
|
|
|
return hk.context;
|
2018-07-23 23:23:38 -05:00
|
|
|
}
|