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"
|
2017-11-30 21:33:27 +04:00
|
|
|
#include "base/weak_ptr.h"
|
2016-10-02 12:30:28 +03:00
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
namespace Notifications {
|
|
|
|
|
2017-03-08 10:31:29 +03:00
|
|
|
bool SkipAudio();
|
|
|
|
bool SkipToast();
|
2016-11-06 21:45:50 +03:00
|
|
|
|
2017-11-30 21:33:27 +04:00
|
|
|
class Manager : public Window::Notifications::NativeManager, public base::has_weak_ptr {
|
2016-10-02 16:54:27 +03:00
|
|
|
public:
|
2017-03-04 22:36:59 +03:00
|
|
|
Manager(Window::Notifications::System *system);
|
2016-10-02 16:54:27 +03:00
|
|
|
~Manager();
|
|
|
|
|
2016-10-02 19:32:46 +03:00
|
|
|
protected:
|
2016-10-08 11:38:53 +03:00
|
|
|
void doShowNativeNotification(PeerData *peer, MsgId msgId, const QString &title, const QString &subtitle, const QString &msg, bool hideNameAndPhoto, bool hideReplyButton) override;
|
2016-10-02 16:54:27 +03:00
|
|
|
void doClearAllFast() override;
|
|
|
|
void doClearFromHistory(History *history) override;
|
|
|
|
|
2016-10-02 19:32:46 +03:00
|
|
|
private:
|
2017-03-04 22:36:59 +03:00
|
|
|
class Private;
|
|
|
|
const std::unique_ptr<Private> _private;
|
2016-10-02 16:54:27 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-10-02 12:30:28 +03:00
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Platform
|