2006-01-11 21:28:25 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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-11 21:27:48 +00:00
|
|
|
|
|
|
|
#include "nsScreenManagerWin.h"
|
|
|
|
#include "nsScreenWin.h"
|
|
|
|
|
2006-01-11 21:28:03 +00:00
|
|
|
|
|
|
|
BOOL CALLBACK CountMonitors ( HMONITOR, HDC, LPRECT, LPARAM ioCount ) ;
|
|
|
|
|
2006-01-11 21:27:48 +00:00
|
|
|
nsScreenManagerWin :: nsScreenManagerWin ( )
|
2006-04-04 20:57:13 +00:00
|
|
|
: mNumberOfScreens(0)
|
2006-01-11 21:27:48 +00:00
|
|
|
{
|
2006-04-04 20:57:13 +00:00
|
|
|
// nothing to do. I guess we could cache a bunch of information
|
2006-01-11 21:27:48 +00:00
|
|
|
// here, but we want to ask the device at runtime in case anything
|
|
|
|
// has changed.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsScreenManagerWin :: ~nsScreenManagerWin()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// addref, release, QI
|
2006-01-11 21:28:18 +00:00
|
|
|
NS_IMPL_ISUPPORTS1(nsScreenManagerWin, nsIScreenManager)
|
2006-01-11 21:27:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// CreateNewScreenObject
|
|
|
|
//
|
|
|
|
// Utility routine. Creates a new screen object from the given device handle
|
|
|
|
//
|
2006-01-11 21:28:02 +00: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-11 21:27:48 +00:00
|
|
|
nsIScreen*
|
2012-01-05 07:52:22 +00:00
|
|
|
nsScreenManagerWin :: CreateNewScreenObject ( HMONITOR inScreen )
|
2006-01-11 21:27:48 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIScreen* retScreen = nullptr;
|
2006-01-11 21:28:02 +00:00
|
|
|
|
2006-01-11 21:28:03 +00:00
|
|
|
// look through our screen list, hoping to find it. If it's not there,
|
|
|
|
// add it and return the new one.
|
2010-08-20 18:19:38 +00:00
|
|
|
for ( unsigned i = 0; i < mScreenList.Length(); ++i ) {
|
2009-03-11 02:26:03 +00:00
|
|
|
ScreenListItem& curr = mScreenList[i];
|
|
|
|
if ( inScreen == curr.mMon ) {
|
|
|
|
NS_IF_ADDREF(retScreen = curr.mScreen.get());
|
2006-01-11 21:28:03 +00:00
|
|
|
return retScreen;
|
|
|
|
}
|
|
|
|
} // for each screen.
|
|
|
|
|
2006-01-11 21:28:13 +00:00
|
|
|
retScreen = new nsScreenWin(inScreen);
|
2012-01-05 07:52:22 +00:00
|
|
|
mScreenList.AppendElement ( ScreenListItem ( inScreen, retScreen ) );
|
2006-01-11 21:28:03 +00:00
|
|
|
|
|
|
|
NS_IF_ADDREF(retScreen);
|
|
|
|
return retScreen;
|
2006-01-11 21:27:48 +00: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.
|
|
|
|
//
|
|
|
|
// The coordinates are in pixels (not twips) and in screen coordinates.
|
|
|
|
//
|
|
|
|
NS_IMETHODIMP
|
2006-01-11 21:27:52 +00:00
|
|
|
nsScreenManagerWin :: ScreenForRect ( PRInt32 inLeft, PRInt32 inTop, PRInt32 inWidth, PRInt32 inHeight,
|
2006-01-11 21:27:48 +00:00
|
|
|
nsIScreen **outScreen )
|
|
|
|
{
|
2006-01-11 21:27:51 +00:00
|
|
|
if ( !(inWidth || inHeight) ) {
|
|
|
|
NS_WARNING ( "trying to find screen for sizeless window, using primary monitor" );
|
2012-07-30 14:20:58 +00:00
|
|
|
*outScreen = CreateNewScreenObject ( nullptr ); // addrefs
|
2006-01-11 21:27:48 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-01-11 21:27:51 +00:00
|
|
|
RECT globalWindowBounds = { inLeft, inTop, inLeft + inWidth, inTop + inHeight };
|
2006-01-11 21:27:48 +00:00
|
|
|
|
2012-01-05 07:52:22 +00:00
|
|
|
HMONITOR genScreen = ::MonitorFromRect( &globalWindowBounds, MONITOR_DEFAULTTOPRIMARY );
|
2006-01-11 21:28:03 +00:00
|
|
|
|
2006-01-11 21:28:13 +00:00
|
|
|
*outScreen = CreateNewScreenObject ( genScreen ); // addrefs
|
2006-01-11 21:27:51 +00:00
|
|
|
|
2006-01-11 21:27:48 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
} // ScreenForRect
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// GetPrimaryScreen
|
|
|
|
//
|
|
|
|
// The screen with the menubar/taskbar. This shouldn't be needed very
|
|
|
|
// often.
|
|
|
|
//
|
|
|
|
NS_IMETHODIMP
|
2006-01-11 21:27:51 +00:00
|
|
|
nsScreenManagerWin :: GetPrimaryScreen(nsIScreen** aPrimaryScreen)
|
2006-01-11 21:27:48 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
*aPrimaryScreen = CreateNewScreenObject ( nullptr ); // addrefs
|
2006-01-11 21:27:48 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
} // GetPrimaryScreen
|
|
|
|
|
2006-01-11 21:27:52 +00:00
|
|
|
|
2006-01-11 21:28:03 +00: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
|
|
|
|
CountMonitors ( HMONITOR, HDC, LPRECT, LPARAM ioParam )
|
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
PRUint32* countPtr = reinterpret_cast<PRUint32*>(ioParam);
|
2006-01-11 21:28:03 +00:00
|
|
|
++(*countPtr);
|
|
|
|
|
|
|
|
return TRUE; // continue the enumeration
|
|
|
|
|
|
|
|
} // CountMonitors
|
|
|
|
|
|
|
|
|
2006-01-11 21:27:52 +00:00
|
|
|
//
|
|
|
|
// GetNumberOfScreens
|
|
|
|
//
|
|
|
|
// Returns how many physical screens are available.
|
|
|
|
//
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsScreenManagerWin :: GetNumberOfScreens(PRUint32 *aNumberOfScreens)
|
|
|
|
{
|
2006-01-11 21:28:03 +00:00
|
|
|
if ( mNumberOfScreens )
|
|
|
|
*aNumberOfScreens = mNumberOfScreens;
|
2006-04-04 20:57:13 +00:00
|
|
|
else {
|
|
|
|
PRUint32 count = 0;
|
2012-07-30 14:20:58 +00:00
|
|
|
BOOL result = ::EnumDisplayMonitors(nullptr, nullptr, (MONITORENUMPROC)CountMonitors, (LPARAM)&count);
|
2006-04-04 20:57:13 +00:00
|
|
|
if (!result)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
*aNumberOfScreens = mNumberOfScreens = count;
|
|
|
|
}
|
2006-01-11 21:28:04 +00:00
|
|
|
|
2006-01-11 21:27:52 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
} // GetNumberOfScreens
|
2006-09-20 21:08:24 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsScreenManagerWin :: ScreenForNativeWidget(void *aWidget, nsIScreen **outScreen)
|
|
|
|
{
|
|
|
|
HMONITOR mon = MonitorFromWindow ((HWND) aWidget, MONITOR_DEFAULTTOPRIMARY);
|
|
|
|
*outScreen = CreateNewScreenObject (mon);
|
|
|
|
return NS_OK;
|
|
|
|
}
|