2015-01-04 18:36:57 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-04-01 04:26:50 +02:00
|
|
|
#include <QKeySequence>
|
2015-06-21 15:58:59 +02:00
|
|
|
#include <QShortcut>
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <QtGlobal>
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "citra_qt/hotkeys.h"
|
2016-01-24 21:23:55 +01:00
|
|
|
#include "citra_qt/ui_settings.h"
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2018-08-07 06:43:07 +02:00
|
|
|
HotkeyRegistry::HotkeyRegistry() = default;
|
|
|
|
HotkeyRegistry::~HotkeyRegistry() = default;
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2018-08-07 06:43:07 +02:00
|
|
|
void HotkeyRegistry::SaveHotkeys() {
|
|
|
|
UISettings::values.shortcuts.clear();
|
|
|
|
for (const auto& group : hotkey_groups) {
|
|
|
|
for (const auto& hotkey : group.second) {
|
2018-05-22 21:30:36 +02:00
|
|
|
UISettings::values.shortcuts.push_back(
|
|
|
|
{hotkey.first, group.first,
|
|
|
|
UISettings::ContextualShortcut(hotkey.second.keyseq.toString(),
|
|
|
|
hotkey.second.context)});
|
2018-08-07 06:43:07 +02:00
|
|
|
}
|
2014-04-01 04:26:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-22 21:30:36 +02: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);
|
2018-12-30 11:09:16 +01:00
|
|
|
hk.context = static_cast<Qt::ShortcutContext>(shortcut.shortcut.second);
|
2018-05-22 21:30:36 +02:00
|
|
|
}
|
2018-12-12 16:44:27 +01:00
|
|
|
if (hk.shortcut) {
|
|
|
|
hk.shortcut->disconnect();
|
2018-05-22 21:30:36 +02:00
|
|
|
hk.shortcut->setKey(hk.keyseq);
|
2018-12-12 16:44:27 +01:00
|
|
|
}
|
2018-08-07 06:43:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QShortcut* HotkeyRegistry::GetHotkey(const QString& group, const QString& action, QWidget* widget) {
|
2014-04-01 04:26:50 +02:00
|
|
|
Hotkey& hk = hotkey_groups[group][action];
|
|
|
|
|
|
|
|
if (!hk.shortcut)
|
2014-12-03 19:57:57 +01:00
|
|
|
hk.shortcut = new QShortcut(hk.keyseq, widget, nullptr, nullptr, hk.context);
|
2014-04-01 04:26:50 +02:00
|
|
|
|
|
|
|
return hk.shortcut;
|
|
|
|
}
|
|
|
|
|
2018-05-22 21:30:36 +02:00
|
|
|
QKeySequence HotkeyRegistry::GetKeySequence(const QString& group, const QString& action) {
|
|
|
|
Hotkey& hk = hotkey_groups[group][action];
|
|
|
|
return hk.keyseq;
|
2014-04-01 04:26:50 +02:00
|
|
|
}
|
2018-07-24 06:23:38 +02:00
|
|
|
|
2018-05-22 21:30:36 +02:00
|
|
|
Qt::ShortcutContext HotkeyRegistry::GetShortcutContext(const QString& group,
|
|
|
|
const QString& action) {
|
|
|
|
Hotkey& hk = hotkey_groups[group][action];
|
|
|
|
return hk.context;
|
2018-07-24 06:23:38 +02:00
|
|
|
}
|