Windows Toasts: Hide(), Runtime Check, Header Cleanup
This commit is contained in:
parent
86ea0759d8
commit
8dbeca8c7f
4 changed files with 94 additions and 114 deletions
|
@ -1,30 +1,15 @@
|
||||||
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||||||
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com> and Jason Poon <jpoon@microsoft.com>. All rights reserved.
|
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com> and Jason Poon <jason.poon@microsoft.com>. All rights reserved.
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE-CHROMIUM file.
|
// found in the LICENSE-CHROMIUM file.
|
||||||
|
|
||||||
#include "browser/win/notification_presenter_win.h"
|
#include "browser/win/notification_presenter_win.h"
|
||||||
#include "base/strings/string_util.h"
|
|
||||||
#include "base/win/windows_version.h"
|
#include "base/win/windows_version.h"
|
||||||
#include "content/public/browser/desktop_notification_delegate.h"
|
#include "content/public/browser/desktop_notification_delegate.h"
|
||||||
#include "content/public/common/platform_notification_data.h"
|
#include "content/public/common/platform_notification_data.h"
|
||||||
#include "third_party/skia/include/core/SkBitmap.h"
|
#include "third_party/skia/include/core/SkBitmap.h"
|
||||||
#include "common/application_info.h"
|
#include "common/application_info.h"
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
// Windows Header
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
|
|
||||||
#include <windows.h>
|
|
||||||
#include <windows.ui.notifications.h>
|
|
||||||
#include <wrl/client.h>
|
|
||||||
#include <wrl/implements.h>
|
|
||||||
#include <winstring.h>
|
|
||||||
#include "windows_toast_notification.h"
|
|
||||||
|
|
||||||
#pragma comment(lib, "runtimeobject.lib")
|
#pragma comment(lib, "runtimeobject.lib")
|
||||||
#pragma comment(lib, "Crypt32.lib")
|
#pragma comment(lib, "Crypt32.lib")
|
||||||
|
|
||||||
|
@ -42,6 +27,7 @@ NotificationPresenter* NotificationPresenter::Create() {
|
||||||
}
|
}
|
||||||
|
|
||||||
NotificationPresenterWin::NotificationPresenterWin() {
|
NotificationPresenterWin::NotificationPresenterWin() {
|
||||||
|
m_lastNotification = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
NotificationPresenterWin::~NotificationPresenterWin() {
|
NotificationPresenterWin::~NotificationPresenterWin() {
|
||||||
|
@ -58,16 +44,24 @@ void NotificationPresenterWin::ShowNotification(
|
||||||
std::string iconPath = data.icon.spec();
|
std::string iconPath = data.icon.spec();
|
||||||
std::string appName = GetApplicationName();
|
std::string appName = GetApplicationName();
|
||||||
|
|
||||||
WinToasts::WindowsToastNotification* wtn = new WinToasts::WindowsToastNotification(appName.c_str(), delegate_ptr.release());
|
// toast notification supported in version >= Windows 8
|
||||||
wtn->ShowNotification(title.c_str(), body.c_str(), iconPath);
|
// for prior versions, use Tray.displayBalloon
|
||||||
|
if (base::win::GetVersion() >= base::win::VERSION_WIN8) {
|
||||||
|
wtn = new WindowsToastNotification(appName.c_str(), delegate_ptr.release());
|
||||||
|
wtn->ShowNotification(title.c_str(), body.c_str(), iconPath, m_lastNotification);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cancel_callback) {
|
||||||
|
*cancel_callback = base::Bind(
|
||||||
|
&NotificationPresenterWin::RemoveNotification,
|
||||||
|
base::Unretained(this));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void NotificationPresenterWin::CancelNotification() {
|
void NotificationPresenterWin::RemoveNotification() {
|
||||||
// No can do.
|
if (m_lastNotification != nullptr && wtn != NULL) {
|
||||||
}
|
wtn->DismissNotification(m_lastNotification);
|
||||||
|
}
|
||||||
void NotificationPresenterWin::DeleteNotification() {
|
|
||||||
// No can do.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace brightray
|
} // namespace brightray
|
|
@ -1,5 +1,5 @@
|
||||||
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||||||
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com> and Jason Poon <jpoon@microsoft.com>. All rights reserved.
|
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com> and Jason Poon <jason.poon@microsoft.com>. All rights reserved.
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE-CHROMIUM file.
|
// found in the LICENSE-CHROMIUM file.
|
||||||
|
|
||||||
|
@ -19,8 +19,12 @@
|
||||||
|
|
||||||
#include "base/compiler_specific.h"
|
#include "base/compiler_specific.h"
|
||||||
#include "browser/notification_presenter.h"
|
#include "browser/notification_presenter.h"
|
||||||
|
#include "windows_toast_notification.h"
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include <windows.ui.notifications.h>
|
||||||
|
#include <wrl/client.h>
|
||||||
|
#include <wrl/implements.h>
|
||||||
|
|
||||||
namespace brightray {
|
namespace brightray {
|
||||||
|
|
||||||
|
@ -29,7 +33,6 @@ class NotificationPresenterWin : public NotificationPresenter {
|
||||||
NotificationPresenterWin();
|
NotificationPresenterWin();
|
||||||
~NotificationPresenterWin();
|
~NotificationPresenterWin();
|
||||||
|
|
||||||
// NotificationPresenter:
|
|
||||||
void ShowNotification(
|
void ShowNotification(
|
||||||
const content::PlatformNotificationData&,
|
const content::PlatformNotificationData&,
|
||||||
const SkBitmap& icon,
|
const SkBitmap& icon,
|
||||||
|
@ -39,11 +42,10 @@ class NotificationPresenterWin : public NotificationPresenter {
|
||||||
void RemoveNotification();
|
void RemoveNotification();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
WinToasts::WindowsToastNotification* wtn;
|
||||||
void CancelNotification();
|
Microsoft::WRL::ComPtr<ABI::Windows::UI::Notifications::IToastNotification> m_lastNotification;
|
||||||
void DeleteNotification();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace brightray
|
} // namespace
|
||||||
|
|
||||||
#endif
|
#endif // BRIGHTRAY_BROWSER_NOTIFICATION_PRESENTER_WIN_H_
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com> and Jason Poon <jpoon@microsoft.com>. All rights reserved.
|
// 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>
|
// 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
|
// Thanks to both of those folks mentioned above who first thought up a bunch of this code
|
||||||
// and released it as MIT to the world.
|
// and released it as MIT to the world.
|
||||||
|
@ -6,26 +6,41 @@
|
||||||
#include "windows_toast_notification.h"
|
#include "windows_toast_notification.h"
|
||||||
#include "content/public/browser/desktop_notification_delegate.h"
|
#include "content/public/browser/desktop_notification_delegate.h"
|
||||||
|
|
||||||
#include <Psapi.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <ShObjidl.h>
|
|
||||||
#include <propvarutil.h>
|
|
||||||
#include <propkey.h>
|
|
||||||
#include <wincrypt.h>
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
using namespace WinToasts;
|
using namespace WinToasts;
|
||||||
using namespace Windows::Foundation;
|
using namespace Microsoft::WRL;
|
||||||
|
using namespace ABI::Windows::UI::Notifications;
|
||||||
|
using namespace ABI::Windows::Data::Xml::Dom;
|
||||||
|
|
||||||
#define BREAK_IF_BAD(hr) if(!SUCCEEDED(hr)) break;
|
#define BREAK_IF_BAD(hr) if(!SUCCEEDED(hr)) break;
|
||||||
|
|
||||||
char WindowsToastNotification::s_appName[MAX_PATH] = {};
|
|
||||||
|
|
||||||
namespace WinToasts {
|
namespace WinToasts {
|
||||||
|
|
||||||
|
// Initialize Windows Runtime
|
||||||
|
static HRESULT init = Windows::Foundation::Initialize(RO_INIT_MULTITHREADED);
|
||||||
|
|
||||||
WindowsToastNotification::WindowsToastNotification(const char* appName, content::DesktopNotificationDelegate* delegate)
|
WindowsToastNotification::WindowsToastNotification(const char* appName, content::DesktopNotificationDelegate* delegate)
|
||||||
{
|
{
|
||||||
sprintf_s(s_appName, ARRAYSIZE(s_appName), "%s", appName);
|
HSTRING toastNotifMgrStr = NULL;
|
||||||
|
HSTRING appId = NULL;
|
||||||
|
|
||||||
|
HRESULT hr = CreateHString(RuntimeClass_Windows_UI_Notifications_ToastNotificationManager, &toastNotifMgrStr);
|
||||||
|
|
||||||
|
hr = Windows::Foundation::GetActivationFactory(toastNotifMgrStr, &m_toastManager);
|
||||||
|
|
||||||
|
WCHAR wAppName[MAX_PATH];
|
||||||
|
swprintf(wAppName, ARRAYSIZE(wAppName), L"%S", appName);
|
||||||
|
hr = CreateHString(wAppName, &appId);
|
||||||
|
|
||||||
|
m_toastManager->CreateToastNotifierWithId(appId, &m_toastNotifier);
|
||||||
|
|
||||||
|
if (toastNotifMgrStr != NULL) {
|
||||||
|
WindowsDeleteString(toastNotifMgrStr);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (appId != NULL) {
|
||||||
|
WindowsDeleteString(appId);
|
||||||
|
}
|
||||||
|
|
||||||
m_eventHandler = NULL;
|
m_eventHandler = NULL;
|
||||||
n_delegate = delegate;
|
n_delegate = delegate;
|
||||||
}
|
}
|
||||||
|
@ -41,35 +56,14 @@ WindowsToastNotification::~WindowsToastNotification()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void WindowsToastNotification::ShowNotification(const WCHAR* title, const WCHAR* msg, std::string iconPath)
|
void WindowsToastNotification::ShowNotification(const WCHAR* title, const WCHAR* msg, std::string iconPath, ComPtr<IToastNotification>& toast)
|
||||||
{
|
{
|
||||||
// Init using WRL
|
|
||||||
Windows::Foundation::Initialize(RO_INIT_MULTITHREADED);
|
|
||||||
|
|
||||||
HSTRING toastNotifMgrStr = NULL;
|
|
||||||
HSTRING appId = NULL;
|
|
||||||
HSTRING toastNotifStr = NULL;
|
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
HSTRING toastNotifStr = NULL;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
hr = CreateHString(RuntimeClass_Windows_UI_Notifications_ToastNotificationManager, &toastNotifMgrStr);
|
|
||||||
BREAK_IF_BAD(hr);
|
|
||||||
|
|
||||||
ComPtr<IToastNotificationManagerStatics> toastMgr;
|
|
||||||
hr = Windows::Foundation::GetActivationFactory(toastNotifMgrStr, &toastMgr);
|
|
||||||
BREAK_IF_BAD(hr);
|
|
||||||
|
|
||||||
ComPtr<IXmlDocument> toastXml;
|
ComPtr<IXmlDocument> toastXml;
|
||||||
hr = GetToastXml(toastMgr.Get(), title, msg, iconPath, &toastXml);
|
hr = GetToastXml(m_toastManager.Get(), title, msg, iconPath, &toastXml);
|
||||||
BREAK_IF_BAD(hr);
|
|
||||||
|
|
||||||
WCHAR wAppName[MAX_PATH];
|
|
||||||
swprintf(wAppName, ARRAYSIZE(wAppName), L"%S", s_appName);
|
|
||||||
hr = CreateHString(wAppName, &appId);
|
|
||||||
BREAK_IF_BAD(hr);
|
|
||||||
|
|
||||||
ComPtr<IToastNotifier> notifier;
|
|
||||||
toastMgr->CreateToastNotifierWithId(appId, ¬ifier);
|
|
||||||
BREAK_IF_BAD(hr);
|
BREAK_IF_BAD(hr);
|
||||||
|
|
||||||
hr = CreateHString(RuntimeClass_Windows_UI_Notifications_ToastNotification, &toastNotifStr);
|
hr = CreateHString(RuntimeClass_Windows_UI_Notifications_ToastNotification, &toastNotifStr);
|
||||||
|
@ -79,34 +73,26 @@ void WindowsToastNotification::ShowNotification(const WCHAR* title, const WCHAR*
|
||||||
hr = Windows::Foundation::GetActivationFactory(toastNotifStr, &toastFactory);
|
hr = Windows::Foundation::GetActivationFactory(toastNotifStr, &toastFactory);
|
||||||
BREAK_IF_BAD(hr);
|
BREAK_IF_BAD(hr);
|
||||||
|
|
||||||
ComPtr<IToastNotification> toast;
|
|
||||||
hr = toastFactory->CreateToastNotification(toastXml.Get(), &toast);
|
hr = toastFactory->CreateToastNotification(toastXml.Get(), &toast);
|
||||||
BREAK_IF_BAD(hr);
|
BREAK_IF_BAD(hr);
|
||||||
|
|
||||||
hr = SetupCallbacks(toast.Get());
|
hr = SetupCallbacks(toast.Get());
|
||||||
BREAK_IF_BAD(hr);
|
BREAK_IF_BAD(hr);
|
||||||
|
|
||||||
hr = notifier->Show(toast.Get());
|
hr = m_toastNotifier->Show(toast.Get());
|
||||||
BREAK_IF_BAD(hr);
|
BREAK_IF_BAD(hr);
|
||||||
|
|
||||||
n_delegate->NotificationDisplayed();
|
n_delegate->NotificationDisplayed();
|
||||||
} while (FALSE);
|
} while (FALSE);
|
||||||
|
|
||||||
if (toastNotifMgrStr != NULL) {
|
|
||||||
WindowsDeleteString(toastNotifMgrStr);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (appId != NULL) {
|
|
||||||
WindowsDeleteString(appId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (toastNotifStr != NULL) {
|
if (toastNotifStr != NULL) {
|
||||||
WindowsDeleteString(toastNotifStr);
|
WindowsDeleteString(toastNotifStr);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!SUCCEEDED(hr)) {
|
void WindowsToastNotification::DismissNotification(ComPtr<IToastNotification> toast)
|
||||||
delete this;
|
{
|
||||||
}
|
m_toastNotifier->Hide(toast.Get());
|
||||||
}
|
}
|
||||||
|
|
||||||
void WindowsToastNotification::NotificationClicked()
|
void WindowsToastNotification::NotificationClicked()
|
||||||
|
@ -120,7 +106,7 @@ void WindowsToastNotification::NotificationDismissed()
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT WindowsToastNotification::GetToastXml(
|
HRESULT WindowsToastNotification::GetToastXml(
|
||||||
IToastNotificationManagerStatics* toastMgr,
|
IToastNotificationManagerStatics* toastManager,
|
||||||
const WCHAR* title,
|
const WCHAR* title,
|
||||||
const WCHAR* msg,
|
const WCHAR* msg,
|
||||||
std::string iconPath,
|
std::string iconPath,
|
||||||
|
@ -131,7 +117,7 @@ HRESULT WindowsToastNotification::GetToastXml(
|
||||||
if (title == NULL || msg == NULL) {
|
if (title == NULL || msg == NULL) {
|
||||||
// Single line toast
|
// Single line toast
|
||||||
templateType = iconPath.length() == 0 ? ToastTemplateType_ToastText01 : ToastTemplateType_ToastImageAndText01;
|
templateType = iconPath.length() == 0 ? ToastTemplateType_ToastText01 : ToastTemplateType_ToastImageAndText01;
|
||||||
hr = toastMgr->GetTemplateContent(templateType, toastXml);
|
hr = m_toastManager->GetTemplateContent(templateType, toastXml);
|
||||||
if (SUCCEEDED(hr)) {
|
if (SUCCEEDED(hr)) {
|
||||||
const WCHAR* text = title != NULL ? title : msg;
|
const WCHAR* text = title != NULL ? title : msg;
|
||||||
hr = SetXmlText(*toastXml, text);
|
hr = SetXmlText(*toastXml, text);
|
||||||
|
@ -139,7 +125,7 @@ HRESULT WindowsToastNotification::GetToastXml(
|
||||||
} else {
|
} else {
|
||||||
// Title and body toast
|
// Title and body toast
|
||||||
templateType = iconPath.length() == 0 ? ToastTemplateType_ToastText02 : ToastTemplateType_ToastImageAndText02;
|
templateType = iconPath.length() == 0 ? ToastTemplateType_ToastText02 : ToastTemplateType_ToastImageAndText02;
|
||||||
hr = toastMgr->GetTemplateContent(templateType, toastXml);
|
hr = toastManager->GetTemplateContent(templateType, toastXml);
|
||||||
if (SUCCEEDED(hr)) {
|
if (SUCCEEDED(hr)) {
|
||||||
hr = SetXmlText(*toastXml, title, msg);
|
hr = SetXmlText(*toastXml, title, msg);
|
||||||
}
|
}
|
||||||
|
@ -164,7 +150,7 @@ HRESULT WindowsToastNotification::SetXmlText(IXmlDocument* doc, const WCHAR* tex
|
||||||
|
|
||||||
ComPtr<IXmlNodeList> nodeList;
|
ComPtr<IXmlNodeList> nodeList;
|
||||||
HRESULT hr = GetTextNodeList(&tag, doc, &nodeList, 1);
|
HRESULT hr = GetTextNodeList(&tag, doc, &nodeList, 1);
|
||||||
do{
|
do {
|
||||||
BREAK_IF_BAD(hr);
|
BREAK_IF_BAD(hr);
|
||||||
|
|
||||||
ComPtr<IXmlNode> node;
|
ComPtr<IXmlNode> node;
|
||||||
|
@ -186,7 +172,7 @@ HRESULT WindowsToastNotification::SetXmlText(IXmlDocument* doc, const WCHAR* tit
|
||||||
HSTRING tag = NULL;
|
HSTRING tag = NULL;
|
||||||
ComPtr<IXmlNodeList> nodeList;
|
ComPtr<IXmlNodeList> nodeList;
|
||||||
HRESULT hr = GetTextNodeList(&tag, doc, &nodeList, 2);
|
HRESULT hr = GetTextNodeList(&tag, doc, &nodeList, 2);
|
||||||
do{
|
do {
|
||||||
BREAK_IF_BAD(hr);
|
BREAK_IF_BAD(hr);
|
||||||
|
|
||||||
ComPtr<IXmlNode> node;
|
ComPtr<IXmlNode> node;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com>. All rights reserved.
|
// 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>
|
// 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
|
// Thanks to both of those folks mentioned above who first thought up a bunch of this code
|
||||||
// and released it as MIT to the world.
|
// and released it as MIT to the world.
|
||||||
|
@ -6,24 +6,19 @@
|
||||||
#ifndef __WINDOWS_TOAST_NOTIFICATION_H__
|
#ifndef __WINDOWS_TOAST_NOTIFICATION_H__
|
||||||
#define __WINDOWS_TOAST_NOTIFICATION_H__
|
#define __WINDOWS_TOAST_NOTIFICATION_H__
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
|
|
||||||
#include "content/public/browser/desktop_notification_delegate.h"
|
#include "content/public/browser/desktop_notification_delegate.h"
|
||||||
#include "content/public/common/platform_notification_data.h"
|
#include "content/public/common/platform_notification_data.h"
|
||||||
#include "base/bind.h"
|
#include "base/bind.h"
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <windows.ui.notifications.h>
|
#include <windows.ui.notifications.h>
|
||||||
#include <wrl/client.h>
|
|
||||||
#include <wrl/implements.h>
|
#include <wrl/implements.h>
|
||||||
#include <string>
|
|
||||||
|
|
||||||
using namespace Microsoft::WRL;
|
using namespace Microsoft::WRL;
|
||||||
using namespace ABI::Windows::UI::Notifications;
|
using namespace ABI::Windows::UI::Notifications;
|
||||||
using namespace ABI::Windows::Foundation;
|
using namespace ABI::Windows::Foundation;
|
||||||
using namespace ABI::Windows::Data::Xml::Dom;
|
|
||||||
|
|
||||||
namespace WinToasts{
|
namespace WinToasts {
|
||||||
|
|
||||||
typedef ITypedEventHandler<ToastNotification*, IInspectable*> DesktopToastActivatedEventHandler;
|
typedef ITypedEventHandler<ToastNotification*, IInspectable*> DesktopToastActivatedEventHandler;
|
||||||
typedef ITypedEventHandler<ToastNotification*, ToastDismissedEventArgs*> DesktopToastDismissedEventHandler;
|
typedef ITypedEventHandler<ToastNotification*, ToastDismissedEventArgs*> DesktopToastDismissedEventHandler;
|
||||||
|
@ -32,37 +27,35 @@ namespace WinToasts{
|
||||||
|
|
||||||
class WindowsToastNotification
|
class WindowsToastNotification
|
||||||
{
|
{
|
||||||
private:
|
|
||||||
static char s_appName[MAX_PATH];
|
|
||||||
ToastEventHandler* m_eventHandler;
|
|
||||||
content::DesktopNotificationDelegate* n_delegate;
|
|
||||||
|
|
||||||
HRESULT GetToastXml(IToastNotificationManagerStatics* toastMgr, const WCHAR* title, const WCHAR* msg, std::string iconPath, IXmlDocument** toastXml);
|
|
||||||
HRESULT SetXmlText(IXmlDocument* doc, const WCHAR* text);
|
|
||||||
HRESULT SetXmlText(IXmlDocument* doc, const WCHAR* title, const WCHAR* body);
|
|
||||||
HRESULT SetXmlImage(IXmlDocument* doc, std::string iconPath);
|
|
||||||
HRESULT GetTextNodeList(HSTRING* tag, IXmlDocument* doc, IXmlNodeList** nodeList, UINT32 reqLength);
|
|
||||||
HRESULT AppendTextToXml(IXmlDocument* doc, IXmlNode* node, const WCHAR* text);
|
|
||||||
HRESULT SetupCallbacks(IToastNotification* toast);
|
|
||||||
HRESULT CreateHString(const WCHAR* source, HSTRING* dest);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
WindowsToastNotification(const char* appName, content::DesktopNotificationDelegate* delegate);
|
WindowsToastNotification(const char* appName, content::DesktopNotificationDelegate* delegate);
|
||||||
~WindowsToastNotification();
|
~WindowsToastNotification();
|
||||||
void ShowNotification(const WCHAR* title, const WCHAR* msg, std::string iconPath);
|
void ShowNotification(const WCHAR* title, const WCHAR* msg, std::string iconPath, ComPtr<IToastNotification>& toast);
|
||||||
|
void DismissNotification(ComPtr<IToastNotification> toast);
|
||||||
void NotificationClicked();
|
void NotificationClicked();
|
||||||
void NotificationDismissed();
|
void NotificationDismissed();
|
||||||
|
|
||||||
|
private:
|
||||||
|
ToastEventHandler* m_eventHandler;
|
||||||
|
|
||||||
|
content::DesktopNotificationDelegate* n_delegate;
|
||||||
|
ComPtr<IToastNotificationManagerStatics> m_toastManager;
|
||||||
|
ComPtr<IToastNotifier> m_toastNotifier;
|
||||||
|
|
||||||
|
HRESULT GetToastXml(IToastNotificationManagerStatics* toastManager, const WCHAR* title, const WCHAR* msg, std::string iconPath, ABI::Windows::Data::Xml::Dom::IXmlDocument** toastXml);
|
||||||
|
HRESULT SetXmlText(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc, const WCHAR* text);
|
||||||
|
HRESULT SetXmlText(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc, const WCHAR* title, const WCHAR* body);
|
||||||
|
HRESULT SetXmlImage(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc, std::string iconPath);
|
||||||
|
HRESULT GetTextNodeList(HSTRING* tag, ABI::Windows::Data::Xml::Dom::IXmlDocument* doc, ABI::Windows::Data::Xml::Dom::IXmlNodeList** nodeList, UINT32 reqLength);
|
||||||
|
HRESULT AppendTextToXml(ABI::Windows::Data::Xml::Dom::IXmlDocument* doc, ABI::Windows::Data::Xml::Dom::IXmlNode* node, const WCHAR* text);
|
||||||
|
HRESULT SetupCallbacks(IToastNotification* toast);
|
||||||
|
HRESULT CreateHString(const WCHAR* source, HSTRING* dest);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
class ToastEventHandler :
|
class ToastEventHandler :
|
||||||
public Implements < DesktopToastActivatedEventHandler, DesktopToastDismissedEventHandler >
|
public Implements <DesktopToastActivatedEventHandler, DesktopToastDismissedEventHandler>
|
||||||
{
|
{
|
||||||
private:
|
|
||||||
ULONG m_ref;
|
|
||||||
WindowsToastNotification* m_notification;
|
|
||||||
content::DesktopNotificationDelegate* n_delegate;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ToastEventHandler(WindowsToastNotification* notification, content::DesktopNotificationDelegate* delegate);
|
ToastEventHandler(WindowsToastNotification* notification, content::DesktopNotificationDelegate* delegate);
|
||||||
~ToastEventHandler();
|
~ToastEventHandler();
|
||||||
|
@ -92,6 +85,11 @@ namespace WinToasts{
|
||||||
|
|
||||||
return E_NOINTERFACE;
|
return E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
ULONG m_ref;
|
||||||
|
WindowsToastNotification* m_notification;
|
||||||
|
content::DesktopNotificationDelegate* n_delegate;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue