1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 21:45:04 +01:00
AIO-switch-updater/include/tools_tab.hpp

29 lines
743 B
C++
Raw Normal View History

2020-09-20 01:21:28 +01:00
#pragma once
#include <borealis.hpp>
#include <json.hpp>
//#include "ntcp.hpp"
2020-09-20 01:21:28 +01:00
class ToolsTab : public brls::List
{
2021-09-11 14:48:13 +01:00
private:
brls::ListItem* cheats;
brls::ListItem* JCcolor;
brls::ListItem* PCcolor;
brls::ListItem* updateApp;
brls::ListItem* rebootPayload;
brls::ListItem* downloadPayload;
brls::ListItem* changelog;
brls::ListItem* language;
brls::ListItem* cleanUp;
brls::ListItem* hideTabs;
//brls::ListItem* ntcp;
brls::ListItem* netSettings;
brls::ListItem* move;
brls::ListItem* browser;
2021-09-11 14:48:13 +01:00
brls::StagedAppletFrame* stagedFrame;
2020-09-20 01:21:28 +01:00
2021-09-11 14:48:13 +01:00
public:
2021-09-15 16:23:37 +01:00
ToolsTab(const std::string& tag, const nlohmann::ordered_json& payloads, bool erista = true, const nlohmann::json& hideStatus = {});
2020-09-20 01:21:28 +01:00
};