2017-03-23 19:48:22 +00:00
|
|
|
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com> and Jason Poon
|
|
|
|
// <jason.poon@microsoft.com>. All rights reserved.
|
|
|
|
// Copyright (c) 2015 Ryan McShane <rmcshane@bandwidth.com> and Brandon Smith
|
|
|
|
// <bsmith@bandwidth.com>
|
|
|
|
// Thanks to both of those folks mentioned above who first thought up a bunch of
|
|
|
|
// this code
|
2015-11-08 03:41:29 +00:00
|
|
|
// and released it as MIT to the world.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_NOTIFICATIONS_WIN_WINDOWS_TOAST_NOTIFICATION_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_NOTIFICATIONS_WIN_WINDOWS_TOAST_NOTIFICATION_H_
|
2015-11-08 03:41:29 +00:00
|
|
|
|
2015-11-04 18:13:52 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <windows.ui.notifications.h>
|
|
|
|
#include <wrl/implements.h>
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
2015-11-04 18:13:52 +00:00
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/notifications/notification.h"
|
2015-11-10 10:27:18 +00:00
|
|
|
|
2017-03-23 19:48:22 +00:00
|
|
|
using Microsoft::WRL::ClassicCom;
|
|
|
|
using Microsoft::WRL::ComPtr;
|
|
|
|
using Microsoft::WRL::Make;
|
|
|
|
using Microsoft::WRL::RuntimeClass;
|
|
|
|
using Microsoft::WRL::RuntimeClassFlags;
|
2015-11-04 18:13:52 +00:00
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
namespace electron {
|
2015-11-04 18:13:52 +00:00
|
|
|
|
2018-10-24 10:49:10 +00:00
|
|
|
class ScopedHString;
|
|
|
|
|
2015-11-10 10:27:18 +00:00
|
|
|
using DesktopToastActivatedEventHandler =
|
2017-03-23 19:48:22 +00:00
|
|
|
ABI::Windows::Foundation::ITypedEventHandler<
|
|
|
|
ABI::Windows::UI::Notifications::ToastNotification*,
|
|
|
|
IInspectable*>;
|
2015-11-10 10:27:18 +00:00
|
|
|
using DesktopToastDismissedEventHandler =
|
2017-03-23 19:48:22 +00:00
|
|
|
ABI::Windows::Foundation::ITypedEventHandler<
|
|
|
|
ABI::Windows::UI::Notifications::ToastNotification*,
|
|
|
|
ABI::Windows::UI::Notifications::ToastDismissedEventArgs*>;
|
2015-11-10 19:39:24 +00:00
|
|
|
using DesktopToastFailedEventHandler =
|
2017-03-23 19:48:22 +00:00
|
|
|
ABI::Windows::Foundation::ITypedEventHandler<
|
|
|
|
ABI::Windows::UI::Notifications::ToastNotification*,
|
|
|
|
ABI::Windows::UI::Notifications::ToastFailedEventArgs*>;
|
2015-11-10 10:27:18 +00:00
|
|
|
|
2015-12-25 03:05:48 +00:00
|
|
|
class WindowsToastNotification : public Notification {
|
2015-11-10 10:27:18 +00:00
|
|
|
public:
|
2015-12-25 03:05:48 +00:00
|
|
|
// Should only be called by NotificationPresenterWin.
|
2015-11-24 06:40:58 +00:00
|
|
|
static bool Initialize();
|
|
|
|
|
2015-12-25 03:05:48 +00:00
|
|
|
WindowsToastNotification(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter);
|
2018-06-21 23:45:45 +00:00
|
|
|
~WindowsToastNotification() override;
|
2015-11-10 10:27:18 +00:00
|
|
|
|
2015-12-25 03:05:48 +00:00
|
|
|
protected:
|
|
|
|
// Notification:
|
2017-06-24 11:03:27 +00:00
|
|
|
void Show(const NotificationOptions& options) override;
|
2015-12-25 03:05:48 +00:00
|
|
|
void Dismiss() override;
|
2023-10-17 23:33:00 +00:00
|
|
|
void Remove() override;
|
2015-11-10 10:27:18 +00:00
|
|
|
|
|
|
|
private:
|
2015-11-10 12:23:08 +00:00
|
|
|
friend class ToastEventHandler;
|
|
|
|
|
2020-09-29 19:20:10 +00:00
|
|
|
HRESULT ShowInternal(const NotificationOptions& options);
|
|
|
|
HRESULT GetToastXml(
|
2017-03-23 19:48:22 +00:00
|
|
|
ABI::Windows::UI::Notifications::IToastNotificationManagerStatics*
|
|
|
|
toastManager,
|
2021-07-12 04:33:26 +00:00
|
|
|
const std::u16string& title,
|
|
|
|
const std::u16string& msg,
|
2017-03-23 19:48:22 +00:00
|
|
|
const std::wstring& icon_path,
|
2021-07-12 04:33:26 +00:00
|
|
|
const std::u16string& timeout_type,
|
2017-03-23 19:48:22 +00:00
|
|
|
const bool silent,
|
2020-10-27 15:18:36 +00:00
|
|
|
ABI::Windows::Data::Xml::Dom::IXmlDocument** toast_xml);
|
2020-09-29 19:20:10 +00:00
|
|
|
HRESULT SetXmlAudioSilent(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc);
|
|
|
|
HRESULT SetXmlScenarioReminder(
|
|
|
|
ABI::Windows::Data::Xml::Dom::IXmlDocument* doc);
|
|
|
|
HRESULT SetXmlText(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc,
|
2021-07-12 04:33:26 +00:00
|
|
|
const std::u16string& text);
|
2020-09-29 19:20:10 +00:00
|
|
|
HRESULT SetXmlText(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc,
|
2021-07-12 04:33:26 +00:00
|
|
|
const std::u16string& title,
|
|
|
|
const std::u16string& body);
|
2020-09-29 19:20:10 +00:00
|
|
|
HRESULT SetXmlImage(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc,
|
|
|
|
const std::wstring& icon_path);
|
2020-10-27 15:18:36 +00:00
|
|
|
HRESULT GetTextNodeList(
|
|
|
|
ScopedHString* tag,
|
|
|
|
ABI::Windows::Data::Xml::Dom::IXmlDocument* doc,
|
|
|
|
ABI::Windows::Data::Xml::Dom::IXmlNodeList** node_list,
|
|
|
|
uint32_t req_length);
|
2020-09-29 19:20:10 +00:00
|
|
|
HRESULT AppendTextToXml(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc,
|
|
|
|
ABI::Windows::Data::Xml::Dom::IXmlNode* node,
|
2021-07-12 04:33:26 +00:00
|
|
|
const std::u16string& text);
|
2020-09-29 19:20:10 +00:00
|
|
|
HRESULT XmlDocumentFromString(
|
|
|
|
const wchar_t* xmlString,
|
|
|
|
ABI::Windows::Data::Xml::Dom::IXmlDocument** doc);
|
|
|
|
HRESULT SetupCallbacks(
|
2017-03-23 19:48:22 +00:00
|
|
|
ABI::Windows::UI::Notifications::IToastNotification* toast);
|
|
|
|
bool RemoveCallbacks(
|
|
|
|
ABI::Windows::UI::Notifications::IToastNotification* toast);
|
2015-11-10 12:23:08 +00:00
|
|
|
|
2017-03-23 19:48:22 +00:00
|
|
|
static ComPtr<
|
|
|
|
ABI::Windows::UI::Notifications::IToastNotificationManagerStatics>
|
|
|
|
toast_manager_;
|
|
|
|
static ComPtr<ABI::Windows::UI::Notifications::IToastNotifier>
|
|
|
|
toast_notifier_;
|
2015-11-24 06:40:58 +00:00
|
|
|
|
2015-12-25 03:05:48 +00:00
|
|
|
EventRegistrationToken activated_token_;
|
|
|
|
EventRegistrationToken dismissed_token_;
|
|
|
|
EventRegistrationToken failed_token_;
|
|
|
|
|
2015-11-10 12:23:08 +00:00
|
|
|
ComPtr<ToastEventHandler> event_handler_;
|
2017-03-23 19:48:22 +00:00
|
|
|
ComPtr<ABI::Windows::UI::Notifications::IToastNotification>
|
|
|
|
toast_notification_;
|
2015-11-10 10:27:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ToastEventHandler : public RuntimeClass<RuntimeClassFlags<ClassicCom>,
|
|
|
|
DesktopToastActivatedEventHandler,
|
2015-11-10 19:39:24 +00:00
|
|
|
DesktopToastDismissedEventHandler,
|
|
|
|
DesktopToastFailedEventHandler> {
|
2015-11-10 10:27:18 +00:00
|
|
|
public:
|
2017-03-23 19:48:22 +00:00
|
|
|
explicit ToastEventHandler(Notification* notification);
|
2018-06-21 23:45:45 +00:00
|
|
|
~ToastEventHandler() override;
|
2015-11-10 10:27:18 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
ToastEventHandler(const ToastEventHandler&) = delete;
|
|
|
|
ToastEventHandler& operator=(const ToastEventHandler&) = delete;
|
|
|
|
|
2017-03-23 19:48:22 +00:00
|
|
|
IFACEMETHODIMP Invoke(
|
|
|
|
ABI::Windows::UI::Notifications::IToastNotification* sender,
|
2019-06-04 03:44:12 +00:00
|
|
|
IInspectable* args) override;
|
2017-03-23 19:48:22 +00:00
|
|
|
IFACEMETHODIMP Invoke(
|
|
|
|
ABI::Windows::UI::Notifications::IToastNotification* sender,
|
2019-06-04 03:44:12 +00:00
|
|
|
ABI::Windows::UI::Notifications::IToastDismissedEventArgs* e) override;
|
2017-03-23 19:48:22 +00:00
|
|
|
IFACEMETHODIMP Invoke(
|
|
|
|
ABI::Windows::UI::Notifications::IToastNotification* sender,
|
2019-06-04 03:44:12 +00:00
|
|
|
ABI::Windows::UI::Notifications::IToastFailedEventArgs* e) override;
|
2015-11-10 10:27:18 +00:00
|
|
|
|
|
|
|
private:
|
2016-04-15 07:14:13 +00:00
|
|
|
base::WeakPtr<Notification> notification_; // weak ref.
|
2015-11-10 10:27:18 +00:00
|
|
|
};
|
2015-11-04 18:13:52 +00:00
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
} // namespace electron
|
2015-11-04 18:13:52 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_NOTIFICATIONS_WIN_WINDOWS_TOAST_NOTIFICATION_H_
|