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/ams_tab.hpp

31 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
#include <borealis.hpp>
#include <json.hpp>
#include <set>
class AmsTab : public brls::List
{
private:
brls::ListItem* listItem;
brls::Label *description;
int size;
bool erista;
nlohmann::ordered_json cfws;
std::string GetRepoName(const std::string& repo);
std::set<std::string> GetLastDownloadedModules(const std::string& json_path);
void CreateStagedFrames(const std::string& text, const std::string& url, const std::string& operation, bool erista, bool hekate = false, const std::string& text_hekate = "", const std::string& hekate_url = "");
2021-07-09 00:14:07 +01:00
void CreateDownloadItems(const nlohmann::ordered_json& cfw_links, bool hekate = true);
nlohmann::ordered_json SortDeepseaModules(const nlohmann::ordered_json& modules);
void ShowCustomDeepseaBuilder(nlohmann::ordered_json& modules);
public:
2021-05-24 18:23:16 +01:00
AmsTab(const bool erista = true);
};
class UnTogglableListItem : public brls::ToggleListItem
{
public:
UnTogglableListItem(const std::string& label, bool initialValue, std::string description = "", std::string onValue = "On", std::string offValue = "Off") : ToggleListItem(label, initialValue, description, onValue, offValue) {}
virtual bool onClick() override;
};