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

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

clientHeight bugfix

File size: 59.0 KB
Line 
1/* $Id: dc.cpp,v 1.103 2001-05-17 10:03: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#if 1
1136 // Don't do this for now (causes lots of desktop repaints in WordPad)
1137 SetLastError(ERROR_INVALID_PARAMETER_W);
1138 return FALSE;
1139#else
1140 hwnd = HWND_DESKTOP;
1141 wnd = Win32BaseWindow::GetWindowFromOS2Handle(OSLIB_HWND_DESKTOP);
1142
1143 if (!wnd)
1144 {
1145 dprintf(("USER32:dc: RedrawWindow can't find desktop window %08xh\n",
1146 hwnd));
1147 SetLastError(ERROR_INVALID_PARAMETER_W);
1148 return FALSE;
1149 }
1150#endif
1151 }
1152 else
1153 {
1154 wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
1155
1156 if (!wnd)
1157 {
1158 dprintf(("USER32:dc: RedrawWindow can't find window %08xh\n",
1159 hwnd));
1160 SetLastError(ERROR_INVALID_PARAMETER_W);
1161 return FALSE;
1162 }
1163 if(redraw & RDW_FRAME_W) {
1164 hwnd = wnd->getOS2FrameWindowHandle();
1165 }
1166 else hwnd = wnd->getOS2WindowHandle();
1167 }
1168
1169 BOOL IncludeChildren = (redraw & RDW_ALLCHILDREN_W) ? TRUE : FALSE;
1170 BOOL success = TRUE;
1171 HPS hpsTemp = NULLHANDLE;
1172 HRGN hrgnTemp = NULLHANDLE;
1173 RECTL rectl;
1174
1175 if (hrgn)
1176 {
1177 ULONG BytesNeeded;
1178 PRGNDATA RgnData;
1179 PRECTL pr;
1180 int i;
1181 LONG height;
1182
1183 if(wnd) {
1184 height = (redraw & RDW_FRAME_W) ? wnd->getWindowHeight() : wnd->getClientHeight();
1185 }
1186 else height = OSLibQueryScreenHeight();
1187
1188 if (!hrgn)
1189 goto error;
1190
1191 BytesNeeded = GetRegionData (hrgn, 0, NULL);
1192 RgnData = (PRGNDATA)_alloca (BytesNeeded);
1193 if (RgnData == NULL)
1194 goto error;
1195 GetRegionData (hrgn, BytesNeeded, RgnData);
1196
1197 pr = (PRECTL)(RgnData->Buffer);
1198 for (i = RgnData->rdh.nCount; i > 0; i--, pr++) {
1199 LONG temp = pr->yTop;
1200 pr->yTop = height - pr->yBottom;
1201 pr->yBottom = height - temp;
1202 dprintf2(("RedrawWindow: region (%d,%d) (%d,%d)", pr->xLeft, pr->yBottom, pr->xRight, pr->yTop));
1203 }
1204
1205 hpsTemp = WinGetScreenPS (HWND_DESKTOP);
1206 hrgnTemp = GpiCreateRegion (hpsTemp, RgnData->rdh.nCount, (PRECTL)(RgnData->Buffer));
1207 if (!hrgnTemp) goto error;
1208 }
1209 else if (pRect)
1210 {
1211 if(wnd) {
1212 if(redraw & RDW_FRAME_W) {
1213 mapWin32ToOS2Rect(wnd->getWindowHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1214 }
1215 else mapWin32ToOS2Rect(wnd->getClientHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1216 }
1217 else mapWin32ToOS2Rect(OSLibQueryScreenHeight(), (PRECT)pRect, (PRECTLOS2)&rectl);
1218 }
1219
1220 if (redraw & RDW_INVALIDATE_W)
1221 {
1222 //TODO: SvL: pingpong.exe doesn't have RDW_NOERASE, but doesn't want WM_ERASEBKGND msgs
1223 if (redraw & RDW_ERASE_W) {
1224 wnd->setEraseBkgnd(TRUE);
1225 }
1226 else wnd->setEraseBkgnd(FALSE);
1227
1228 if (!pRect && !hrgn)
1229 success = WinInvalidateRect (hwnd, NULL, IncludeChildren);
1230 else
1231 if (hrgn) {
1232 success = WinInvalidateRegion (hwnd, hrgnTemp, IncludeChildren);
1233 if(IncludeChildren && WinQueryUpdateRect(hwnd, NULL) == FALSE) {
1234 dprintf(("WARNING: WinQueryUpdateRect %x region %x returned false even though we just invalidated part of a window!!!", hwnd, hrgnTemp));
1235 success = success = WinInvalidateRegion (hwnd, hrgnTemp, FALSE);
1236 }
1237 }
1238 else {
1239 dprintf2(("WinInvalidateRect (%d,%d)(%d,%d)", rectl.xLeft, rectl.yBottom, rectl.xRight, rectl.yTop));
1240 success = WinInvalidateRect (hwnd, &rectl, IncludeChildren);
1241//SvL: If all children are included, then WinInvalidateRect is called
1242// with fIncludeChildren=1 -> rect of hwnd isn't invalidated if child(ren)
1243// overlap(s) the specified rectangle completely (EVEN if window doesn't
1244// have WS_CLIPCHILREN!)
1245// -> example: XWing vs Tie Fighter install window
1246// WinInvalidateRect with fIncludeChildren=0 invalidates both the parent
1247// and child windows
1248//SvL: Can't always set fIncludeChildren to FALSE or else some controls in
1249// the RealPlayer setup application aren't redrawn when invalidating
1250// their parent
1251// SO: Check if IncludeChildren is set and part of the window is invalid
1252// If not -> call WinInvalidateRect with IncludeChildren=0 to force
1253// the window rectangle to be invalidated
1254//
1255 if(IncludeChildren && WinQueryUpdateRect(hwnd, NULL) == FALSE) {
1256 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));
1257 success = WinInvalidateRect (hwnd, &rectl, FALSE);
1258 }
1259 }
1260
1261 if (!success) goto error;
1262 }
1263 else if (redraw & RDW_VALIDATE_W)
1264 {
1265 if (redraw & RDW_NOERASE_W)
1266 wnd->setEraseBkgnd(FALSE);
1267
1268 if (WinQueryUpdateRect (hwnd, NULL))
1269 {
1270 if(!pRect && !hrgn) {
1271 success = WinValidateRect (hwnd, NULL, IncludeChildren);
1272 }
1273 else
1274 if(hrgn) {
1275 success = WinValidateRegion (hwnd, hrgnTemp, IncludeChildren);
1276 }
1277 else {
1278 success = WinValidateRect (hwnd, &rectl, IncludeChildren);
1279 }
1280 if(!success) goto error;
1281 }
1282 }
1283
1284 if(WinQueryUpdateRect(hwnd, &rectl))
1285 {
1286 //TODO: Does this work if RDW_ALLCHILDREN is set??
1287 if(redraw & RDW_UPDATENOW_W) {
1288 RECT rectUpdate;
1289
1290 if(redraw & RDW_FRAME_W) {
1291 mapOS2ToWin32Rect(wnd->getWindowHeight(), (PRECTLOS2)&rectl, &rectUpdate);
1292 wnd->MsgNCPaint(&rectUpdate);
1293 }
1294
1295 wnd->MsgPaint(0, FALSE);
1296 }
1297 else
1298// if((redraw & RDW_ERASE_W) && (redraw & RDW_ERASENOW_W))
1299 if(redraw & RDW_ERASENOW_W && wnd->needsEraseBkgnd())
1300 wnd->setEraseBkgnd(sendEraseBkgnd(wnd) == 0);
1301// if(redraw & RDW_ALLCHILDREN_W) {
1302// EnumChildWindows(wnd->getWindowHandle(), RedrawChildEnumProc, redraw);
1303// }
1304 }
1305 else if((redraw & RDW_INTERNALPAINT_W) && !(redraw & RDW_INVALIDATE_W))
1306 {
1307 if(redraw & RDW_UPDATENOW_W) {
1308 wnd->MsgPaint(0, FALSE);
1309 }
1310 else PostMessageA(hwnd, WINWM_PAINT, 0, 0);
1311 }
1312
1313error:
1314 /* clean up */
1315 if (hrgnTemp)
1316 GpiDestroyRegion (hpsTemp, hrgnTemp);
1317
1318 if (hpsTemp)
1319 WinReleasePS (hpsTemp);
1320
1321 if (!success) {
1322 dprintf(("RedrawWindow failure!"));
1323 SetLastError(ERROR_INVALID_PARAMETER_W);
1324 }
1325 return (success);
1326}
1327//******************************************************************************
1328//******************************************************************************
1329BOOL WIN32API UpdateWindow (HWND hwnd)
1330{
1331 Win32BaseWindow *wnd = Win32BaseWindow::GetWindowFromHandle (hwnd);
1332 RECTL rectl;
1333 BOOL rc;
1334
1335 if(!wnd) {
1336 dprintf (("ERROR: User32: UpdateWindow INVALID hwnd %x", hwnd));
1337 SetLastError(ERROR_INVALID_WINDOW_HANDLE_W);
1338 return FALSE;
1339 }
1340
1341#ifdef DEBUG
1342 if(WinQueryUpdateRect(wnd->getOS2WindowHandle(), &rectl))
1343 {
1344 RECT rectUpdate;
1345 mapOS2ToWin32Rect(wnd->getClientHeight(), (PRECTLOS2)&rectl, &rectUpdate);
1346
1347 dprintf (("User32: UpdateWindow hwnd %x: update rectangle (%d,%d)(%d,%d)", hwnd, rectUpdate.left, rectUpdate.top, rectUpdate.right, rectUpdate.bottom));
1348 }
1349 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())));
1350#endif
1351 //SvL: This doesn't work right (Wine uses RDW_NOCHILDREN_W -> doesn't work here)
1352 // Breaks vpbuddy
1353 //rc = RedrawWindow(hwnd, NULL, 0, RDW_UPDATENOW_W | RDW_ALLCHILDREN_W);
1354 // -> RDW_UPDATENOW causes WM_PAINT messages to be directy posted to window
1355 // handler; possibly bypassing queued WM_PAINT messages for parent window(s)
1356 // -> out of sync painting (i.e. parent paints over child)
1357
1358// if(!WinIsWindowShowing(wnd->getOS2FrameWindowHandle()) || !WinIsWindowShowing(wnd->getOS2WindowHandle())) {
1359// dprintf(("UpdateWindow: window not showing %d/%d", WinIsWindowShowing(wnd->getOS2FrameWindowHandle()), WinIsWindowShowing(wnd->getOS2WindowHandle()) ));
1360// return FALSE;
1361// }
1362 //Must use frame window here. If the frame window has a valid update region and we call
1363 //WinUpdateWindow for the client window, then no WM_PAINT messages will be sent.
1364 rc = WinUpdateWindow(wnd->getOS2FrameWindowHandle());
1365#ifdef DEBUG
1366 if(WinQueryUpdateRect(wnd->getOS2WindowHandle(), NULL))
1367 {
1368 //if parent has valid update region then WinUpdateWindow will still fail..
1369 //might be harmless and happen even in windows
1370 dprintf (("ERROR: User32: UpdateWindow didn't send WM_PAINT messages!!"));
1371 }
1372#endif
1373 return rc;
1374}
1375//******************************************************************************
1376//******************************************************************************
1377BOOL WIN32API ValidateRect( HWND hwnd, const RECT * lprc)
1378{
1379 if(lprc) {
1380 dprintf(("USER32: ValidateRect %x (%d,%d)(%d,%d)", hwnd, lprc->left, lprc->top, lprc->right, lprc->bottom));
1381 }
1382 else dprintf(("USER32: ValidateRect %x", hwnd));
1383
1384 return RedrawWindow( hwnd, lprc, 0, RDW_VALIDATE_W | RDW_NOCHILDREN_W | (hwnd==0 ? RDW_UPDATENOW_W : 0));
1385}
1386//******************************************************************************
1387//******************************************************************************
1388BOOL WIN32API ValidateRgn( HWND hwnd, HRGN hrgn)
1389{
1390 dprintf(("USER32: ValidateRgn %x %x", hwnd, hrgn));
1391 return RedrawWindow( hwnd, NULL, hrgn, RDW_VALIDATE_W | RDW_NOCHILDREN_W | (hwnd==0 ? RDW_UPDATENOW_W : 0));
1392}
1393//******************************************************************************
1394//******************************************************************************
1395BOOL WIN32API InvalidateRect (HWND hwnd, const RECT *pRect, BOOL erase)
1396{
1397 BOOL result;
1398
1399 if(pRect) {
1400 dprintf(("InvalidateRect %x (%d,%d)(%d,%d) erase=%d", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom, erase));
1401 }
1402 else dprintf(("InvalidateRect %x NULL erase=%d", hwnd, erase));
1403#if 1
1404 result = RedrawWindow (hwnd, pRect, NULLHANDLE,
1405 RDW_INVALIDATE_W |
1406 (erase ? RDW_ERASE_W : 0) |
1407 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1408#else
1409 result = RedrawWindow (hwnd, pRect, NULLHANDLE,
1410 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1411 (erase ? RDW_ERASE_W : RDW_NOERASE_W) |
1412 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1413#endif
1414 return (result);
1415}
1416//******************************************************************************
1417//******************************************************************************
1418BOOL WIN32API InvalidateRgn (HWND hwnd, HRGN hrgn, BOOL erase)
1419{
1420 BOOL result;
1421
1422 dprintf(("InvalidateRgn %x %x erase=%d", hwnd, hrgn, erase));
1423#if 1
1424 result = RedrawWindow (hwnd, NULL, hrgn,
1425 RDW_INVALIDATE_W |
1426 (erase ? RDW_ERASE_W : 0) |
1427 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1428#else
1429 result = RedrawWindow (hwnd, NULL, hrgn,
1430 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1431 (erase ? RDW_ERASE_W : RDW_NOERASE_W) |
1432 (hwnd == NULLHANDLE ? RDW_UPDATENOW_W : 0));
1433#endif
1434 return (result);
1435}
1436//******************************************************************************
1437//TODO: Change for client rectangle!!!!!
1438//******************************************************************************
1439BOOL setPMRgnIntoWinRgn (HPS hps, HRGN hrgnPM, HRGN hrgnWin, LONG height)
1440{
1441 BOOL rc;
1442 RGNRECT rgnRect;
1443 rgnRect.ircStart = 1;
1444 rgnRect.crc = 0;
1445 rgnRect.ulDirection = RECTDIR_LFRT_TOPBOT;
1446
1447 rc = GpiQueryRegionRects (hps, hrgnPM, NULL, &rgnRect, NULL);
1448
1449 if (rc && (rgnRect.crcReturned > 0))
1450 {
1451 PRECTL Rcls = new RECTL[rgnRect.crcReturned];
1452 PRECTL pRcl = Rcls;
1453
1454 if (Rcls != NULL)
1455 {
1456 rgnRect.crc = rgnRect.crcReturned;
1457 rc = GpiQueryRegionRects (hps, hrgnPM, NULL, &rgnRect, Rcls);
1458
1459 rc = SetRectRgn(hrgnWin, pRcl->xLeft, height - pRcl->yTop,
1460 pRcl->xRight, height - pRcl->yBottom);
1461
1462 if (rgnRect.crcReturned > 1)
1463 {
1464 int i;
1465 HRGN temp;
1466 temp = CreateRectRgn (0, 0, 1, 1);
1467
1468 for (i = 1, pRcl++; rc && (i < rgnRect.crcReturned); i++, pRcl++)
1469 {
1470 rc = SetRectRgn (temp, pRcl->xLeft, height - pRcl->yTop,
1471 pRcl->xRight, height - pRcl->yBottom);
1472 rc &= CombineRgn (hrgnWin, hrgnWin, temp, RGN_OR_W);
1473 }
1474 DeleteObject (temp);
1475 }
1476 delete[] Rcls;
1477 }
1478 else
1479 {
1480 rc = FALSE;
1481 }
1482 }
1483 else
1484 {
1485 rc = SetRectRgn (hrgnWin, 0, 0, 0, 0);
1486 }
1487
1488 return (rc);
1489}
1490//******************************************************************************
1491//TODO: Check if this one works correctly...
1492//Have to check if dc is for frame or client!!
1493//******************************************************************************
1494BOOL WIN32API ScrollDC(HDC hDC, int dx, int dy, const RECT *pScroll,
1495 const RECT *pClip, HRGN hrgnUpdate, LPRECT pRectUpdate)
1496{
1497 Win32BaseWindow *wnd;
1498 BOOL rc = TRUE;
1499
1500 dprintf (("USER32: ScrollDC %x (%d,%d), %x %x %x %x", hDC, dx, dy, pScroll, pClip, hrgnUpdate, pRectUpdate));
1501
1502 if (!hDC)
1503 {
1504 return (FALSE);
1505 }
1506
1507 pDCData pHps = (pDCData)GpiQueryDCData ((HPS)hDC);
1508 HWND hwnd = pHps->hwnd;
1509 if(pHps->isClient) {
1510 wnd = Win32BaseWindow::GetWindowFromOS2Handle (hwnd);
1511 }
1512 else {
1513 //assume (for now) that this is not allowed (TODO)
1514 dprintf(("ScrollDC used for frame HDC!!"));
1515 DebugInt3();
1516 return FALSE;
1517 }
1518
1519 if((hwnd == NULLHANDLE) || !wnd)
1520 {
1521 return (FALSE);
1522 }
1523
1524 POINTL ptl[2] = { 0, 0, dx, dy };
1525
1526 GpiConvert (pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, ptl);
1527 dx = (int)(ptl[1].x - ptl[0].x);
1528 dy = (int)(ptl[1].y - ptl[0].y);
1529
1530 RECT scrollRect;
1531 RECT clipRect;
1532
1533 if (pClip)
1534 {
1535 memcpy(&clipRect, pClip, sizeof(clipRect));
1536
1537 if ((pHps->graphicsMode == GM_COMPATIBLE_W) &&
1538 (clipRect.left != clipRect.right) &&
1539 (clipRect.bottom != clipRect.top))
1540 {
1541 if (abs((int)pHps->viewportXExt) <= abs((int)pHps->windowExt.cx))
1542 clipRect.right -= abs(pHps->worldXDeltaFor1Pixel);
1543 else
1544 clipRect.left += abs(pHps->worldXDeltaFor1Pixel);
1545
1546 if (abs((int)pHps->viewportYExt) <= abs((int)pHps->windowExt.cy))
1547 clipRect.bottom -= abs(pHps->worldYDeltaFor1Pixel);
1548 else
1549 clipRect.top += abs(pHps->worldYDeltaFor1Pixel);
1550 }
1551 GpiConvert(pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, (PPOINTL)&clipRect);
1552 if (clipRect.right < clipRect.left) {
1553 ULONG temp = clipRect.left;
1554 clipRect.left = clipRect.right;
1555 clipRect.right = temp;
1556 }
1557 if (clipRect.bottom < clipRect.top) {
1558 ULONG temp = clipRect.top;
1559 clipRect.top = clipRect.bottom;
1560 clipRect.bottom = temp;
1561 }
1562 }
1563
1564 if (pScroll)
1565 {
1566 memcpy(&scrollRect, pScroll, sizeof(scrollRect));
1567
1568 if ((pHps->graphicsMode == GM_COMPATIBLE_W) &&
1569 (scrollRect.left != scrollRect.right) &&
1570 (scrollRect.top != scrollRect.bottom))
1571 {
1572 if (abs((int)pHps->viewportXExt) <= abs((int)pHps->windowExt.cx))
1573 scrollRect.right -= abs(pHps->worldXDeltaFor1Pixel);
1574 else
1575 scrollRect.left += abs(pHps->worldXDeltaFor1Pixel);
1576
1577 if (abs((int)pHps->viewportYExt) <= abs((int)pHps->windowExt.cy))
1578 scrollRect.bottom -= abs(pHps->worldYDeltaFor1Pixel);
1579 else
1580 scrollRect.top += abs(pHps->worldYDeltaFor1Pixel);
1581 }
1582 GpiConvert (pHps->hps, CVTC_WORLD, CVTC_DEVICE, 2, (PPOINTL)&scrollRect);
1583 if (scrollRect.right < scrollRect.left) {
1584 ULONG temp = scrollRect.left;
1585 scrollRect.left = scrollRect.right;
1586 scrollRect.right = temp;
1587 }
1588 if (scrollRect.bottom < scrollRect.top) {
1589 ULONG temp = scrollRect.top;
1590 scrollRect.top = scrollRect.bottom;
1591 scrollRect.bottom = temp;
1592 }
1593 }
1594 RECTL rectlUpdate;
1595 HRGN hrgn = NULLHANDLE;
1596 RECTL clipOS2;
1597 RECTL scrollOS2;
1598 PRECTL pScrollOS2 = NULL;
1599 PRECTL pClipOS2 = NULL;
1600 HPS hpsScreen = 0;
1601
1602 if(pScroll) {
1603 mapWin32ToOS2Rect(wnd->getClientHeight(), &scrollRect, (PRECTLOS2)&scrollOS2);
1604 pScrollOS2 = &scrollOS2;
1605 }
1606
1607 if(pClip) {
1608 mapWin32ToOS2Rect(wnd->getClientHeight(), &clipRect, (PRECTLOS2)&clipOS2);
1609 pClipOS2 = &clipOS2;
1610 }
1611
1612 if(hrgnUpdate) {
1613 RECTL rectl = { 1, 1, 2, 2 };
1614
1615 hpsScreen = WinGetScreenPS (HWND_DESKTOP);
1616 hrgn = GpiCreateRegion(hpsScreen, 1, &rectl);
1617 }
1618
1619 LONG lComplexity = WinScrollWindow(hwnd, dx, dy, pScrollOS2,
1620 pClipOS2, hrgn, &rectlUpdate, 0);
1621 if (lComplexity == RGN_ERROR)
1622 {
1623 return (FALSE);
1624 }
1625
1626 RECT winRectUpdate;
1627
1628 mapOS2ToWin32Rect(wnd->getClientHeight(), (PRECTLOS2)&rectlUpdate, &winRectUpdate);
1629
1630 if (pRectUpdate)
1631 *pRectUpdate = winRectUpdate;
1632
1633 if (hrgnUpdate) {
1634 rc = setPMRgnIntoWinRgn(hpsScreen, hrgn, hrgnUpdate, wnd->getClientHeight());
1635 GpiDestroyRegion(hpsScreen, hrgn);
1636 WinReleasePS(hpsScreen);
1637 }
1638
1639 return (rc);
1640}
1641//******************************************************************************
1642//Using WinScrollWindow to scroll child windows is better (smoother).
1643//******************************************************************************
1644INT WIN32API ScrollWindowEx(HWND hwnd, int dx, int dy, const RECT *pScroll, const RECT *pClip,
1645 HRGN hrgnUpdate, PRECT pRectUpdate, UINT scrollFlag)
1646{
1647 Win32BaseWindow *window;
1648 APIRET rc;
1649 RECTL scrollRect;
1650 RECTL clipRect;
1651 PRECTL pScrollOS2 = NULL;
1652 PRECTL pClipOS2 = NULL;
1653 ULONG scrollFlagsOS2 = 0;
1654 int orgdy = dy;
1655 int regionType = ERROR_W;
1656
1657 window = Win32BaseWindow::GetWindowFromHandle(hwnd);
1658 if(!window) {
1659 dprintf(("ScrollWindowEx, window %x not found", hwnd));
1660 return 0;
1661 }
1662
1663 dprintf(("ScrollWindowEx %x %d %d %x %x", hwnd, dx, dy, pScroll, pClip));
1664
1665 dy = revertDy (window, dy);
1666
1667 if (scrollFlag & SW_INVALIDATE_W) scrollFlagsOS2 |= SW_INVALIDATERGN;
1668 if (scrollFlag & SW_SCROLLCHILDREN_W) scrollFlagsOS2 |= SW_SCROLLCHILDREN;
1669
1670 if(pScroll) {
1671 mapWin32ToOS2Rect(window->getClientHeight(), (RECT *)pScroll, (PRECTLOS2)&scrollRect);
1672 pScrollOS2 = &scrollRect;
1673 }
1674
1675 if(pClip) {
1676 mapWin32ToOS2Rect(window->getClientHeight(), (RECT *)pClip, (PRECTLOS2)&clipRect);
1677 pClipOS2 = &clipRect;
1678 }
1679
1680 RECTL rectlUpdate;
1681 HRGN hrgn = NULLHANDLE;
1682 HPS hpsScreen = 0;
1683
1684 if(hrgnUpdate) {
1685 RECTL rectl = { 1, 1, 2, 2 };
1686
1687 hpsScreen = WinGetScreenPS (HWND_DESKTOP);
1688 hrgn = GpiCreateRegion(hpsScreen, 1, &rectl);
1689 }
1690
1691 if (scrollFlag & SW_SMOOTHSCROLL_W)
1692 {
1693 INT time = (scrollFlag >> 16) & 0xFFFF;
1694
1695 //CB: todo, scroll in several steps
1696 // is time in ms? time <-> iteration count?
1697 }
1698
1699 LONG lComplexity = WinScrollWindow(window->getOS2WindowHandle(), dx, dy,
1700 pScrollOS2, pClipOS2,
1701 hrgn, &rectlUpdate, scrollFlagsOS2);
1702 if (lComplexity == RGN_ERROR)
1703 {
1704 return ERROR_W;
1705 }
1706
1707 //Notify children that they have moved (according to the SDK docs,
1708 //they only receive a WM_MOVE message)
1709 //(PM only does this for windows with CS_MOVENOTIFY class)
1710 //TODO: Verify this (no WM_WINDOWPOSCHANGING/ED?)
1711 if (scrollFlag & SW_SCROLLCHILDREN_W)
1712 {
1713 HWND hwndChild;
1714 RECT rectChild, rc;
1715
1716 dprintf(("ScrollWindowEx: Scroll child windows"));
1717 GetClientRect(hwnd, &rc);
1718 if (pScroll) IntersectRect(&rc, &rc, pScroll);
1719
1720 hwndChild = GetWindow(hwnd, GW_CHILD_W);
1721
1722 while(hwndChild)
1723 {
1724 Win32BaseWindow *child;
1725
1726 child = Win32BaseWindow::GetWindowFromHandle(hwndChild);
1727 if(!child) {
1728 dprintf(("ERROR: ScrollWindowEx, child %x not found", hwnd));
1729 return 0;
1730 }
1731 rectChild = *child->getWindowRect();
1732 if(!pScroll || IntersectRect(&rectChild, &rectChild, &rc))
1733 {
1734 dprintf(("ScrollWindowEx: Scroll child window %x", hwndChild));
1735 child->ScrollWindow(dx, orgdy);
1736 }
1737 hwndChild = GetWindow(hwndChild, GW_HWNDNEXT_W);
1738 }
1739 dprintf(("***ScrollWindowEx: Scroll child windows DONE"));
1740 }
1741
1742 RECT winRectUpdate;
1743
1744 mapOS2ToWin32Rect(window->getClientHeight(), (PRECTLOS2)&rectlUpdate, &winRectUpdate);
1745
1746 if (pRectUpdate)
1747 *pRectUpdate = winRectUpdate;
1748
1749 if (hrgnUpdate) {
1750 rc = setPMRgnIntoWinRgn(hpsScreen, hrgn, hrgnUpdate, window->getClientHeight());
1751 GpiDestroyRegion(hpsScreen, hrgn);
1752 WinReleasePS(hpsScreen);
1753 }
1754
1755#if 0
1756 //SvL: WinScrollWindow already invalidates the area; no need to do it again
1757 //(call to invalidateRect was wrong; has to include erase flag)
1758 if ((scrollFlag & SW_INVALIDATE_W) &&
1759 ((lComplexity == RGN_RECT) || (lComplexity == RGN_COMPLEX)))
1760 {
1761 rc = RedrawWindow (hwnd, &winRectUpdate, NULLHANDLE,
1762 RDW_ALLCHILDREN_W | RDW_INVALIDATE_W |
1763 ((scrollFlag & SW_ERASE_W) ? RDW_ERASE_W : 0) |
1764 RDW_UPDATENOW_W);
1765
1766// rc = InvalidateRect (hwnd, &winRectUpdate, (scrollFlag & SW_ERASE_W) ? 1 : 0);
1767 if (rc == FALSE)
1768 {
1769 return (0);
1770 }
1771 }
1772#endif
1773
1774 switch (lComplexity)
1775 {
1776 case RGN_NULL:
1777 regionType = NULLREGION_W;
1778 break;
1779 case RGN_RECT:
1780 regionType = SIMPLEREGION_W;
1781 break;
1782 case RGN_COMPLEX:
1783 regionType = COMPLEXREGION_W;
1784 break;
1785 default:
1786 regionType = ERROR_W;
1787 break;
1788 }
1789
1790 return (regionType);
1791}
1792//******************************************************************************
1793//******************************************************************************
1794BOOL WIN32API ScrollWindow(HWND hwnd, int dx, int dy, const RECT *pScroll, const RECT *pClip)
1795{
1796 Win32BaseWindow *window;
1797
1798 window = Win32BaseWindow::GetWindowFromHandle(hwnd);
1799 if(!window) {
1800 dprintf(("ScrollWindow, window %x not found", hwnd));
1801 return 0;
1802 }
1803 dprintf(("ScrollWindow %x %d %d %x %x", hwnd, dx, dy, pScroll, pClip));
1804 return (ERROR_W != ScrollWindowEx(hwnd, dx, dy, pScroll, pClip, 0, NULL,
1805 (pScroll ? 0 : SW_SCROLLCHILDREN_W) |
1806 SW_INVALIDATE_W ));
1807}
1808//******************************************************************************
1809//******************************************************************************
1810HWND WIN32API WindowFromDC(HDC hdc)
1811{
1812 pDCData pHps = (pDCData)GpiQueryDCData( (HPS)hdc );
1813
1814 dprintf2(("USER32: WindowFromDC %x", hdc));
1815 if ( pHps )
1816 return OS2ToWin32Handle(pHps->hwnd);
1817 else
1818 return 0;
1819}
1820//******************************************************************************
1821//******************************************************************************
1822
Note: See TracBrowser for help on using the repository browser.