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