2020-09-20 02:21:28 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
|
|
|
#include "confirm_page.hpp"
|
|
|
|
#include "worker_page.hpp"
|
2020-09-26 16:55:24 +02:00
|
|
|
#include "cheats_page.hpp"
|
2020-09-20 02:21:28 +02:00
|
|
|
#include "payload_page.hpp"
|
2020-09-21 20:36:46 +02:00
|
|
|
#include "download_payload_page.hpp"
|
2020-09-23 13:21:05 +02:00
|
|
|
#include "changelog_page.hpp"
|
2020-10-05 08:59:46 +08:00
|
|
|
#include "language_option_page.hpp"
|
2020-09-20 02:21:28 +02:00
|
|
|
#include "JC_page.hpp"
|
|
|
|
#include "extract.hpp"
|
|
|
|
#include "utils.hpp"
|
|
|
|
|
|
|
|
class ToolsTab : public brls::List
|
|
|
|
{
|
|
|
|
private:
|
2020-09-26 16:55:24 +02:00
|
|
|
brls::ListItem* cheats;
|
2020-09-20 02:21:28 +02:00
|
|
|
brls::ListItem* JCcolor;
|
|
|
|
brls::ListItem* updateApp;
|
|
|
|
brls::ListItem* rebootPayload;
|
2020-09-26 16:55:24 +02:00
|
|
|
brls::ListItem* downloadPayload;
|
2020-09-23 13:21:05 +02:00
|
|
|
brls::ListItem* changelog;
|
2020-10-05 08:59:46 +08:00
|
|
|
brls::ListItem* language;
|
|
|
|
|
2020-09-20 02:21:28 +02:00
|
|
|
brls::StagedAppletFrame* stagedFrame;
|
|
|
|
|
|
|
|
public:
|
2020-09-29 16:41:43 +02:00
|
|
|
ToolsTab(std::string tag);
|
2020-09-20 02:21:28 +02:00
|
|
|
|
|
|
|
};
|