mirror of
https://github.com/hax4dazy/TinWoo.git
synced 2025-02-09 19:25:05 +01:00
32 lines
916 B
C++
32 lines
916 B
C++
#pragma once
|
|
#include <filesystem>
|
|
#include <pu/Plutonium>
|
|
|
|
using namespace pu::ui::elm;
|
|
namespace inst::ui {
|
|
class sdInstPage : public pu::ui::Layout
|
|
{
|
|
public:
|
|
sdInstPage();
|
|
PU_SMART_CTOR(sdInstPage)
|
|
pu::ui::elm::Menu::Ref menu;
|
|
void startInstall();
|
|
void onInput(u64 Down, u64 Up, u64 Held, pu::ui::TouchPoint touch_pos);
|
|
TextBlock::Ref pageInfoText;
|
|
void drawMenuItems(bool clearItems, std::filesystem::path ourPath);
|
|
private:
|
|
std::vector<std::filesystem::path> ourDirectories;
|
|
std::vector<std::filesystem::path> ourFiles;
|
|
std::vector<std::filesystem::path> selectedTitles;
|
|
std::filesystem::path currentDir;
|
|
TextBlock::Ref butText;
|
|
Rectangle::Ref topRect;
|
|
Rectangle::Ref infoRect;
|
|
Rectangle::Ref botRect;
|
|
Image::Ref titleImage;
|
|
TextBlock::Ref appVersionText;
|
|
void followDirectory();
|
|
void selectNsp(int selectedIndex);
|
|
bool show_ext;
|
|
};
|
|
} |