2016-10-02 09:30:28 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-10-02 09:30:28 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-10-02 09:30:28 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
#include "platform/platform_notifications_manager.h"
|
2016-10-02 09:30:28 +00:00
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
namespace Notifications {
|
|
|
|
|
2020-05-09 18:07:18 +00:00
|
|
|
#ifndef __MINGW32__
|
2020-06-19 12:59:31 +00:00
|
|
|
|
2016-10-03 08:56:03 +00:00
|
|
|
class Manager : public Window::Notifications::NativeManager {
|
2016-10-02 16:32:46 +00:00
|
|
|
public:
|
2017-03-04 19:36:59 +00:00
|
|
|
Manager(Window::Notifications::System *system);
|
2020-06-19 12:59:31 +00:00
|
|
|
~Manager();
|
2017-03-04 19:36:59 +00:00
|
|
|
|
|
|
|
bool init();
|
2020-06-19 12:59:31 +00:00
|
|
|
void clearNotification(NotificationId id);
|
2016-10-02 16:32:46 +00:00
|
|
|
|
|
|
|
protected:
|
2019-08-28 14:24:12 +00:00
|
|
|
void doShowNativeNotification(
|
|
|
|
not_null<PeerData*> peer,
|
2020-05-29 16:55:01 +00:00
|
|
|
std::shared_ptr<Data::CloudImageView> &userpicView,
|
2019-08-28 14:24:12 +00:00
|
|
|
MsgId msgId,
|
|
|
|
const QString &title,
|
|
|
|
const QString &subtitle,
|
|
|
|
const QString &msg,
|
|
|
|
bool hideNameAndPhoto,
|
|
|
|
bool hideReplyButton) override;
|
2016-10-02 16:32:46 +00:00
|
|
|
void doClearAllFast() override;
|
2019-08-30 14:06:21 +00:00
|
|
|
void doClearFromHistory(not_null<History*> history) override;
|
2020-06-19 12:59:31 +00:00
|
|
|
void doClearFromSession(not_null<Main::Session*> session) override;
|
|
|
|
void onBeforeNotificationActivated(NotificationId id) override;
|
2021-02-25 15:12:51 +00:00
|
|
|
void onAfterNotificationActivated(
|
|
|
|
NotificationId id,
|
|
|
|
not_null<Window::SessionController*> window) override;
|
2021-04-28 07:20:39 +00:00
|
|
|
bool doSkipAudio() const override;
|
|
|
|
bool doSkipToast() const override;
|
|
|
|
bool doSkipFlashBounce() const override;
|
2016-10-02 16:32:46 +00:00
|
|
|
|
|
|
|
private:
|
2017-03-04 19:36:59 +00:00
|
|
|
class Private;
|
|
|
|
const std::unique_ptr<Private> _private;
|
2016-10-02 16:32:46 +00:00
|
|
|
|
|
|
|
};
|
2020-05-09 18:07:18 +00:00
|
|
|
#endif // !__MINGW32__
|
2016-10-02 16:32:46 +00:00
|
|
|
|
2016-10-02 09:30:28 +00:00
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Platform
|