From f986c858e54d9be72020ae2d7319e70eab6de17d Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 25 Mar 2019 16:16:18 -0400 Subject: dynamic ui, widgets --- source/sharp.hpp | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) (limited to 'source/sharp.hpp') diff --git a/source/sharp.hpp b/source/sharp.hpp index a122e5d..2775711 100644 --- a/source/sharp.hpp +++ b/source/sharp.hpp @@ -2,33 +2,25 @@ #define SHARP_HPP_ #include "sharp/Adafruit_SharpMem.h" +#include "widget.hpp" -#include +#include -using RenderFunc = std::function; -using Display = Adafruit_GFX; +#define BLACK 0 +#define WHITE 1 class Sharp { private: static Adafruit_SharpMem display; static TaskHandle_t taskHandle; - static bool holdRendering; - - static RenderFunc currentScreen; + static std::vector widgets; public: static void begin(void); - inline static void pause(void) { - holdRendering = true; - } - - inline static void unpause(void) { - holdRendering = false; - } - - inline static void setScreen(const RenderFunc& rf) { - currentScreen = rf; + template + inline static void addWidget(Args... args) { + widgets.emplace_back(new T(args...)); } private: -- cgit v1.2.3