aboutsummaryrefslogtreecommitdiffstats
path: root/source/sharp.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-03-25 16:16:18 -0400
committerClyne Sullivan <tullivan99@gmail.com>2019-03-25 16:16:18 -0400
commitf986c858e54d9be72020ae2d7319e70eab6de17d (patch)
tree907147e27f153a8de2738c14cb0bafed27cd9c75 /source/sharp.hpp
parent352e0df7d800b033ce24ad1022461f5d1908da93 (diff)
dynamic ui, widgets
Diffstat (limited to 'source/sharp.hpp')
-rw-r--r--source/sharp.hpp24
1 files changed, 8 insertions, 16 deletions
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 <functional>
+#include <vector>
-using RenderFunc = std::function<void(Adafruit_GFX&)>;
-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<Widget *> 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<class T, typename... Args>
+ inline static void addWidget(Args... args) {
+ widgets.emplace_back(new T(args...));
}
private: