2020-09-20 01:21:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
|
|
|
#include "confirm_page.hpp"
|
|
|
|
#include "worker_page.hpp"
|
2020-09-26 15:55:24 +01:00
|
|
|
#include "cheats_page.hpp"
|
2020-09-20 01:21:28 +01:00
|
|
|
#include "payload_page.hpp"
|
2020-09-21 19:36:46 +01:00
|
|
|
#include "download_payload_page.hpp"
|
2020-09-23 12:21:05 +01:00
|
|
|
#include "changelog_page.hpp"
|
2020-10-05 01:59:46 +01:00
|
|
|
#include "language_option_page.hpp"
|
2020-09-20 01:21:28 +01:00
|
|
|
#include "JC_page.hpp"
|
2020-12-28 18:28:58 +00:00
|
|
|
#include "PC_page.hpp"
|
2021-01-02 23:22:45 +00:00
|
|
|
#include "net_page.hpp"
|
2020-09-20 01:21:28 +01:00
|
|
|
#include "extract.hpp"
|
|
|
|
#include "utils.hpp"
|
2021-02-06 17:24:47 +00:00
|
|
|
#include "hide_tabs_page.hpp"
|
2020-12-27 17:11:40 +00:00
|
|
|
//#include "ntcp.hpp"
|
2020-09-20 01:21:28 +01:00
|
|
|
|
|
|
|
class ToolsTab : public brls::List
|
|
|
|
{
|
|
|
|
private:
|
2020-09-26 15:55:24 +01:00
|
|
|
brls::ListItem* cheats;
|
2020-09-20 01:21:28 +01:00
|
|
|
brls::ListItem* JCcolor;
|
2020-12-28 18:28:58 +00:00
|
|
|
brls::ListItem* PCcolor;
|
2020-09-20 01:21:28 +01:00
|
|
|
brls::ListItem* updateApp;
|
|
|
|
brls::ListItem* rebootPayload;
|
2020-09-26 15:55:24 +01:00
|
|
|
brls::ListItem* downloadPayload;
|
2020-09-23 12:21:05 +01:00
|
|
|
brls::ListItem* changelog;
|
2020-10-05 01:59:46 +01:00
|
|
|
brls::ListItem* language;
|
2020-12-27 17:11:40 +00:00
|
|
|
brls::ListItem* cleanUp;
|
2021-02-06 17:24:47 +00:00
|
|
|
brls::ListItem* hideTabs;
|
2020-12-27 17:11:40 +00:00
|
|
|
brls::ListItem* ntcp;
|
2021-01-02 23:22:45 +00:00
|
|
|
brls::ListItem* netSettings;
|
|
|
|
brls::ListItem* browser;
|
2020-10-05 01:59:46 +01:00
|
|
|
|
2020-09-20 01:21:28 +01:00
|
|
|
brls::StagedAppletFrame* stagedFrame;
|
|
|
|
|
|
|
|
public:
|
2020-09-29 15:41:43 +01:00
|
|
|
ToolsTab(std::string tag);
|
2020-09-20 01:21:28 +01:00
|
|
|
|
|
|
|
};
|