summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/FlashLight.h
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-04-09 20:43:39 +0200
committerGitHub <noreply@github.com>2021-04-09 20:43:39 +0200
commit17a37acaa81278cc8c782d84d994d4ca938ef006 (patch)
tree3c15890315a420417cd96b82103da80c84ed562d /src/displayapp/screens/FlashLight.h
parent04fc33e2d479161ec261f932b908dffbd73e227f (diff)
parent3685095da0d01f137692f80df2c267a8b90da715 (diff)
Merge pull request #258 from joaquimorg/BigRewrite
New settings menu and more...
Diffstat (limited to 'src/displayapp/screens/FlashLight.h')
-rw-r--r--src/displayapp/screens/FlashLight.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/displayapp/screens/FlashLight.h b/src/displayapp/screens/FlashLight.h
new file mode 100644
index 00000000..c62472ab
--- /dev/null
+++ b/src/displayapp/screens/FlashLight.h
@@ -0,0 +1,36 @@
+#pragma once
+
+#include <cstdint>
+#include "Screen.h"
+#include <lvgl/lvgl.h>
+#include "systemtask/SystemTask.h"
+#include "components/brightness/BrightnessController.h"
+
+
+namespace Pinetime {
+
+ namespace Applications {
+ namespace Screens {
+
+ class FlashLight : public Screen{
+ public:
+ FlashLight(DisplayApp* app, System::SystemTask &systemTask, Controllers::BrightnessController& brightness);
+ ~FlashLight() override;
+
+ bool Refresh() override;
+
+ bool OnTouchEvent(Pinetime::Applications::TouchEvents event) override;
+ void OnClickEvent(lv_obj_t *obj, lv_event_t event);
+
+ private:
+ Pinetime::System::SystemTask& systemTask;
+ Controllers::BrightnessController& brightness;
+
+ lv_obj_t* flashLight;
+ lv_obj_t* backgroundAction;
+ bool isOn = true;
+
+ };
+ }
+ }
+}