2016-01-24 18:34:05 +01:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-24 21:54:04 +01:00
|
|
|
#pragma once
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <memory>
|
2016-09-20 17:21:23 +02:00
|
|
|
#include <QDialog>
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2018-08-07 06:43:07 +02:00
|
|
|
class HotkeyRegistry;
|
|
|
|
|
2016-01-24 18:34:05 +01:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureDialog;
|
|
|
|
}
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
class ConfigureDialog : public QDialog {
|
2016-01-24 18:34:05 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-08-07 06:43:07 +02:00
|
|
|
explicit ConfigureDialog(QWidget* parent, const HotkeyRegistry& registry);
|
2018-12-07 16:44:37 +01:00
|
|
|
~ConfigureDialog() override;
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2018-09-06 19:59:25 +02:00
|
|
|
void UpdateVisibleTabs();
|
|
|
|
void PopulateSelectionList();
|
2018-05-22 21:30:36 +02:00
|
|
|
void applyConfiguration(HotkeyRegistry& registry);
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2017-09-23 15:13:59 +02:00
|
|
|
private slots:
|
|
|
|
void onLanguageChanged(const QString& locale);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void languageChanged(const QString& locale);
|
|
|
|
|
2016-01-24 18:34:05 +01:00
|
|
|
private:
|
|
|
|
void setConfiguration();
|
2018-11-02 15:40:58 +01:00
|
|
|
void retranslateUi();
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2016-01-24 21:54:04 +01:00
|
|
|
std::unique_ptr<Ui::ConfigureDialog> ui;
|
2016-01-24 18:34:05 +01:00
|
|
|
};
|