2020-12-12 15:41:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
2021-06-27 23:46:00 +01:00
|
|
|
#include <json.hpp>
|
|
|
|
#include <set>
|
2020-12-12 15:41:56 +00:00
|
|
|
|
|
|
|
class AmsTab : public brls::List
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
private:
|
|
|
|
brls::ListItem* listItem;
|
|
|
|
brls::Label* description;
|
|
|
|
int size = 0;
|
|
|
|
bool erista;
|
2021-09-15 16:23:37 +01:00
|
|
|
nlohmann::ordered_json hekate;
|
2021-09-11 14:48:13 +01:00
|
|
|
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 = "");
|
|
|
|
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);
|
2021-06-27 23:46:00 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
public:
|
2021-09-15 16:23:37 +01:00
|
|
|
AmsTab(const nlohmann::json& nxlinks, const bool erista = true, const bool hideStandardEntries = false);
|
2021-06-27 23:46:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class UnTogglableListItem : public brls::ToggleListItem
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
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;
|
2020-12-12 15:41:56 +00:00
|
|
|
};
|