2016-06-01 02:43:33 -05: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 19:38:01 -05:00
|
|
|
#include <memory>
|
2016-09-20 10:21:23 -05:00
|
|
|
#include <QWidget>
|
2018-07-18 01:32:56 -05:00
|
|
|
#include "common/common_types.h"
|
2016-06-01 02:43:33 -05:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ConfigureSystem;
|
|
|
|
}
|
|
|
|
|
2018-03-06 02:43:24 -06:00
|
|
|
namespace Service {
|
|
|
|
namespace CFG {
|
|
|
|
class Module;
|
|
|
|
} // namespace CFG
|
|
|
|
} // namespace Service
|
|
|
|
|
2016-09-17 19:38:01 -05:00
|
|
|
class ConfigureSystem : public QWidget {
|
2016-06-01 02:43:33 -05:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-09-17 19:38:01 -05:00
|
|
|
explicit ConfigureSystem(QWidget* parent = nullptr);
|
2018-10-25 15:45:13 -05:00
|
|
|
~ConfigureSystem() override;
|
2016-06-01 02:43:33 -05:00
|
|
|
|
2019-05-25 23:39:23 -05:00
|
|
|
void ApplyConfiguration();
|
|
|
|
void SetConfiguration();
|
|
|
|
void RetranslateUI();
|
2016-06-01 02:43:33 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
void ReadSystemSettings();
|
2018-08-26 12:47:45 -05:00
|
|
|
void ConfigureTime();
|
2016-06-01 02:43:33 -05:00
|
|
|
|
2018-10-25 15:47:09 -05:00
|
|
|
void UpdateBirthdayComboBox(int birthmonth_index);
|
|
|
|
void UpdateInitTime(int init_clock);
|
|
|
|
void RefreshConsoleID();
|
2018-10-25 15:43:42 -05:00
|
|
|
|
2016-06-01 02:43:33 -05:00
|
|
|
std::unique_ptr<Ui::ConfigureSystem> ui;
|
2018-10-25 15:52:21 -05:00
|
|
|
bool enabled = false;
|
2016-06-01 02:43:33 -05:00
|
|
|
|
2018-03-06 02:43:24 -06:00
|
|
|
std::shared_ptr<Service::CFG::Module> cfg;
|
2016-06-01 02:43:33 -05:00
|
|
|
std::u16string username;
|
2018-10-25 15:52:21 -05:00
|
|
|
int birthmonth = 0;
|
|
|
|
int birthday = 0;
|
|
|
|
int language_index = 0;
|
|
|
|
int sound_index = 0;
|
2018-07-18 01:32:56 -05:00
|
|
|
u8 country_code;
|
2018-09-13 10:01:58 -05:00
|
|
|
u16 play_coin;
|
2016-06-01 02:43:33 -05:00
|
|
|
};
|