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