summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Screens/ApplicationList.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-11-10 19:32:36 (GMT)
committerJF <jf@codingfield.com>2020-11-10 19:32:36 (GMT)
commit04abc91f157f5925ffa404728291a69893acf8cf (patch)
tree5c887c6d22ba8d901022ebae395a7b6c165d9dc0 /src/DisplayApp/Screens/ApplicationList.h
parent65ecb65b57bd55582c1aa1a5babd4d76df89e621 (diff)
parentf0e1f98823e41bfc2d9743fa8de70c882f26f93b (diff)
Merge branch 'develop' into master
Diffstat (limited to 'src/DisplayApp/Screens/ApplicationList.h')
-rw-r--r--src/DisplayApp/Screens/ApplicationList.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/DisplayApp/Screens/ApplicationList.h b/src/DisplayApp/Screens/ApplicationList.h
deleted file mode 100644
index a1e6811..0000000
--- a/src/DisplayApp/Screens/ApplicationList.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-
-#include <vector>
-#include <Components/Ble/NimbleController.h>
-#include "Screen.h"
-#include "Label.h"
-#include "ScreenList.h"
-#include "Gauge.h"
-#include "Meter.h"
-#include <functional>
-
-namespace Pinetime {
- namespace Applications {
- namespace Screens {
- class ApplicationList : public Screen {
- public:
- explicit ApplicationList(DisplayApp* app);
- ~ApplicationList() override;
- bool Refresh() override;
- bool OnButtonPushed() override;
- bool OnTouchEvent(TouchEvents event) override;
- private:
- bool running = true;
-
- ScreenList<2> screens;
- std::unique_ptr<Screen> CreateScreen1();
- std::unique_ptr<Screen> CreateScreen2();
- std::unique_ptr<Screen> CreateScreen3();
- };
- }
- }
-} \ No newline at end of file