1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 13:33:39 +01:00
AIO-switch-updater/source/PC_page.cpp

53 lines
2 KiB
C++
Raw Normal View History

2020-12-28 18:28:58 +00:00
#include "PC_page.hpp"
namespace i18n = brls::i18n;
using namespace i18n::literals;
PCPage::PCPage() : AppletFrame(true, true)
{
this->setTitle("menus/pro_con"_i18n );
2020-12-28 18:28:58 +00:00
list = new brls::List();
std::string labelText = "menus/pc_you_can"_i18n;
2020-12-28 18:28:58 +00:00
label = new brls::Label(brls::LabelStyle::DESCRIPTION, labelText, true);
list->addView(label);
backup = new brls::ListItem("menus/jc_backup"_i18n );
backup->getClickEvent()->subscribe([&](brls::View* view) {
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
stagedFrame->setTitle("menus/pc_color"_i18n );
2020-12-28 18:28:58 +00:00
stagedFrame->addStage(
new WorkerPage(stagedFrame, "menus/pc_backing"_i18n ,
2020-12-28 18:28:58 +00:00
[](){pc::backupPCColor(PC_COLOR_PATH);})
);
stagedFrame->addStage(
new ConfirmPage(stagedFrame, "menus/jc_all_done"_i18n , true)
);
brls::Application::pushView(stagedFrame);
});
list->addView(backup);
list->addView(new brls::ListItemGroupSpacing(true));
auto profiles = pc::getProfiles(PC_COLOR_PATH);
std::vector<std::string> names = std::get<0>(profiles);
int nbProfiles = names.size();
items.reserve(nbProfiles);
for (int i = nbProfiles - 1; i >= 0; i--){
std::string name = std::get<0>(profiles)[i];
std::vector<int> value = std::get<1>(profiles)[i];
items[i] = new brls::ListItem(names[i]);
items[i]->getClickEvent()->subscribe([&, value](brls::View* view) {
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
stagedFrame->setTitle("menus/pc_color"_i18n );
2020-12-28 18:28:58 +00:00
stagedFrame->addStage(
new WorkerPage(stagedFrame, "menus/jc_changing"_i18n ,
[value](){pc::changePCColor(value);})
);
stagedFrame->addStage(
new ConfirmPage(stagedFrame, "menus/pc_all_done"_i18n , true)
2020-12-28 18:28:58 +00:00
);
brls::Application::pushView(stagedFrame);
});
list->addView(items[i]);
}
this->setContentView(list);
}