aboutsummaryrefslogtreecommitdiffstats
path: root/source/sharp.hpp
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-04-01 22:41:39 -0400
committertcsullivan <tullivan99@gmail.com>2019-04-01 22:41:39 -0400
commite064af7bf4d18e7397318d40b40deb1caa4a52ec (patch)
tree2f954458922bacd0c44eef1586691cfa211d7c59 /source/sharp.hpp
parentd1a1e7a053cb8840e9c90b380a005ddd2caf3eff (diff)
fullscreen widgets, limited scrolling
Diffstat (limited to 'source/sharp.hpp')
-rw-r--r--source/sharp.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/sharp.hpp b/source/sharp.hpp
index 155acec..e106348 100644
--- a/source/sharp.hpp
+++ b/source/sharp.hpp
@@ -38,8 +38,10 @@ private:
static TaskHandle_t taskHandle;
static std::vector<Widget *> widgets;
+ static int fullscreenWidget;
static int topY;
+ static int lowestY;
public:
static void begin(void);
@@ -47,6 +49,11 @@ public:
template<class T, typename... Args>
inline static void addWidget(Args... args) {
widgets.emplace_back(new T(args...));
+ lowestY = 0;
+ for (unsigned int i = 0; i < widgets.size() - 1; i++)
+ lowestY -= widgets[i]->getHeight() + 3;
+ if (lowestY != 0)
+ lowestY++;
}
inline static void setScroll(int scr = 0) {
@@ -55,6 +62,7 @@ public:
oldTopY = topY;
} else {
topY = minof(0, oldTopY + scr);
+ topY = maxof(lowestY, topY);
}
}