2009-10-06 06:26:54 +04:00
|
|
|
/* vim: se cin sw=2 ts=2 et : */
|
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
#include "TaskbarPreview.h"
|
|
|
|
#include <nsITaskbarPreviewController.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <nsError.h>
|
|
|
|
#include <nsCOMPtr.h>
|
|
|
|
#include <nsIWidget.h>
|
|
|
|
#include <nsIBaseWindow.h>
|
|
|
|
#include <nsIObserverService.h>
|
|
|
|
#include <nsServiceManagerUtils.h>
|
|
|
|
|
|
|
|
#include "nsUXThemeData.h"
|
|
|
|
#include "nsWindow.h"
|
|
|
|
#include "nsAppShell.h"
|
|
|
|
#include "TaskbarPreviewButton.h"
|
2012-01-04 14:21:44 +04:00
|
|
|
#include "WinUtils.h"
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
#include "mozilla/dom/HTMLCanvasElement.h"
|
|
|
|
#include "mozilla/gfx/2D.h"
|
|
|
|
#include "mozilla/gfx/DataSurfaceHelpers.h"
|
2012-11-14 04:35:36 +04:00
|
|
|
#include "mozilla/Telemetry.h"
|
|
|
|
|
2009-10-06 06:26:54 +04:00
|
|
|
// Defined in dwmapi in a header that needs a higher numbered _WINNT #define
|
2016-12-15 10:40:33 +03:00
|
|
|
#ifndef DWM_SIT_DISPLAYFRAME
|
2009-10-06 06:26:54 +04:00
|
|
|
#define DWM_SIT_DISPLAYFRAME 0x1
|
2016-12-15 10:40:33 +03:00
|
|
|
#endif
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// TaskbarPreview
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
TaskbarPreview::TaskbarPreview(ITaskbarList4 *aTaskbar, nsITaskbarPreviewController *aController, HWND aHWND, nsIDocShell *aShell)
|
|
|
|
: mTaskbar(aTaskbar),
|
|
|
|
mController(aController),
|
|
|
|
mWnd(aHWND),
|
2011-10-02 06:16:19 +04:00
|
|
|
mVisible(false),
|
2009-10-06 06:26:54 +04:00
|
|
|
mDocShell(do_GetWeakReference(aShell))
|
|
|
|
{
|
|
|
|
// TaskbarPreview may outlive the WinTaskbar that created it
|
2013-10-08 22:48:20 +04:00
|
|
|
::CoInitialize(nullptr);
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
WindowHook &hook = GetWindowHook();
|
|
|
|
hook.AddMonitor(WM_DESTROY, MainWindowHook, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
TaskbarPreview::~TaskbarPreview() {
|
|
|
|
// Avoid dangling pointer
|
|
|
|
if (sActivePreview == this)
|
2012-07-30 18:20:58 +04:00
|
|
|
sActivePreview = nullptr;
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2010-04-21 23:09:59 +04:00
|
|
|
// Our subclass should have invoked DetachFromNSWindow already.
|
|
|
|
NS_ASSERTION(!mWnd, "TaskbarPreview::DetachFromNSWindow was not called before destruction");
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
// Make sure to release before potentially uninitializing COM
|
2013-10-08 22:48:20 +04:00
|
|
|
mTaskbar = nullptr;
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
::CoUninitialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TaskbarPreview::SetController(nsITaskbarPreviewController *aController) {
|
|
|
|
NS_ENSURE_ARG(aController);
|
|
|
|
|
|
|
|
mController = aController;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TaskbarPreview::GetController(nsITaskbarPreviewController **aController) {
|
|
|
|
NS_ADDREF(*aController = mController);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TaskbarPreview::GetTooltip(nsAString &aTooltip) {
|
|
|
|
aTooltip = mTooltip;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TaskbarPreview::SetTooltip(const nsAString &aTooltip) {
|
|
|
|
mTooltip = aTooltip;
|
|
|
|
return CanMakeTaskbarCalls() ? UpdateTooltip() : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
TaskbarPreview::SetVisible(bool visible) {
|
2009-10-06 06:26:54 +04:00
|
|
|
if (mVisible == visible) return NS_OK;
|
|
|
|
mVisible = visible;
|
|
|
|
|
2010-03-21 01:09:00 +03:00
|
|
|
// If the nsWindow has already been destroyed but the caller is still trying
|
|
|
|
// to use it then just pretend that everything succeeded. The caller doesn't
|
|
|
|
// actually have a way to detect this since it's the same case as when we
|
|
|
|
// CanMakeTaskbarCalls returns false.
|
|
|
|
if (!mWnd)
|
|
|
|
return NS_OK;
|
|
|
|
|
2009-10-06 06:26:54 +04:00
|
|
|
return visible ? Enable() : Disable();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
TaskbarPreview::GetVisible(bool *visible) {
|
2009-10-06 06:26:54 +04:00
|
|
|
*visible = mVisible;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
TaskbarPreview::SetActive(bool active) {
|
2009-10-06 06:26:54 +04:00
|
|
|
if (active)
|
|
|
|
sActivePreview = this;
|
|
|
|
else if (sActivePreview == this)
|
2013-10-08 22:48:20 +04:00
|
|
|
sActivePreview = nullptr;
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
return CanMakeTaskbarCalls() ? ShowActive(active) : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
TaskbarPreview::GetActive(bool *active) {
|
2009-10-06 06:26:54 +04:00
|
|
|
*active = sActivePreview == this;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TaskbarPreview::Invalidate() {
|
|
|
|
if (!mVisible)
|
2015-02-27 06:21:48 +03:00
|
|
|
return NS_OK;
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
// DWM Composition is required for previews
|
|
|
|
if (!nsUXThemeData::CheckForCompositor())
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
HWND previewWindow = PreviewWindow();
|
2017-02-10 06:06:23 +03:00
|
|
|
return FAILED(DwmInvalidateIconicBitmaps(previewWindow))
|
2009-10-06 06:26:54 +04:00
|
|
|
? NS_ERROR_FAILURE
|
|
|
|
: NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
TaskbarPreview::UpdateTaskbarProperties() {
|
|
|
|
nsresult rv = UpdateTooltip();
|
|
|
|
|
|
|
|
// If we are the active preview and our window is the active window, restore
|
|
|
|
// our active state - otherwise some other non-preview window is now active
|
|
|
|
// and should be displayed as so.
|
|
|
|
if (sActivePreview == this) {
|
|
|
|
if (mWnd == ::GetActiveWindow()) {
|
2011-10-02 06:16:19 +04:00
|
|
|
nsresult rvActive = ShowActive(true);
|
2009-10-06 06:26:54 +04:00
|
|
|
if (NS_FAILED(rvActive))
|
|
|
|
rv = rvActive;
|
|
|
|
} else {
|
2012-07-30 18:20:58 +04:00
|
|
|
sActivePreview = nullptr;
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
TaskbarPreview::Enable() {
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
if (CanMakeTaskbarCalls()) {
|
|
|
|
rv = UpdateTaskbarProperties();
|
|
|
|
} else {
|
|
|
|
WindowHook &hook = GetWindowHook();
|
|
|
|
hook.AddMonitor(nsAppShell::GetTaskbarButtonCreatedMessage(), MainWindowHook, this);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
TaskbarPreview::Disable() {
|
2016-06-01 08:30:23 +03:00
|
|
|
if (!IsWindowAvailable()) {
|
|
|
|
// Window is already destroyed
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-06 06:26:54 +04:00
|
|
|
WindowHook &hook = GetWindowHook();
|
|
|
|
(void) hook.RemoveMonitor(nsAppShell::GetTaskbarButtonCreatedMessage(), MainWindowHook, this);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2011-09-28 18:02:36 +04:00
|
|
|
TaskbarPreview::IsWindowAvailable() const {
|
|
|
|
if (mWnd) {
|
2012-01-04 14:21:44 +04:00
|
|
|
nsWindow* win = WinUtils::GetNSWindowPtr(mWnd);
|
2012-09-26 09:47:51 +04:00
|
|
|
if(win && !win->Destroyed()) {
|
2011-10-02 06:16:19 +04:00
|
|
|
return true;
|
2011-09-28 18:02:36 +04:00
|
|
|
}
|
|
|
|
}
|
2011-10-02 06:16:19 +04:00
|
|
|
return false;
|
2011-09-28 18:02:36 +04:00
|
|
|
}
|
|
|
|
|
2009-10-06 06:26:54 +04:00
|
|
|
void
|
2010-04-21 23:09:59 +04:00
|
|
|
TaskbarPreview::DetachFromNSWindow() {
|
|
|
|
WindowHook &hook = GetWindowHook();
|
|
|
|
hook.RemoveMonitor(WM_DESTROY, MainWindowHook, this);
|
2013-10-08 22:48:20 +04:00
|
|
|
mWnd = nullptr;
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
LRESULT
|
|
|
|
TaskbarPreview::WndProc(UINT nMsg, WPARAM wParam, LPARAM lParam) {
|
|
|
|
switch (nMsg) {
|
|
|
|
case WM_DWMSENDICONICTHUMBNAIL:
|
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t width = HIWORD(lParam);
|
|
|
|
uint32_t height = LOWORD(lParam);
|
2009-10-06 06:26:54 +04:00
|
|
|
float aspectRatio = width/float(height);
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
float preferredAspectRatio;
|
|
|
|
rv = mController->GetThumbnailAspectRatio(&preferredAspectRatio);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
break;
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t thumbnailWidth = width;
|
|
|
|
uint32_t thumbnailHeight = height;
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
if (aspectRatio > preferredAspectRatio) {
|
2012-08-22 19:56:38 +04:00
|
|
|
thumbnailWidth = uint32_t(thumbnailHeight * preferredAspectRatio);
|
2009-10-06 06:26:54 +04:00
|
|
|
} else {
|
2012-08-22 19:56:38 +04:00
|
|
|
thumbnailHeight = uint32_t(thumbnailWidth / preferredAspectRatio);
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
|
2011-10-02 06:16:19 +04:00
|
|
|
DrawBitmap(thumbnailWidth, thumbnailHeight, false);
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WM_DWMSENDICONICLIVEPREVIEWBITMAP:
|
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t width, height;
|
2009-10-06 06:26:54 +04:00
|
|
|
nsresult rv;
|
|
|
|
rv = mController->GetWidth(&width);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
break;
|
|
|
|
rv = mController->GetHeight(&height);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
break;
|
|
|
|
|
2013-04-09 20:01:13 +04:00
|
|
|
double scale = nsIWidget::DefaultScaleOverride();
|
2015-12-02 18:09:29 +03:00
|
|
|
if (scale <= 0.0) {
|
|
|
|
scale = WinUtils::LogToPhysFactor(PreviewWindow());
|
|
|
|
}
|
2013-04-09 20:01:13 +04:00
|
|
|
DrawBitmap(NSToIntRound(scale * width), NSToIntRound(scale * height), true);
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ::DefWindowProcW(PreviewWindow(), nMsg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2009-10-06 06:26:54 +04:00
|
|
|
TaskbarPreview::CanMakeTaskbarCalls() {
|
2010-03-21 01:09:00 +03:00
|
|
|
// If the nsWindow has already been destroyed and we know it but our caller
|
|
|
|
// clearly doesn't so we can't make any calls.
|
|
|
|
if (!mWnd)
|
2011-10-02 06:16:19 +04:00
|
|
|
return false;
|
2010-03-21 01:09:00 +03:00
|
|
|
// Certain functions like SetTabOrder seem to require a visible window. During
|
|
|
|
// window close, the window seems to be hidden before being destroyed.
|
|
|
|
if (!::IsWindowVisible(mWnd))
|
2011-10-02 06:16:19 +04:00
|
|
|
return false;
|
2010-03-21 01:09:00 +03:00
|
|
|
if (mVisible) {
|
2012-01-04 14:21:44 +04:00
|
|
|
nsWindow *window = WinUtils::GetNSWindowPtr(mWnd);
|
2010-03-21 01:09:00 +03:00
|
|
|
NS_ASSERTION(window, "Could not get nsWindow from HWND");
|
|
|
|
return window->HasTaskbarIconBeenCreated();
|
|
|
|
}
|
2011-10-02 06:16:19 +04:00
|
|
|
return false;
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
WindowHook&
|
|
|
|
TaskbarPreview::GetWindowHook() {
|
2012-01-04 14:21:44 +04:00
|
|
|
nsWindow *window = WinUtils::GetNSWindowPtr(mWnd);
|
2009-10-06 06:26:54 +04:00
|
|
|
NS_ASSERTION(window, "Cannot use taskbar previews in an embedded context!");
|
|
|
|
|
|
|
|
return window->GetWindowHook();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-09-29 10:19:26 +04:00
|
|
|
TaskbarPreview::EnableCustomDrawing(HWND aHWND, bool aEnable) {
|
2011-10-01 00:47:37 +04:00
|
|
|
BOOL enabled = aEnable;
|
2017-02-10 06:06:23 +03:00
|
|
|
DwmSetWindowAttribute(
|
2009-10-06 06:26:54 +04:00
|
|
|
aHWND,
|
|
|
|
DWMWA_FORCE_ICONIC_REPRESENTATION,
|
2011-10-01 00:47:37 +04:00
|
|
|
&enabled,
|
|
|
|
sizeof(enabled));
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2017-02-10 06:06:23 +03:00
|
|
|
DwmSetWindowAttribute(
|
2009-10-06 06:26:54 +04:00
|
|
|
aHWND,
|
|
|
|
DWMWA_HAS_ICONIC_BITMAP,
|
2011-10-01 00:47:37 +04:00
|
|
|
&enabled,
|
|
|
|
sizeof(enabled));
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
TaskbarPreview::UpdateTooltip() {
|
|
|
|
NS_ASSERTION(CanMakeTaskbarCalls() && mVisible, "UpdateTooltip called on invisible tab preview");
|
|
|
|
|
|
|
|
if (FAILED(mTaskbar->SetThumbnailTooltip(PreviewWindow(), mTooltip.get())))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-08-22 19:56:38 +04:00
|
|
|
TaskbarPreview::DrawBitmap(uint32_t width, uint32_t height, bool isPreview) {
|
2009-10-06 06:26:54 +04:00
|
|
|
nsresult rv;
|
2016-01-12 20:08:34 +03:00
|
|
|
nsCOMPtr<nsITaskbarPreviewCallback> callback =
|
|
|
|
do_CreateInstance("@mozilla.org/widget/taskbar-preview-callback;1", &rv);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return;
|
|
|
|
}
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
((TaskbarPreviewCallback*)callback.get())->SetPreview(this);
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
if (isPreview) {
|
|
|
|
((TaskbarPreviewCallback*)callback.get())->SetIsPreview();
|
|
|
|
mController->RequestPreview(callback);
|
|
|
|
} else {
|
|
|
|
mController->RequestThumbnail(callback, width, height);
|
|
|
|
}
|
|
|
|
}
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// TaskbarPreviewCallback
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
NS_IMPL_ISUPPORTS(TaskbarPreviewCallback, nsITaskbarPreviewCallback)
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
/* void done (in nsISupports aCanvas, in boolean aDrawBorder); */
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TaskbarPreviewCallback::Done(nsISupports *aCanvas, bool aDrawBorder) {
|
|
|
|
// We create and destroy TaskbarTabPreviews from front end code in response
|
|
|
|
// to TabOpen and TabClose events. Each TaskbarTabPreview creates and owns a
|
|
|
|
// proxy HWND which it hands to Windows as a tab identifier. When a tab
|
|
|
|
// closes, TaskbarTabPreview Disable() method is called by front end, which
|
|
|
|
// destroys the proxy window and clears mProxyWindow which is the HWND
|
|
|
|
// returned from PreviewWindow(). So, since this is async, we should check to
|
|
|
|
// be sure the tab is still alive before doing all this gfx work and making
|
|
|
|
// dwm calls. To accomplish this we check the result of PreviewWindow().
|
|
|
|
if (!aCanvas || !mPreview || !mPreview->PreviewWindow() ||
|
|
|
|
!mPreview->IsWindowAvailable()) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMHTMLCanvasElement> domcanvas(do_QueryInterface(aCanvas));
|
|
|
|
dom::HTMLCanvasElement * canvas = ((dom::HTMLCanvasElement*)domcanvas.get());
|
|
|
|
if (!canvas) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
RefPtr<gfx::SourceSurface> source = canvas->GetSurfaceSnapshot();
|
|
|
|
if (!source) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
RefPtr<gfxWindowsSurface> target = new gfxWindowsSurface(source->GetSize(),
|
|
|
|
gfx::SurfaceFormat::A8R8G8B8_UINT32);
|
|
|
|
if (!target) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<gfx::DataSourceSurface> srcSurface = source->GetDataSurface();
|
|
|
|
RefPtr<gfxImageSurface> imageSurface = target->GetAsImageSurface();
|
|
|
|
if (!srcSurface || !imageSurface) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx::DataSourceSurface::MappedSurface sourceMap;
|
|
|
|
srcSurface->Map(gfx::DataSourceSurface::READ, &sourceMap);
|
|
|
|
mozilla::gfx::CopySurfaceDataToPackedArray(sourceMap.mData,
|
|
|
|
imageSurface->Data(),
|
|
|
|
srcSurface->GetSize(),
|
|
|
|
sourceMap.mStride,
|
|
|
|
BytesPerPixel(srcSurface->GetFormat()));
|
|
|
|
srcSurface->Unmap();
|
|
|
|
|
|
|
|
HDC hDC = target->GetDC();
|
2009-10-06 06:26:54 +04:00
|
|
|
HBITMAP hBitmap = (HBITMAP)GetCurrentObject(hDC, OBJ_BITMAP);
|
|
|
|
|
2016-01-12 20:08:34 +03:00
|
|
|
DWORD flags = aDrawBorder ? DWM_SIT_DISPLAYFRAME : 0;
|
2009-10-06 06:26:54 +04:00
|
|
|
POINT pptClient = { 0, 0 };
|
2016-01-12 20:08:34 +03:00
|
|
|
HRESULT hr;
|
|
|
|
if (!mIsThumbnail) {
|
2017-02-10 06:06:23 +03:00
|
|
|
hr = DwmSetIconicLivePreviewBitmap(mPreview->PreviewWindow(),
|
|
|
|
hBitmap, &pptClient, flags);
|
2016-01-12 20:08:34 +03:00
|
|
|
} else {
|
2017-02-10 06:06:23 +03:00
|
|
|
hr = DwmSetIconicThumbnail(mPreview->PreviewWindow(),
|
|
|
|
hBitmap, flags);
|
2016-01-12 20:08:34 +03:00
|
|
|
}
|
|
|
|
MOZ_ASSERT(SUCCEEDED(hr));
|
|
|
|
return NS_OK;
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2009-10-06 06:26:54 +04:00
|
|
|
TaskbarPreview::MainWindowHook(void *aContext,
|
|
|
|
HWND hWnd, UINT nMsg,
|
|
|
|
WPARAM wParam, LPARAM lParam,
|
|
|
|
LRESULT *aResult)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nMsg == nsAppShell::GetTaskbarButtonCreatedMessage() ||
|
|
|
|
nMsg == WM_DESTROY,
|
|
|
|
"Window hook proc called with wrong message");
|
2012-11-07 18:27:24 +04:00
|
|
|
NS_ASSERTION(aContext, "Null context in MainWindowHook");
|
|
|
|
if (!aContext)
|
|
|
|
return false;
|
2009-10-06 06:26:54 +04:00
|
|
|
TaskbarPreview *preview = reinterpret_cast<TaskbarPreview*>(aContext);
|
|
|
|
if (nMsg == WM_DESTROY) {
|
|
|
|
// nsWindow is being destroyed
|
2010-04-21 23:09:59 +04:00
|
|
|
// We can't really do anything at this point including removing hooks
|
2014-09-22 19:21:00 +04:00
|
|
|
return false;
|
2009-10-06 06:26:54 +04:00
|
|
|
} else {
|
2012-01-04 14:21:44 +04:00
|
|
|
nsWindow *window = WinUtils::GetNSWindowPtr(preview->mWnd);
|
2012-05-04 02:33:50 +04:00
|
|
|
if (window) {
|
|
|
|
window->SetHasTaskbarIconBeenCreated();
|
2009-10-06 06:26:54 +04:00
|
|
|
|
2012-05-04 02:33:50 +04:00
|
|
|
if (preview->mVisible)
|
|
|
|
preview->UpdateTaskbarProperties();
|
|
|
|
}
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
2011-10-02 06:16:19 +04:00
|
|
|
return false;
|
2009-10-06 06:26:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
TaskbarPreview *
|
2012-07-30 18:20:58 +04:00
|
|
|
TaskbarPreview::sActivePreview = nullptr;
|
2009-10-06 06:26:54 +04:00
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|