From e064af7bf4d18e7397318d40b40deb1caa4a52ec Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Mon, 1 Apr 2019 22:41:39 -0400 Subject: fullscreen widgets, limited scrolling --- source/widget.hpp | 39 +++++++++++++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 6 deletions(-) (limited to 'source/widget.hpp') diff --git a/source/widget.hpp b/source/widget.hpp index 32e7009..667f9c8 100644 --- a/source/widget.hpp +++ b/source/widget.hpp @@ -26,6 +26,12 @@ class Adafruit_GFX; #include #include +enum class PressAction { + Nothing = 0, + Destroy, + Fullscreen +}; + class Widget { private: unsigned int height; @@ -37,8 +43,10 @@ public: return height; } + virtual void renderFullscreen([[maybe_unused]] Adafruit_GFX& display, + [[maybe_unused]] int ypos) {} virtual void render(Adafruit_GFX& display, int ypos) = 0; - virtual bool onPress(void) = 0; + virtual PressAction onPress(void) = 0; protected: inline void setHeight(unsigned int _height) { @@ -55,9 +63,8 @@ public: : Widget(30), prevTicks(0) {} void render(Adafruit_GFX& display, int ypos) final; - bool onPress(void) final { - return false; - } + void renderFullscreen(Adafruit_GFX& display, int ypos) final; + PressAction onPress(void) final; }; class NotificationWidget : public Widget { @@ -75,9 +82,29 @@ public: } void render(Adafruit_GFX& display, int ypos) final; - bool onPress(void) final { - return true; + PressAction onPress(void) final { + return PressAction::Destroy; + } +}; + +class NoteWidget : public Widget { +private: + char *text; + +public: + NoteWidget(const char *t, unsigned int size) + : Widget(24) { + text = new char[size]; + for (unsigned int i = 0; i < size; i++) + text[i] = t[i]; } + ~NoteWidget(void) { + delete[] text; + } + + void render(Adafruit_GFX& display, int ypos) final; + void renderFullscreen(Adafruit_GFX& display, int ypos) final; + PressAction onPress(void) final; }; #endif // WIDGET_HPP_ -- cgit v1.2.3