2016-01-24 09:34:05 -08:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-24 12:54:04 -08:00
|
|
|
#pragma once
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
#include <memory>
|
2016-09-20 08:21:23 -07:00
|
|
|
#include <QDialog>
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2018-08-06 21:43:07 -07:00
|
|
|
class HotkeyRegistry;
|
|
|
|
|
2020-08-27 12:16:47 -07:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2016-01-24 09:34:05 -08:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureDialog;
|
|
|
|
}
|
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
class ConfigureDialog : public QDialog {
|
2016-01-24 09:34:05 -08:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-08-27 12:16:47 -07:00
|
|
|
explicit ConfigureDialog(QWidget* parent, HotkeyRegistry& registry,
|
|
|
|
InputCommon::InputSubsystem* input_subsystem);
|
2018-12-02 11:10:28 -08:00
|
|
|
~ConfigureDialog() override;
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
void ApplyConfiguration();
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2020-01-25 15:26:07 -08:00
|
|
|
private slots:
|
|
|
|
void OnLanguageChanged(const QString& locale);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void LanguageChanged(const QString& locale);
|
|
|
|
|
2016-01-24 09:34:05 -08:00
|
|
|
private:
|
2019-06-05 15:39:46 -07:00
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
|
|
|
|
void RetranslateUI();
|
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
void SetConfiguration();
|
2018-09-06 10:59:25 -07:00
|
|
|
void UpdateVisibleTabs();
|
|
|
|
void PopulateSelectionList();
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2016-01-24 12:54:04 -08:00
|
|
|
std::unique_ptr<Ui::ConfigureDialog> ui;
|
2019-02-16 07:19:29 -08:00
|
|
|
HotkeyRegistry& registry;
|
2016-01-24 09:34:05 -08:00
|
|
|
};
|