2020-09-20 02:21:28 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
2021-02-10 17:28:47 +01:00
|
|
|
#include "constants.hpp"
|
2020-09-20 02:21:28 +02:00
|
|
|
|
|
|
|
class ListDownloadTab : public brls::List
|
|
|
|
{
|
|
|
|
private:
|
2021-02-06 18:24:47 +01:00
|
|
|
brls::ListItem* listItem;
|
|
|
|
brls::ListItem *cheatslipsItem;
|
2021-06-05 19:10:51 +02:00
|
|
|
brls::ListItem *gbatempItem;
|
2020-09-20 02:21:28 +02:00
|
|
|
brls::Label *notFound;
|
|
|
|
brls::Label *description;
|
2021-06-05 19:10:51 +02:00
|
|
|
brls::Label *cheatsLabel;
|
2021-07-21 15:38:43 +02:00
|
|
|
int size = 0;
|
2021-06-05 19:10:51 +02:00
|
|
|
void createCheatSlipItem();
|
|
|
|
void creategbatempItem();
|
|
|
|
|
2020-09-20 02:21:28 +02:00
|
|
|
public:
|
2021-02-12 23:20:16 +01:00
|
|
|
ListDownloadTab(const archiveType type);
|
2021-04-15 13:24:11 +02:00
|
|
|
brls::View* getDefaultFocus() override;
|
2021-03-10 21:43:00 +01:00
|
|
|
|
2020-09-20 02:21:28 +02:00
|
|
|
};
|