1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 19:41:49 +00:00
AIO-switch-updater/source/language_option_page.cpp

44 lines
1.5 KiB
C++
Raw Normal View History

#include "language_option_page.hpp"
#include "lang.hpp"
#include <cstdio>
using namespace lang::literals;
//this page is for language page
LanguageOptionPage::LanguageOptionPage() : AppletFrame(true, true)
2020-10-05 03:03:45 +01:00
{
this->setTitle("Language_Option"_lang);
list = new brls::List();
English = new brls::ListItem("English");
English->getClickEvent()->subscribe([&](brls::View* view){
nlohmann::json json_file;
json_file["language"]=(int)lang::Language::English;
std::ofstream o("/switch/AIO-switch-updater/config.ini");
o<<std::setw(4)<<json_file<<std::endl;
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
stagedFrame->addStage(
new ConfirmPage(stagedFrame, "reset_machine"_lang,false)
);
brls::Application::pushView(stagedFrame);
});
list->addView(English);
Chinese = new brls::ListItem("中文");
Chinese->getClickEvent()->subscribe([&](brls::View* view){
nlohmann::json json_file;
json_file["language"]=(int)lang::Language::Chinese;
std::ofstream o("/switch/AIO-switch-updater/config.ini");
o<<std::setw(4)<<json_file<<std::endl;
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
stagedFrame->addStage(
new ConfirmPage(stagedFrame, "reset_machine"_lang,false)
);
brls::Application::pushView(stagedFrame);
});
list->addView(Chinese);
this->setContentView(list);
}