diff options
| author | petter <39340152+petterhs@users.noreply.github.com> | 2021-01-27 12:45:06 (GMT) |
|---|---|---|
| committer | petter <39340152+petterhs@users.noreply.github.com> | 2021-01-27 16:07:46 (GMT) |
| commit | d4c31bcbbe2f8b6d2e6c45203193745f9cb2a41b (patch) | |
| tree | fb77f1c235e86233b5f6c6046dbfe646749467fa /src/displayapp/screens/Notifications.h | |
| parent | 523398d24a326a36784e9b28c9f3309a17df9363 (diff) | |
add mute button and functionality for call notification + new button icons
Diffstat (limited to 'src/displayapp/screens/Notifications.h')
| -rw-r--r-- | src/displayapp/screens/Notifications.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/displayapp/screens/Notifications.h b/src/displayapp/screens/Notifications.h index aafd3e3..c40e700 100644 --- a/src/displayapp/screens/Notifications.h +++ b/src/displayapp/screens/Notifications.h @@ -29,6 +29,7 @@ namespace Pinetime { ~NotificationItem(); bool Refresh() {return false;} void OnAcceptIncomingCall(lv_event_t event); + void OnMuteIncomingCall(lv_event_t event); void OnRejectIncomingCall(lv_event_t event); private: @@ -41,8 +42,10 @@ namespace Pinetime { lv_obj_t* l1; lv_obj_t* l2; lv_obj_t* bt_accept; + lv_obj_t* bt_mute; lv_obj_t* bt_reject; lv_obj_t* label_accept; + lv_obj_t* label_mute; lv_obj_t* label_reject; lv_obj_t* bottomPlaceholder; Modes mode; |
