2016-01-24 17:34:05 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-24 20:54:04 +00:00
|
|
|
#pragma once
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
#include <memory>
|
2016-09-20 16:21:23 +01:00
|
|
|
#include <QDialog>
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2021-09-03 02:40:55 +01:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ConfigureAudio;
|
|
|
|
class ConfigureCpu;
|
|
|
|
class ConfigureDebugTab;
|
|
|
|
class ConfigureFilesystem;
|
|
|
|
class ConfigureGeneral;
|
|
|
|
class ConfigureGraphics;
|
|
|
|
class ConfigureGraphicsAdvanced;
|
|
|
|
class ConfigureHotkeys;
|
|
|
|
class ConfigureInput;
|
|
|
|
class ConfigureProfileManager;
|
|
|
|
class ConfigureSystem;
|
|
|
|
class ConfigureNetwork;
|
|
|
|
class ConfigureUi;
|
|
|
|
class ConfigureWeb;
|
|
|
|
|
2018-08-07 05:43:07 +01:00
|
|
|
class HotkeyRegistry;
|
|
|
|
|
2020-08-27 20:16:47 +01:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2016-01-24 17:34:05 +00:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureDialog;
|
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
class ConfigureDialog : public QDialog {
|
2016-01-24 17:34:05 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-08-27 20:16:47 +01:00
|
|
|
explicit ConfigureDialog(QWidget* parent, HotkeyRegistry& registry,
|
2021-09-03 02:40:55 +01:00
|
|
|
InputCommon::InputSubsystem* input_subsystem, Core::System& system_);
|
2018-12-02 19:10:28 +00:00
|
|
|
~ConfigureDialog() override;
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2019-05-26 05:39:23 +01:00
|
|
|
void ApplyConfiguration();
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2020-01-25 23:26:07 +00:00
|
|
|
private slots:
|
|
|
|
void OnLanguageChanged(const QString& locale);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void LanguageChanged(const QString& locale);
|
|
|
|
|
2016-01-24 17:34:05 +00:00
|
|
|
private:
|
2019-06-05 23:39:46 +01:00
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
void RetranslateUI();
|
|
|
|
|
2021-05-17 21:13:39 +01:00
|
|
|
void HandleApplyButtonClicked();
|
|
|
|
|
2019-05-26 05:39:23 +01:00
|
|
|
void SetConfiguration();
|
2018-09-06 18:59:25 +01:00
|
|
|
void UpdateVisibleTabs();
|
|
|
|
void PopulateSelectionList();
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2016-01-24 20:54:04 +00:00
|
|
|
std::unique_ptr<Ui::ConfigureDialog> ui;
|
2019-02-16 15:19:29 +00:00
|
|
|
HotkeyRegistry& registry;
|
2021-09-03 02:40:55 +01:00
|
|
|
|
|
|
|
Core::System& system;
|
|
|
|
|
|
|
|
std::unique_ptr<ConfigureAudio> audio_tab;
|
|
|
|
std::unique_ptr<ConfigureCpu> cpu_tab;
|
|
|
|
std::unique_ptr<ConfigureDebugTab> debug_tab_tab;
|
|
|
|
std::unique_ptr<ConfigureFilesystem> filesystem_tab;
|
|
|
|
std::unique_ptr<ConfigureGeneral> general_tab;
|
|
|
|
std::unique_ptr<ConfigureGraphics> graphics_tab;
|
|
|
|
std::unique_ptr<ConfigureGraphicsAdvanced> graphics_advanced_tab;
|
|
|
|
std::unique_ptr<ConfigureHotkeys> hotkeys_tab;
|
|
|
|
std::unique_ptr<ConfigureInput> input_tab;
|
|
|
|
std::unique_ptr<ConfigureNetwork> network_tab;
|
|
|
|
std::unique_ptr<ConfigureProfileManager> profile_tab;
|
|
|
|
std::unique_ptr<ConfigureSystem> system_tab;
|
|
|
|
std::unique_ptr<ConfigureUi> ui_tab;
|
|
|
|
std::unique_ptr<ConfigureWeb> web_tab;
|
2016-01-24 17:34:05 +00:00
|
|
|
};
|