diff options
| author | JF <jf@codingfield.com> | 2021-04-21 18:19:57 (GMT) |
|---|---|---|
| committer | Gitea <gitea@fake.local> | 2021-04-21 18:19:57 (GMT) |
| commit | a80e782f267cd2424d22da23d809c0c6a8ff8761 (patch) | |
| tree | ca2bdb100ea98d361296a61352679f63a507f955 /src/displayapp/screens/FlashLight.h | |
| parent | 24d3eea4fba05d774ace794eb8c9b21b8f2aa8c6 (diff) | |
| parent | fefb429fb4bf1020553900d9e514d3baa9040325 (diff) | |
Merge branch 'develop' of JF/PineTime into master
Diffstat (limited to 'src/displayapp/screens/FlashLight.h')
| -rw-r--r-- | src/displayapp/screens/FlashLight.h | 36 |
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 0000000..c62472a --- /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; + + }; + } + } +} |
