citra/src/citra_qt/hotkeys.cpp

91 lines
3.1 KiB
C++
Raw Normal View History

// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "citra_qt/hotkeys.h"
2015-06-21 15:58:59 +02:00
#include <map>
2014-04-01 04:26:50 +02:00
#include <QKeySequence>
2015-06-21 15:58:59 +02:00
#include <QShortcut>
#include <QtGlobal>
#include "citra_qt/ui_settings.h"
2014-04-01 04:26:50 +02:00
struct Hotkey {
Hotkey() : shortcut(nullptr), context(Qt::WindowShortcut) {}
2014-04-01 04:26:50 +02:00
QKeySequence keyseq;
QShortcut* shortcut;
Qt::ShortcutContext context;
};
typedef std::map<QString, Hotkey> HotkeyMap;
typedef std::map<QString, HotkeyMap> HotkeyGroupMap;
HotkeyGroupMap hotkey_groups;
void SaveHotkeys() {
UISettings::values.shortcuts.clear();
for (auto group : hotkey_groups) {
for (auto hotkey : group.second) {
2016-01-24 21:54:04 +01:00
UISettings::values.shortcuts.emplace_back(
UISettings::Shortcut(group.first + "/" + hotkey.first,
UISettings::ContextualShortcut(hotkey.second.keyseq.toString(),
hotkey.second.context)));
2014-04-01 04:26:50 +02:00
}
}
}
void LoadHotkeys() {
// Make sure NOT to use a reference here because it would become invalid once we call
// beginGroup()
for (auto shortcut : UISettings::values.shortcuts) {
QStringList cat = shortcut.first.split("/");
Q_ASSERT(cat.size() >= 2);
2014-04-01 04:26:50 +02:00
// RegisterHotkey assigns default keybindings, so use old values as default parameters
Hotkey& hk = hotkey_groups[cat[0]][cat[1]];
if (!shortcut.second.first.isEmpty()) {
hk.keyseq = QKeySequence::fromString(shortcut.second.first);
hk.context = (Qt::ShortcutContext)shortcut.second.second;
2014-04-01 04:26:50 +02:00
}
if (hk.shortcut)
hk.shortcut->setKey(hk.keyseq);
2014-04-01 04:26:50 +02:00
}
}
void RegisterHotkey(const QString& group, const QString& action, const QKeySequence& default_keyseq,
Qt::ShortcutContext default_context) {
if (hotkey_groups[group].find(action) == hotkey_groups[group].end()) {
2014-04-01 04:26:50 +02:00
hotkey_groups[group][action].keyseq = default_keyseq;
hotkey_groups[group][action].context = default_context;
}
}
QShortcut* 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;
}
GHotkeysDialog::GHotkeysDialog(QWidget* parent) : QWidget(parent) {
2014-04-01 04:26:50 +02:00
ui.setupUi(this);
for (auto group : hotkey_groups) {
QTreeWidgetItem* toplevel_item = new QTreeWidgetItem(QStringList(group.first));
for (auto hotkey : group.second) {
2014-04-01 04:26:50 +02:00
QStringList columns;
columns << hotkey.first << hotkey.second.keyseq.toString();
2014-04-01 04:26:50 +02:00
QTreeWidgetItem* item = new QTreeWidgetItem(columns);
toplevel_item->addChild(item);
}
ui.treeWidget->addTopLevelItem(toplevel_item);
}
// TODO: Make context configurable as well (hiding the column for now)
ui.treeWidget->setColumnCount(2);
ui.treeWidget->resizeColumnToContents(0);
ui.treeWidget->resizeColumnToContents(1);
}