winex11: Create contexts at initialization time to avoid the need for locks.
[wine/multimedia.git] / dlls / gdi32 / clipping.c
blob1cb420c4944ec70316555f496cb1a29068d14dfe
1 /*
2 * DC clipping functions
4 * Copyright 1993 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
22 #include <stdlib.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wingdi.h"
26 #include "gdi_private.h"
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(clipping);
32 /* return the DC device rectangle if not empty */
33 static inline BOOL get_dc_device_rect( DC *dc, RECT *rect )
35 *rect = dc->device_rect;
36 offset_rect( rect, -dc->vis_rect.left, -dc->vis_rect.top );
37 return !is_rect_empty( rect );
40 /***********************************************************************
41 * get_clip_rect
43 * Compute a clip rectangle from its logical coordinates.
45 static inline RECT get_clip_rect( DC * dc, int left, int top, int right, int bottom )
47 RECT rect;
49 rect.left = left;
50 rect.top = top;
51 rect.right = right;
52 rect.bottom = bottom;
53 LPtoDP( dc->hSelf, (POINT *)&rect, 2 );
54 if (dc->layout & LAYOUT_RTL)
56 int tmp = rect.left;
57 rect.left = rect.right + 1;
58 rect.right = tmp + 1;
60 return rect;
63 /***********************************************************************
64 * clip_device_rect
66 * Clip a rectangle to the whole DC surface.
68 BOOL clip_device_rect( DC *dc, RECT *dst, const RECT *src )
70 RECT clip;
72 if (get_dc_device_rect( dc, &clip )) return intersect_rect( dst, src, &clip );
73 *dst = *src;
74 return TRUE;
77 /***********************************************************************
78 * clip_visrect
80 * Clip a rectangle to the DC visible rect.
82 BOOL clip_visrect( DC *dc, RECT *dst, const RECT *src )
84 RECT clip;
86 if (!clip_device_rect( dc, dst, src )) return FALSE;
87 if (GetRgnBox( get_dc_region(dc), &clip )) return intersect_rect( dst, dst, &clip );
88 return TRUE;
91 /***********************************************************************
92 * update_dc_clipping
94 * Update the DC and device clip regions when the ClipRgn or VisRgn have changed.
96 void update_dc_clipping( DC * dc )
98 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pSetDeviceClipping );
99 HRGN regions[3];
100 int count = 0;
102 if (dc->hVisRgn) regions[count++] = dc->hVisRgn;
103 if (dc->hClipRgn) regions[count++] = dc->hClipRgn;
104 if (dc->hMetaRgn) regions[count++] = dc->hMetaRgn;
106 if (count > 1)
108 if (!dc->region) dc->region = CreateRectRgn( 0, 0, 0, 0 );
109 CombineRgn( dc->region, regions[0], regions[1], RGN_AND );
110 if (count > 2) CombineRgn( dc->region, dc->region, regions[2], RGN_AND );
112 else /* only one region, we don't need the total region */
114 if (dc->region) DeleteObject( dc->region );
115 dc->region = 0;
117 physdev->funcs->pSetDeviceClipping( physdev, get_dc_region( dc ));
120 /***********************************************************************
121 * create_default_clip_region
123 * Create a default clipping region when none already exists.
125 static inline void create_default_clip_region( DC * dc )
127 RECT rect;
129 if (!get_dc_device_rect( dc, &rect ))
131 rect.left = 0;
132 rect.top = 0;
133 rect.right = GetDeviceCaps( dc->hSelf, DESKTOPHORZRES );
134 rect.bottom = GetDeviceCaps( dc->hSelf, DESKTOPVERTRES );
136 dc->hClipRgn = CreateRectRgnIndirect( &rect );
140 /***********************************************************************
141 * null driver fallback implementations
144 INT nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode )
146 DC *dc = get_nulldrv_dc( dev );
147 INT ret;
149 if (!rgn)
151 if (mode != RGN_COPY)
153 FIXME("Unimplemented: hrgn NULL in mode: %d\n", mode);
154 return ERROR;
156 if (dc->hClipRgn) DeleteObject( dc->hClipRgn );
157 dc->hClipRgn = 0;
158 ret = SIMPLEREGION;
160 else
162 HRGN mirrored = 0;
164 if (dc->layout & LAYOUT_RTL)
166 if (!(mirrored = CreateRectRgn( 0, 0, 0, 0 ))) return ERROR;
167 mirror_region( mirrored, rgn, dc->vis_rect.right - dc->vis_rect.left );
168 rgn = mirrored;
171 if (!dc->hClipRgn)
172 create_default_clip_region( dc );
174 if (mode == RGN_COPY)
175 ret = CombineRgn( dc->hClipRgn, rgn, 0, mode );
176 else
177 ret = CombineRgn( dc->hClipRgn, dc->hClipRgn, rgn, mode);
179 if (mirrored) DeleteObject( mirrored );
181 update_dc_clipping( dc );
182 return ret;
185 INT nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
187 DC *dc = get_nulldrv_dc( dev );
188 RECT rect = get_clip_rect( dc, left, top, right, bottom );
189 INT ret;
190 HRGN rgn;
192 if (!(rgn = CreateRectRgnIndirect( &rect ))) return ERROR;
193 if (!dc->hClipRgn) create_default_clip_region( dc );
194 ret = CombineRgn( dc->hClipRgn, dc->hClipRgn, rgn, RGN_DIFF );
195 DeleteObject( rgn );
196 if (ret != ERROR) update_dc_clipping( dc );
197 return ret;
200 INT nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
202 DC *dc = get_nulldrv_dc( dev );
203 RECT rect = get_clip_rect( dc, left, top, right, bottom );
204 INT ret;
205 HRGN rgn;
207 if (!dc->hClipRgn)
209 dc->hClipRgn = CreateRectRgnIndirect( &rect );
210 ret = SIMPLEREGION;
212 else
214 if (!(rgn = CreateRectRgnIndirect( &rect ))) return ERROR;
215 ret = CombineRgn( dc->hClipRgn, dc->hClipRgn, rgn, RGN_AND );
216 DeleteObject( rgn );
218 if (ret != ERROR) update_dc_clipping( dc );
219 return ret;
222 INT nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y )
224 DC *dc = get_nulldrv_dc( dev );
225 INT ret = NULLREGION;
227 if (dc->hClipRgn)
229 x = MulDiv( x, dc->vportExtX, dc->wndExtX );
230 y = MulDiv( y, dc->vportExtY, dc->wndExtY );
231 if (dc->layout & LAYOUT_RTL) x = -x;
232 ret = OffsetRgn( dc->hClipRgn, x, y );
233 update_dc_clipping( dc );
235 return ret;
239 /***********************************************************************
240 * SelectClipRgn (GDI32.@)
242 INT WINAPI SelectClipRgn( HDC hdc, HRGN hrgn )
244 return ExtSelectClipRgn( hdc, hrgn, RGN_COPY );
248 /******************************************************************************
249 * ExtSelectClipRgn [GDI32.@]
251 INT WINAPI ExtSelectClipRgn( HDC hdc, HRGN hrgn, INT fnMode )
253 INT retval = ERROR;
254 DC * dc = get_dc_ptr( hdc );
256 TRACE("%p %p %d\n", hdc, hrgn, fnMode );
258 if (dc)
260 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtSelectClipRgn );
261 update_dc( dc );
262 retval = physdev->funcs->pExtSelectClipRgn( physdev, hrgn, fnMode );
263 release_dc_ptr( dc );
265 return retval;
268 /***********************************************************************
269 * __wine_set_visible_region (GDI32.@)
271 void CDECL __wine_set_visible_region( HDC hdc, HRGN hrgn, const RECT *vis_rect )
273 DC * dc;
275 if (!(dc = get_dc_ptr( hdc ))) return;
277 TRACE( "%p %p %s\n", hdc, hrgn, wine_dbgstr_rect(vis_rect) );
279 /* map region to DC coordinates */
280 OffsetRgn( hrgn, -vis_rect->left, -vis_rect->top );
282 if (dc->hVisRgn) DeleteObject( dc->hVisRgn );
283 dc->dirty = 0;
284 dc->vis_rect = *vis_rect;
285 dc->hVisRgn = hrgn;
286 DC_UpdateXforms( dc );
287 update_dc_clipping( dc );
288 release_dc_ptr( dc );
292 /***********************************************************************
293 * OffsetClipRgn (GDI32.@)
295 INT WINAPI OffsetClipRgn( HDC hdc, INT x, INT y )
297 INT ret = ERROR;
298 DC *dc = get_dc_ptr( hdc );
300 TRACE("%p %d,%d\n", hdc, x, y );
302 if (dc)
304 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pOffsetClipRgn );
305 update_dc( dc );
306 ret = physdev->funcs->pOffsetClipRgn( physdev, x, y );
307 release_dc_ptr( dc );
309 return ret;
313 /***********************************************************************
314 * ExcludeClipRect (GDI32.@)
316 INT WINAPI ExcludeClipRect( HDC hdc, INT left, INT top,
317 INT right, INT bottom )
319 INT ret = ERROR;
320 DC *dc = get_dc_ptr( hdc );
322 TRACE("%p %d,%d-%d,%d\n", hdc, left, top, right, bottom );
324 if (dc)
326 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExcludeClipRect );
327 update_dc( dc );
328 ret = physdev->funcs->pExcludeClipRect( physdev, left, top, right, bottom );
329 release_dc_ptr( dc );
331 return ret;
335 /***********************************************************************
336 * IntersectClipRect (GDI32.@)
338 INT WINAPI IntersectClipRect( HDC hdc, INT left, INT top, INT right, INT bottom )
340 INT ret = ERROR;
341 DC *dc = get_dc_ptr( hdc );
343 TRACE("%p %d,%d - %d,%d\n", hdc, left, top, right, bottom );
345 if (dc)
347 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pIntersectClipRect );
348 update_dc( dc );
349 ret = physdev->funcs->pIntersectClipRect( physdev, left, top, right, bottom );
350 release_dc_ptr( dc );
352 return ret;
356 /***********************************************************************
357 * PtVisible (GDI32.@)
359 BOOL WINAPI PtVisible( HDC hdc, INT x, INT y )
361 POINT pt;
362 RECT visrect;
363 BOOL ret;
364 DC *dc = get_dc_ptr( hdc );
366 TRACE("%p %d,%d\n", hdc, x, y );
367 if (!dc) return FALSE;
369 pt.x = x;
370 pt.y = y;
371 LPtoDP( hdc, &pt, 1 );
372 update_dc( dc );
373 ret = (!get_dc_device_rect( dc, &visrect ) ||
374 (pt.x >= visrect.left && pt.x < visrect.right &&
375 pt.y >= visrect.top && pt.y < visrect.bottom));
376 if (ret && get_dc_region( dc )) ret = PtInRegion( get_dc_region( dc ), pt.x, pt.y );
377 release_dc_ptr( dc );
378 return ret;
382 /***********************************************************************
383 * RectVisible (GDI32.@)
385 BOOL WINAPI RectVisible( HDC hdc, const RECT* rect )
387 RECT tmpRect, visrect;
388 BOOL ret;
389 DC *dc = get_dc_ptr( hdc );
390 if (!dc) return FALSE;
391 TRACE("%p %s\n", hdc, wine_dbgstr_rect( rect ));
393 tmpRect = *rect;
394 LPtoDP( hdc, (POINT *)&tmpRect, 2 );
396 update_dc( dc );
397 ret = (!get_dc_device_rect( dc, &visrect ) || intersect_rect( &visrect, &visrect, &tmpRect ));
398 if (ret && get_dc_region( dc )) ret = RectInRegion( get_dc_region( dc ), &tmpRect );
399 release_dc_ptr( dc );
400 return ret;
404 /***********************************************************************
405 * GetClipBox (GDI32.@)
407 INT WINAPI GetClipBox( HDC hdc, LPRECT rect )
409 RECT visrect;
410 INT ret;
411 DC *dc = get_dc_ptr( hdc );
412 if (!dc) return ERROR;
414 update_dc( dc );
415 if (get_dc_region( dc ))
417 ret = GetRgnBox( get_dc_region( dc ), rect );
418 if (get_dc_device_rect( dc, &visrect ) && !intersect_rect( rect, rect, &visrect ))
419 ret = NULLREGION;
421 else
423 ret = is_rect_empty( &dc->vis_rect ) ? ERROR : SIMPLEREGION;
424 *rect = dc->vis_rect;
427 if (dc->layout & LAYOUT_RTL)
429 int tmp = rect->left;
430 rect->left = rect->right - 1;
431 rect->right = tmp - 1;
433 DPtoLP( hdc, (LPPOINT)rect, 2 );
434 release_dc_ptr( dc );
435 TRACE("%p => %d %s\n", hdc, ret, wine_dbgstr_rect( rect ));
436 return ret;
440 /***********************************************************************
441 * GetClipRgn (GDI32.@)
443 INT WINAPI GetClipRgn( HDC hdc, HRGN hRgn )
445 INT ret = -1;
446 DC * dc;
447 if ((dc = get_dc_ptr( hdc )))
449 if( dc->hClipRgn )
451 if( CombineRgn(hRgn, dc->hClipRgn, 0, RGN_COPY) != ERROR )
453 ret = 1;
454 if (dc->layout & LAYOUT_RTL)
455 mirror_region( hRgn, hRgn, dc->vis_rect.right - dc->vis_rect.left );
458 else ret = 0;
459 release_dc_ptr( dc );
461 return ret;
465 /***********************************************************************
466 * GetMetaRgn (GDI32.@)
468 INT WINAPI GetMetaRgn( HDC hdc, HRGN hRgn )
470 INT ret = 0;
471 DC * dc = get_dc_ptr( hdc );
473 if (dc)
475 if (dc->hMetaRgn && CombineRgn( hRgn, dc->hMetaRgn, 0, RGN_COPY ) != ERROR)
477 ret = 1;
478 if (dc->layout & LAYOUT_RTL)
479 mirror_region( hRgn, hRgn, dc->vis_rect.right - dc->vis_rect.left );
481 release_dc_ptr( dc );
483 return ret;
487 /***********************************************************************
488 * GetRandomRgn [GDI32.@]
490 * NOTES
491 * This function is documented in MSDN online for the case of
492 * iCode == SYSRGN (4).
494 * For iCode == 1 it should return the clip region
495 * 2 " " " the meta region
496 * 3 " " " the intersection of the clip with
497 * the meta region (== 'Rao' region).
499 * See http://www.codeproject.com/gdi/cliprgnguide.asp
501 INT WINAPI GetRandomRgn(HDC hDC, HRGN hRgn, INT iCode)
503 INT ret = 1;
504 DC *dc = get_dc_ptr( hDC );
506 if (!dc) return -1;
508 switch (iCode)
510 case 1:
511 if (dc->hClipRgn) CombineRgn( hRgn, dc->hClipRgn, 0, RGN_COPY );
512 else ret = 0;
513 break;
514 case 2:
515 if (dc->hMetaRgn) CombineRgn( hRgn, dc->hMetaRgn, 0, RGN_COPY );
516 else ret = 0;
517 break;
518 case 3:
519 if (dc->hClipRgn && dc->hMetaRgn) CombineRgn( hRgn, dc->hClipRgn, dc->hMetaRgn, RGN_AND );
520 else if (dc->hClipRgn) CombineRgn( hRgn, dc->hClipRgn, 0, RGN_COPY );
521 else if (dc->hMetaRgn) CombineRgn( hRgn, dc->hMetaRgn, 0, RGN_COPY );
522 else ret = 0;
523 break;
524 case SYSRGN: /* == 4 */
525 update_dc( dc );
526 if (dc->hVisRgn)
528 CombineRgn( hRgn, dc->hVisRgn, 0, RGN_COPY );
529 /* On Windows NT/2000, the SYSRGN returned is in screen coordinates */
530 if (!(GetVersion() & 0x80000000)) OffsetRgn( hRgn, dc->vis_rect.left, dc->vis_rect.top );
532 else if (!is_rect_empty( &dc->device_rect ))
533 SetRectRgn( hRgn, dc->device_rect.left, dc->device_rect.top,
534 dc->device_rect.right, dc->device_rect.bottom );
535 else
536 ret = 0;
537 break;
538 default:
539 WARN("Unknown code %d\n", iCode);
540 ret = -1;
541 break;
543 release_dc_ptr( dc );
544 return ret;
548 /***********************************************************************
549 * SetMetaRgn (GDI32.@)
551 INT WINAPI SetMetaRgn( HDC hdc )
553 INT ret;
554 RECT dummy;
555 DC *dc = get_dc_ptr( hdc );
557 if (!dc) return ERROR;
559 if (dc->hClipRgn)
561 if (dc->hMetaRgn)
563 /* the intersection becomes the new meta region */
564 CombineRgn( dc->hMetaRgn, dc->hMetaRgn, dc->hClipRgn, RGN_AND );
565 DeleteObject( dc->hClipRgn );
566 dc->hClipRgn = 0;
568 else
570 dc->hMetaRgn = dc->hClipRgn;
571 dc->hClipRgn = 0;
574 /* else nothing to do */
576 /* Note: no need to call update_dc_clipping, the overall clip region hasn't changed */
578 ret = GetRgnBox( dc->hMetaRgn, &dummy );
579 release_dc_ptr( dc );
580 return ret;