summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Screens/Tab.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-03-03 18:59:01 (GMT)
committerJF <jf@codingfield.com>2020-03-03 18:59:01 (GMT)
commit545636940f68108a361dda85e0e48a240909cf29 (patch)
treef471cf8f60976ab1fffce747db021e5706bf60c2 /src/DisplayApp/Screens/Tab.h
parent79b4f006be8732663706f1177e17e52829eb661f (diff)
parentd2f725ec9bc6d848906b83ca539d873223d74648 (diff)
Merge branch 'littlevgl'
# Conflicts: # src/DisplayApp/Screens/Clock.cpp # src/DisplayApp/Screens/Clock.h
Diffstat (limited to 'src/DisplayApp/Screens/Tab.h')
-rw-r--r--src/DisplayApp/Screens/Tab.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/DisplayApp/Screens/Tab.h b/src/DisplayApp/Screens/Tab.h
new file mode 100644
index 0000000..1af956f
--- /dev/null
+++ b/src/DisplayApp/Screens/Tab.h
@@ -0,0 +1,28 @@
+#pragma once
+
+#include <cstdint>
+#include <chrono>
+#include <Components/Gfx/Gfx.h>
+#include "Screen.h"
+#include <bits/unique_ptr.h>
+#include "../Fonts/lcdfont14.h"
+#include "../Fonts/lcdfont70.h"
+#include "../../Version.h"
+#include <lvgl/src/lv_core/lv_style.h>
+
+namespace Pinetime {
+ namespace Applications {
+ namespace Screens {
+ class Tab : public Screen {
+ public:
+ explicit Tab(DisplayApp* app, Components::Gfx& gfx);
+ ~Tab() override;
+ void Refresh(bool fullRefresh) override;
+ void OnObjectEvent(lv_obj_t* obj, lv_event_t event);
+
+ private:
+
+ };
+ }
+ }
+}