2020-09-20 01:21:28 +01:00
|
|
|
#include "JC_page.hpp"
|
2020-10-05 23:53:12 +01:00
|
|
|
|
|
|
|
namespace i18n = brls::i18n;
|
|
|
|
using namespace i18n::literals;
|
2020-09-20 01:21:28 +01:00
|
|
|
JCPage::JCPage() : AppletFrame(true, true)
|
|
|
|
{
|
2020-10-05 23:53:12 +01:00
|
|
|
this->setTitle("menus/joy_con"_i18n );
|
2020-09-20 01:21:28 +01:00
|
|
|
list = new brls::List();
|
2021-01-21 20:17:29 +00:00
|
|
|
std::string labelText = "menus/jc_you_can_1"_i18n + std::string(COLOR_PROFILES_PATH) + "menus/jc_you_can_goto"_i18n +
|
2020-10-05 23:53:12 +01:00
|
|
|
"menus/jc_you_can_2"_i18n ;
|
2020-09-20 01:21:28 +01:00
|
|
|
label = new brls::Label(brls::LabelStyle::DESCRIPTION, labelText, true);
|
|
|
|
list->addView(label);
|
|
|
|
|
2020-10-05 23:53:12 +01:00
|
|
|
backup = new brls::ListItem("menus/jc_backup"_i18n );
|
2020-09-20 01:21:28 +01:00
|
|
|
backup->getClickEvent()->subscribe([&](brls::View* view) {
|
|
|
|
brls::StagedAppletFrame* stagedFrame = new brls::StagedAppletFrame();
|
2020-10-05 23:53:12 +01:00
|
|
|
stagedFrame->setTitle("menus/jc_color"_i18n );
|
2020-09-20 01:21:28 +01:00
|
|
|
stagedFrame->addStage(
|
2020-10-05 23:53:12 +01:00
|
|
|
new WorkerPage(stagedFrame, "menus/jc_backing"_i18n ,
|
2020-09-20 01:21:28 +01:00
|
|
|
[](){backupJCColor(COLOR_PROFILES_PATH);})
|
|
|
|
);
|
|
|
|
stagedFrame->addStage(
|
2020-10-05 23:53:12 +01:00
|
|
|
new ConfirmPage(stagedFrame, "menus/jc_all_done"_i18n , true)
|
2020-09-20 01:21:28 +01:00
|
|
|
);
|
|
|
|
brls::Application::pushView(stagedFrame);
|
|
|
|
});
|
|
|
|
list->addView(backup);
|
|
|
|
|
|
|
|
list->addView(new brls::ListItemGroupSpacing(true));
|
|
|
|
|
|
|
|
auto profiles = getProfiles(COLOR_PROFILES_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();
|
2020-12-28 23:24:35 +00:00
|
|
|
stagedFrame->setTitle("menus/jc_con"_i18n );
|
2020-09-20 01:21:28 +01:00
|
|
|
stagedFrame->addStage(
|
2020-10-05 23:53:12 +01:00
|
|
|
new WorkerPage(stagedFrame, "menus/jc_changing"_i18n ,
|
2020-09-20 01:21:28 +01:00
|
|
|
[value](){changeJCColor(value);})
|
|
|
|
);
|
|
|
|
stagedFrame->addStage(
|
2020-10-05 23:53:12 +01:00
|
|
|
new ConfirmPage(stagedFrame, "menus/jc_all_"_i18n , true)
|
2020-09-20 01:21:28 +01:00
|
|
|
);
|
|
|
|
brls::Application::pushView(stagedFrame);
|
|
|
|
});
|
|
|
|
list->addView(items[i]);
|
|
|
|
}
|
|
|
|
this->setContentView(list);
|
|
|
|
}
|