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

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

RedrawWindow fix for desktop window

File size: 58.9 KB
Line 
1/* $Id: dc.cpp,v 1.105 2001-05-23 08:35:57 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) {
516 wnd = Win32BaseWindow::GetWindowFromOS2Handle(hwnd);
517 }
518 else
519 if(pHps->isClient) {
520 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
521 }
522 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
523 return clientHeight(wnd, hwnd, pHps);
524}
525//******************************************************************************
526//******************************************************************************
527int WIN32API setMapMode(pDCData pHps, int mode)
528{
529 Win32BaseWindow *wnd;
530
531 if(pHps->isClient) {
532 wnd = Win32BaseWindow::GetWindowFromOS2Handle(pHps->hwnd);
533 }
534 else wnd = Win32BaseWindow::GetWindowFromOS2FrameHandle(pHps->hwnd);
535 return setMapMode(wnd, pHps, mode);
536}
537//******************************************************************************
538//******************************************************************************
539BOOL isYup (pDCData pHps)
540{
541 if (((pHps->windowExt.cy < 0) && (pHps->viewportYExt > 0.0)) ||
542 ((pHps->windowExt.cy > 0) && (pHps->viewportYExt < 0.0)))
543 {
544 if ((pHps->graphicsMode == GM_COMPATIBLE_W) ||
545 ((pHps->graphicsMode == GM_ADVANCED_W) && (pHps->xform.eM22 >= 0.0)))
546 return TRUE;
547 }
548 else
549 {
550 if ((pHps->graphicsMode == GM_ADVANCED_W) && (pHps->xform.eM22 < 0.0))
551 return TRUE;
552 }
553 return FALSE;
554}
555//******************************************************************************
556//******************************************************************************
557INT revertDy (Win32BaseWindow *wnd, INT dy)
558{
559 //SvL: Hack for memory.exe (doesn't get repainted properly otherwise)
560// if (wnd->isOwnDC() && wnd->getOwnDC())
561 if (wnd->isOwnDC())
562 {
563 pDCData pHps = (pDCData)GpiQueryDCData (wnd->getOwnDC());
564
565 if (pHps != NULLHANDLE)
566 if (!isYup (pHps))
567 dy = -dy;
568 }
569 else
570 {
571 dy = -dy;
572 }
573 return (dy);
574}
575//******************************************************************************
576//******************************************************************************
577HDC sendEraseBkgnd (Win32BaseWindow *wnd)
578{
579 BOOL erased;
580 HWND hwnd;
581 HDC hdc;
582 HPS hps;
583 HRGN hrgnUpdate, hrgnOld, hrgnClip, hrgnCombined;
584 RECTL rectl = { 1, 1, 2, 2 };
585
586 hwnd = wnd->getOS2WindowHandle();
587 hps = WinGetPS(hwnd);
588
589 hrgnUpdate = GpiCreateRegion (hps, 1, &rectl);
590 WinQueryUpdateRegion (hwnd, hrgnUpdate);
591 hrgnClip = GpiQueryClipRegion (hps);
592
593 if (hrgnClip == NULLHANDLE)
594 {
595 GpiSetClipRegion (hps, hrgnUpdate, &hrgnOld);
596 }
597 else
598 {
599 hrgnCombined = GpiCreateRegion (hps, 1, &rectl);
600 GpiCombineRegion (hps, hrgnCombined, hrgnClip, hrgnUpdate, CRGN_AND);
601 GpiSetClipRegion (hps, hrgnCombined, &hrgnOld);
602 GpiDestroyRegion (hps, hrgnUpdate);
603 GpiDestroyRegion (hps, hrgnClip);
604 }
605 if (hrgnOld != NULLHANDLE)
606 GpiDestroyRegion (hps, hrgnOld);
607
608 hdc = HPSToHDC (hwnd, hps, NULL, NULL);
609
610 erased = wnd->MsgEraseBackGround (hdc);
611
612 DeleteHDC (hdc);
613 WinReleasePS (hps);
614
615 return erased;
616}
617//******************************************************************************
618//******************************************************************************
619void releaseOwnDC (HDC hps)
620{
621 pDCData pHps = (pDCData)GpiQueryDCData ((HPS)hps);
622
623 dprintf2(("releaseOwnDC %x", hps));
624
625 if (pHps) {
626 if (pHps->hrgnHDC)
627 GpiDestroyRegion (pHps->hps, pHps->hrgnHDC);
628
629 GpiSetBitmap (pHps->hps, NULL);
630 O32_DeleteObject (pHps->nullBitmapHandle);
631 GpiDestroyPS(pHps->hps);
632
633 if (pHps->hdc)
634 DevCloseDC(pHps->hdc);
635 }
636}
637//******************************************************************************
638//******************************************************************************
639HDC WIN32API BeginPaint (HWND hWnd, PPAINTSTRUCT_W lpps)
640{
641 HWND hwnd = hWnd ? hWnd : HWND_DESKTOP;
642 pDCData pHps = NULLHANDLE;
643 HPS hPS_ownDC = NULLHANDLE, hpsPaint = 0;
644 RECTL rectl = {0, 0, 1, 1};
645 HRGN hrgnOldClip;
646 LONG lComplexity;
647 RECTL rectlClient;
648 RECTL rectlClip;
649
650 if(lpps == NULL) {
651 //BeginPaint does NOT change last error in this case
652 //(verified in NT4, SP6)
653 dprintf (("USER32: BeginPaint %x NULL PAINTSTRUCT pointer", hWnd));
654 return 0;
655 }
656 memset(lpps, 0, sizeof(*lpps));
657
658 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle(hwnd);
659 if(!wnd) {
660 dprintf (("USER32: BeginPaint %x %x: invalid window handle!!", hWnd, lpps));
661 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W); //(verified in NT4, SP6)
662 return (HDC)0;
663 }
664 HWND hwndClient = wnd->getOS2WindowHandle();
665
666 if(hwnd != HWND_DESKTOP && wnd->isOwnDC())
667 {
668 hPS_ownDC = wnd->getOwnDC();
669 //SvL: Hack for memory.exe (doesn't get repainted properly otherwise)
670 if(hPS_ownDC) {
671 pHps = (pDCData)GpiQueryDCData(hPS_ownDC);
672 if (!pHps)
673 {
674 dprintf (("USER32: BeginPaint %x invalid parameter %x", hWnd, lpps));
675 SetLastError(ERROR_INVALID_PARAMETER_W);
676 return (HDC)NULLHANDLE;
677 }
678 hpsPaint = hPS_ownDC;
679 }
680 }
681 if(!hpsPaint) {
682 hpsPaint = GetDCEx(hwnd, 0, (DCX_CACHE_W|DCX_USESTYLE_W));
683 pHps = (pDCData)GpiQueryDCData(hpsPaint);
684 if (!pHps)
685 {
686 dprintf (("USER32: BeginPaint %x invalid parameter %x", hWnd, lpps));
687 SetLastError(ERROR_INVALID_PARAMETER_W);
688 return (HDC)NULLHANDLE;
689 }
690 }
691
692 if(WinQueryUpdateRect(hwndClient, &rectl) == FALSE)
693 {
694 memset(&rectl, 0, sizeof(rectl));
695 dprintf (("USER32: WARNING: WinQueryUpdateRect failed (error or no update rectangle)!!"));
696
697 HRGN hrgnClip = GpiCreateRegion(pHps->hps, 1, &rectl);
698 GpiSetClipRegion(pHps->hps, hrgnClip, &hrgnOldClip);
699
700 selectClientArea(wnd, pHps);
701
702 //save old clip region (restored for CS_OWNDC windows in EndPaint)
703 wnd->SetClipRegion(hrgnOldClip);
704 lComplexity = RGN_NULL;
705 }
706 else {
707 rectlClip.yBottom = rectlClip.xLeft = 0;
708 rectlClip.yTop = rectlClip.xRight = 1;
709
710 //Query update region
711 HRGN hrgnClip = GpiCreateRegion(pHps->hps, 1, &rectlClip);
712 WinQueryUpdateRegion(hwndClient, hrgnClip);
713 WinValidateRegion(hwndClient, hrgnClip, FALSE);
714
715 dprintfRegion(pHps->hps, wnd->getWindowHandle(), hrgnClip);
716
717#ifdef DEBUG
718 //Note: GpiQueryClipBox returns logical points
719 lComplexity = GpiQueryClipBox(pHps->hps, &rectlClip);
720 dprintf(("ClipBox (%d): (%d,%d)(%d,%d)", lComplexity, rectlClip.xLeft, rectlClip.yBottom, rectlClip.xRight, rectlClip.yTop));
721#endif
722
723 //set clip region
724 lComplexity = GpiSetClipRegion(pHps->hps, hrgnClip, &hrgnOldClip);
725
726 if(lComplexity == RGN_NULL) {
727 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())));
728 }
729 else dprintf (("BeginPaint %x: (show=%d/%d vis=%d/%d)", hWnd, WinIsWindowVisible(wnd->getOS2FrameWindowHandle()), WinIsWindowVisible(wnd->getOS2WindowHandle()), WinIsWindowShowing(wnd->getOS2FrameWindowHandle()), WinIsWindowShowing(wnd->getOS2WindowHandle())));
730
731 selectClientArea(wnd, pHps);
732
733#ifdef DEBUG
734 //Note: GpiQueryClipBox returns logical points
735 GpiQueryClipBox(pHps->hps, &rectlClip);
736 dprintf(("ClipBox (%d): (%d,%d)(%d,%d)", lComplexity, rectlClip.xLeft, rectlClip.yBottom, rectlClip.xRight, rectlClip.yTop));
737#endif
738 //save old clip region (restored for CS_OWNDC windows in EndPaint)
739 wnd->SetClipRegion(hrgnOldClip);
740 }
741
742 if(hPS_ownDC == 0)
743 setMapMode (wnd, pHps, MM_TEXT_W);
744 else
745 setPageXForm(wnd, pHps);
746
747 pHps->hdcType = TYPE_3;
748
749 HideCaret(hwnd);
750 WinShowTrackRect(wnd->getOS2WindowHandle(), FALSE);
751
752 if((wnd->needsEraseBkgnd() || wnd->IsVisibleRegionChanged()) && lComplexity != RGN_NULL) {
753 wnd->setEraseBkgnd(FALSE);
754 wnd->SetVisibleRegionChanged(FALSE);
755 lpps->fErase = (wnd->MsgEraseBackGround(pHps->hps) == 0);
756 }
757 else lpps->fErase = TRUE;
758
759 lpps->hdc = (HDC)pHps->hps;
760
761 if(lComplexity != RGN_NULL) {
762 long height = wnd->getClientHeight();
763 lpps->rcPaint.top = height - rectl.yTop;
764 lpps->rcPaint.left = rectl.xLeft;
765 lpps->rcPaint.bottom = height - rectl.yBottom;
766 lpps->rcPaint.right = rectl.xRight;
767 //BeginPaint must return logical points instead of device points.
768 //(not the same if e.g. app changes page viewport)
769 DPtoLP(lpps->hdc, (LPPOINT)&lpps->rcPaint, 2);
770 }
771 else {
772 lpps->rcPaint.bottom = lpps->rcPaint.top = 0;
773 lpps->rcPaint.right = lpps->rcPaint.left = 0;
774 }
775
776 SetLastError(0);
777 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));
778 return (HDC)pHps->hps;
779}
780//******************************************************************************
781//******************************************************************************
782BOOL WIN32API EndPaint (HWND hWnd, const PAINTSTRUCT_W *pPaint)
783{
784 HWND hwnd = hWnd ? hWnd : HWND_DESKTOP;
785 HRGN hrgnOld;
786 pDCData pHps;
787
788 dprintf (("USER32: EndPaint(%x)", hwnd));
789
790 if (!pPaint || !pPaint->hdc )
791 return TRUE;
792
793 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle(hwnd);
794
795 if (!wnd) goto exit;
796
797 pHps = (pDCData)GpiQueryDCData((HPS)pPaint->hdc);
798 if (pHps && (pHps->hdcType == TYPE_3))
799 {
800 GpiSetClipRegion(pHps->hps, wnd->GetClipRegion(), &hrgnOld);
801 wnd->SetClipRegion(0);
802 if(hrgnOld) {
803 GpiDestroyRegion(pHps->hps, hrgnOld);
804 }
805 pHps->hdcType = TYPE_1; //otherwise Open32's ReleaseDC fails
806 ReleaseDC(hwnd, pPaint->hdc);
807 }
808 else {
809 dprintf(("EndPaint: wrong hdc %x!!", pPaint->hdc));
810 }
811 wnd->setEraseBkgnd(TRUE);
812 ShowCaret(hwnd);
813 WinShowTrackRect(wnd->getOS2WindowHandle(), TRUE);
814
815exit:
816 SetLastError(0);
817 return TRUE;
818}
819//******************************************************************************
820//******************************************************************************
821int WIN32API ReleaseDC (HWND hwnd, HDC hdc)
822{
823 BOOL isOwnDC = FALSE;
824 int rc;
825
826 if (hwnd)
827 {
828 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
829 if(wnd == NULL) {
830 dprintf(("ERROR: ReleaseDC %x %x failed", hwnd, hdc));
831 return 0;
832 }
833 isOwnDC = wnd->isOwnDC() && (wnd->getOwnDC() == hdc);
834 if(!isOwnDC)
835 {
836 pDCData pHps = (pDCData)GpiQueryDCData((HPS)hdc);
837 if(pHps && pHps->psType == MICRO_CACHED) {
838 removeClientArea(wnd, pHps);
839 if(pHps->hrgnVis) {
840 GreDestroyRegion(pHps->hps, pHps->hrgnVis);
841 pHps->hrgnVis = 0;
842 }
843 }
844 else {
845 dprintf(("ERROR: ReleaseDC: pHps == NULL!!"));
846 DebugInt3();
847 }
848 }
849 else {
850 dprintf2(("ReleaseDC: CS_OWNDC, not released"));
851 }
852 }
853
854 if(isOwnDC) {
855 rc = TRUE;
856 }
857 else {
858 UnselectGDIObjects(hdc);
859 rc = O32_ReleaseDC (0, hdc);
860 }
861
862 dprintf(("ReleaseDC %x %x", hwnd, hdc));
863 return (rc);
864}
865//******************************************************************************
866// This implementation of GetDCEx supports
867// DCX_WINDOW
868// DCX_CACHE
869// DCX_EXCLUDERGN (complex regions allowed)
870// DCX_INTERSECTRGN (complex regions allowed)
871// DCX_USESTYLE
872// DCX_CLIPSIBLINGS
873// DCX_CLIPCHILDREN
874// DCX_PARENTCLIP
875//
876//TODO: WM_SETREDRAW affects drawingAllowed flag!!
877//******************************************************************************
878HDC WIN32API GetDCEx (HWND hwnd, HRGN hrgn, ULONG flags)
879{
880 Win32BaseWindow *wnd = NULL;
881 HWND hWindow;
882 BOOL success;
883 pDCData pHps = NULL;
884 HPS hps = NULLHANDLE;
885 BOOL drawingAllowed = TRUE;
886 BOOL isWindowOwnDC;
887 BOOL creatingOwnDC = FALSE;
888 PS_Type psType;
889
890 if(hwnd == 0) {
891 dprintf(("error: GetDCEx window %x not found", hwnd));
892 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W);
893 return 0;
894 }
895
896 if(hwnd)
897 {
898 wnd = Win32BaseWindow::GetWindowFromHandle(hwnd);
899 if(wnd == NULL) {
900 dprintf (("ERROR: User32: GetDCEx bad window handle %X!!!!!", hwnd));
901 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W);
902 return 0;
903 }
904 if(flags & DCX_WINDOW_W) {
905 hWindow = wnd->getOS2FrameWindowHandle();
906 }
907 else hWindow = wnd->getOS2WindowHandle();
908 }
909
910 isWindowOwnDC = (((hWindow == HWND_DESKTOP) ? FALSE : (wnd->isOwnDC()))
911 && !(flags & (DCX_CACHE_W|DCX_WINDOW_W)));
912
913 if(isWindowOwnDC) //own dc always for client area
914 {
915 hps = wnd->getOwnDC();
916 if (hps)
917 {
918 pDCData pHps = (pDCData)GpiQueryDCData (hps);
919 if (!pHps)
920 goto error;
921
922 selectClientArea(wnd, pHps);
923
924 //TODO: Is this always necessary??
925 setPageXForm (wnd, pHps);
926 pHps->hdcType = TYPE_1;
927
928 //TODO: intersect/exclude clip region?
929 dprintf (("User32: GetDCEx hwnd %x (%x %x) -> wnd %x hdc %x", hwnd, hrgn, flags, wnd, hps));
930 return (HDC)hps;
931 }
932 else creatingOwnDC = TRUE;
933 }
934
935 if(isWindowOwnDC)
936 {
937 SIZEL sizel = {0,0};
938 hps = GpiCreatePS (WinQueryAnchorBlock (hWindow),
939 WinOpenWindowDC (hWindow),
940 &sizel, PU_PELS | GPIT_MICRO | GPIA_ASSOC );
941 psType = MICRO;
942 // default cp is OS/2 one: set to windows default (ODIN.INI)
943 GpiSetCp(hps, GetDisplayCodepage());
944 }
945 else
946 {
947 if (hWindow == HWND_DESKTOP) {
948 hps = WinGetScreenPS (hWindow);
949 }
950 else {
951 int clipstyle = 0;
952 int clipwnd = HWND_TOP;
953 if(flags & (DCX_USESTYLE_W)) {
954 int style = wnd->getStyle();
955 if(style & WS_CLIPCHILDREN_W) {
956 clipstyle |= PSF_CLIPCHILDREN;
957 }
958 if(style & WS_CLIPSIBLINGS_W) {
959 clipstyle |= PSF_CLIPSIBLINGS;
960 }
961 if(wnd->fHasParentDC()) {
962 clipstyle |= PSF_PARENTCLIP;
963 }
964 }
965 if(flags & DCX_CLIPSIBLINGS_W) {
966 clipstyle |= PSF_CLIPSIBLINGS;
967 }
968 if(flags & DCX_CLIPCHILDREN_W) {
969 clipstyle |= PSF_CLIPCHILDREN;
970 }
971 if(flags & DCX_PARENTCLIP_W) {
972 clipstyle |= PSF_PARENTCLIP;
973 }
974 if(clipstyle) {
975 dprintf2(("WinGetClipPS style %x", clipstyle));
976 hps = WinGetClipPS(hWindow, clipwnd, clipstyle);
977 }
978 else hps = WinGetPS (hWindow);
979
980 // default cp is OS/2 one: set to windows default (ODIN.INI)
981 GpiSetCp(hps, GetDisplayCodepage());
982 }
983 psType = MICRO_CACHED;
984 }
985
986 if (!hps)
987 goto error;
988
989 HPSToHDC (hWindow, hps, NULL, NULL);
990 pHps = (pDCData)GpiQueryDCData (hps);
991
992 if(flags & DCX_WINDOW_W) {
993 removeClientArea(wnd, pHps);
994 }
995 else selectClientArea(wnd, pHps);
996
997 setMapMode(wnd, pHps, MM_TEXT_W);
998
999 if ((flags & DCX_EXCLUDERGN_W) || (flags & DCX_INTERSECTRGN_W))
1000 {
1001 ULONG BytesNeeded;
1002 PRGNDATA RgnData;
1003 PRECT pr;
1004 int i;
1005 RECTL rectl;
1006
1007 if (!hrgn)
1008 goto error;
1009
1010 success = TRUE;
1011 if (flags & DCX_EXCLUDERGN_W)
1012 {
1013#if 0 //CB: todo
1014 long height;
1015
1016 BytesNeeded = GetRegionData (hrgn, 0, NULL);
1017 RgnData = (PRGNDATA_W)_alloca (BytesNeeded);
1018 if (RgnData == NULL)
1019 goto error;
1020 GetRegionData (hrgn, BytesNeeded, RgnData);
1021
1022 i = RgnData->rdh.nCount;
1023 pr = (PRECT)(RgnData->Buffer);
1024
1025 if (flags & DCX_WINDOW_W)
1026 height = wnd->getWindowHeight();
1027 else height = wnd->getClientHeight();
1028
1029 for (; (i > 0) && success; i--, pr++) {
1030 LONG y = pr->yBottom;
1031
1032 pr->yBottom = height - pr->yTop;
1033 pr->yTop = height - y;
1034 success &= GpiExcludeClipRectangle (pHps->hps, pr);
1035 }
1036#endif
1037 }
1038 else //DCX_INTERSECTRGN_W
1039 {
1040 //SvL: I'm getting paint problems when clipping a dc created in GetDCEx
1041 // with a region that covers the entire window (RealPlayer 7 Update 1)
1042 // Using SelectClipRgn here doesn't make any difference.
1043 if(ExtSelectClipRgn(pHps->hps, hrgn, RGN_AND_W) == ERROR_W) {
1044 dprintf(("ExtSelectClipRgn failed!!"));
1045 }
1046 }
1047 if (!success)
1048 goto error;
1049 }
1050
1051 if (creatingOwnDC)
1052 wnd->setOwnDC ((HDC)hps);
1053
1054 pHps->psType = psType;
1055 pHps->hdcType = TYPE_1;
1056 //TODO: WM_SETREDRAW affects drawingAllowed flag!!
1057 GpiSetDrawControl (hps, DCTL_DISPLAY, drawingAllowed ? DCTL_ON : DCTL_OFF);
1058
1059 dprintf (("User32: GetDCEx hwnd %x (%x %x) -> hdc %x", hwnd, hrgn, flags, pHps->hps));
1060 return (HDC)pHps->hps;
1061
1062error:
1063 /* Something went wrong; clean up
1064 */
1065 dprintf(("ERROR: GetDCEx hwnd %x (%x %x) FAILED!", hwnd, hrgn, flags));
1066 DebugInt3();
1067 if (pHps)
1068 {
1069 if (pHps->hps)
1070 {
1071 if(pHps->psType == MICRO_CACHED)
1072 WinReleasePS(pHps->hps);
1073 else
1074 GpiDestroyPS(pHps->hps);
1075 }
1076
1077 if (pHps->hdc) DevCloseDC(pHps->hdc);
1078 if (pHps->hrgnHDC) GpiDestroyRegion(pHps->hps, pHps->hrgnHDC);
1079
1080 O32_DeleteObject (pHps->nullBitmapHandle);
1081 }
1082 SetLastError(ERROR_INVALID_PARAMETER_W);
1083 return NULL;
1084}
1085//******************************************************************************
1086//******************************************************************************
1087HDC WIN32API GetDC (HWND hwnd)
1088{
1089 if(!hwnd)
1090 return GetDCEx( GetDesktopWindow(), 0, DCX_CACHE_W | DCX_WINDOW_W );
1091
1092 return GetDCEx (hwnd, NULL, 0);
1093}
1094//******************************************************************************
1095//******************************************************************************
1096HDC WIN32API GetWindowDC (HWND hwnd)
1097{
1098 if (!hwnd) hwnd = GetDesktopWindow();
1099 return GetDCEx (hwnd, NULL, DCX_WINDOW_W);
1100}
1101//******************************************************************************
1102//Helper for RedrawWindow (RDW_ALLCHILDREN_W)
1103//******************************************************************************
1104LRESULT WIN32API RedrawChildEnumProc(HWND hwnd, LPARAM lParam)
1105{
1106 RedrawWindow(hwnd, NULL, 0, lParam);
1107 return TRUE;
1108}
1109//******************************************************************************
1110// This implementation of RedrawWindow supports
1111// RDW_ERASE
1112// RDW_NOERASE
1113// RDW_INTERNALPAINT
1114// RDW_NOINTERNALPAINT
1115// RDW_INVALIDATE
1116// RDW_VALIDATE
1117// RDW_ERASENOW
1118// RDW_UPDATENOW
1119// RDW_FRAME
1120//
1121//TODO: Works ok for RDW_FRAME??
1122// SDK docs say RDW_FRAME is only valid for RDW_INVALIDATE...
1123//******************************************************************************
1124BOOL WIN32API RedrawWindow(HWND hwnd, const RECT* pRect, HRGN hrgn, DWORD redraw)
1125{
1126 Win32BaseWindow *wnd;
1127
1128 if(pRect) {
1129 dprintf(("RedrawWindow %x (%d,%d)(%d,%d) %x %x", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom, hrgn, redraw));
1130 }
1131 else dprintf(("RedrawWindow %x %x %x %x", hwnd, pRect, hrgn, redraw));
1132
1133 if (hwnd == NULLHANDLE)
1134 {
1135 hwnd = HWND_DESKTOP;
1136 wnd = Win32BaseWindow::GetWindowFromOS2Handle(OSLIB_HWND_DESKTOP);
1137
1138 if (!wnd)
1139 {
1140 dprintf(("USER32:dc: RedrawWindow can't find desktop window %08xh\n",
1141 hwnd));
1142 SetLastError(ERROR_INVALID_PARAMETER_W);
1143 return FALSE;
1144 }
1145 }
1146 else
1147 {
1148 wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
1149
1150 if (!wnd)
1151 {
1152 dprintf(("USER32:dc: RedrawWindow can't find window %08xh\n",
1153 hwnd));
1154 SetLastError(ERROR_INVALID_PARAMETER_W);
1155 return FALSE;
1156 }
1157 if(redraw & RDW_FRAME_W) {
1158 hwnd = wnd->getOS2FrameWindowHandle();
1159 }
1160 else hwnd = wnd->getOS2WindowHandle();
1161 }
1162
1163 BOOL IncludeChildren = (redraw & RDW_ALLCHILDREN_W) ? TRUE : FALSE;
1164 BOOL success = TRUE;
1165 HPS hpsTemp = NULLHANDLE;
1166 HRGN hrgnTemp = NULLHANDLE;
1167 RECTL rectl;
1168
1169 if (hrgn)
1170 {
1171 ULONG BytesNeeded;
1172 PRGNDATA RgnData;
1173 PRECTL pr;
1174 int i;
1175 LONG height;
1176
1177 if(wnd) {
1178 height = (redraw & RDW_FRAME_W) ? wnd->getWindowHeight() : wnd->getClientHeight();
1179 }
1180 else height = OSLibQueryScreenHeight();
1181
1182 if (!hrgn)
1183 goto error;
1184
1185 BytesNeeded = GetRegionData (hrgn, 0, NULL);
1186 RgnData = (PRGNDATA)_alloca (BytesNeeded);
1187 if (RgnData == NULL)
1188 goto error;
1189 GetRegionData (hrgn, BytesNeeded, RgnData);
1190
1191 pr = (PRECTL)(RgnData->Buffer);
1192 for (i = RgnData->rdh.nCount; i > 0; i--, pr++) {
1193 LONG temp = pr->yTop;
1194 pr->yTop = height - pr->yBottom;
1195 pr->yBottom = height - temp;
1196 dprintf2(("RedrawWindow: region (%d,%d) (%d,%d)", pr->xLeft, pr->yBottom, pr->xRight, pr->yTop));
1197 }
1198
1199 hpsTemp = WinGetScreenPS (HWND_DESKTOP);
1200 hrgnTemp = GpiCreateRegion (hpsTemp, RgnData->rdh.nCount, (PRECTL)(RgnData->Buffer));
1201 if (!hrgnTemp) goto error;
1202 }
1203 else if (pRect)
1204 {
1205 if(wnd) {
1206 if(redraw & RDW_FRAME_W) {
1207 mapWin32ToOS2Rect(wnd->getWindowHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1208 }
1209 else mapWin32ToOS2Rect(wnd->getClientHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1210 }
1211 else mapWin32ToOS2Rect(OSLibQueryScreenHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1212 }
1213
1214 if (redraw & RDW_INVALIDATE_W)
1215 {
1216 //TODO: SvL: pingpong.exe doesn't have RDW_NOERASE, but doesn't want WM_ERASEBKGND msgs
1217 if (redraw & RDW_ERASE_W) {
1218 wnd->setEraseBkgnd(TRUE);
1219 }
1220 else wnd->setEraseBkgnd(FALSE);
1221
1222 if (!pRect && !hrgn)
1223 success = WinInvalidateRect (hwnd, NULL, IncludeChildren);
1224 else
1225 if (hrgn) {
1226 success = WinInvalidateRegion (hwnd, hrgnTemp, IncludeChildren);
1227 if(IncludeChildren && WinQueryUpdateRect(hwnd, NULL) == FALSE) {
1228 dprintf(("WARNING: WinQueryUpdateRect %x region %x returned false even though we just invalidated part of a window!!!", hwnd, hrgnTemp));
1229 success = success = WinInvalidateRegion (hwnd, hrgnTemp, FALSE);
1230 }
1231 }
1232 else {
1233 dprintf2(("WinInvalidateRect (%d,%d)(%d,%d)", rectl.xLeft, rectl.yBottom, rectl.xRight, rectl.yTop));
1234 success = WinInvalidateRect (hwnd, &rectl, IncludeChildren);
1235//SvL: If all children are included, then WinInvalidateRect is called
1236// with fIncludeChildren=1 -> rect of hwnd isn't invalidated if child(ren)
1237// overlap(s) the specified rectangle completely (EVEN if window doesn't
1238// have WS_CLIPCHILREN!)
1239// -> example: XWing vs Tie Fighter install window
1240// WinInvalidateRect with fIncludeChildren=0 invalidates both the parent
1241// and child windows
1242//SvL: Can't always set fIncludeChildren to FALSE or else some controls in
1243// the RealPlayer setup application aren't redrawn when invalidating
1244// their parent
1245// SO: Check if IncludeChildren is set and part of the window is invalid
1246// If not -> call WinInvalidateRect with IncludeChildren=0 to force
1247// the window rectangle to be invalidated
1248//
1249 if(IncludeChildren && WinQueryUpdateRect(hwnd, NULL) == FALSE) {
1250 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));
1251 success = WinInvalidateRect (hwnd, &rectl, FALSE);
1252 }
1253 }
1254
1255 if (!success) goto error;
1256 }
1257 else if (redraw & RDW_VALIDATE_W)
1258 {
1259 if (redraw & RDW_NOERASE_W)
1260 wnd->setEraseBkgnd(FALSE);
1261
1262 if (WinQueryUpdateRect (hwnd, NULL))
1263 {
1264 if(!pRect && !hrgn) {
1265 success = WinValidateRect (hwnd, NULL, IncludeChildren);
1266 }
1267 else
1268 if(hrgn) {
1269 success = WinValidateRegion (hwnd, hrgnTemp, IncludeChildren);
1270 }
1271 else {
1272 success = WinValidateRect (hwnd, &rectl, IncludeChildren);
1273 }
1274 if(!success) goto error;
1275 }
1276 }
1277
1278 if(WinQueryUpdateRect(hwnd, &rectl))
1279 {
1280 //TODO: Does this work if RDW_ALLCHILDREN is set??
1281 if(redraw & RDW_UPDATENOW_W) {
1282 RECT rectUpdate;
1283
1284 if(redraw & RDW_FRAME_W) {
1285 mapOS2ToWin32Rect(wnd->getWindowHeight(), (PRECTLOS2)&rectl, &rectUpdate);
1286 wnd->MsgNCPaint(&rectUpdate);
1287 }
1288
1289 wnd->MsgPaint(0, FALSE);
1290 }
1291 else
1292// if((redraw & RDW_ERASE_W) && (redraw & RDW_ERASENOW_W))
1293 if(redraw & RDW_ERASENOW_W && wnd->needsEraseBkgnd())
1294 wnd->setEraseBkgnd(sendEraseBkgnd(wnd) == 0);
1295// if(redraw & RDW_ALLCHILDREN_W) {
1296// EnumChildWindows(wnd->getWindowHandle(), RedrawChildEnumProc, redraw);
1297// }
1298 }
1299 else if((redraw & RDW_INTERNALPAINT_W) && !(redraw & RDW_INVALIDATE_W))
1300 {
1301 if(redraw & RDW_UPDATENOW_W) {
1302 wnd->MsgPaint(0, FALSE);
1303 }
1304 else PostMessageA(hwnd, WINWM_PAINT, 0, 0);
1305 }
1306
1307error:
1308 /* clean up */
1309 if (hrgnTemp)
1310 GpiDestroyRegion (hpsTemp, hrgnTemp);
1311
1312 if (hpsTemp)
1313 WinReleasePS (hpsTemp);
1314
1315 if (!success) {
1316 dprintf(("RedrawWindow failure!"));
1317 SetLastError(ERROR_INVALID_PARAMETER_W);
1318 }
1319 return (success);
1320}
1321//******************************************************************************
1322//******************************************************************************
1323BOOL WIN32API UpdateWindow (HWND hwnd)
1324{
1325 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
1326 RECTL rectl;
1327 BOOL rc;
1328
1329 if(!wnd) {
1330 dprintf (("ERROR: User32: UpdateWindow INVALID hwnd %x", hwnd));
1331 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W);
1332 return FALSE;
1333 }
1334
1335#ifdef DEBUG
1336 if(WinQueryUpdateRect(wnd->getOS2WindowHandle(), &rectl))
1337 {
1338 RECT rectUpdate;
1339 mapOS2ToWin32Rect(wnd->getClientHeight(), (PRECTLOS2)&rectl, &rectUpdate);
1340
1341 dprintf (("User32: UpdateWindow hwnd %x: update rectangle (%d,%d)(%d,%d)", hwnd, rectUpdate.left, rectUpdate.top, rectUpdate.right, rectUpdate.bottom));
1342 }
1343 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())));
1344#endif
1345 //SvL: This doesn't work right (Wine uses RDW_NOCHILDREN_W -> doesn't work here)
1346 // Breaks vpbuddy
1347 //rc = RedrawWindow(hwnd, NULL, 0, RDW_UPDATENOW_W | RDW_ALLCHILDREN_W);
1348 // -> RDW_UPDATENOW causes WM_PAINT messages to be directy posted to window
1349 // handler; possibly bypassing queued WM_PAINT messages for parent window(s)
1350 // -> out of sync painting (i.e. parent paints over child)
1351
1352// if(!WinIsWindowShowing(wnd->getOS2FrameWindowHandle()) || !WinIsWindowShowing(wnd->getOS2WindowHandle())) {
1353// dprintf(("UpdateWindow: window not showing %d/%d", WinIsWindowShowing(wnd->getOS2FrameWindowHandle()), WinIsWindowShowing(wnd->getOS2WindowHandle()) ));
1354// return FALSE;
1355// }
1356 //Must use frame window here. If the frame window has a valid update region and we call
1357 //WinUpdateWindow for the client window, then no WM_PAINT messages will be sent.
1358 rc = WinUpdateWindow(wnd->getOS2FrameWindowHandle());
1359#ifdef DEBUG
1360 if(WinQueryUpdateRect(wnd->getOS2WindowHandle(), NULL))
1361 {
1362 //if parent has valid update region then WinUpdateWindow will still fail..
1363 //might be harmless and happen even in windows
1364 dprintf (("ERROR: User32: UpdateWindow didn't send WM_PAINT messages!!"));
1365 }
1366#endif
1367 return rc;
1368}
1369//******************************************************************************
1370//******************************************************************************
1371BOOL WIN32API ValidateRect( HWND hwnd, const RECT * lprc)
1372{
1373 if(lprc) {
1374 dprintf(("USER32: ValidateRect %x (%d,%d)(%d,%d)", hwnd, lprc->left, lprc->top, lprc->right, lprc->bottom));
1375 }
1376 else dprintf(("USER32: ValidateRect %x", hwnd));
1377
1378 return RedrawWindow( hwnd, lprc, 0, RDW_VALIDATE_W | RDW_NOCHILDREN_W | (hwnd==0 ? RDW_UPDATENOW_W : 0));
1379}
1380//******************************************************************************
1381//******************************************************************************
1382BOOL WIN32API ValidateRgn( HWND hwnd, HRGN hrgn)
1383{
1384 dprintf(("USER32: ValidateRgn %x %x", hwnd, hrgn));
1385 return RedrawWindow( hwnd, NULL, hrgn, RDW_VALIDATE_W | RDW_NOCHILDREN_W | (hwnd==0 ? RDW_UPDATENOW_W : 0));
1386}
1387//******************************************************************************
1388//******************************************************************************
1389BOOL WIN32API InvalidateRect (HWND hwnd, const RECT *pRect, BOOL erase)
1390{
1391 BOOL result;
1392
1393 if(pRect) {
1394 dprintf(("InvalidateRect %x (%d,%d)(%d,%d) erase=%d", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom, erase));
1395 }
1396 else dprintf(("InvalidateRect %x NULL erase=%d", hwnd, erase));
1397#if 1
1398 result = RedrawWindow (hwnd, pRect, NULLHANDLE,
1399 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1400 (erase ? RDW_ERASE_W : 0) |
1401 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1402#else
1403 result = RedrawWindow (hwnd, pRect, NULLHANDLE,
1404 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1405 (erase ? RDW_ERASE_W : RDW_NOERASE_W) |
1406 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1407#endif
1408 return (result);
1409}
1410//******************************************************************************
1411//******************************************************************************
1412BOOL WIN32API InvalidateRgn (HWND hwnd, HRGN hrgn, BOOL erase)
1413{
1414 BOOL result;
1415
1416 dprintf(("InvalidateRgn %x %x erase=%d", hwnd, hrgn, erase));
1417#if 1
1418 result = RedrawWindow (hwnd, NULL, hrgn,
1419 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1420 (erase ? RDW_ERASE_W : 0) |
1421 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1422#else
1423 result = RedrawWindow (hwnd, NULL, hrgn,
1424 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1425 (erase ? RDW_ERASE_W : RDW_NOERASE_W) |
1426 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1427#endif
1428 return (result);
1429}
1430//******************************************************************************
1431//TODO: Change for client rectangle!!!!!
1432//******************************************************************************
1433BOOL setPMRgnIntoWinRgn (HPS hps, HRGN hrgnPM, HRGN hrgnWin, LONG height)
1434{
1435 BOOL rc;
1436 RGNRECT rgnRect;
1437 rgnRect.ircStart = 1;
1438 rgnRect.crc = 0;
1439 rgnRect.ulDirection = RECTDIR_LFRT_TOPBOT;
1440
1441 rc = GpiQueryRegionRects (hps, hrgnPM, NULL, &rgnRect, NULL);
1442
1443 if (rc && (rgnRect.crcReturned > 0))
1444 {
1445 PRECTL Rcls = new RECTL[rgnRect.crcReturned];
1446 PRECTL pRcl = Rcls;
1447
1448 if (Rcls != NULL)
1449 {
1450 rgnRect.crc = rgnRect.crcReturned;
1451 rc = GpiQueryRegionRects (hps, hrgnPM, NULL, &rgnRect, Rcls);
1452
1453 rc = SetRectRgn(hrgnWin, pRcl->xLeft, height - pRcl->yTop,
1454 pRcl->xRight, height - pRcl->yBottom);
1455
1456 if (rgnRect.crcReturned > 1)
1457 {
1458 int i;
1459 HRGN temp;
1460 temp = CreateRectRgn (0, 0, 1, 1);
1461
1462 for (i = 1, pRcl++; rc && (i < rgnRect.crcReturned); i++, pRcl++)
1463 {
1464 rc = SetRectRgn (temp, pRcl->xLeft, height - pRcl->yTop,
1465 pRcl->xRight, height - pRcl->yBottom);
1466 rc &= CombineRgn (hrgnWin, hrgnWin, temp, RGN_OR_W);
1467 }
1468 DeleteObject (temp);
1469 }
1470 delete[] Rcls;
1471 }
1472 else
1473 {
1474 rc = FALSE;
1475 }
1476 }
1477 else
1478 {
1479 rc = SetRectRgn (hrgnWin, 0, 0, 0, 0);
1480 }
1481
1482 return (rc);
1483}
1484//******************************************************************************
1485//TODO: Check if this one works correctly...
1486//Have to check if dc is for frame or client!!
1487//******************************************************************************
1488BOOL WIN32API ScrollDC(HDC hDC, int dx, int dy, const RECT *pScroll,
1489 const RECT *pClip, HRGN hrgnUpdate, LPRECT pRectUpdate)
1490{
1491 Win32BaseWindow *wnd;
1492 BOOL rc = TRUE;
1493
1494 dprintf (("USER32: ScrollDC %x (%d,%d), %x %x %x %x", hDC, dx, dy, pScroll, pClip, hrgnUpdate, pRectUpdate));
1495
1496 if (!hDC)
1497 {
1498 return (FALSE);
1499 }
1500
1501 pDCData pHps = (pDCData)GpiQueryDCData ((HPS)hDC);
1502 HWND hwnd = pHps->hwnd;
1503 if(pHps->isClient) {
1504 wnd = Win32BaseWindow::GetWindowFromOS2Handle (hwnd);
1505 }
1506 else {
1507 //assume (for now) that this is not allowed (TODO)
1508 dprintf(("ScrollDC used for frame HDC!!"));
1509 DebugInt3();
1510 return FALSE;
1511 }
1512
1513 if((hwnd == NULLHANDLE) || !wnd)
1514 {
1515 return (FALSE);
1516 }
1517
1518 POINTL ptl[2] = { 0, 0, dx, dy };
1519
1520 GpiConvert (pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, ptl);
1521 dx = (int)(ptl[1].x - ptl[0].x);
1522 dy = (int)(ptl[1].y - ptl[0].y);
1523
1524 RECT scrollRect;
1525 RECT clipRect;
1526
1527 if (pClip)
1528 {
1529 memcpy(&clipRect, pClip, sizeof(clipRect));
1530
1531 if ((pHps->graphicsMode == GM_COMPATIBLE_W) &&
1532 (clipRect.left != clipRect.right) &&
1533 (clipRect.bottom != clipRect.top))
1534 {
1535 if (abs((int)pHps->viewportXExt) <= abs((int)pHps->windowExt.cx))
1536 clipRect.right -= abs(pHps->worldXDeltaFor1Pixel);
1537 else
1538 clipRect.left += abs(pHps->worldXDeltaFor1Pixel);
1539
1540 if (abs((int)pHps->viewportYExt) <= abs((int)pHps->windowExt.cy))
1541 clipRect.bottom -= abs(pHps->worldYDeltaFor1Pixel);
1542 else
1543 clipRect.top += abs(pHps->worldYDeltaFor1Pixel);
1544 }
1545 GpiConvert(pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, (PPOINTL)&clipRect);
1546 if (clipRect.right < clipRect.left) {
1547 ULONG temp = clipRect.left;
1548 clipRect.left = clipRect.right;
1549 clipRect.right = temp;
1550 }
1551 if (clipRect.bottom < clipRect.top) {
1552 ULONG temp = clipRect.top;
1553 clipRect.top = clipRect.bottom;
1554 clipRect.bottom = temp;
1555 }
1556 }
1557
1558 if (pScroll)
1559 {
1560 memcpy(&scrollRect, pScroll, sizeof(scrollRect));
1561
1562 if ((pHps->graphicsMode == GM_COMPATIBLE_W) &&
1563 (scrollRect.left != scrollRect.right) &&
1564 (scrollRect.top != scrollRect.bottom))
1565 {
1566 if (abs((int)pHps->viewportXExt) <= abs((int)pHps->windowExt.cx))
1567 scrollRect.right -= abs(pHps->worldXDeltaFor1Pixel);
1568 else
1569 scrollRect.left += abs(pHps->worldXDeltaFor1Pixel);
1570
1571 if (abs((int)pHps->viewportYExt) <= abs((int)pHps->windowExt.cy))
1572 scrollRect.bottom -= abs(pHps->worldYDeltaFor1Pixel);
1573 else
1574 scrollRect.top += abs(pHps->worldYDeltaFor1Pixel);
1575 }
1576 GpiConvert (pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, (PPOINTL)&scrollRect);
1577 if (scrollRect.right < scrollRect.left) {
1578 ULONG temp = scrollRect.left;
1579 scrollRect.left = scrollRect.right;
1580 scrollRect.right = temp;
1581 }
1582 if (scrollRect.bottom < scrollRect.top) {
1583 ULONG temp = scrollRect.top;
1584 scrollRect.top = scrollRect.bottom;
1585 scrollRect.bottom = temp;
1586 }
1587 }
1588 RECTL rectlUpdate;
1589 HRGN hrgn = NULLHANDLE;
1590 RECTL clipOS2;
1591 RECTL scrollOS2;
1592 PRECTL pScrollOS2 = NULL;
1593 PRECTL pClipOS2 = NULL;
1594 HPS hpsScreen = 0;
1595
1596 if(pScroll) {
1597 mapWin32ToOS2Rect(wnd->getClientHeight(), &scrollRect, (PRECTLOS2)&scrollOS2);
1598 pScrollOS2 = &scrollOS2;
1599 }
1600
1601 if(pClip) {
1602 mapWin32ToOS2Rect(wnd->getClientHeight(), &clipRect, (PRECTLOS2)&clipOS2);
1603 pClipOS2 = &clipOS2;
1604 }
1605
1606 if(hrgnUpdate) {
1607 RECTL rectl = { 1, 1, 2, 2 };
1608
1609 hpsScreen = WinGetScreenPS (HWND_DESKTOP);
1610 hrgn = GpiCreateRegion(hpsScreen, 1, &rectl);
1611 }
1612
1613 LONG lComplexity = WinScrollWindow(hwnd, dx, dy, pScrollOS2,
1614 pClipOS2, hrgn, &rectlUpdate, 0);
1615 if (lComplexity == RGN_ERROR)
1616 {
1617 return (FALSE);
1618 }
1619
1620 RECT winRectUpdate;
1621
1622 mapOS2ToWin32Rect(wnd->getClientHeight(), (PRECTLOS2)&rectlUpdate, &winRectUpdate);
1623
1624 if (pRectUpdate)
1625 *pRectUpdate = winRectUpdate;
1626
1627 if (hrgnUpdate) {
1628 rc = setPMRgnIntoWinRgn(hpsScreen, hrgn, hrgnUpdate, wnd->getClientHeight());
1629 GpiDestroyRegion(hpsScreen, hrgn);
1630 WinReleasePS(hpsScreen);
1631 }
1632
1633 return (rc);
1634}
1635//******************************************************************************
1636//Using WinScrollWindow to scroll child windows is better (smoother).
1637//******************************************************************************
1638INT WIN32API ScrollWindowEx(HWND hwnd, int dx, int dy, const RECT *pScroll, const RECT *pClip,
1639 HRGN hrgnUpdate, PRECT pRectUpdate, UINT scrollFlag)
1640{
1641 Win32BaseWindow *window;
1642 APIRET rc;
1643 RECTL scrollRect;
1644 RECTL clipRect;
1645 PRECTL pScrollOS2 = NULL;
1646 PRECTL pClipOS2 = NULL;
1647 ULONG scrollFlagsOS2 = 0;
1648 int orgdy = dy;
1649 int regionType = ERROR_W;
1650
1651 window = Win32BaseWindow::GetWindowFromHandle(hwnd);
1652 if(!window) {
1653 dprintf(("ScrollWindowEx, window %x not found", hwnd));
1654 return 0;
1655 }
1656
1657 dprintf(("ScrollWindowEx %x %d %d %x %x", hwnd, dx, dy, pScroll, pClip));
1658
1659 dy = revertDy (window, dy);
1660
1661 if (scrollFlag & SW_INVALIDATE_W) scrollFlagsOS2 |= SW_INVALIDATERGN;
1662 if (scrollFlag & SW_SCROLLCHILDREN_W) scrollFlagsOS2 |= SW_SCROLLCHILDREN;
1663
1664 if(pScroll) {
1665 mapWin32ToOS2Rect(window->getClientHeight(), (RECT *)pScroll, (PRECTLOS2)&scrollRect);
1666 pScrollOS2 = &scrollRect;
1667 }
1668
1669 if(pClip) {
1670 mapWin32ToOS2Rect(window->getClientHeight(), (RECT *)pClip, (PRECTLOS2)&clipRect);
1671 pClipOS2 = &clipRect;
1672 }
1673
1674 RECTL rectlUpdate;
1675 HRGN hrgn = NULLHANDLE;
1676 HPS hpsScreen = 0;
1677
1678 if(hrgnUpdate) {
1679 RECTL rectl = { 1, 1, 2, 2 };
1680
1681 hpsScreen = WinGetScreenPS (HWND_DESKTOP);
1682 hrgn = GpiCreateRegion(hpsScreen, 1, &rectl);
1683 }
1684
1685 if (scrollFlag & SW_SMOOTHSCROLL_W)
1686 {
1687 INT time = (scrollFlag >> 16) & 0xFFFF;
1688
1689 //CB: todo, scroll in several steps
1690 // is time in ms? time <-> iteration count?
1691 }
1692
1693 LONG lComplexity = WinScrollWindow(window->getOS2WindowHandle(), dx, dy,
1694 pScrollOS2, pClipOS2,
1695 hrgn, &rectlUpdate, scrollFlagsOS2);
1696 if (lComplexity == RGN_ERROR)
1697 {
1698 return ERROR_W;
1699 }
1700
1701 //Notify children that they have moved (according to the SDK docs,
1702 //they only receive a WM_MOVE message)
1703 //(PM only does this for windows with CS_MOVENOTIFY class)
1704 //TODO: Verify this (no WM_WINDOWPOSCHANGING/ED?)
1705 if (scrollFlag & SW_SCROLLCHILDREN_W)
1706 {
1707 HWND hwndChild;
1708 RECT rectChild, rc;
1709
1710 dprintf(("ScrollWindowEx: Scroll child windows"));
1711 GetClientRect(hwnd, &rc);
1712 if (pScroll) IntersectRect(&rc, &rc, pScroll);
1713
1714 hwndChild = GetWindow(hwnd, GW_CHILD_W);
1715
1716 while(hwndChild)
1717 {
1718 Win32BaseWindow *child;
1719
1720 child = Win32BaseWindow::GetWindowFromHandle(hwndChild);
1721 if(!child) {
1722 dprintf(("ERROR: ScrollWindowEx, child %x not found", hwnd));
1723 return 0;
1724 }
1725 rectChild = *child->getWindowRect();
1726 if(!pScroll || IntersectRect(&rectChild, &rectChild, &rc))
1727 {
1728 dprintf(("ScrollWindowEx: Scroll child window %x", hwndChild));
1729 child->ScrollWindow(dx, orgdy);
1730 }
1731 hwndChild = GetWindow(hwndChild, GW_HWNDNEXT_W);
1732 }
1733 dprintf(("***ScrollWindowEx: Scroll child windows DONE"));
1734 }
1735
1736 RECT winRectUpdate;
1737
1738 mapOS2ToWin32Rect(window->getClientHeight(), (PRECTLOS2)&rectlUpdate, &winRectUpdate);
1739
1740 if (pRectUpdate)
1741 *pRectUpdate = winRectUpdate;
1742
1743 if (hrgnUpdate) {
1744 rc = setPMRgnIntoWinRgn(hpsScreen, hrgn, hrgnUpdate, window->getClientHeight());
1745 GpiDestroyRegion(hpsScreen, hrgn);
1746 WinReleasePS(hpsScreen);
1747 }
1748
1749#if 0
1750 //SvL: WinScrollWindow already invalidates the area; no need to do it again
1751 //(call to invalidateRect was wrong; has to include erase flag)
1752 if ((scrollFlag & SW_INVALIDATE_W) &&
1753 ((lComplexity == RGN_RECT) || (lComplexity == RGN_COMPLEX)))
1754 {
1755 rc = RedrawWindow (hwnd, &winRectUpdate, NULLHANDLE,
1756 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1757 ((scrollFlag & SW_ERASE_W) ? RDW_ERASE_W : 0) |
1758 RDW_UPDATENOW_W);
1759
1760// rc = InvalidateRect (hwnd, &winRectUpdate, (scrollFlag & SW_ERASE_W) ? 1 : 0);
1761 if (rc == FALSE)
1762 {
1763 return (0);
1764 }
1765 }
1766#endif
1767
1768 switch (lComplexity)
1769 {
1770 case RGN_NULL:
1771 regionType = NULLREGION_W;
1772 break;
1773 case RGN_RECT:
1774 regionType = SIMPLEREGION_W;
1775 break;
1776 case RGN_COMPLEX:
1777 regionType = COMPLEXREGION_W;
1778 break;
1779 default:
1780 regionType = ERROR_W;
1781 break;
1782 }
1783
1784 return (regionType);
1785}
1786//******************************************************************************
1787//******************************************************************************
1788BOOL WIN32API ScrollWindow(HWND hwnd, int dx, int dy, const RECT *pScroll, const RECT *pClip)
1789{
1790 Win32BaseWindow *window;
1791
1792 window = Win32BaseWindow::GetWindowFromHandle(hwnd);
1793 if(!window) {
1794 dprintf(("ScrollWindow, window %x not found", hwnd));
1795 return 0;
1796 }
1797 dprintf(("ScrollWindow %x %d %d %x %x", hwnd, dx, dy, pScroll, pClip));
1798 return (ERROR_W != ScrollWindowEx(hwnd, dx, dy, pScroll, pClip, 0, NULL,
1799 (pScroll ? 0 : SW_SCROLLCHILDREN_W) |
1800 SW_INVALIDATE_W ));
1801}
1802//******************************************************************************
1803//******************************************************************************
1804HWND WIN32API WindowFromDC(HDC hdc)
1805{
1806 pDCData pHps = (pDCData)GpiQueryDCData( (HPS)hdc );
1807
1808 dprintf2(("USER32: WindowFromDC %x", hdc));
1809 if ( pHps )
1810 return OS2ToWin32Handle(pHps->hwnd);
1811 else
1812 return 0;
1813}
1814//******************************************************************************
1815//******************************************************************************
1816
Note: See TracBrowser for help on using the repository browser.