2016-06-01 00:43:33 -07:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
#include <memory>
|
2018-10-10 18:49:20 -07:00
|
|
|
|
2018-10-09 18:53:04 -07:00
|
|
|
#include <QList>
|
2016-09-20 08:21:23 -07:00
|
|
|
#include <QWidget>
|
2018-10-24 06:25:13 -07:00
|
|
|
|
2016-06-01 00:43:33 -07:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureSystem;
|
|
|
|
}
|
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
class ConfigureSystem : public QWidget {
|
2016-06-01 00:43:33 -07:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-09-17 17:38:01 -07:00
|
|
|
explicit ConfigureSystem(QWidget* parent = nullptr);
|
2018-10-25 13:45:13 -07:00
|
|
|
~ConfigureSystem() override;
|
2016-06-01 00:43:33 -07:00
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
void ApplyConfiguration();
|
2016-06-01 00:43:33 -07:00
|
|
|
|
2018-10-25 13:43:42 -07: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-10-25 13:43:42 -07:00
|
|
|
void ReadSystemSettings();
|
2018-10-09 18:53:04 -07:00
|
|
|
|
2018-10-25 13:47:09 -07:00
|
|
|
void RefreshConsoleID();
|
2016-06-01 00:43:33 -07:00
|
|
|
|
|
|
|
std::unique_ptr<Ui::ConfigureSystem> ui;
|
2018-10-25 13:52:21 -07:00
|
|
|
bool enabled = false;
|
2016-06-01 00:43:33 -07:00
|
|
|
|
2018-10-25 13:52:21 -07:00
|
|
|
int language_index = 0;
|
2020-03-18 02:04:08 -07:00
|
|
|
int region_index = 0;
|
2020-05-11 14:50:07 -07:00
|
|
|
int time_zone_index = 0;
|
2018-10-25 13:52:21 -07:00
|
|
|
int sound_index = 0;
|
2016-06-01 00:43:33 -07:00
|
|
|
};
|