source: trunk/src/user32/dc.cpp@ 5692

Last change on this file since 5692 was 5692, checked in by sandervl, 24 years ago

WM_ADJUSTFRAMEPOS fix; don't call frame handler

File size: 58.6 KB
Line 
1/* $Id: dc.cpp,v 1.101 2001-05-11 19:02:01 sandervl Exp $ */
2
3/*
4 * DC functions for USER32
5 *
6 * Project Odin Software License can be found in LICENSE.TXT
7 *
8 */
9
10/*****************************************************************************
11 * Includes *
12 *****************************************************************************/
13
14#include <odin.h>
15
16#define INCL_WIN
17#define INCL_GPI
18#define INCL_GREALL
19#define INCL_DEV
20#include <os2wrap.h>
21//#include <pmddi.h>
22#include <stdlib.h>
23
24#include <string.h>
25#include <win32type.h>
26#include <win32api.h>
27#include <winuser32.h>
28#include <winconst.h>
29#include <misc.h>
30#include <win32wbase.h>
31#include <math.h>
32#include <limits.h>
33#include "oslibwin.h"
34#include "oslibmsg.h"
35#include <dcdata.h>
36#include <codepage.h>
37#include <wingdi32.h>
38
39#define INCLUDED_BY_DC
40#include "dc.h"
41
42#define DBG_LOCALLOG DBG_dc
43#include "dbglocal.h"
44
45#ifndef DEVESC_SETPS
46 #define DEVESC_SETPS 49149L
47#endif
48
49#define FLOAT_TO_FIXED(x) ((FIXED) ((x) * 65536.0))
50#define MICRO_HPS_TO_HDC(x) ((x) & 0xFFFFFFFE)
51
52#define PMRECT_FROM_WINRECT( pmRect, winRect ) \
53{ \
54 (pmRect).xLeft = (winRect).left; \
55 (pmRect).yBottom = (winRect).bottom; \
56 (pmRect).xRight = (winRect).right; \
57 (pmRect).yTop = (winRect).top; \
58}
59
60#define WINRECT_FROM_PMRECT( winRect, pmRect ) \
61{ \
62 (winRect).left = (pmRect).xLeft; \
63 (winRect).top = (pmRect).yTop; \
64 (winRect).right = (pmRect).xRight; \
65 (winRect).bottom = (pmRect).yBottom; \
66}
67
68#define MEM_HPS_MAX 768
69
70const XFORM_W XFORMIdentity = { 1.0, 0.0, 0.0, 1.0, 0, 0 };
71const MATRIXLF matrixlfIdentity = { 0x10000, 0, 0, 0, 0x10000, 0, 0, 0, 0};
72
73BOOL setPageXForm(Win32BaseWindow *wnd, pDCData pHps);
74BOOL changePageXForm(Win32BaseWindow *wnd, pDCData pHps, PPOINTL pValue, int x, int y, PPOINTL pPrev);
75LONG clientHeight(Win32BaseWindow *wnd, HWND hwnd, pDCData pHps);
76
77#ifdef DEBUG
78#define dprintfRegion(a,b,c) if(DbgEnabledLvl2[DBG_LOCALLOG] == 1) dprintfRegion1(a,b,c)
79
80void dprintfRegion1(HPS hps, HWND hWnd, HRGN hrgnClip)
81{
82 RGNRECT rgnRect = {0, 16, 0, RECTDIR_LFRT_TOPBOT};
83 RECTL rectRegion[16];
84 APIRET rc;
85
86 dprintf(("dprintfRegion %x %x", hWnd, hps));
87 rc = GpiQueryRegionRects(hps, hrgnClip, NULL, &rgnRect, &rectRegion[0]);
88 for(int i=0;i<rgnRect.crcReturned;i++) {
89 dprintf(("(%d,%d)(%d,%d)", rectRegion[i].xLeft, rectRegion[i].yBottom, rectRegion[i].xRight, rectRegion[i].yTop));
90 }
91}
92#else
93#define dprintfRegion(a,b,c)
94#endif
95
96//******************************************************************************
97//******************************************************************************
98void WIN32API TestWideLine (pDCData pHps)
99{
100 const LOGPEN_W *pLogPen;
101
102 pHps->isWideLine = FALSE;
103 pLogPen = pHps->penIsExtPen ?
104 &(pHps->lastPenObject->ExtPen.logpen) :
105 &(pHps->lastPenObject->Pen.logpen);
106
107 if (((pLogPen->lopnStyle & PS_STYLE_MASK_W) != PS_NULL_W) &&
108 (pLogPen->lopnWidth.x > 0))
109 {
110 POINTL aptl[2] = { 0, 0, pLogPen->lopnWidth.x, pLogPen->lopnWidth.x };
111
112 GpiConvert(pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, aptl);
113
114 ULONG dx = abs(aptl[0].x - aptl[1].x);
115 ULONG dy = abs(aptl[0].y - aptl[1].y);
116
117 pHps->isWideLine = (dx > 1) || (dy > 1);
118 }
119}
120//******************************************************************************
121//******************************************************************************
122void WIN32API Calculate1PixelDelta(pDCData pHps)
123{
124 POINTL aptl[2] = {0, 0, 1, 1};
125
126 GpiConvert(pHps->hps, CVTC_DEVICE, CVTC_WORLD, 2, aptl);
127 pHps->worldYDeltaFor1Pixel = (int)(aptl[1].y - aptl[0].y);
128 pHps->worldXDeltaFor1Pixel = (int)(aptl[1].x - aptl[0].x); // 171182
129}
130//******************************************************************************
131//******************************************************************************
132int setMapMode(Win32BaseWindow *wnd, pDCData pHps, int mode)
133{
134 int prevMode = 0;
135 ULONG flOptions;
136
137 switch (mode)
138 {
139 case MM_HIENGLISH_W : flOptions = PU_HIENGLISH; break;
140 case MM_LOENGLISH_W : flOptions = PU_LOENGLISH; break;
141 case MM_HIMETRIC_W : flOptions = PU_HIMETRIC ; break;
142 case MM_LOMETRIC_W : flOptions = PU_LOMETRIC ; break;
143 case MM_TEXT_W : flOptions = PU_PELS ; break;
144 case MM_TWIPS_W : flOptions = PU_TWIPS ; break;
145 case MM_ANISOTROPIC_W: flOptions = PU_PELS ; break;
146 case MM_ISOTROPIC_W : flOptions = PU_LOMETRIC ; break;
147 default:
148 SetLastError(ERROR_INVALID_PARAMETER_W);
149 return FALSE;
150 }
151
152 prevMode = pHps->MapMode; /* store previous mode */
153 pHps->MapMode = mode;
154
155 if (mode == MM_TEXT_W)
156 {
157 pHps->viewportXExt =
158 pHps->viewportYExt = 1.0;
159 pHps->windowExt.cx =
160 pHps->windowExt.cy = 1;
161 }
162 else if (mode != MM_ANISOTROPIC_W)
163 {
164 RECTL rectl;
165 SIZEL sizel;
166 ULONG data[3];
167
168 data[0] = flOptions;
169 data[1] = data[2] = 0;
170
171 if (DevEscape(pHps->hdc ? pHps->hdc : pHps->hps, DEVESC_SETPS, 12, (PBYTE)data, 0, 0) == DEVESC_ERROR)
172 {
173 SetLastError(ERROR_INVALID_PARAMETER_W);
174 return 0;
175 }
176
177 GpiQueryPageViewport(pHps->hps, &rectl);
178 pHps->viewportXExt = (double)rectl.xRight;
179 pHps->viewportYExt = -(double)rectl.yTop;
180
181 GreGetPageUnits(pHps->hdc? pHps->hdc : pHps->hps, &sizel);
182 pHps->windowExt.cx = sizel.cx;
183 pHps->windowExt.cy = sizel.cy;
184
185 data[0] = PU_PELS;
186 DevEscape(pHps->hdc ? pHps->hdc : pHps->hps, DEVESC_SETPS, 12, (PBYTE)data, 0, 0);
187 }
188
189 if (((prevMode != MM_ISOTROPIC_W) && (prevMode != MM_ANISOTROPIC_W)) &&
190 ((mode == MM_ISOTROPIC_W) || (mode == MM_ANISOTROPIC_W)))
191 {
192 if (pHps->lWndXExtSave && pHps->lWndYExtSave)
193 {
194 changePageXForm (wnd, pHps, (PPOINTL)&pHps->windowExt,
195 pHps->lWndXExtSave, pHps->lWndYExtSave, NULL );
196 pHps->lWndXExtSave = pHps->lWndYExtSave = 0;
197 }
198 if (pHps->lVwpXExtSave && pHps->lVwpYExtSave)
199 {
200 changePageXForm (wnd, pHps, NULL,
201 pHps->lVwpXExtSave, pHps->lVwpYExtSave, NULL );
202 pHps->lVwpXExtSave = pHps->lVwpYExtSave = 0;
203 }
204 }
205
206 setPageXForm(wnd, pHps);
207
208 return prevMode;
209}
210//******************************************************************************
211//******************************************************************************
212BOOL setPageXForm(Win32BaseWindow *wnd, pDCData pHps)
213{
214 MATRIXLF mlf;
215 BOOL rc = TRUE;
216
217 pHps->height = clientHeight(wnd, 0, pHps) - 1;
218
219 double xScale = pHps->viewportXExt / (double)pHps->windowExt.cx;
220 double yScale = pHps->viewportYExt / (double)pHps->windowExt.cy;
221
222#if 0
223 mlf.fxM11 = FLOAT_TO_FIXED(1.0);
224 mlf.fxM12 = 0;
225 mlf.lM13 = 0;
226 mlf.fxM21 = 0;
227 mlf.fxM22 = FLOAT_TO_FIXED(1.0);
228 mlf.lM23 = 0;
229 mlf.lM31 = pHps->viewportOrg.x - (LONG)(pHps->windowOrg.x * xScale);
230 mlf.lM32 = pHps->viewportOrg.y - (LONG)(pHps->windowOrg.y * yScale);
231 mlf.lM33 = 1;
232
233//testestest
234 if(wnd && wnd->getWindowWidth() && wnd->getWindowHeight())
235 {
236 RECTL recttmp, rectviewold;
237
238 rc = GpiQueryPageViewport(pHps->hps, &rectviewold);
239 if(rc == 0) {
240 dprintf(("WARNING: GpiQueryPageViewport returned FALSE!!"));
241 }
242 recttmp.xLeft = 0;
243 recttmp.xRight = ((double)GetScreenWidth() / xScale);
244 recttmp.yBottom = 0;
245 recttmp.yTop = ((double)GetScreenHeight() / yScale);
246
247 if(recttmp.yTop != rectviewold.yTop ||
248 recttmp.xRight != rectviewold.xRight)
249 {
250 if(pHps->viewportYExt > pHps->windowExt.cy) {//scaling up means we have to invert the y values
251 recttmp.yBottom = GetScreenHeight() - recttmp.yTop;
252 recttmp.yTop = GetScreenHeight();
253 }
254 dprintf(("GpiSetPageViewport %x (%d,%d)(%d,%d) %f %f", pHps->hps, recttmp.xLeft, recttmp.yBottom, recttmp.xRight, recttmp.yTop, xScale, yScale));
255 rc = GpiSetPageViewport(pHps->hps, &recttmp);
256 if(rc == 0) {
257 dprintf(("WARNING: GpiSetPageViewport returned FALSE!!"));
258 }
259 }
260 }
261//testestest
262
263#else
264 mlf.fxM11 = FLOAT_TO_FIXED(xScale);
265 mlf.fxM12 = 0;
266 mlf.lM13 = 0;
267 mlf.fxM21 = 0;
268 mlf.fxM22 = FLOAT_TO_FIXED(yScale);
269 mlf.lM23 = 0;
270 mlf.lM31 = pHps->viewportOrg.x - (LONG)(pHps->windowOrg.x * xScale);
271 mlf.lM32 = pHps->viewportOrg.y - (LONG)(pHps->windowOrg.y * yScale);
272 mlf.lM33 = 1;
273#endif
274
275 pHps->isLeftLeft = mlf.fxM11 >= 0;
276 pHps->isTopTop = mlf.fxM22 >= 0;
277
278 BOOL bEnableYInversion = FALSE;
279 if ((mlf.fxM22 > 0) ||
280 ((pHps->graphicsMode == GM_ADVANCED_W) &&
281 ((pHps->MapMode == MM_ANISOTROPIC_W) ||
282 (pHps->MapMode == MM_ISOTROPIC_W))))
283 {
284 bEnableYInversion = TRUE;
285 }
286 else
287 {
288 bEnableYInversion = FALSE;
289 mlf.lM32 = pHps->HPStoHDCInversionHeight + pHps->height - mlf.lM32;
290 mlf.fxM22 = -mlf.fxM22;
291 }
292
293 if (!pHps->isMetaPS)
294// if ((!pHps->isMetaPS) ||
295// (pHps->pMetaFileObject && pHps->pMetaFileObject->isEnhanced()))
296 rc = GpiSetDefaultViewMatrix(pHps->hps, 8, &mlf, TRANSFORM_REPLACE);
297 if(rc == 0) {
298 dprintf(("WARNING: GpiSetDefaultViewMatrix returned FALSE!!"));
299 }
300#ifdef INVERT
301 if (bEnableYInversion)
302 GpiEnableYInversion(pHps->hps, pHps->height + pHps->HPStoHDCInversionHeight);
303 else
304 GpiEnableYInversion(pHps->hps, 0);
305#else
306 pHps->yInvert = 0;
307 if(bEnableYInversion)
308 {
309 pHps->yInvert4Enable = pHps->height + pHps->HPStoHDCInversionHeight;
310 if(pHps->isPrinter)
311 {
312 pHps->yInvert = pHps->yInvert4Enable
313 * (pHps->windowExt.cy / (double)pHps->viewportYExt);
314 } else {
315 pHps->yInvert = pHps->yInvert4Enable;
316 }
317 }
318#endif
319
320 TestWideLine(pHps);
321 Calculate1PixelDelta(pHps);
322 return rc;
323}
324//******************************************************************************
325//******************************************************************************
326BOOL changePageXForm(Win32BaseWindow *wnd, pDCData pHps, PPOINTL pValue, int x, int y, PPOINTL pPrev)
327{
328 BOOL result = FALSE;
329
330 if (pValue)
331 {
332 if (pPrev)
333 *pPrev = *pValue;
334
335 if ((pValue->x == x) && (pValue->y == y)) {
336 return TRUE;
337 }
338 pValue->x = x;
339 pValue->y = y;
340 }
341 else
342 {
343 if (pPrev)
344 {
345 pPrev->x = (int)pHps->viewportXExt;
346 pPrev->y = (int)pHps->viewportYExt;
347 }
348 pHps->viewportXExt = (double)x;
349 pHps->viewportYExt = (double)y;
350 }
351
352 if (pHps->MapMode == MM_ISOTROPIC_W)
353 {
354 double xExt = fabs(pHps->viewportXExt);
355 double yExt = fabs(pHps->viewportYExt);
356 double sf = fabs((double)pHps->windowExt.cx / pHps->windowExt.cy);
357
358 if (xExt > (yExt * sf))
359 {
360 xExt = yExt * sf;
361
362 if ((double)LONG_MAX <= xExt) return (result);
363
364 if (pHps->viewportXExt < 0.0)
365 pHps->viewportXExt = -xExt;
366 else
367 pHps->viewportXExt = xExt;
368 }
369 else
370 {
371 yExt = xExt / sf;
372
373 if ((double)LONG_MAX <= yExt) return (result);
374
375 if (pHps->viewportYExt < 0.0)
376 pHps->viewportYExt = -yExt;
377 else
378 pHps->viewportYExt = yExt;
379 }
380 }
381 result = setPageXForm(wnd, pHps);
382
383 return (result);
384}
385//******************************************************************************
386//******************************************************************************
387VOID removeClientArea(Win32BaseWindow *window, pDCData pHps)
388{
389 pHps->isClient = FALSE;
390 pHps->isClientArea = FALSE;
391}
392//******************************************************************************
393//******************************************************************************
394void selectClientArea(Win32BaseWindow *window, pDCData pHps)
395{
396 pHps->isClient = TRUE;
397 pHps->isClientArea = TRUE;
398}
399//******************************************************************************
400//******************************************************************************
401void selectClientArea(Win32BaseWindow *wnd, HDC hdc)
402{
403 pDCData pHps = (pDCData)GpiQueryDCData (wnd->getOwnDC());
404
405 if (pHps != NULLHANDLE)
406 selectClientArea(wnd, pHps);
407}
408//******************************************************************************
409//******************************************************************************
410LONG clientHeight(Win32BaseWindow *wnd, HWND hwnd, pDCData pHps)
411{
412 if ((hwnd == 0) && (pHps != 0))
413 hwnd = pHps->hwnd;
414
415 if ((hwnd != 0) || (pHps == 0))
416 {
417 if(wnd) {
418 if(pHps && !pHps->isClientArea) {
419 return (wnd->getWindowHeight());
420 }
421 else return (wnd->getClientHeight());
422 }
423 else return OSLibQueryScreenHeight();
424 }
425 else if (pHps->bitmapHandle)
426 {
427 return pHps->bitmapHeight;
428 }
429 else if (pHps->isMetaPS)
430 {
431 return 0;
432 }
433 else if (pHps->isPrinter)
434 {
435 return pHps->printPageHeight;
436 }
437 else
438 {
439 return MEM_HPS_MAX;
440 }
441}
442//******************************************************************************
443//******************************************************************************
444BOOL WIN32API changePageXForm(pDCData pHps, PPOINTL pValue, int x, int y, PPOINTL pPrev)
445{
446 Win32BaseWindow *wnd;
447
448 if(pHps->isClient) {
449 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
450 }
451 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
452 return changePageXForm(wnd, pHps, pValue, x, y, pPrev);
453}
454//******************************************************************************
455//******************************************************************************
456BOOL WIN32API setPageXForm(pDCData pHps)
457{
458 Win32BaseWindow *wnd;
459
460 if(pHps->isClient) {
461 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
462 }
463 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
464 return setPageXForm(wnd, pHps);
465}
466//******************************************************************************
467//******************************************************************************
468VOID WIN32API removeClientArea(pDCData pHps)
469{
470 Win32BaseWindow *wnd;
471
472 if(pHps->isClient) {
473 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
474 }
475 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
476 if(wnd) {
477 removeClientArea(wnd, pHps);
478 }
479}
480//******************************************************************************
481//******************************************************************************
482VOID WIN32API selectClientArea(pDCData pHps)
483{
484 Win32BaseWindow *wnd;
485
486 if(pHps->isClient) {
487 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
488 }
489 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
490 if(wnd) {
491 selectClientArea(wnd, pHps);
492 }
493}
494//******************************************************************************
495//******************************************************************************
496VOID WIN32API checkOrigin(pDCData pHps)
497{
498 Win32BaseWindow *wnd;
499
500 if(pHps->isClient) {
501 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
502 }
503 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
504 if(wnd) {
505 if(pHps->isClient)
506 selectClientArea(wnd, pHps);
507 }
508}
509//******************************************************************************
510//******************************************************************************
511LONG WIN32API clientHeight(HWND hwnd, pDCData pHps)
512{
513 Win32BaseWindow *wnd;
514
515 if(pHps->isClient) {
516 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
517 }
518 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
519 return clientHeight(wnd, hwnd, pHps);
520}
521//******************************************************************************
522//******************************************************************************
523int WIN32API setMapMode(pDCData pHps, int mode)
524{
525 Win32BaseWindow *wnd;
526
527 if(pHps->isClient) {
528 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
529 }
530 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
531 return setMapMode(wnd, pHps, mode);
532}
533//******************************************************************************
534//******************************************************************************
535BOOL isYup (pDCData pHps)
536{
537 if (((pHps->windowExt.cy < 0) && (pHps->viewportYExt > 0.0)) ||
538 ((pHps->windowExt.cy > 0) && (pHps->viewportYExt < 0.0)))
539 {
540 if ((pHps->graphicsMode == GM_COMPATIBLE_W) ||
541 ((pHps->graphicsMode == GM_ADVANCED_W) && (pHps->xform.eM22 >= 0.0)))
542 return TRUE;
543 }
544 else
545 {
546 if ((pHps->graphicsMode == GM_ADVANCED_W) && (pHps->xform.eM22 < 0.0))
547 return TRUE;
548 }
549 return FALSE;
550}
551//******************************************************************************
552//******************************************************************************
553INT revertDy (Win32BaseWindow *wnd, INT dy)
554{
555 //SvL: Hack for memory.exe (doesn't get repainted properly otherwise)
556// if (wnd->isOwnDC() && wnd->getOwnDC())
557 if (wnd->isOwnDC())
558 {
559 pDCData pHps = (pDCData)GpiQueryDCData (wnd->getOwnDC());
560
561 if (pHps != NULLHANDLE)
562 if (!isYup (pHps))
563 dy = -dy;
564 }
565 else
566 {
567 dy = -dy;
568 }
569 return (dy);
570}
571//******************************************************************************
572//******************************************************************************
573HDC sendEraseBkgnd (Win32BaseWindow *wnd)
574{
575 BOOL erased;
576 HWND hwnd;
577 HDC hdc;
578 HPS hps;
579 HRGN hrgnUpdate, hrgnOld, hrgnClip, hrgnCombined;
580 RECTL rectl = { 1, 1, 2, 2 };
581
582 hwnd = wnd->getOS2WindowHandle();
583 hps = WinGetPS(hwnd);
584
585 hrgnUpdate = GpiCreateRegion (hps, 1, &rectl);
586 WinQueryUpdateRegion (hwnd, hrgnUpdate);
587 hrgnClip = GpiQueryClipRegion (hps);
588
589 if (hrgnClip == NULLHANDLE)
590 {
591 GpiSetClipRegion (hps, hrgnUpdate, &hrgnOld);
592 }
593 else
594 {
595 hrgnCombined = GpiCreateRegion (hps, 1, &rectl);
596 GpiCombineRegion (hps, hrgnCombined, hrgnClip, hrgnUpdate, CRGN_AND);
597 GpiSetClipRegion (hps, hrgnCombined, &hrgnOld);
598 GpiDestroyRegion (hps, hrgnUpdate);
599 GpiDestroyRegion (hps, hrgnClip);
600 }
601 if (hrgnOld != NULLHANDLE)
602 GpiDestroyRegion (hps, hrgnOld);
603
604 hdc = HPSToHDC (hwnd, hps, NULL, NULL);
605
606 erased = wnd->MsgEraseBackGround (hdc);
607
608 DeleteHDC (hdc);
609 WinReleasePS (hps);
610
611 return erased;
612}
613//******************************************************************************
614//******************************************************************************
615void releaseOwnDC (HDC hps)
616{
617 pDCData pHps = (pDCData)GpiQueryDCData ((HPS)hps);
618
619 dprintf2(("releaseOwnDC %x", hps));
620
621 if (pHps) {
622 if (pHps->hrgnHDC)
623 GpiDestroyRegion (pHps->hps, pHps->hrgnHDC);
624
625 GpiSetBitmap (pHps->hps, NULL);
626 O32_DeleteObject (pHps->nullBitmapHandle);
627 GpiDestroyPS(pHps->hps);
628
629 if (pHps->hdc)
630 DevCloseDC(pHps->hdc);
631 }
632}
633//******************************************************************************
634//******************************************************************************
635HDC WIN32API BeginPaint (HWND hWnd, PPAINTSTRUCT_W lpps)
636{
637 HWND hwnd = hWnd ? hWnd : HWND_DESKTOP;
638 pDCData pHps = NULLHANDLE;
639 HPS hPS_ownDC = NULLHANDLE, hpsPaint = 0;
640 RECTL rectl = {0, 0, 1, 1};
641 HRGN hrgnOldClip;
642 LONG lComplexity;
643 RECTL rectlClient;
644 RECTL rectlClip;
645
646 if(lpps == NULL) {
647 //BeginPaint does NOT change last error in this case
648 //(verified in NT4, SP6)
649 dprintf (("USER32: BeginPaint %x NULL PAINTSTRUCT pointer", hWnd));
650 return 0;
651 }
652 memset(lpps, 0, sizeof(*lpps));
653
654 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle(hwnd);
655 if(!wnd) {
656 dprintf (("USER32: BeginPaint %x %x: invalid window handle!!", hWnd, lpps));
657 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W); //(verified in NT4, SP6)
658 return (HDC)0;
659 }
660 HWND hwndClient = wnd->getOS2WindowHandle();
661
662 if(hwnd != HWND_DESKTOP && wnd->isOwnDC())
663 {
664 hPS_ownDC = wnd->getOwnDC();
665 //SvL: Hack for memory.exe (doesn't get repainted properly otherwise)
666 if(hPS_ownDC) {
667 pHps = (pDCData)GpiQueryDCData(hPS_ownDC);
668 if (!pHps)
669 {
670 dprintf (("USER32: BeginPaint %x invalid parameter %x", hWnd, lpps));
671 SetLastError(ERROR_INVALID_PARAMETER_W);
672 return (HDC)NULLHANDLE;
673 }
674 hpsPaint = hPS_ownDC;
675 }
676 }
677 if(!hpsPaint) {
678 hpsPaint = GetDCEx(hwnd, 0, (DCX_CACHE_W|DCX_USESTYLE_W));
679 pHps = (pDCData)GpiQueryDCData(hpsPaint);
680 if (!pHps)
681 {
682 dprintf (("USER32: BeginPaint %x invalid parameter %x", hWnd, lpps));
683 SetLastError(ERROR_INVALID_PARAMETER_W);
684 return (HDC)NULLHANDLE;
685 }
686 }
687
688 if(WinQueryUpdateRect(hwndClient, &rectl) == FALSE)
689 {
690 memset(&rectl, 0, sizeof(rectl));
691 dprintf (("USER32: WARNING: WinQueryUpdateRect failed (error or no update rectangle)!!"));
692
693 HRGN hrgnClip = GpiCreateRegion(pHps->hps, 1, &rectl);
694 GpiSetClipRegion(pHps->hps, hrgnClip, &hrgnOldClip);
695
696 selectClientArea(wnd, pHps);
697
698 //save old clip region (restored for CS_OWNDC windows in EndPaint)
699 wnd->SetClipRegion(hrgnOldClip);
700 lComplexity = RGN_NULL;
701 }
702 else {
703 rectlClip.yBottom = rectlClip.xLeft = 0;
704 rectlClip.yTop = rectlClip.xRight = 1;
705
706 //Query update region
707 HRGN hrgnClip = GpiCreateRegion(pHps->hps, 1, &rectlClip);
708 WinQueryUpdateRegion(hwndClient, hrgnClip);
709 WinValidateRegion(hwndClient, hrgnClip, FALSE);
710
711 dprintfRegion(pHps->hps, wnd->getWindowHandle(), hrgnClip);
712
713#ifdef DEBUG
714 lComplexity = GpiQueryClipBox(pHps->hps, &rectlClip);
715 dprintf(("ClipBox (%d): (%d,%d)(%d,%d)", lComplexity, rectlClip.xLeft, rectlClip.yBottom, rectlClip.xRight, rectlClip.yTop));
716#endif
717
718 //set clip region
719 lComplexity = GpiSetClipRegion(pHps->hps, hrgnClip, &hrgnOldClip);
720
721 if(lComplexity == RGN_NULL) {
722 dprintf (("BeginPaint %x: EMPTY update rectangle (show=%d/%d vis=%d/%d", hWnd, WinIsWindowVisible(wnd->getOS2FrameWindowHandle()), WinIsWindowVisible(wnd->getOS2WindowHandle()), WinIsWindowShowing(wnd->getOS2FrameWindowHandle()), WinIsWindowShowing(wnd->getOS2WindowHandle())));
723 }
724 else dprintf (("BeginPaint %x: (show=%d/%d vis=%d/%d)", hWnd, WinIsWindowVisible(wnd->getOS2FrameWindowHandle()), WinIsWindowVisible(wnd->getOS2WindowHandle()), WinIsWindowShowing(wnd->getOS2FrameWindowHandle()), WinIsWindowShowing(wnd->getOS2WindowHandle())));
725
726 selectClientArea(wnd, pHps);
727
728#ifdef DEBUG
729 GpiQueryClipBox(pHps->hps, &rectlClip);
730 dprintf(("ClipBox (%d): (%d,%d)(%d,%d)", lComplexity, rectlClip.xLeft, rectlClip.yBottom, rectlClip.xRight, rectlClip.yTop));
731#endif
732 //save old clip region (restored for CS_OWNDC windows in EndPaint)
733 wnd->SetClipRegion(hrgnOldClip);
734 }
735
736 if(hPS_ownDC == 0)
737 setMapMode (wnd, pHps, MM_TEXT_W);
738 else
739 setPageXForm(wnd, pHps);
740
741 pHps->hdcType = TYPE_3;
742
743 HideCaret(hwnd);
744 WinShowTrackRect(wnd->getOS2WindowHandle(), FALSE);
745
746 if((wnd->needsEraseBkgnd() || wnd->IsVisibleRegionChanged()) && lComplexity != RGN_NULL) {
747 wnd->setEraseBkgnd(FALSE);
748 wnd->SetVisibleRegionChanged(FALSE);
749 lpps->fErase = (wnd->MsgEraseBackGround(pHps->hps) == 0);
750 }
751 else lpps->fErase = TRUE;
752
753 lpps->hdc = (HDC)pHps->hps;
754
755 if(lComplexity != RGN_NULL) {
756 long height = wnd->getClientHeight();
757 lpps->rcPaint.top = height - rectl.yTop;
758 lpps->rcPaint.left = rectl.xLeft;
759 lpps->rcPaint.bottom = height - rectl.yBottom;
760 lpps->rcPaint.right = rectl.xRight;
761 }
762 else {
763 lpps->rcPaint.bottom = lpps->rcPaint.top = 0;
764 lpps->rcPaint.right = lpps->rcPaint.left = 0;
765 }
766
767 SetLastError(0);
768 dprintf(("USER32: BeginPaint %x -> hdc %x (%d,%d)(%d,%d)", hWnd, pHps->hps, lpps->rcPaint.left, lpps->rcPaint.top, lpps->rcPaint.right, lpps->rcPaint.bottom));
769 return (HDC)pHps->hps;
770}
771//******************************************************************************
772//******************************************************************************
773BOOL WIN32API EndPaint (HWND hWnd, const PAINTSTRUCT_W *pPaint)
774{
775 HWND hwnd = hWnd ? hWnd : HWND_DESKTOP;
776 HRGN hrgnOld;
777 pDCData pHps;
778
779 dprintf (("USER32: EndPaint(%x)", hwnd));
780
781 if (!pPaint || !pPaint->hdc )
782 return TRUE;
783
784 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle(hwnd);
785
786 if (!wnd) goto exit;
787
788 pHps = (pDCData)GpiQueryDCData((HPS)pPaint->hdc);
789 if (pHps && (pHps->hdcType == TYPE_3))
790 {
791 GpiSetClipRegion(pHps->hps, wnd->GetClipRegion(), &hrgnOld);
792 wnd->SetClipRegion(0);
793 if(hrgnOld) {
794 GpiDestroyRegion(pHps->hps, hrgnOld);
795 }
796 pHps->hdcType = TYPE_1; //otherwise Open32's ReleaseDC fails
797 ReleaseDC(hwnd, pPaint->hdc);
798 }
799 else {
800 dprintf(("EndPaint: wrong hdc %x!!", pPaint->hdc));
801 }
802 wnd->setEraseBkgnd(TRUE);
803 ShowCaret(hwnd);
804 WinShowTrackRect(wnd->getOS2WindowHandle(), TRUE);
805
806exit:
807 SetLastError(0);
808 return TRUE;
809}
810//******************************************************************************
811//******************************************************************************
812int WIN32API ReleaseDC (HWND hwnd, HDC hdc)
813{
814 BOOL isOwnDC = FALSE;
815 int rc;
816
817 if (hwnd)
818 {
819 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
820 if(wnd == NULL) {
821 dprintf(("ERROR: ReleaseDC %x %x failed", hwnd, hdc));
822 return 0;
823 }
824 isOwnDC = wnd->isOwnDC() && (wnd->getOwnDC() == hdc);
825 if(!isOwnDC)
826 {
827 pDCData pHps = (pDCData)GpiQueryDCData((HPS)hdc);
828 if(pHps && pHps->psType == MICRO_CACHED) {
829 removeClientArea(wnd, pHps);
830 if(pHps->hrgnVis) {
831 GreDestroyRegion(pHps->hps, pHps->hrgnVis);
832 pHps->hrgnVis = 0;
833 }
834 }
835 else {
836 dprintf(("ERROR: ReleaseDC: pHps == NULL!!"));
837 DebugInt3();
838 }
839 }
840 else {
841 dprintf2(("ReleaseDC: CS_OWNDC, not released"));
842 }
843 }
844
845 if(isOwnDC) {
846 rc = TRUE;
847 }
848 else {
849 UnselectGDIObjects(hdc);
850 rc = O32_ReleaseDC (0, hdc);
851 }
852
853 dprintf(("ReleaseDC %x %x", hwnd, hdc));
854 return (rc);
855}
856//******************************************************************************
857// This implementation of GetDCEx supports
858// DCX_WINDOW
859// DCX_CACHE
860// DCX_EXCLUDERGN (complex regions allowed)
861// DCX_INTERSECTRGN (complex regions allowed)
862// DCX_USESTYLE
863// DCX_CLIPSIBLINGS
864// DCX_CLIPCHILDREN
865// DCX_PARENTCLIP
866//
867//TODO: WM_SETREDRAW affects drawingAllowed flag!!
868//******************************************************************************
869HDC WIN32API GetDCEx (HWND hwnd, HRGN hrgn, ULONG flags)
870{
871 Win32BaseWindow *wnd = NULL;
872 HWND hWindow;
873 BOOL success;
874 pDCData pHps = NULL;
875 HPS hps = NULLHANDLE;
876 BOOL drawingAllowed = TRUE;
877 BOOL isWindowOwnDC;
878 BOOL creatingOwnDC = FALSE;
879 PS_Type psType;
880
881 if(hwnd == 0) {
882 dprintf(("error: GetDCEx window %x not found", hwnd));
883 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W);
884 return 0;
885 }
886
887 if(hwnd)
888 {
889 wnd = Win32BaseWindow::GetWindowFromHandle(hwnd);
890 if(wnd == NULL) {
891 dprintf (("ERROR: User32: GetDCEx bad window handle %X!!!!!", hwnd));
892 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W);
893 return 0;
894 }
895 if(flags & DCX_WINDOW_W) {
896 hWindow = wnd->getOS2FrameWindowHandle();
897 }
898 else hWindow = wnd->getOS2WindowHandle();
899 }
900
901 isWindowOwnDC = (((hWindow == HWND_DESKTOP) ? FALSE : (wnd->isOwnDC()))
902 && !(flags & (DCX_CACHE_W|DCX_WINDOW_W)));
903
904 if(isWindowOwnDC) //own dc always for client area
905 {
906 hps = wnd->getOwnDC();
907 if (hps)
908 {
909 pDCData pHps = (pDCData)GpiQueryDCData (hps);
910 if (!pHps)
911 goto error;
912
913 selectClientArea(wnd, pHps);
914
915 //TODO: Is this always necessary??
916 setPageXForm (wnd, pHps);
917 pHps->hdcType = TYPE_1;
918
919 //TODO: intersect/exclude clip region?
920 dprintf (("User32: GetDCEx hwnd %x (%x %x) -> wnd %x hdc %x", hwnd, hrgn, flags, wnd, hps));
921 return (HDC)hps;
922 }
923 else creatingOwnDC = TRUE;
924 }
925
926 if(isWindowOwnDC)
927 {
928 SIZEL sizel = {0,0};
929 hps = GpiCreatePS (WinQueryAnchorBlock (hWindow),
930 WinOpenWindowDC (hWindow),
931 &sizel, PU_PELS | GPIT_MICRO | GPIA_ASSOC );
932 psType = MICRO;
933 // default cp is OS/2 one: set to windows default (ODIN.INI)
934 GpiSetCp(hps, GetDisplayCodepage());
935 }
936 else
937 {
938 if (hWindow == HWND_DESKTOP) {
939 hps = WinGetScreenPS (hWindow);
940 }
941 else {
942 int clipstyle = 0;
943 int clipwnd = HWND_TOP;
944 if(flags & (DCX_USESTYLE_W)) {
945 int style = wnd->getStyle();
946 if(style & WS_CLIPCHILDREN_W) {
947 clipstyle |= PSF_CLIPCHILDREN;
948 }
949 if(style & WS_CLIPSIBLINGS_W) {
950 clipstyle |= PSF_CLIPSIBLINGS;
951 }
952 if(wnd->fHasParentDC()) {
953 clipstyle |= PSF_PARENTCLIP;
954 }
955 }
956 if(flags & DCX_CLIPSIBLINGS_W) {
957 clipstyle |= PSF_CLIPSIBLINGS;
958 }
959 if(flags & DCX_CLIPCHILDREN_W) {
960 clipstyle |= PSF_CLIPCHILDREN;
961 }
962 if(flags & DCX_PARENTCLIP_W) {
963 clipstyle |= PSF_PARENTCLIP;
964 }
965 if(clipstyle) {
966 dprintf2(("WinGetClipPS style %x", clipstyle));
967 hps = WinGetClipPS(hWindow, clipwnd, clipstyle);
968 }
969 else hps = WinGetPS (hWindow);
970
971 // default cp is OS/2 one: set to windows default (ODIN.INI)
972 GpiSetCp(hps, GetDisplayCodepage());
973 }
974 psType = MICRO_CACHED;
975 }
976
977 if (!hps)
978 goto error;
979
980 HPSToHDC (hWindow, hps, NULL, NULL);
981 pHps = (pDCData)GpiQueryDCData (hps);
982
983 if(flags & DCX_WINDOW_W) {
984 removeClientArea(wnd, pHps);
985 }
986 else selectClientArea(wnd, pHps);
987
988 setMapMode(wnd, pHps, MM_TEXT_W);
989
990 if ((flags & DCX_EXCLUDERGN_W) || (flags & DCX_INTERSECTRGN_W))
991 {
992 ULONG BytesNeeded;
993 PRGNDATA RgnData;
994 PRECT pr;
995 int i;
996 RECTL rectl;
997
998 if (!hrgn)
999 goto error;
1000
1001 success = TRUE;
1002 if (flags & DCX_EXCLUDERGN_W)
1003 {
1004#if 0 //CB: todo
1005 long height;
1006
1007 BytesNeeded = GetRegionData (hrgn, 0, NULL);
1008 RgnData = (PRGNDATA_W)_alloca (BytesNeeded);
1009 if (RgnData == NULL)
1010 goto error;
1011 GetRegionData (hrgn, BytesNeeded, RgnData);
1012
1013 i = RgnData->rdh.nCount;
1014 pr = (PRECT)(RgnData->Buffer);
1015
1016 if (flags & DCX_WINDOW_W)
1017 height = wnd->getWindowHeight();
1018 else height = wnd->getClientHeight();
1019
1020 for (; (i > 0) && success; i--, pr++) {
1021 LONG y = pr->yBottom;
1022
1023 pr->yBottom = height - pr->yTop;
1024 pr->yTop = height - y;
1025 success &= GpiExcludeClipRectangle (pHps->hps, pr);
1026 }
1027#endif
1028 }
1029 else //DCX_INTERSECTRGN_W
1030 {
1031 //SvL: I'm getting paint problems when clipping a dc created in GetDCEx
1032 // with a region that covers the entire window (RealPlayer 7 Update 1)
1033 // Using SelectClipRgn here doesn't make any difference.
1034 if(ExtSelectClipRgn(pHps->hps, hrgn, RGN_AND_W) == ERROR_W) {
1035 dprintf(("ExtSelectClipRgn failed!!"));
1036 }
1037 }
1038 if (!success)
1039 goto error;
1040 }
1041
1042 if (creatingOwnDC)
1043 wnd->setOwnDC ((HDC)hps);
1044
1045 pHps->psType = psType;
1046 pHps->hdcType = TYPE_1;
1047 //TODO: WM_SETREDRAW affects drawingAllowed flag!!
1048 GpiSetDrawControl (hps, DCTL_DISPLAY, drawingAllowed ? DCTL_ON : DCTL_OFF);
1049
1050 dprintf (("User32: GetDCEx hwnd %x (%x %x) -> hdc %x", hwnd, hrgn, flags, pHps->hps));
1051 return (HDC)pHps->hps;
1052
1053error:
1054 /* Something went wrong; clean up
1055 */
1056 dprintf(("ERROR: GetDCEx hwnd %x (%x %x) FAILED!", hwnd, hrgn, flags));
1057 DebugInt3();
1058 if (pHps)
1059 {
1060 if (pHps->hps)
1061 {
1062 if(pHps->psType == MICRO_CACHED)
1063 WinReleasePS(pHps->hps);
1064 else
1065 GpiDestroyPS(pHps->hps);
1066 }
1067
1068 if (pHps->hdc) DevCloseDC(pHps->hdc);
1069 if (pHps->hrgnHDC) GpiDestroyRegion(pHps->hps, pHps->hrgnHDC);
1070
1071 O32_DeleteObject (pHps->nullBitmapHandle);
1072 }
1073 SetLastError(ERROR_INVALID_PARAMETER_W);
1074 return NULL;
1075}
1076//******************************************************************************
1077//******************************************************************************
1078HDC WIN32API GetDC (HWND hwnd)
1079{
1080 if(!hwnd)
1081 return GetDCEx( GetDesktopWindow(), 0, DCX_CACHE_W | DCX_WINDOW_W );
1082
1083 return GetDCEx (hwnd, NULL, 0);
1084}
1085//******************************************************************************
1086//******************************************************************************
1087HDC WIN32API GetWindowDC (HWND hwnd)
1088{
1089 if (!hwnd) hwnd = GetDesktopWindow();
1090 return GetDCEx (hwnd, NULL, DCX_WINDOW_W);
1091}
1092//******************************************************************************
1093//Helper for RedrawWindow (RDW_ALLCHILDREN_W)
1094//******************************************************************************
1095LRESULT WIN32API RedrawChildEnumProc(HWND hwnd, LPARAM lParam)
1096{
1097 RedrawWindow(hwnd, NULL, 0, lParam);
1098 return TRUE;
1099}
1100//******************************************************************************
1101// This implementation of RedrawWindow supports
1102// RDW_ERASE
1103// RDW_NOERASE
1104// RDW_INTERNALPAINT
1105// RDW_NOINTERNALPAINT
1106// RDW_INVALIDATE
1107// RDW_VALIDATE
1108// RDW_ERASENOW
1109// RDW_UPDATENOW
1110// RDW_FRAME
1111//
1112//TODO: Works ok for RDW_FRAME??
1113// SDK docs say RDW_FRAME is only valid for RDW_INVALIDATE...
1114//******************************************************************************
1115BOOL WIN32API RedrawWindow(HWND hwnd, const RECT* pRect, HRGN hrgn, DWORD redraw)
1116{
1117 Win32BaseWindow *wnd;
1118
1119 if(pRect) {
1120 dprintf(("RedrawWindow %x (%d,%d)(%d,%d) %x %x", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom, hrgn, redraw));
1121 }
1122 else dprintf(("RedrawWindow %x %x %x %x", hwnd, pRect, hrgn, redraw));
1123
1124 if (hwnd == NULLHANDLE)
1125 {
1126#if 1
1127 // Don't do this for now (causes lots of desktop repaints in WordPad)
1128 SetLastError(ERROR_INVALID_PARAMETER_W);
1129 return FALSE;
1130#else
1131 hwnd = HWND_DESKTOP;
1132 wnd = Win32BaseWindow::GetWindowFromOS2Handle(OSLIB_HWND_DESKTOP);
1133
1134 if (!wnd)
1135 {
1136 dprintf(("USER32:dc: RedrawWindow can't find desktop window %08xh\n",
1137 hwnd));
1138 SetLastError(ERROR_INVALID_PARAMETER_W);
1139 return FALSE;
1140 }
1141#endif
1142 }
1143 else
1144 {
1145 wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
1146
1147 if (!wnd)
1148 {
1149 dprintf(("USER32:dc: RedrawWindow can't find window %08xh\n",
1150 hwnd));
1151 SetLastError(ERROR_INVALID_PARAMETER_W);
1152 return FALSE;
1153 }
1154 if(redraw & RDW_FRAME_W) {
1155 hwnd = wnd->getOS2FrameWindowHandle();
1156 }
1157 else hwnd = wnd->getOS2WindowHandle();
1158 }
1159
1160 BOOL IncludeChildren = (redraw & RDW_ALLCHILDREN_W) ? TRUE : FALSE;
1161 BOOL success = TRUE;
1162 HPS hpsTemp = NULLHANDLE;
1163 HRGN hrgnTemp = NULLHANDLE;
1164 RECTL rectl;
1165
1166 if (hrgn)
1167 {
1168 ULONG BytesNeeded;
1169 PRGNDATA RgnData;
1170 PRECTL pr;
1171 int i;
1172 LONG height;
1173
1174 if(wnd) {
1175 height = (redraw & RDW_FRAME_W) ? wnd->getWindowHeight() : wnd->getClientHeight();
1176 }
1177 else height = OSLibQueryScreenHeight();
1178
1179 if (!hrgn)
1180 goto error;
1181
1182 BytesNeeded = GetRegionData (hrgn, 0, NULL);
1183 RgnData = (PRGNDATA)_alloca (BytesNeeded);
1184 if (RgnData == NULL)
1185 goto error;
1186 GetRegionData (hrgn, BytesNeeded, RgnData);
1187
1188 pr = (PRECTL)(RgnData->Buffer);
1189 for (i = RgnData->rdh.nCount; i > 0; i--, pr++) {
1190 LONG temp = pr->yTop;
1191 pr->yTop = height - pr->yBottom;
1192 pr->yBottom = height - temp;
1193 dprintf2(("RedrawWindow: region (%d,%d) (%d,%d)", pr->xLeft, pr->yBottom, pr->xRight, pr->yTop));
1194 }
1195
1196 hpsTemp = WinGetScreenPS (HWND_DESKTOP);
1197 hrgnTemp = GpiCreateRegion (hpsTemp, RgnData->rdh.nCount, (PRECTL)(RgnData->Buffer));
1198 if (!hrgnTemp) goto error;
1199 }
1200 else if (pRect)
1201 {
1202 if(wnd) {
1203 if(redraw & RDW_FRAME_W) {
1204 mapWin32ToOS2Rect(wnd->getWindowHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1205 }
1206 else mapWin32ToOS2Rect(wnd->getClientHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1207 }
1208 else mapWin32ToOS2Rect(OSLibQueryScreenHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1209 }
1210
1211 if (redraw & RDW_INVALIDATE_W)
1212 {
1213 //TODO: SvL: pingpong.exe doesn't have RDW_NOERASE, but doesn't want WM_ERASEBKGND msgs
1214 if (redraw & RDW_ERASE_W) {
1215 wnd->setEraseBkgnd(TRUE);
1216 }
1217 else wnd->setEraseBkgnd(FALSE);
1218
1219 if (!pRect && !hrgn)
1220 success = WinInvalidateRect (hwnd, NULL, IncludeChildren);
1221 else
1222 if (hrgn) {
1223 success = WinInvalidateRegion (hwnd, hrgnTemp, IncludeChildren);
1224 if(IncludeChildren && WinQueryUpdateRect(hwnd, NULL) == FALSE) {
1225 dprintf(("WARNING: WinQueryUpdateRect %x region %x returned false even though we just invalidated part of a window!!!", hwnd, hrgnTemp));
1226 success = success = WinInvalidateRegion (hwnd, hrgnTemp, FALSE);
1227 }
1228 }
1229 else {
1230 dprintf2(("WinInvalidateRect (%d,%d)(%d,%d)", rectl.xLeft, rectl.yBottom, rectl.xRight, rectl.yTop));
1231 success = WinInvalidateRect (hwnd, &rectl, IncludeChildren);
1232//SvL: If all children are included, then WinInvalidateRect is called
1233// with fIncludeChildren=1 -> rect of hwnd isn't invalidated if child(ren)
1234// overlap(s) the specified rectangle completely (EVEN if window doesn't
1235// have WS_CLIPCHILREN!)
1236// -> example: XWing vs Tie Fighter install window
1237// WinInvalidateRect with fIncludeChildren=0 invalidates both the parent
1238// and child windows
1239//SvL: Can't always set fIncludeChildren to FALSE or else some controls in
1240// the RealPlayer setup application aren't redrawn when invalidating
1241// their parent
1242// SO: Check if IncludeChildren is set and part of the window is invalid
1243// If not -> call WinInvalidateRect with IncludeChildren=0 to force
1244// the window rectangle to be invalidated
1245//
1246 if(IncludeChildren && WinQueryUpdateRect(hwnd, NULL) == FALSE) {
1247 dprintf(("WARNING: WinQueryUpdateRect %x (%d,%d)(%d,%d) returned false even though we just invalidated part of a window!!!", hwnd, rectl.xLeft, rectl.yBottom, rectl.xRight, rectl.yTop));
1248 success = WinInvalidateRect (hwnd, &rectl, FALSE);
1249 }
1250 }
1251
1252 if (!success) goto error;
1253 }
1254 else if (redraw & RDW_VALIDATE_W)
1255 {
1256 if (redraw & RDW_NOERASE_W)
1257 wnd->setEraseBkgnd(FALSE);
1258
1259 if (WinQueryUpdateRect (hwnd, NULL))
1260 {
1261 if(!pRect && !hrgn) {
1262 success = WinValidateRect (hwnd, NULL, IncludeChildren);
1263 }
1264 else
1265 if(hrgn) {
1266 success = WinValidateRegion (hwnd, hrgnTemp, IncludeChildren);
1267 }
1268 else {
1269 success = WinValidateRect (hwnd, &rectl, IncludeChildren);
1270 }
1271 if(!success) goto error;
1272 }
1273 }
1274
1275 if(WinQueryUpdateRect(hwnd, &rectl))
1276 {
1277 //TODO: Does this work if RDW_ALLCHILDREN is set??
1278 if(redraw & RDW_UPDATENOW_W) {
1279 RECT rectUpdate;
1280
1281 if(redraw & RDW_FRAME_W) {
1282 mapOS2ToWin32Rect(wnd->getWindowHeight(), (PRECTLOS2)&rectl, &rectUpdate);
1283 wnd->MsgNCPaint(&rectUpdate);
1284 }
1285
1286 wnd->MsgPaint(0, FALSE);
1287 }
1288 else
1289// if((redraw & RDW_ERASE_W) && (redraw & RDW_ERASENOW_W))
1290 if(redraw & RDW_ERASENOW_W && wnd->needsEraseBkgnd())
1291 wnd->setEraseBkgnd(sendEraseBkgnd(wnd) == 0);
1292// if(redraw & RDW_ALLCHILDREN_W) {
1293// EnumChildWindows(wnd->getWindowHandle(), RedrawChildEnumProc, redraw);
1294// }
1295 }
1296 else if((redraw & RDW_INTERNALPAINT_W) && !(redraw & RDW_INVALIDATE_W))
1297 {
1298 if(redraw & RDW_UPDATENOW_W) {
1299 wnd->MsgPaint(0, FALSE);
1300 }
1301 else PostMessageA(hwnd, WINWM_PAINT, 0, 0);
1302 }
1303
1304error:
1305 /* clean up */
1306 if (hrgnTemp)
1307 GpiDestroyRegion (hpsTemp, hrgnTemp);
1308
1309 if (hpsTemp)
1310 WinReleasePS (hpsTemp);
1311
1312 if (!success) {
1313 dprintf(("RedrawWindow failure!"));
1314 SetLastError(ERROR_INVALID_PARAMETER_W);
1315 }
1316 return (success);
1317}
1318//******************************************************************************
1319//******************************************************************************
1320BOOL WIN32API UpdateWindow (HWND hwnd)
1321{
1322 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
1323 RECTL rectl;
1324 BOOL rc;
1325
1326 if(!wnd) {
1327 dprintf (("ERROR: User32: UpdateWindow INVALID hwnd %x", hwnd));
1328 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W);
1329 return FALSE;
1330 }
1331
1332#ifdef DEBUG
1333 if(WinQueryUpdateRect(wnd->getOS2WindowHandle(), &rectl))
1334 {
1335 RECT rectUpdate;
1336 mapOS2ToWin32Rect(wnd->getClientHeight(), (PRECTLOS2)&rectl, &rectUpdate);
1337
1338 dprintf (("User32: UpdateWindow hwnd %x: update rectangle (%d,%d)(%d,%d)", hwnd, rectUpdate.left, rectUpdate.top, rectUpdate.right, rectUpdate.bottom));
1339 }
1340 else dprintf (("User32: UpdateWindow hwnd %x; EMPTY update rectangle (vis=%d/%d, show=%d/%d)", hwnd, WinIsWindowVisible(wnd->getOS2FrameWindowHandle()), WinIsWindowVisible(wnd->getOS2WindowHandle()), WinIsWindowShowing(wnd->getOS2FrameWindowHandle()), WinIsWindowShowing(wnd->getOS2WindowHandle())));
1341#endif
1342 //SvL: This doesn't work right (Wine uses RDW_NOCHILDREN_W -> doesn't work here)
1343 // Breaks vpbuddy
1344 //rc = RedrawWindow(hwnd, NULL, 0, RDW_UPDATENOW_W | RDW_ALLCHILDREN_W);
1345 // -> RDW_UPDATENOW causes WM_PAINT messages to be directy posted to window
1346 // handler; possibly bypassing queued WM_PAINT messages for parent window(s)
1347 // -> out of sync painting (i.e. parent paints over child)
1348
1349// if(!WinIsWindowShowing(wnd->getOS2FrameWindowHandle()) || !WinIsWindowShowing(wnd->getOS2WindowHandle())) {
1350// dprintf(("UpdateWindow: window not showing %d/%d", WinIsWindowShowing(wnd->getOS2FrameWindowHandle()), WinIsWindowShowing(wnd->getOS2WindowHandle()) ));
1351// return FALSE;
1352// }
1353 //Must use frame window here. If the frame window has a valid update region and we call
1354 //WinUpdateWindow for the client window, then no WM_PAINT messages will be sent.
1355 rc = WinUpdateWindow(wnd->getOS2FrameWindowHandle());
1356#ifdef DEBUG
1357 if(WinQueryUpdateRect(wnd->getOS2WindowHandle(), NULL))
1358 {
1359 //if parent has valid update region then WinUpdateWindow will still fail..
1360 //might be harmless and happen even in windows
1361 dprintf (("ERROR: User32: UpdateWindow didn't send WM_PAINT messages!!"));
1362 }
1363#endif
1364 return rc;
1365}
1366//******************************************************************************
1367//******************************************************************************
1368BOOL WIN32API ValidateRect( HWND hwnd, const RECT * lprc)
1369{
1370 if(lprc) {
1371 dprintf(("USER32: ValidateRect %x (%d,%d)(%d,%d)", hwnd, lprc->left, lprc->top, lprc->right, lprc->bottom));
1372 }
1373 else dprintf(("USER32: ValidateRect %x", hwnd));
1374
1375 return RedrawWindow( hwnd, lprc, 0, RDW_VALIDATE_W | RDW_NOCHILDREN_W | (hwnd==0 ? RDW_UPDATENOW_W : 0));
1376}
1377//******************************************************************************
1378//******************************************************************************
1379BOOL WIN32API ValidateRgn( HWND hwnd, HRGN hrgn)
1380{
1381 dprintf(("USER32: ValidateRgn %x %x", hwnd, hrgn));
1382 return RedrawWindow( hwnd, NULL, hrgn, RDW_VALIDATE_W | RDW_NOCHILDREN_W | (hwnd==0 ? RDW_UPDATENOW_W : 0));
1383}
1384//******************************************************************************
1385//******************************************************************************
1386BOOL WIN32API InvalidateRect (HWND hwnd, const RECT *pRect, BOOL erase)
1387{
1388 BOOL result;
1389
1390 if(pRect) {
1391 dprintf(("InvalidateRect %x (%d,%d)(%d,%d) erase=%d", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom, erase));
1392 }
1393 else dprintf(("InvalidateRect %x NULL erase=%d", hwnd, erase));
1394#if 1
1395 result = RedrawWindow (hwnd, pRect, NULLHANDLE,
1396 RDW_INVALIDATE_W |
1397 (erase ? RDW_ERASE_W : 0) |
1398 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1399#else
1400 result = RedrawWindow (hwnd, pRect, NULLHANDLE,
1401 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1402 (erase ? RDW_ERASE_W : RDW_NOERASE_W) |
1403 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1404#endif
1405 return (result);
1406}
1407//******************************************************************************
1408//******************************************************************************
1409BOOL WIN32API InvalidateRgn (HWND hwnd, HRGN hrgn, BOOL erase)
1410{
1411 BOOL result;
1412
1413 dprintf(("InvalidateRgn %x %x erase=%d", hwnd, hrgn, erase));
1414#if 1
1415 result = RedrawWindow (hwnd, NULL, hrgn,
1416 RDW_INVALIDATE_W |
1417 (erase ? RDW_ERASE_W : 0) |
1418 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1419#else
1420 result = RedrawWindow (hwnd, NULL, hrgn,
1421 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1422 (erase ? RDW_ERASE_W : RDW_NOERASE_W) |
1423 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1424#endif
1425 return (result);
1426}
1427//******************************************************************************
1428//TODO: Change for client rectangle!!!!!
1429//******************************************************************************
1430BOOL setPMRgnIntoWinRgn (HPS hps, HRGN hrgnPM, HRGN hrgnWin, LONG height)
1431{
1432 BOOL rc;
1433 RGNRECT rgnRect;
1434 rgnRect.ircStart = 1;
1435 rgnRect.crc = 0;
1436 rgnRect.ulDirection = RECTDIR_LFRT_TOPBOT;
1437
1438 rc = GpiQueryRegionRects (hps, hrgnPM, NULL, &rgnRect, NULL);
1439
1440 if (rc && (rgnRect.crcReturned > 0))
1441 {
1442 PRECTL Rcls = new RECTL[rgnRect.crcReturned];
1443 PRECTL pRcl = Rcls;
1444
1445 if (Rcls != NULL)
1446 {
1447 rgnRect.crc = rgnRect.crcReturned;
1448 rc = GpiQueryRegionRects (hps, hrgnPM, NULL, &rgnRect, Rcls);
1449
1450 rc = SetRectRgn(hrgnWin, pRcl->xLeft, height - pRcl->yTop,
1451 pRcl->xRight, height - pRcl->yBottom);
1452
1453 if (rgnRect.crcReturned > 1)
1454 {
1455 int i;
1456 HRGN temp;
1457 temp = CreateRectRgn (0, 0, 1, 1);
1458
1459 for (i = 1, pRcl++; rc && (i < rgnRect.crcReturned); i++, pRcl++)
1460 {
1461 rc = SetRectRgn (temp, pRcl->xLeft, height - pRcl->yTop,
1462 pRcl->xRight, height - pRcl->yBottom);
1463 rc &= CombineRgn (hrgnWin, hrgnWin, temp, RGN_OR_W);
1464 }
1465 DeleteObject (temp);
1466 }
1467 delete[] Rcls;
1468 }
1469 else
1470 {
1471 rc = FALSE;
1472 }
1473 }
1474 else
1475 {
1476 rc = SetRectRgn (hrgnWin, 0, 0, 0, 0);
1477 }
1478
1479 return (rc);
1480}
1481//******************************************************************************
1482//TODO: Check if this one works correctly...
1483//Have to check if dc is for frame or client!!
1484//******************************************************************************
1485BOOL WIN32API ScrollDC(HDC hDC, int dx, int dy, const RECT *pScroll,
1486 const RECT *pClip, HRGN hrgnUpdate, LPRECT pRectUpdate)
1487{
1488 Win32BaseWindow *wnd;
1489 BOOL rc = TRUE;
1490
1491 dprintf (("USER32: ScrollDC %x (%d,%d), %x %x %x %x", hDC, dx, dy, pScroll, pClip, hrgnUpdate, pRectUpdate));
1492
1493 if (!hDC)
1494 {
1495 return (FALSE);
1496 }
1497
1498 pDCData pHps = (pDCData)GpiQueryDCData ((HPS)hDC);
1499 HWND hwnd = pHps->hwnd;
1500 if(pHps->isClient) {
1501 wnd = Win32BaseWindow::GetWindowFromOS2Handle (hwnd);
1502 }
1503 else {
1504 //assume (for now) that this is not allowed (TODO)
1505 dprintf(("ScrollDC used for frame HDC!!"));
1506 DebugInt3();
1507 return FALSE;
1508 }
1509
1510 if((hwnd == NULLHANDLE) || !wnd)
1511 {
1512 return (FALSE);
1513 }
1514
1515 POINTL ptl[2] = { 0, 0, dx, dy };
1516
1517 GpiConvert (pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, ptl);
1518 dx = (int)(ptl[1].x - ptl[0].x);
1519 dy = (int)(ptl[1].y - ptl[0].y);
1520
1521 RECT scrollRect;
1522 RECT clipRect;
1523
1524 if (pClip)
1525 {
1526 memcpy(&clipRect, pClip, sizeof(clipRect));
1527
1528 if ((pHps->graphicsMode == GM_COMPATIBLE_W) &&
1529 (clipRect.left != clipRect.right) &&
1530 (clipRect.bottom != clipRect.top))
1531 {
1532 if (abs((int)pHps->viewportXExt) <= abs((int)pHps->windowExt.cx))
1533 clipRect.right -= abs(pHps->worldXDeltaFor1Pixel);
1534 else
1535 clipRect.left += abs(pHps->worldXDeltaFor1Pixel);
1536
1537 if (abs((int)pHps->viewportYExt) <= abs((int)pHps->windowExt.cy))
1538 clipRect.bottom -= abs(pHps->worldYDeltaFor1Pixel);
1539 else
1540 clipRect.top += abs(pHps->worldYDeltaFor1Pixel);
1541 }
1542 GpiConvert(pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, (PPOINTL)&clipRect);
1543 if (clipRect.right < clipRect.left) {
1544 ULONG temp = clipRect.left;
1545 clipRect.left = clipRect.right;
1546 clipRect.right = temp;
1547 }
1548 if (clipRect.bottom < clipRect.top) {
1549 ULONG temp = clipRect.top;
1550 clipRect.top = clipRect.bottom;
1551 clipRect.bottom = temp;
1552 }
1553 }
1554
1555 if (pScroll)
1556 {
1557 memcpy(&scrollRect, pScroll, sizeof(scrollRect));
1558
1559 if ((pHps->graphicsMode == GM_COMPATIBLE_W) &&
1560 (scrollRect.left != scrollRect.right) &&
1561 (scrollRect.top != scrollRect.bottom))
1562 {
1563 if (abs((int)pHps->viewportXExt) <= abs((int)pHps->windowExt.cx))
1564 scrollRect.right -= abs(pHps->worldXDeltaFor1Pixel);
1565 else
1566 scrollRect.left += abs(pHps->worldXDeltaFor1Pixel);
1567
1568 if (abs((int)pHps->viewportYExt) <= abs((int)pHps->windowExt.cy))
1569 scrollRect.bottom -= abs(pHps->worldYDeltaFor1Pixel);
1570 else
1571 scrollRect.top += abs(pHps->worldYDeltaFor1Pixel);
1572 }
1573 GpiConvert (pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, (PPOINTL)&scrollRect);
1574 if (scrollRect.right < scrollRect.left) {
1575 ULONG temp = scrollRect.left;
1576 scrollRect.left = scrollRect.right;
1577 scrollRect.right = temp;
1578 }
1579 if (scrollRect.bottom < scrollRect.top) {
1580 ULONG temp = scrollRect.top;
1581 scrollRect.top = scrollRect.bottom;
1582 scrollRect.bottom = temp;
1583 }
1584 }
1585 RECTL rectlUpdate;
1586 HRGN hrgn = NULLHANDLE;
1587 RECTL clipOS2;
1588 RECTL scrollOS2;
1589 PRECTL pScrollOS2 = NULL;
1590 PRECTL pClipOS2 = NULL;
1591 HPS hpsScreen = 0;
1592
1593 if(pScroll) {
1594 mapWin32ToOS2Rect(wnd->getClientHeight(), &scrollRect, (PRECTLOS2)&scrollOS2);
1595 pScrollOS2 = &scrollOS2;
1596 }
1597
1598 if(pClip) {
1599 mapWin32ToOS2Rect(wnd->getClientHeight(), &clipRect, (PRECTLOS2)&clipOS2);
1600 pClipOS2 = &clipOS2;
1601 }
1602
1603 if(hrgnUpdate) {
1604 RECTL rectl = { 1, 1, 2, 2 };
1605
1606 hpsScreen = WinGetScreenPS (HWND_DESKTOP);
1607 hrgn = GpiCreateRegion(hpsScreen, 1, &rectl);
1608 }
1609
1610 LONG lComplexity = WinScrollWindow(hwnd, dx, dy, pScrollOS2,
1611 pClipOS2, hrgn, &rectlUpdate, 0);
1612 if (lComplexity == RGN_ERROR)
1613 {
1614 return (FALSE);
1615 }
1616
1617 RECT winRectUpdate;
1618
1619 mapOS2ToWin32Rect(wnd->getClientHeight(), (PRECTLOS2)&rectlUpdate, &winRectUpdate);
1620
1621 if (pRectUpdate)
1622 *pRectUpdate = winRectUpdate;
1623
1624 if (hrgnUpdate) {
1625 rc = setPMRgnIntoWinRgn(hpsScreen, hrgn, hrgnUpdate, wnd->getClientHeight());
1626 GpiDestroyRegion(hpsScreen, hrgn);
1627 WinReleasePS(hpsScreen);
1628 }
1629
1630 return (rc);
1631}
1632//******************************************************************************
1633//Using WinScrollWindow to scroll child windows is better (smoother).
1634//******************************************************************************
1635INT WIN32API ScrollWindowEx(HWND hwnd, int dx, int dy, const RECT *pScroll, const RECT *pClip,
1636 HRGN hrgnUpdate, PRECT pRectUpdate, UINT scrollFlag)
1637{
1638 Win32BaseWindow *window;
1639 APIRET rc;
1640 RECTL scrollRect;
1641 RECTL clipRect;
1642 PRECTL pScrollOS2 = NULL;
1643 PRECTL pClipOS2 = NULL;
1644 ULONG scrollFlagsOS2 = 0;
1645 int orgdy = dy;
1646 int regionType = ERROR_W;
1647
1648 window = Win32BaseWindow::GetWindowFromHandle(hwnd);
1649 if(!window) {
1650 dprintf(("ScrollWindowEx, window %x not found", hwnd));
1651 return 0;
1652 }
1653
1654 dprintf(("ScrollWindowEx %x %d %d %x %x", hwnd, dx, dy, pScroll, pClip));
1655
1656 dy = revertDy (window, dy);
1657
1658 if (scrollFlag & SW_INVALIDATE_W) scrollFlagsOS2 |= SW_INVALIDATERGN;
1659 if (scrollFlag & SW_SCROLLCHILDREN_W) scrollFlagsOS2 |= SW_SCROLLCHILDREN;
1660
1661 if(pScroll) {
1662 mapWin32ToOS2Rect(window->getClientHeight(), (RECT *)pScroll, (PRECTLOS2)&scrollRect);
1663 pScrollOS2 = &scrollRect;
1664 }
1665
1666 if(pClip) {
1667 mapWin32ToOS2Rect(window->getClientHeight(), (RECT *)pClip, (PRECTLOS2)&clipRect);
1668 pClipOS2 = &clipRect;
1669 }
1670
1671 RECTL rectlUpdate;
1672 HRGN hrgn = NULLHANDLE;
1673 HPS hpsScreen = 0;
1674
1675 if(hrgnUpdate) {
1676 RECTL rectl = { 1, 1, 2, 2 };
1677
1678 hpsScreen = WinGetScreenPS (HWND_DESKTOP);
1679 hrgn = GpiCreateRegion(hpsScreen, 1, &rectl);
1680 }
1681
1682 if (scrollFlag & SW_SMOOTHSCROLL_W)
1683 {
1684 INT time = (scrollFlag >> 16) & 0xFFFF;
1685
1686 //CB: todo, scroll in several steps
1687 // is time in ms? time <-> iteration count?
1688 }
1689
1690 LONG lComplexity = WinScrollWindow(window->getOS2WindowHandle(), dx, dy,
1691 pScrollOS2, pClipOS2,
1692 hrgn, &rectlUpdate, scrollFlagsOS2);
1693 if (lComplexity == RGN_ERROR)
1694 {
1695 return ERROR_W;
1696 }
1697
1698 //Notify children that they have moved (according to the SDK docs,
1699 //they only receive a WM_MOVE message)
1700 //(PM only does this for windows with CS_MOVENOTIFY class)
1701 //TODO: Verify this (no WM_WINDOWPOSCHANGING/ED?)
1702 if (scrollFlag & SW_SCROLLCHILDREN_W)
1703 {
1704 HWND hwndChild;
1705 RECT rectChild, rc;
1706
1707 dprintf(("ScrollWindowEx: Scroll child windows"));
1708 GetClientRect(hwnd, &rc);
1709 if (pScroll) IntersectRect(&rc, &rc, pScroll);
1710
1711 hwndChild = GetWindow(hwnd, GW_CHILD_W);
1712
1713 while(hwndChild)
1714 {
1715 Win32BaseWindow *child;
1716
1717 child = Win32BaseWindow::GetWindowFromHandle(hwndChild);
1718 if(!child) {
1719 dprintf(("ERROR: ScrollWindowEx, child %x not found", hwnd));
1720 return 0;
1721 }
1722 rectChild = *child->getWindowRect();
1723 if(!pScroll || IntersectRect(&rectChild, &rectChild, &rc))
1724 {
1725 dprintf(("ScrollWindowEx: Scroll child window %x", hwndChild));
1726 child->ScrollWindow(dx, orgdy);
1727 }
1728 hwndChild = GetWindow(hwndChild, GW_HWNDNEXT_W);
1729 }
1730 dprintf(("***ScrollWindowEx: Scroll child windows DONE"));
1731 }
1732
1733 RECT winRectUpdate;
1734
1735 mapOS2ToWin32Rect(window->getClientHeight(), (PRECTLOS2)&rectlUpdate, &winRectUpdate);
1736
1737 if (pRectUpdate)
1738 *pRectUpdate = winRectUpdate;
1739
1740 if (hrgnUpdate) {
1741 rc = setPMRgnIntoWinRgn(hpsScreen, hrgn, hrgnUpdate, window->getClientHeight());
1742 GpiDestroyRegion(hpsScreen, hrgn);
1743 WinReleasePS(hpsScreen);
1744 }
1745
1746#if 0
1747 //SvL: WinScrollWindow already invalidates the area; no need to do it again
1748 //(call to invalidateRect was wrong; has to include erase flag)
1749 if ((scrollFlag & SW_INVALIDATE_W) &&
1750 ((lComplexity == RGN_RECT) || (lComplexity == RGN_COMPLEX)))
1751 {
1752 rc = RedrawWindow (hwnd, &winRectUpdate, NULLHANDLE,
1753 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1754 ((scrollFlag & SW_ERASE_W) ? RDW_ERASE_W : 0) |
1755 RDW_UPDATENOW_W);
1756
1757// rc = InvalidateRect (hwnd, &winRectUpdate, (scrollFlag & SW_ERASE_W) ? 1 : 0);
1758 if (rc == FALSE)
1759 {
1760 return (0);
1761 }
1762 }
1763#endif
1764
1765 switch (lComplexity)
1766 {
1767 case RGN_NULL:
1768 regionType = NULLREGION_W;
1769 break;
1770 case RGN_RECT:
1771 regionType = SIMPLEREGION_W;
1772 break;
1773 case RGN_COMPLEX:
1774 regionType = COMPLEXREGION_W;
1775 break;
1776 default:
1777 regionType = ERROR_W;
1778 break;
1779 }
1780
1781 return (regionType);
1782}
1783//******************************************************************************
1784//******************************************************************************
1785BOOL WIN32API ScrollWindow(HWND hwnd, int dx, int dy, const RECT *pScroll, const RECT *pClip)
1786{
1787 Win32BaseWindow *window;
1788
1789 window = Win32BaseWindow::GetWindowFromHandle(hwnd);
1790 if(!window) {
1791 dprintf(("ScrollWindow, window %x not found", hwnd));
1792 return 0;
1793 }
1794 dprintf(("ScrollWindow %x %d %d %x %x", hwnd, dx, dy, pScroll, pClip));
1795 return (ERROR_W != ScrollWindowEx(hwnd, dx, dy, pScroll, pClip, 0, NULL,
1796 (pScroll ? 0 : SW_SCROLLCHILDREN_W) |
1797 SW_INVALIDATE_W ));
1798}
1799//******************************************************************************
1800//******************************************************************************
1801HWND WIN32API WindowFromDC(HDC hdc)
1802{
1803 pDCData pHps = (pDCData)GpiQueryDCData( (HPS)hdc );
1804
1805 dprintf2(("USER32: WindowFromDC %x", hdc));
1806 if ( pHps )
1807 return OS2ToWin32Handle(pHps->hwnd);
1808 else
1809 return 0;
1810}
1811//******************************************************************************
1812//******************************************************************************
1813
Note: See TracBrowser for help on using the repository browser.