Stub implementations of RtlCreateQueryDebugBuffer,
[wine.git] / windows / multimon.c
blobd1fe7b42d7aeb152dd8a5a71e6aeff0bd814a9a5
1 /*
2 * Multimonitor APIs
4 * Copyright 1998 Turchanov Sergey
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <stdarg.h>
22 #include <string.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wingdi.h"
26 #include "winuser.h"
27 #include "wine/unicode.h"
29 /**********************************************************************/
31 #define xPRIMARY_MONITOR ((HMONITOR)0x12340042)
33 /***********************************************************************
34 * MonitorFromPoint (USER32.@)
36 HMONITOR WINAPI MonitorFromPoint(POINT ptScreenCoords, DWORD dwFlags)
38 if ((dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST)) ||
39 ((ptScreenCoords.x >= 0) &&
40 (ptScreenCoords.x < GetSystemMetrics(SM_CXSCREEN)) &&
41 (ptScreenCoords.y >= 0) &&
42 (ptScreenCoords.y < GetSystemMetrics(SM_CYSCREEN))))
44 return xPRIMARY_MONITOR;
46 return NULL;
49 /***********************************************************************
50 * MonitorFromRect (USER32.@)
52 HMONITOR WINAPI MonitorFromRect(LPRECT lprcScreenCoords, DWORD dwFlags)
54 if ((dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST)) ||
55 ((lprcScreenCoords->right > 0) &&
56 (lprcScreenCoords->bottom > 0) &&
57 (lprcScreenCoords->left < GetSystemMetrics(SM_CXSCREEN)) &&
58 (lprcScreenCoords->top < GetSystemMetrics(SM_CYSCREEN))))
60 return xPRIMARY_MONITOR;
62 return NULL;
65 /***********************************************************************
66 * MonitorFromWindow (USER32.@)
68 HMONITOR WINAPI MonitorFromWindow(HWND hWnd, DWORD dwFlags)
70 WINDOWPLACEMENT wp;
72 if (dwFlags & (MONITOR_DEFAULTTOPRIMARY | MONITOR_DEFAULTTONEAREST))
73 return xPRIMARY_MONITOR;
75 if (IsIconic(hWnd) ?
76 GetWindowPlacement(hWnd, &wp) :
77 GetWindowRect(hWnd, &wp.rcNormalPosition)) {
79 return MonitorFromRect(&wp.rcNormalPosition, dwFlags);
82 return NULL;
85 /***********************************************************************
86 * GetMonitorInfoA (USER32.@)
88 BOOL WINAPI GetMonitorInfoA(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
90 RECT rcWork;
92 if ((hMonitor == xPRIMARY_MONITOR) &&
93 lpMonitorInfo &&
94 (lpMonitorInfo->cbSize >= sizeof(MONITORINFO)) &&
95 SystemParametersInfoA(SPI_GETWORKAREA, 0, &rcWork, 0))
97 SetRect( &lpMonitorInfo->rcMonitor, 0, 0,
98 GetSystemMetrics(SM_CXSCREEN),
99 GetSystemMetrics(SM_CYSCREEN) );
100 lpMonitorInfo->rcWork = rcWork;
101 lpMonitorInfo->dwFlags = MONITORINFOF_PRIMARY;
103 if (lpMonitorInfo->cbSize >= sizeof(MONITORINFOEXA))
104 strcpy(((MONITORINFOEXA*)lpMonitorInfo)->szDevice, "DISPLAY");
106 return TRUE;
109 return FALSE;
112 /***********************************************************************
113 * GetMonitorInfoW (USER32.@)
115 BOOL WINAPI GetMonitorInfoW(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
117 RECT rcWork;
119 if ((hMonitor == xPRIMARY_MONITOR) &&
120 lpMonitorInfo &&
121 (lpMonitorInfo->cbSize >= sizeof(MONITORINFO)) &&
122 SystemParametersInfoW(SPI_GETWORKAREA, 0, &rcWork, 0))
124 SetRect( &lpMonitorInfo->rcMonitor, 0, 0,
125 GetSystemMetrics(SM_CXSCREEN),
126 GetSystemMetrics(SM_CYSCREEN) );
127 lpMonitorInfo->rcWork = rcWork;
128 lpMonitorInfo->dwFlags = MONITORINFOF_PRIMARY;
130 if (lpMonitorInfo->cbSize >= sizeof(MONITORINFOEXW))
131 strcpyW(((MONITORINFOEXW*)lpMonitorInfo)->szDevice, (LPCWSTR)"D\0I\0S\0P\0L\0A\0Y\0\0");
133 return TRUE;
136 return FALSE;
139 /***********************************************************************
140 * EnumDisplayMonitors (USER32.@)
142 BOOL WINAPI EnumDisplayMonitors(
143 HDC hdcOptionalForPainting,
144 LPRECT lprcEnumMonitorsThatIntersect,
145 MONITORENUMPROC lpfnEnumProc,
146 LPARAM dwData)
148 RECT rcLimit;
149 SetRect( &rcLimit, 0, 0, GetSystemMetrics(SM_CXSCREEN),
150 GetSystemMetrics(SM_CYSCREEN) );
152 if (!lpfnEnumProc)
153 return FALSE;
155 if (hdcOptionalForPainting)
157 RECT rcClip;
158 POINT ptOrg;
160 switch (GetClipBox(hdcOptionalForPainting, &rcClip))
162 default:
163 if (!GetDCOrgEx(hdcOptionalForPainting, &ptOrg))
164 return FALSE;
166 OffsetRect(&rcLimit, -ptOrg.x, -ptOrg.y);
167 if (IntersectRect(&rcLimit, &rcLimit, &rcClip) &&
168 (!lprcEnumMonitorsThatIntersect ||
169 IntersectRect(&rcLimit, &rcLimit, lprcEnumMonitorsThatIntersect))) {
171 break;
173 /* fall through */
174 case NULLREGION:
175 return TRUE;
176 case ERROR:
177 return FALSE;
179 } else {
180 if ( lprcEnumMonitorsThatIntersect &&
181 !IntersectRect(&rcLimit, &rcLimit, lprcEnumMonitorsThatIntersect)) {
183 return TRUE;
187 return lpfnEnumProc(
188 xPRIMARY_MONITOR,
189 hdcOptionalForPainting,
190 &rcLimit,
191 dwData);