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

50 lines
2 KiB
C++
Raw Normal View History

2020-12-28 18:28:58 +00:00
#include "PC_page.hpp"
2021-09-11 14:48:13 +01:00
#include "color_swapper.hpp"
2021-02-10 16:28:47 +00:00
#include "confirm_page.hpp"
#include "constants.hpp"
2021-09-11 14:48:13 +01:00
#include "worker_page.hpp"
2020-12-28 18:28:58 +00:00
namespace i18n = brls::i18n;
using namespace i18n::literals;
PCPage::PCPage() : AppletFrame(true, true)
{
2021-03-10 20:54:17 +00:00
this->setTitle("menus/pro_con/title"_i18n);
2020-12-28 18:28:58 +00:00
list = new brls::List();
std::string labelText = fmt::format("{}\n{}", "menus/pro_con/desc"_i18n, "menus/pro_con/warning"_i18n);
2020-12-28 18:28:58 +00:00
label = new brls::Label(brls::LabelStyle::DESCRIPTION, labelText, true);
list->addView(label);
2021-03-10 20:54:17 +00:00
backup = new brls::ListItem("menus/joy_con/backup"_i18n);
backup->getClickEvent()->subscribe([](brls::View* view) {
2020-12-28 18:28:58 +00:00
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
2021-03-10 20:54:17 +00:00
stagedFrame->setTitle("menus/pro_con/label"_i18n);
2020-12-28 18:28:58 +00:00
stagedFrame->addStage(
2021-09-11 14:48:13 +01:00
new WorkerPage(stagedFrame, "menus/pro_con/backing_up"_i18n,
[]() { PC::backupPCColor(PC_COLOR_PATH); }));
2020-12-28 18:28:58 +00:00
stagedFrame->addStage(
new ConfirmPage_Done(stagedFrame, "menus/common/all_done"_i18n));
2020-12-28 18:28:58 +00:00
brls::Application::pushView(stagedFrame);
});
list->addView(backup);
list->addView(new brls::ListItemGroupSpacing(true));
auto profiles = PC::getProfiles(PC_COLOR_PATH);
2022-01-06 00:35:39 +00:00
for (const auto& profile : profiles) {
std::vector<int> value = profile.second;
listItem = new brls::ListItem(profile.first);
2021-10-03 18:54:09 +01:00
listItem->getClickEvent()->subscribe([value](brls::View* view) {
2020-12-28 18:28:58 +00:00
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
2021-03-10 20:54:17 +00:00
stagedFrame->setTitle("menus/pro_con/label"_i18n);
2020-12-28 18:28:58 +00:00
stagedFrame->addStage(
2021-09-11 14:48:13 +01:00
new WorkerPage(stagedFrame, "menus/pro_con/changing"_i18n,
[value]() { PC::changePCColor(value); }));
2020-12-28 18:28:58 +00:00
stagedFrame->addStage(
new ConfirmPage_Done(stagedFrame, "menus/pro_con/all_done"_i18n));
2020-12-28 18:28:58 +00:00
brls::Application::pushView(stagedFrame);
});
2021-03-11 01:27:37 +00:00
list->addView(listItem);
2020-12-28 18:28:58 +00:00
}
this->setContentView(list);
}