mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-22 19:53:07 +00:00
27 lines
No EOL
906 B
C++
Executable file
27 lines
No EOL
906 B
C++
Executable file
#pragma once
|
|
#include <pu/Plutonium>
|
|
|
|
using namespace pu::ui::elm;
|
|
namespace inst::ui {
|
|
class instPage : public pu::ui::Layout
|
|
{
|
|
public:
|
|
instPage();
|
|
PU_SMART_CTOR(instPage)
|
|
void onInput(u64 Down, u64 Up, u64 Held, pu::ui::Touch Pos);
|
|
TextBlock::Ref pageInfoText;
|
|
TextBlock::Ref installInfoText;
|
|
pu::ui::elm::ProgressBar::Ref installBar;
|
|
Image::Ref awooImage;
|
|
static void setTopInstInfoText(std::string ourText);
|
|
static void setInstInfoText(std::string ourText);
|
|
static void setInstBarPerc(double ourPercent);
|
|
static void loadMainMenu();
|
|
static void loadInstallScreen();
|
|
private:
|
|
Rectangle::Ref infoRect;
|
|
Rectangle::Ref topRect;
|
|
Image::Ref titleImage;
|
|
TextBlock::Ref appVersionText;
|
|
};
|
|
} |