1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 19:41:49 +00:00
AIO-switch-updater/include/list_download_tab.hpp
2021-09-15 17:23:37 +02:00

24 lines
No EOL
578 B
C++

#pragma once
#include <borealis.hpp>
#include <json.hpp>
#include "constants.hpp"
class ListDownloadTab : public brls::List
{
private:
brls::ListItem* listItem;
brls::ListItem* cheatslipsItem;
brls::ListItem* gbatempItem;
brls::Label* notFound;
brls::Label* description;
brls::Label* cheatsLabel;
int size = 0;
void createCheatSlipItem();
void creategbatempItem();
public:
ListDownloadTab(const archiveType type, const nlohmann::ordered_json& nxlinks = nlohmann::ordered_json::object());
brls::View* getDefaultFocus() override;
};