mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-12-14 18:24:34 -05:00
6c838256df
* auto scroll the name list * script * remove uneeded empty line in script * script
42 lines
1000 B
C++
42 lines
1000 B
C++
#ifndef __UI_ABOUT_SIMPLE_H__
|
|
#define __UI_ABOUT_SIMPLE_H__
|
|
|
|
#include "ui_widget.hpp"
|
|
#include "ui_navigation.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace ui {
|
|
class AboutView : public View {
|
|
public:
|
|
AboutView(NavigationView& nav);
|
|
void focus() override;
|
|
std::string title() const override { return "About"; };
|
|
|
|
private:
|
|
virtual bool on_key(const KeyEvent event);
|
|
virtual bool on_encoder(const EncoderEvent event);
|
|
virtual bool on_touch(const TouchEvent event);
|
|
|
|
bool interacted{false};
|
|
uint16_t frame_sync_count{0};
|
|
void on_frame_sync();
|
|
MenuView menu_view{
|
|
{0, 0, 240, 264},
|
|
true};
|
|
|
|
Button button_ok{
|
|
{240 / 3, 270, 240 / 3, 24},
|
|
"OK",
|
|
};
|
|
|
|
MessageHandlerRegistration message_handler_frame_sync{
|
|
Message::ID::DisplayFrameSync,
|
|
[this](const Message* const) {
|
|
this->on_frame_sync();
|
|
}};
|
|
};
|
|
} // namespace ui
|
|
|
|
#endif /*__UI_ABOUT_SIMPLE_H__*/
|