mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 06:47:53 +00:00
c8f6754417
Instead, we make a proper registry class and house it within the main window, then pass it to whatever needs access to the loaded hotkeys. This way, we avoid a global variable, and don't need to initialize a std::map instance before the program can do anything.
30 lines
541 B
C++
30 lines
541 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QDialog>
|
|
|
|
class HotkeyRegistry;
|
|
|
|
namespace Ui {
|
|
class ConfigureDialog;
|
|
}
|
|
|
|
class ConfigureDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDialog(QWidget* parent, const HotkeyRegistry& registry);
|
|
~ConfigureDialog();
|
|
|
|
void applyConfiguration();
|
|
|
|
private:
|
|
void setConfiguration();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::ConfigureDialog> ui;
|
|
};
|