CLOSED TREE: TraceMonkey merge head. (a=blockers)
[mozilla-central.git] / widget / src / os2 / nsScreenManagerOS2.cpp
blob9259368859d226e4058fa5da4ac5c779ba1dc51e
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 2000
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Henry Sobotka <sobotka@axess.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
39 #include "nsScreenManagerOS2.h"
40 #include "nsScreenOS2.h"
43 nsScreenManagerOS2 :: nsScreenManagerOS2 ( )
45 // nothing else to do. I guess we could cache a bunch of information
46 // here, but we want to ask the device at runtime in case anything
47 // has changed.
51 nsScreenManagerOS2 :: ~nsScreenManagerOS2()
53 // nothing to see here.
57 // addref, release, QI
58 NS_IMPL_ISUPPORTS1(nsScreenManagerOS2, nsIScreenManager)
62 // CreateNewScreenObject
64 // Utility routine. Creates a new screen object from the given device handle
66 // NOTE: For this "single-monitor" impl, we just always return the cached primary
67 // screen. This should change when a multi-monitor impl is done.
69 nsIScreen*
70 nsScreenManagerOS2 :: CreateNewScreenObject ( )
72 nsIScreen* retval = nsnull;
73 if ( !mCachedMainScreen )
74 mCachedMainScreen = new nsScreenOS2 ( );
75 NS_IF_ADDREF(retval = mCachedMainScreen.get());
77 return retval;
82 // ScreenForRect
84 // Returns the screen that contains the rectangle. If the rect overlaps
85 // multiple screens, it picks the screen with the greatest area of intersection.
87 // The coordinates are in pixels (not twips) and in screen coordinates.
89 NS_IMETHODIMP
90 nsScreenManagerOS2 :: ScreenForRect ( PRInt32 /*inLeft*/, PRInt32 /*inTop*/, PRInt32 /*inWidth*/,
91 PRInt32 /*inHeight*/, nsIScreen **outScreen )
93 GetPrimaryScreen ( outScreen );
94 return NS_OK;
96 } // ScreenForRect
100 // GetPrimaryScreen
102 // The screen with the menubar/taskbar. This shouldn't be needed very
103 // often.
105 NS_IMETHODIMP
106 nsScreenManagerOS2 :: GetPrimaryScreen(nsIScreen * *aPrimaryScreen)
108 *aPrimaryScreen = CreateNewScreenObject(); // addrefs
109 return NS_OK;
111 } // GetPrimaryScreen
115 // GetNumberOfScreens
117 // Returns how many physical screens are available.
119 NS_IMETHODIMP
120 nsScreenManagerOS2 :: GetNumberOfScreens(PRUint32 *aNumberOfScreens)
122 *aNumberOfScreens = 1;
123 return NS_OK;
125 } // GetNumberOfScreens
127 NS_IMETHODIMP
128 nsScreenManagerOS2 :: ScreenForNativeWidget(void *nativeWidget, nsIScreen **aScreen)
130 *aScreen = CreateNewScreenObject(); // addrefs
131 return NS_OK;