2020-12-28 18:28:58 +00:00
|
|
|
#include "PC_page.hpp"
|
2021-09-11 14:48:13 +01:00
|
|
|
|
2021-03-16 02:04:21 +00: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();
|
2021-09-10 19:31:18 +01:00
|
|
|
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);
|
2021-10-01 18:22:52 +01:00
|
|
|
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(
|
2022-09-26 23:14:13 +01:00
|
|
|
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));
|
|
|
|
|
2021-03-16 02:04:21 +00:00
|
|
|
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(
|
2022-09-26 23:14:13 +01:00
|
|
|
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);
|
|
|
|
}
|