2017-03-15 12:56:06 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2017-05-18 22:06:57 +00:00
|
|
|
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/win/win32_notification.h"
|
2017-05-18 22:06:57 +00:00
|
|
|
|
2017-03-15 12:56:06 +00:00
|
|
|
#include <windows.h>
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
2017-06-23 10:39:42 +00:00
|
|
|
#include <vector>
|
2017-05-18 22:06:57 +00:00
|
|
|
|
2017-04-03 08:48:18 +00:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
2017-03-15 12:56:06 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2017-04-03 08:38:21 +00:00
|
|
|
void Win32Notification::Show(
|
|
|
|
const base::string16& title, const base::string16& msg,
|
|
|
|
const std::string& tag, const GURL& icon_url,
|
2017-05-30 09:06:51 +00:00
|
|
|
const SkBitmap& icon, bool silent,
|
2017-06-23 10:39:42 +00:00
|
|
|
bool has_reply, const base::string16& reply_placeholder,
|
|
|
|
const std::vector<NotificationAction> actions) {
|
2017-03-15 12:56:06 +00:00
|
|
|
auto presenter = static_cast<NotificationPresenterWin7*>(this->presenter());
|
2017-04-03 11:34:01 +00:00
|
|
|
if (!presenter) return;
|
2017-03-15 12:56:06 +00:00
|
|
|
|
|
|
|
HBITMAP image = NULL;
|
|
|
|
|
2017-04-03 11:34:01 +00:00
|
|
|
if (!icon.drawsNothing()) {
|
|
|
|
if (icon.colorType() == kBGRA_8888_SkColorType) {
|
2017-03-15 12:56:06 +00:00
|
|
|
icon.lockPixels();
|
|
|
|
|
|
|
|
BITMAPINFOHEADER bmi = { sizeof(BITMAPINFOHEADER) };
|
|
|
|
bmi.biWidth = icon.width();
|
|
|
|
bmi.biHeight = -icon.height();
|
|
|
|
bmi.biPlanes = 1;
|
|
|
|
bmi.biBitCount = 32;
|
|
|
|
bmi.biCompression = BI_RGB;
|
|
|
|
|
|
|
|
HDC hdcScreen = GetDC(NULL);
|
2017-04-03 08:38:21 +00:00
|
|
|
image = CreateDIBitmap(hdcScreen, &bmi, CBM_INIT, icon.getPixels(),
|
2017-04-05 09:53:37 +00:00
|
|
|
reinterpret_cast<BITMAPINFO*>(&bmi),
|
|
|
|
DIB_RGB_COLORS);
|
2017-03-15 12:56:06 +00:00
|
|
|
ReleaseDC(NULL, hdcScreen);
|
|
|
|
|
|
|
|
icon.unlockPixels();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Win32Notification* existing = nullptr;
|
2017-04-03 11:34:01 +00:00
|
|
|
if (!tag.empty()) existing = presenter->GetNotificationObjectByTag(tag);
|
2017-03-15 12:56:06 +00:00
|
|
|
|
2017-04-03 11:34:01 +00:00
|
|
|
if (existing) {
|
2017-03-17 13:41:22 +00:00
|
|
|
existing->tag_.clear();
|
|
|
|
this->notification_ref_ = std::move(existing->notification_ref_);
|
|
|
|
this->notification_ref_.Set(title, msg, image);
|
2017-04-05 10:00:35 +00:00
|
|
|
} else {
|
2017-03-17 13:41:22 +00:00
|
|
|
this->notification_ref_ = presenter->AddNotification(title, msg, image);
|
2017-03-15 12:56:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 13:41:22 +00:00
|
|
|
this->tag_ = tag;
|
2017-03-15 12:56:06 +00:00
|
|
|
|
2017-04-03 11:34:01 +00:00
|
|
|
if (image) DeleteObject(image);
|
2017-03-15 12:56:06 +00:00
|
|
|
}
|
|
|
|
|
2017-04-03 10:11:39 +00:00
|
|
|
void Win32Notification::Dismiss() {
|
2017-03-17 13:41:22 +00:00
|
|
|
notification_ref_.Close();
|
2017-03-15 12:56:06 +00:00
|
|
|
}
|
|
|
|
|
2017-04-05 11:10:28 +00:00
|
|
|
} // namespace brightray
|