Author: Tomas Groth <second@tgc.dk>
Put common code into DismissToBlack helper function
src/displayapp/screens/Notifications.cpp | 28 ++++++++++++------------- src/displayapp/screens/Notifications.h | 1
diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp index 9d126a16092cdca598fdc6903d777e02f4d1941d..9fa07993ac1af8e3f6d730eb3ec659a9bf025f18 100644 --- a/src/displayapp/screens/Notifications.cpp +++ b/src/displayapp/screens/Notifications.cpp @@ -129,20 +129,24 @@ timeoutLine = nullptr; } } -void Notifications::OnPreviewDismiss() { - notificationManager.Dismiss(currentId); - if (timeoutLine != nullptr) { - lv_obj_del(timeoutLine); - timeoutLine = nullptr; - } +void Notifications::DismissToBlack() +{ currentItem.reset(nullptr); - dismissingNotification = true; - afterDismissNextMessageFromAbove = true; // show next message coming from below app->SetFullRefresh(DisplayApp::FullRefreshDirections::RightAnim); // create black transition screen to let the notification dismiss to blackness lv_obj_t* blackBox = lv_obj_create(lv_scr_act(), nullptr); lv_obj_set_size(blackBox, LV_HOR_RES, LV_VER_RES); lv_obj_set_style_local_bg_color(blackBox, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); + dismissingNotification = true; +} + +void Notifications::OnPreviewDismiss() { + notificationManager.Dismiss(currentId); + if (timeoutLine != nullptr) { + lv_obj_del(timeoutLine); + timeoutLine = nullptr; + } + DismissToBlack(); } bool Notifications::OnTouchEvent(Pinetime::Applications::TouchEvents event) { @@ -172,13 +176,7 @@ currentId = nextMessage.id; } else { // don't update id, won't be found be refresh and try to load latest message or no message box } - currentItem.reset(nullptr); - app->SetFullRefresh(DisplayApp::FullRefreshDirections::RightAnim); - // create black transition screen to let the notification dismiss to blackness - lv_obj_t* blackBox = lv_obj_create(lv_scr_act(), nullptr); - lv_obj_set_size(blackBox, LV_HOR_RES, LV_VER_RES); - lv_obj_set_style_local_bg_color(blackBox, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); - dismissingNotification = true; + DismissToBlack(); return true; } return false; diff --git a/src/displayapp/screens/Notifications.h b/src/displayapp/screens/Notifications.h index 586445531679bf078bb28bdf355a708c66f22a53..bdaac7bb14b73b1ca8ffd2c0337cb23ca5156b88 100644 --- a/src/displayapp/screens/Notifications.h +++ b/src/displayapp/screens/Notifications.h @@ -29,6 +29,7 @@ ~Notifications() override; void Refresh() override; bool OnTouchEvent(Pinetime::Applications::TouchEvents event) override; + void DismissToBlack(); void OnPreviewInteraction(); void OnPreviewDismiss();