2020-09-20 01:21:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
2021-07-21 14:38:43 +01:00
|
|
|
#include <json.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;
|
2021-02-12 22:20:16 +00:00
|
|
|
//brls::ListItem* ntcp;
|
2021-01-02 23:22:45 +00:00
|
|
|
brls::ListItem* netSettings;
|
2021-02-15 00:02:34 +00:00
|
|
|
brls::ListItem* move;
|
2021-01-02 23:22:45 +00:00
|
|
|
brls::ListItem* browser;
|
2020-10-05 01:59:46 +01:00
|
|
|
|
2020-09-20 01:21:28 +01:00
|
|
|
brls::StagedAppletFrame* stagedFrame;
|
|
|
|
|
|
|
|
public:
|
2021-07-21 14:38:43 +01:00
|
|
|
ToolsTab(const std::string& tag, bool erista = true, const nlohmann::json& hideStatus = {});
|
2020-09-20 01:21:28 +01:00
|
|
|
|
|
|
|
};
|