2016-10-02 12:30:28 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-10-02 12:30:28 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-10-02 12:30:28 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 13:51:00 +03:00
|
|
|
#include "platform/platform_notifications_manager.h"
|
2019-12-29 15:41:45 +00:00
|
|
|
|
2016-10-02 12:30:28 +03:00
|
|
|
namespace Platform {
|
|
|
|
namespace Notifications {
|
|
|
|
|
2021-05-03 14:22:58 +04:00
|
|
|
class Manager : public Window::Notifications::NativeManager {
|
2019-12-29 15:41:45 +00:00
|
|
|
public:
|
2020-02-29 07:42:24 +04:00
|
|
|
Manager(not_null<Window::Notifications::System*> system);
|
2016-10-03 11:56:03 +03:00
|
|
|
~Manager();
|
|
|
|
|
|
|
|
protected:
|
2019-08-28 17:24:12 +03:00
|
|
|
void doShowNativeNotification(
|
2025-01-17 11:04:12 +04:00
|
|
|
NotificationInfo &&info,
|
|
|
|
Ui::PeerUserpicView &userpicView) override;
|
2016-10-03 11:56:03 +03:00
|
|
|
void doClearAllFast() override;
|
2021-10-15 17:57:27 +04:00
|
|
|
void doClearFromItem(not_null<HistoryItem*> item) override;
|
2022-10-13 00:23:14 +04:00
|
|
|
void doClearFromTopic(not_null<Data::ForumTopic*> topic) override;
|
2025-06-02 15:00:36 +04:00
|
|
|
void doClearFromSublist(not_null<Data::SavedSublist*> sublist) override;
|
2019-08-30 17:06:21 +03:00
|
|
|
void doClearFromHistory(not_null<History*> history) override;
|
2020-06-19 16:59:31 +04:00
|
|
|
void doClearFromSession(not_null<Main::Session*> session) override;
|
2021-04-28 11:20:39 +04:00
|
|
|
bool doSkipToast() const override;
|
2023-03-15 15:00:20 +04:00
|
|
|
void doMaybePlaySound(Fn<void()> playSound) override;
|
|
|
|
void doMaybeFlashBounce(Fn<void()> flashBounce) override;
|
2016-10-03 11:56:03 +03:00
|
|
|
|
|
|
|
private:
|
2024-03-09 11:15:37 +04:00
|
|
|
friend void Create(Window::Notifications::System *system);
|
2017-03-04 22:36:59 +03:00
|
|
|
class Private;
|
|
|
|
const std::unique_ptr<Private> _private;
|
2016-10-03 11:56:03 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-10-02 12:30:28 +03:00
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Platform
|