diff options
| author | Jean-François Milants <jf@codingfield.com> | 2021-02-23 20:25:43 (GMT) |
|---|---|---|
| committer | Jean-François Milants <jf@codingfield.com> | 2021-02-23 20:25:43 (GMT) |
| commit | 67c545b1fbd368b99b111a1822fe8da815468e76 (patch) | |
| tree | 0bcb047f3e9d5c41c6d79b4dac6cbcdd3929136b /src/displayapp/screens/Modal.h | |
| parent | 324c7dab326ea23a6c8502bbb8c6e9b9d87a839f (diff) | |
| parent | b11b20b0ac5c0adfbd1397cf42c322c873a736a8 (diff) | |
Merge branch 'joaquimorg-LVGL7' into develop
Diffstat (limited to 'src/displayapp/screens/Modal.h')
| -rw-r--r-- | src/displayapp/screens/Modal.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/displayapp/screens/Modal.h b/src/displayapp/screens/Modal.h deleted file mode 100644 index de7575a..0000000 --- a/src/displayapp/screens/Modal.h +++ /dev/null @@ -1,45 +0,0 @@ -#pragma once - -#include "Screen.h" -#include <lvgl/src/lv_core/lv_style.h> -#include <lvgl/src/lv_core/lv_obj.h> -#include <components/ble/NotificationManager.h> -#include <components/ble/AlertNotificationService.h> - -namespace Pinetime { - namespace Applications { - namespace Screens { - - class Modal : public Screen{ - public: - Modal(DisplayApp* app); - ~Modal() override; - - - void NewNotification(Pinetime::Controllers::NotificationManager ¬ificationManager, Pinetime::Controllers::AlertNotificationService* alertService); - void Show(const char* msg, const char *btns[]); - void Hide(); - - bool Refresh() override; - bool OnButtonPushed() override; - - static void mbox_event_cb(lv_obj_t *obj, lv_event_t evt); - private: - void OnEvent(lv_obj_t *event_obj, lv_event_t evt); - - Pinetime::Controllers::AlertNotificationService* alertNotificationService = nullptr; - - std::string positiveButton; - std::string negativeButton; - - lv_style_t modal_style; - lv_obj_t *obj; - lv_obj_t *mbox; - lv_obj_t *info; - bool running = true; - bool isVisible = false; - - }; - } - } -} |
