Files
eden/src/yuzu/configuration/configure_system.h
T

38 lines
656 B
C++
Raw Normal View History

2016-06-01 10:43:33 +03:00
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2016-09-18 09:38:01 +09:00
#include <memory>
#include <QList>
2016-09-21 00:21:23 +09:00
#include <QWidget>
2016-06-01 10:43:33 +03:00
namespace Ui {
class ConfigureSystem;
}
2016-09-18 09:38:01 +09:00
class ConfigureSystem : public QWidget {
2016-06-01 10:43:33 +03:00
Q_OBJECT
public:
2016-09-18 09:38:01 +09:00
explicit ConfigureSystem(QWidget* parent = nullptr);
~ConfigureSystem() override;
2016-06-01 10:43:33 +03:00
void ApplyConfiguration();
2016-06-01 10:43:33 +03:00
2018-10-25 16:43:42 -04:00
private:
void SetConfiguration();
2018-10-25 16:43:42 -04:00
void ReadSystemSettings();
2018-10-25 16:47:09 -04:00
void RefreshConsoleID();
2016-06-01 10:43:33 +03:00
std::unique_ptr<Ui::ConfigureSystem> ui;
bool enabled = false;
2016-06-01 10:43:33 +03:00
int language_index = 0;
int sound_index = 0;
2016-06-01 10:43:33 +03:00
};