Files
MuditaOS/module-apps/application-desktop/models/ActiveNotificationsModel.hpp
Michał Kamoń f2ce6e946b [EGD-6707] Add single number message notification
This PR provides implementation of home screen notification for
`notSeen` messages received from a single number. The "single-number:
`notSeen` message notification distinct from "multiple-number"
notification with the following features:
 - displaying formatted contact name
 - `onActivated` it switches to respective thread window (instead of
 all thread window) in `ApplicationMessages`

 The PR also introduced some `ActiveNotificationsModel` code refactor
 to align the implementation with `Single Responsibility Principle`
2021-05-18 17:19:30 +02:00

22 lines
878 B
C++

// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include <notifications/NotificationsModel.hpp>
namespace gui
{
class ActiveNotificationsModel : public gui::NotificationsModel
{
private:
AppWindow *parent = nullptr;
public:
explicit ActiveNotificationsModel(AppWindow *parent);
void setParentBottomBar(const UTF8 &left, const UTF8 &center, const UTF8 &right);
auto create(const notifications::NotSeenSMSNotification *notification) -> NotificationListItem * override;
auto create(const notifications::NotSeenCallNotification *notification) -> NotificationListItem * override;
auto create(const notifications::TetheringNotification *notification) -> NotificationListItem * override;
};
} // namespace gui