2016-06-01 03:43:33 -04: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 20:38:01 -04:00
|
|
|
#include <memory>
|
2018-10-10 21:49:20 -04:00
|
|
|
|
2018-10-09 21:53:04 -04:00
|
|
|
#include <QList>
|
2016-09-20 11:21:23 -04:00
|
|
|
#include <QWidget>
|
2018-10-24 09:25:13 -04:00
|
|
|
|
2016-06-01 03:43:33 -04:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureSystem;
|
|
|
|
}
|
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
class ConfigureSystem : public QWidget {
|
2016-06-01 03:43:33 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-09-17 20:38:01 -04:00
|
|
|
explicit ConfigureSystem(QWidget* parent = nullptr);
|
2018-10-25 16:45:13 -04:00
|
|
|
~ConfigureSystem() override;
|
2016-06-01 03:43:33 -04:00
|
|
|
|
2019-05-26 00:39:23 -04:00
|
|
|
void ApplyConfiguration();
|
2016-06-01 03:43:33 -04:00
|
|
|
|
2018-10-25 16:43:42 -04:00
|
|
|
private:
|
2019-05-26 00:39:23 -04:00
|
|
|
void SetConfiguration();
|
|
|
|
|
2018-10-25 16:43:42 -04:00
|
|
|
void ReadSystemSettings();
|
2018-10-09 21:53:04 -04:00
|
|
|
|
2018-10-25 16:47:09 -04:00
|
|
|
void RefreshConsoleID();
|
2016-06-01 03:43:33 -04:00
|
|
|
|
|
|
|
std::unique_ptr<Ui::ConfigureSystem> ui;
|
2018-10-25 16:52:21 -04:00
|
|
|
bool enabled = false;
|
2016-06-01 03:43:33 -04:00
|
|
|
|
2018-10-25 16:52:21 -04:00
|
|
|
int language_index = 0;
|
|
|
|
int sound_index = 0;
|
2016-06-01 03:43:33 -04:00
|
|
|
};
|