2006-01-12 00:28:25 +03:00
|
|
|
/* -*- 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/. */
|
2006-01-12 00:27:48 +03:00
|
|
|
|
|
|
|
#include "nsScreenManagerWin.h"
|
|
|
|
#include "nsScreenWin.h"
|
2013-04-01 13:10:33 +04:00
|
|
|
#include "gfxWindowsPlatform.h"
|
2013-04-09 12:39:47 +04:00
|
|
|
#include "nsIWidget.h"
|
2006-01-12 00:27:48 +03:00
|
|
|
|
2006-01-12 00:28:03 +03:00
|
|
|
|
2014-07-14 11:52:00 +04:00
|
|
|
BOOL CALLBACK CountMonitors(HMONITOR, HDC, LPRECT, LPARAM ioCount);
|
2006-01-12 00:28:03 +03:00
|
|
|
|
2014-07-14 11:52:00 +04:00
|
|
|
nsScreenManagerWin::nsScreenManagerWin()
|
2006-04-05 00:57:13 +04:00
|
|
|
: mNumberOfScreens(0)
|
2006-01-12 00:27:48 +03:00
|
|
|
{
|
2006-04-05 00:57:13 +04:00
|
|
|
// nothing to do. I guess we could cache a bunch of information
|
2006-01-12 00:27:48 +03:00
|
|
|
// here, but we want to ask the device at runtime in case anything
|
|
|
|
// has changed.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-14 11:52:00 +04:00
|
|
|
nsScreenManagerWin::~nsScreenManagerWin()
|
2006-01-12 00:27:48 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// addref, release, QI
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsScreenManagerWin, nsIScreenManager)
|
2006-01-12 00:27:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// CreateNewScreenObject
|
|
|
|
//
|
|
|
|
// Utility routine. Creates a new screen object from the given device handle
|
|
|
|
//
|
2006-01-12 00:28:02 +03:00
|
|
|
// NOTE: For this "single-monitor" impl, we just always return the cached primary
|
|
|
|
// screen. This should change when a multi-monitor impl is done.
|
|
|
|
//
|
2006-01-12 00:27:48 +03:00
|
|
|
nsIScreen*
|
2014-07-14 11:52:00 +04:00
|
|
|
nsScreenManagerWin::CreateNewScreenObject(HMONITOR inScreen)
|
2006-01-12 00:27:48 +03:00
|
|
|
{
|
2012-07-30 18:20:58 +04:00
|
|
|
nsIScreen* retScreen = nullptr;
|
2006-01-12 00:28:02 +03:00
|
|
|
|
2006-01-12 00:28:03 +03:00
|
|
|
// look through our screen list, hoping to find it. If it's not there,
|
|
|
|
// add it and return the new one.
|
2014-07-14 11:52:00 +04:00
|
|
|
for (unsigned i = 0; i < mScreenList.Length(); ++i) {
|
2009-03-11 05:26:03 +03:00
|
|
|
ScreenListItem& curr = mScreenList[i];
|
2014-07-14 11:52:00 +04:00
|
|
|
if (inScreen == curr.mMon) {
|
2009-03-11 05:26:03 +03:00
|
|
|
NS_IF_ADDREF(retScreen = curr.mScreen.get());
|
2006-01-12 00:28:03 +03:00
|
|
|
return retScreen;
|
|
|
|
}
|
|
|
|
} // for each screen.
|
|
|
|
|
2006-01-12 00:28:13 +03:00
|
|
|
retScreen = new nsScreenWin(inScreen);
|
2014-07-14 11:52:00 +04:00
|
|
|
mScreenList.AppendElement(ScreenListItem(inScreen, retScreen));
|
2006-01-12 00:28:03 +03:00
|
|
|
|
|
|
|
NS_IF_ADDREF(retScreen);
|
|
|
|
return retScreen;
|
2006-01-12 00:27:48 +03:00
|
|
|
}
|
|
|
|
|
2014-07-14 21:22:26 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsScreenManagerWin::ScreenForId(uint32_t aId, nsIScreen **outScreen)
|
|
|
|
{
|
|
|
|
*outScreen = nullptr;
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < mScreenList.Length(); ++i) {
|
|
|
|
ScreenListItem& curr = mScreenList[i];
|
|
|
|
uint32_t id;
|
|
|
|
nsresult rv = curr.mScreen->GetId(&id);
|
|
|
|
if (NS_SUCCEEDED(rv) && id == aId) {
|
|
|
|
NS_IF_ADDREF(*outScreen = curr.mScreen.get());
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2006-01-12 00:27:48 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// ScreenForRect
|
|
|
|
//
|
|
|
|
// Returns the screen that contains the rectangle. If the rect overlaps
|
|
|
|
// multiple screens, it picks the screen with the greatest area of intersection.
|
|
|
|
//
|
2013-04-01 13:10:33 +04:00
|
|
|
// The coordinates are in pixels (not twips) and in logical screen coordinates.
|
2006-01-12 00:27:48 +03:00
|
|
|
//
|
|
|
|
NS_IMETHODIMP
|
2014-07-14 11:52:00 +04:00
|
|
|
nsScreenManagerWin::ScreenForRect(int32_t inLeft, int32_t inTop, int32_t inWidth, int32_t inHeight,
|
|
|
|
nsIScreen **outScreen)
|
2006-01-12 00:27:48 +03:00
|
|
|
{
|
2014-07-14 11:52:00 +04:00
|
|
|
if (!(inWidth || inHeight)) {
|
|
|
|
NS_WARNING("trying to find screen for sizeless window, using primary monitor");
|
|
|
|
*outScreen = CreateNewScreenObject(nullptr); // addrefs
|
2006-01-12 00:27:48 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-04-01 13:10:33 +04:00
|
|
|
// convert coordinates from logical to device pixels for MonitorFromRect
|
2013-04-09 12:39:47 +04:00
|
|
|
double dpiScale = nsIWidget::DefaultScaleOverride();
|
|
|
|
if (dpiScale <= 0.0) {
|
|
|
|
dpiScale = gfxWindowsPlatform::GetPlatform()->GetDPIScale();
|
|
|
|
}
|
2013-04-01 13:10:33 +04:00
|
|
|
RECT globalWindowBounds = {
|
|
|
|
NSToIntRound(dpiScale * inLeft),
|
|
|
|
NSToIntRound(dpiScale * inTop),
|
|
|
|
NSToIntRound(dpiScale * (inLeft + inWidth)),
|
|
|
|
NSToIntRound(dpiScale * (inTop + inHeight))
|
|
|
|
};
|
2006-01-12 00:27:48 +03:00
|
|
|
|
2014-07-14 11:52:00 +04:00
|
|
|
HMONITOR genScreen = ::MonitorFromRect(&globalWindowBounds, MONITOR_DEFAULTTOPRIMARY);
|
|
|
|
|
|
|
|
*outScreen = CreateNewScreenObject(genScreen); // addrefs
|
|
|
|
|
2006-01-12 00:27:48 +03:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
} // ScreenForRect
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// GetPrimaryScreen
|
|
|
|
//
|
|
|
|
// The screen with the menubar/taskbar. This shouldn't be needed very
|
|
|
|
// often.
|
|
|
|
//
|
|
|
|
NS_IMETHODIMP
|
2014-07-14 11:52:00 +04:00
|
|
|
nsScreenManagerWin::GetPrimaryScreen(nsIScreen** aPrimaryScreen)
|
2006-01-12 00:27:48 +03:00
|
|
|
{
|
2014-07-14 11:52:00 +04:00
|
|
|
*aPrimaryScreen = CreateNewScreenObject(nullptr); // addrefs
|
2006-01-12 00:27:48 +03:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
} // GetPrimaryScreen
|
|
|
|
|
2006-01-12 00:27:52 +03:00
|
|
|
|
2006-01-12 00:28:03 +03:00
|
|
|
//
|
|
|
|
// CountMonitors
|
|
|
|
//
|
|
|
|
// Will be called once for every monitor in the system. Just
|
|
|
|
// increments the parameter, which holds a ptr to a PRUin32 holding the
|
|
|
|
// count up to this point.
|
|
|
|
//
|
|
|
|
BOOL CALLBACK
|
2014-07-14 11:52:00 +04:00
|
|
|
CountMonitors(HMONITOR, HDC, LPRECT, LPARAM ioParam)
|
2006-01-12 00:28:03 +03:00
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t* countPtr = reinterpret_cast<uint32_t*>(ioParam);
|
2006-01-12 00:28:03 +03:00
|
|
|
++(*countPtr);
|
|
|
|
|
|
|
|
return TRUE; // continue the enumeration
|
|
|
|
|
|
|
|
} // CountMonitors
|
|
|
|
|
|
|
|
|
2006-01-12 00:27:52 +03:00
|
|
|
//
|
|
|
|
// GetNumberOfScreens
|
|
|
|
//
|
|
|
|
// Returns how many physical screens are available.
|
|
|
|
//
|
|
|
|
NS_IMETHODIMP
|
2014-07-14 11:52:00 +04:00
|
|
|
nsScreenManagerWin::GetNumberOfScreens(uint32_t *aNumberOfScreens)
|
2006-01-12 00:27:52 +03:00
|
|
|
{
|
2014-07-14 11:52:00 +04:00
|
|
|
if (mNumberOfScreens)
|
2006-01-12 00:28:03 +03:00
|
|
|
*aNumberOfScreens = mNumberOfScreens;
|
2006-04-05 00:57:13 +04:00
|
|
|
else {
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t count = 0;
|
2012-07-30 18:20:58 +04:00
|
|
|
BOOL result = ::EnumDisplayMonitors(nullptr, nullptr, (MONITORENUMPROC)CountMonitors, (LPARAM)&count);
|
2006-04-05 00:57:13 +04:00
|
|
|
if (!result)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
*aNumberOfScreens = mNumberOfScreens = count;
|
|
|
|
}
|
2006-01-12 00:28:04 +03:00
|
|
|
|
2006-01-12 00:27:52 +03:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
} // GetNumberOfScreens
|
2006-09-21 01:08:24 +04:00
|
|
|
|
2013-04-10 01:07:02 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsScreenManagerWin::GetSystemDefaultScale(float *aDefaultScale)
|
|
|
|
{
|
|
|
|
*aDefaultScale = float(gfxWindowsPlatform::GetPlatform()->GetDPIScale());
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-09-21 01:08:24 +04:00
|
|
|
NS_IMETHODIMP
|
2014-07-14 11:52:00 +04:00
|
|
|
nsScreenManagerWin::ScreenForNativeWidget(void *aWidget, nsIScreen **outScreen)
|
2006-09-21 01:08:24 +04:00
|
|
|
{
|
2014-07-14 11:52:00 +04:00
|
|
|
HMONITOR mon = MonitorFromWindow((HWND) aWidget, MONITOR_DEFAULTTOPRIMARY);
|
|
|
|
*outScreen = CreateNewScreenObject(mon);
|
2006-09-21 01:08:24 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|