mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-06 04:49:04 -05:00
* Added notification showing on the main screen if the battery has reached too high temperature to continue charging. * Code cleanups.
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "NotificationData.hpp"
|
|
#include "NotificationsConfiguration.hpp"
|
|
#include "policies/NotificationsListPolicy.hpp"
|
|
#include <PhoneModes/Common.hpp>
|
|
|
|
namespace sys
|
|
{
|
|
class Service;
|
|
}
|
|
|
|
class NotificationsRecord;
|
|
|
|
namespace db
|
|
{
|
|
class NotificationMessage;
|
|
namespace query::notifications
|
|
{
|
|
class GetAllResult;
|
|
}
|
|
} // namespace db
|
|
|
|
namespace notifications
|
|
{
|
|
class NotificationProvider
|
|
{
|
|
template <NotificationType type, typename T>
|
|
bool handleNotSeenWithCounter(NotificationsRecord &&record);
|
|
|
|
public:
|
|
NotificationProvider(sys::Service *ownerService, NotificationsConfiguration ¬ificationConfig);
|
|
|
|
void handle(locks::PhoneLockTimeUpdate *msg);
|
|
void handle(db::query::notifications::GetAllResult *msg);
|
|
void handle(db::NotificationMessage *msg);
|
|
void handle(sys::phone_modes::Tethering tethering);
|
|
void handleSnooze(unsigned snoozeCount);
|
|
void handleBatteryTooHot(bool tooHot, bool allowUpdate = true);
|
|
void requestNotSeenNotifications();
|
|
void send(NotificationOnReceiveUpdate updateOnReceive = NotificationOnReceiveUpdate::FullRebuild);
|
|
|
|
using Notifications = std::map<NotificationType, std::shared_ptr<Notification>>;
|
|
|
|
private:
|
|
sys::Service *ownerService;
|
|
NotificationsConfiguration ¬ificationConfig;
|
|
NotificationsListPolicy listPolicy;
|
|
Notifications notifications;
|
|
};
|
|
} // namespace notifications
|