2020-09-20 01:21:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
class ConfirmPage : public brls::View
|
|
|
|
{
|
2021-09-11 14:48:13 +01:00
|
|
|
private:
|
|
|
|
brls::Button* button = nullptr;
|
|
|
|
brls::Label* label = nullptr;
|
|
|
|
std::chrono::system_clock::time_point start = std::chrono::high_resolution_clock::now();
|
|
|
|
bool done = false;
|
|
|
|
bool reboot = false;
|
|
|
|
bool erista = true;
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
public:
|
2021-10-03 18:54:09 +01:00
|
|
|
ConfirmPage(brls::StagedAppletFrame* frame, const std::string& text, bool done = false, bool reboot = false, bool erista = true);
|
2021-09-11 14:48:13 +01:00
|
|
|
~ConfirmPage();
|
2020-09-20 01:21:28 +01:00
|
|
|
|
2021-09-11 14:48:13 +01:00
|
|
|
void draw(NVGcontext* vg, int x, int y, unsigned width, unsigned height, brls::Style* style, brls::FrameContext* ctx) override;
|
|
|
|
void layout(NVGcontext* vg, brls::Style* style, brls::FontStash* stash) override;
|
|
|
|
brls::View* getDefaultFocus() override;
|
2020-09-20 01:21:28 +01:00
|
|
|
};
|