2 * GDI Device Context 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
34 #include "gdi_private.h"
35 #include "wine/unicode.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(dc
);
40 static const WCHAR displayW
[] = { 'd','i','s','p','l','a','y',0 };
42 static BOOL
DC_DeleteObject( HGDIOBJ handle
);
44 static const struct gdi_obj_funcs dc_funcs
=
46 NULL
, /* pSelectObject */
47 NULL
, /* pGetObjectA */
48 NULL
, /* pGetObjectW */
49 NULL
, /* pUnrealizeObject */
50 DC_DeleteObject
/* pDeleteObject */
54 static inline DC
*get_dc_obj( HDC hdc
)
56 DC
*dc
= GDI_GetObjPtr( hdc
, 0 );
59 if ((dc
->header
.type
!= OBJ_DC
) &&
60 (dc
->header
.type
!= OBJ_MEMDC
) &&
61 (dc
->header
.type
!= OBJ_METADC
) &&
62 (dc
->header
.type
!= OBJ_ENHMETADC
))
64 GDI_ReleaseObj( hdc
);
65 SetLastError( ERROR_INVALID_HANDLE
);
72 /***********************************************************************
75 DC
*alloc_dc_ptr( const DC_FUNCTIONS
*funcs
, WORD magic
)
79 if (!(dc
= HeapAlloc( GetProcessHeap(), 0, sizeof(*dc
) ))) return NULL
;
83 dc
->thread
= GetCurrentThreadId();
98 dc
->miterLimit
= 10.0f
; /* 10.0 is the default, from MSDN */
103 dc
->hMetaClipRgn
= 0;
105 dc
->hPen
= GDI_inc_ref_count( GetStockObject( BLACK_PEN
));
106 dc
->hBrush
= GDI_inc_ref_count( GetStockObject( WHITE_BRUSH
));
107 dc
->hFont
= GDI_inc_ref_count( GetStockObject( SYSTEM_FONT
));
110 dc
->hPalette
= GetStockObject( DEFAULT_PALETTE
);
112 dc
->font_code_page
= CP_ACP
;
113 dc
->ROPmode
= R2_COPYPEN
;
114 dc
->polyFillMode
= ALTERNATE
;
115 dc
->stretchBltMode
= BLACKONWHITE
;
116 dc
->relAbsMode
= ABSOLUTE
;
117 dc
->backgroundMode
= OPAQUE
;
118 dc
->backgroundColor
= RGB( 255, 255, 255 );
119 dc
->dcBrushColor
= RGB( 255, 255, 255 );
120 dc
->dcPenColor
= RGB( 0, 0, 0 );
121 dc
->textColor
= RGB( 0, 0, 0 );
124 dc
->textAlign
= TA_LEFT
| TA_TOP
| TA_NOUPDATECP
;
128 dc
->MapMode
= MM_TEXT
;
129 dc
->GraphicsMode
= GM_COMPATIBLE
;
130 dc
->pAbortProc
= NULL
;
133 dc
->ArcDirection
= AD_COUNTERCLOCKWISE
;
134 dc
->xformWorld2Wnd
.eM11
= 1.0f
;
135 dc
->xformWorld2Wnd
.eM12
= 0.0f
;
136 dc
->xformWorld2Wnd
.eM21
= 0.0f
;
137 dc
->xformWorld2Wnd
.eM22
= 1.0f
;
138 dc
->xformWorld2Wnd
.eDx
= 0.0f
;
139 dc
->xformWorld2Wnd
.eDy
= 0.0f
;
140 dc
->xformWorld2Vport
= dc
->xformWorld2Wnd
;
141 dc
->xformVport2World
= dc
->xformWorld2Wnd
;
142 dc
->vport2WorldValid
= TRUE
;
143 dc
->BoundsRect
.left
= 0;
144 dc
->BoundsRect
.top
= 0;
145 dc
->BoundsRect
.right
= 0;
146 dc
->BoundsRect
.bottom
= 0;
147 PATH_InitGdiPath(&dc
->path
);
149 if (!(dc
->hSelf
= alloc_gdi_handle( &dc
->header
, magic
, &dc_funcs
)))
151 HeapFree( GetProcessHeap(), 0, dc
);
159 /***********************************************************************
162 BOOL
free_dc_ptr( DC
*dc
)
164 assert( dc
->refcount
== 1 );
165 if (free_gdi_handle( dc
->hSelf
) != dc
) return FALSE
; /* shouldn't happen */
166 if (dc
->hClipRgn
) DeleteObject( dc
->hClipRgn
);
167 if (dc
->hMetaRgn
) DeleteObject( dc
->hMetaRgn
);
168 if (dc
->hMetaClipRgn
) DeleteObject( dc
->hMetaClipRgn
);
169 if (dc
->hVisRgn
) DeleteObject( dc
->hVisRgn
);
170 PATH_DestroyGdiPath( &dc
->path
);
171 return HeapFree( GetProcessHeap(), 0, dc
);
175 /***********************************************************************
178 * Retrieve a DC pointer but release the GDI lock.
180 DC
*get_dc_ptr( HDC hdc
)
182 DC
*dc
= get_dc_obj( hdc
);
183 if (!dc
) return NULL
;
185 if (!InterlockedCompareExchange( &dc
->refcount
, 1, 0 ))
187 dc
->thread
= GetCurrentThreadId();
189 else if (dc
->thread
!= GetCurrentThreadId())
191 WARN( "dc %p belongs to thread %04x\n", hdc
, dc
->thread
);
192 GDI_ReleaseObj( hdc
);
195 else InterlockedIncrement( &dc
->refcount
);
197 GDI_ReleaseObj( hdc
);
202 /***********************************************************************
205 void release_dc_ptr( DC
*dc
)
210 ref
= InterlockedDecrement( &dc
->refcount
);
212 if (ref
) dc
->thread
= GetCurrentThreadId(); /* we still own it */
216 /***********************************************************************
219 * Make sure the DC vis region is up to date.
220 * This function may call up to USER so the GDI lock should _not_
221 * be held when calling it.
223 void update_dc( DC
*dc
)
225 if (InterlockedExchange( &dc
->dirty
, 0 ) && dc
->hookProc
)
226 dc
->hookProc( dc
->hSelf
, DCHC_INVALIDVISRGN
, dc
->dwHookData
, 0 );
230 /***********************************************************************
233 static BOOL
DC_DeleteObject( HGDIOBJ handle
)
235 return DeleteDC( handle
);
239 /***********************************************************************
242 * Setup device-specific DC values for a newly created DC.
244 void DC_InitDC( DC
* dc
)
246 if (dc
->funcs
->pRealizeDefaultPalette
) dc
->funcs
->pRealizeDefaultPalette( dc
->physDev
);
247 SetTextColor( dc
->hSelf
, dc
->textColor
);
248 SetBkColor( dc
->hSelf
, dc
->backgroundColor
);
249 SelectObject( dc
->hSelf
, dc
->hPen
);
250 SelectObject( dc
->hSelf
, dc
->hBrush
);
251 SelectObject( dc
->hSelf
, dc
->hFont
);
252 CLIPPING_UpdateGCRegion( dc
);
253 SetVirtualResolution( dc
->hSelf
, 0, 0, 0, 0 );
257 /***********************************************************************
260 * Computes the inverse of the transformation xformSrc and stores it to
261 * xformDest. Returns TRUE if successful or FALSE if the xformSrc matrix
264 static BOOL
DC_InvertXform( const XFORM
*xformSrc
, XFORM
*xformDest
)
268 determinant
= xformSrc
->eM11
*xformSrc
->eM22
-
269 xformSrc
->eM12
*xformSrc
->eM21
;
270 if (determinant
> -1e-12 && determinant
< 1e-12)
273 xformDest
->eM11
= xformSrc
->eM22
/ determinant
;
274 xformDest
->eM12
= -xformSrc
->eM12
/ determinant
;
275 xformDest
->eM21
= -xformSrc
->eM21
/ determinant
;
276 xformDest
->eM22
= xformSrc
->eM11
/ determinant
;
277 xformDest
->eDx
= -xformSrc
->eDx
* xformDest
->eM11
-
278 xformSrc
->eDy
* xformDest
->eM21
;
279 xformDest
->eDy
= -xformSrc
->eDx
* xformDest
->eM12
-
280 xformSrc
->eDy
* xformDest
->eM22
;
285 /* Construct a transformation to do the window-to-viewport conversion */
286 static void construct_window_to_viewport(DC
*dc
, XFORM
*xform
)
288 double scaleX
, scaleY
;
289 scaleX
= (double)dc
->vportExtX
/ (double)dc
->wndExtX
;
290 scaleY
= (double)dc
->vportExtY
/ (double)dc
->wndExtY
;
292 xform
->eM11
= scaleX
;
295 xform
->eM22
= scaleY
;
296 xform
->eDx
= (double)dc
->vportOrgX
- scaleX
* (double)dc
->wndOrgX
;
297 xform
->eDy
= (double)dc
->vportOrgY
- scaleY
* (double)dc
->wndOrgY
;
300 /***********************************************************************
303 * Updates the xformWorld2Vport, xformVport2World and vport2WorldValid
304 * fields of the specified DC by creating a transformation that
305 * represents the current mapping mode and combining it with the DC's
306 * world transform. This function should be called whenever the
307 * parameters associated with the mapping mode (window and viewport
308 * extents and origins) or the world transform change.
310 void DC_UpdateXforms( DC
*dc
)
312 XFORM xformWnd2Vport
, oldworld2vport
;
314 construct_window_to_viewport(dc
, &xformWnd2Vport
);
316 oldworld2vport
= dc
->xformWorld2Vport
;
317 /* Combine with the world transformation */
318 CombineTransform( &dc
->xformWorld2Vport
, &dc
->xformWorld2Wnd
,
321 /* Create inverse of world-to-viewport transformation */
322 dc
->vport2WorldValid
= DC_InvertXform( &dc
->xformWorld2Vport
,
323 &dc
->xformVport2World
);
325 /* Reselect the font and pen back into the dc so that the size
327 if (memcmp(&oldworld2vport
, &dc
->xformWorld2Vport
, sizeof(oldworld2vport
)) &&
328 !GdiIsMetaFileDC(dc
->hSelf
))
330 SelectObject(dc
->hSelf
, GetCurrentObject(dc
->hSelf
, OBJ_FONT
));
331 SelectObject(dc
->hSelf
, GetCurrentObject(dc
->hSelf
, OBJ_PEN
));
336 /***********************************************************************
339 INT
save_dc_state( HDC hdc
)
344 if (!(dc
= get_dc_ptr( hdc
))) return 0;
345 if (!(newdc
= HeapAlloc( GetProcessHeap(), 0, sizeof(*newdc
))))
347 release_dc_ptr( dc
);
351 newdc
->flags
= dc
->flags
| DC_SAVED
;
352 newdc
->layout
= dc
->layout
;
353 newdc
->hPen
= dc
->hPen
;
354 newdc
->hBrush
= dc
->hBrush
;
355 newdc
->hFont
= dc
->hFont
;
356 newdc
->hBitmap
= dc
->hBitmap
;
357 newdc
->hDevice
= dc
->hDevice
;
358 newdc
->hPalette
= dc
->hPalette
;
359 newdc
->ROPmode
= dc
->ROPmode
;
360 newdc
->polyFillMode
= dc
->polyFillMode
;
361 newdc
->stretchBltMode
= dc
->stretchBltMode
;
362 newdc
->relAbsMode
= dc
->relAbsMode
;
363 newdc
->backgroundMode
= dc
->backgroundMode
;
364 newdc
->backgroundColor
= dc
->backgroundColor
;
365 newdc
->textColor
= dc
->textColor
;
366 newdc
->dcBrushColor
= dc
->dcBrushColor
;
367 newdc
->dcPenColor
= dc
->dcPenColor
;
368 newdc
->brushOrgX
= dc
->brushOrgX
;
369 newdc
->brushOrgY
= dc
->brushOrgY
;
370 newdc
->textAlign
= dc
->textAlign
;
371 newdc
->charExtra
= dc
->charExtra
;
372 newdc
->breakExtra
= dc
->breakExtra
;
373 newdc
->breakRem
= dc
->breakRem
;
374 newdc
->MapMode
= dc
->MapMode
;
375 newdc
->GraphicsMode
= dc
->GraphicsMode
;
376 newdc
->CursPosX
= dc
->CursPosX
;
377 newdc
->CursPosY
= dc
->CursPosY
;
378 newdc
->ArcDirection
= dc
->ArcDirection
;
379 newdc
->xformWorld2Wnd
= dc
->xformWorld2Wnd
;
380 newdc
->xformWorld2Vport
= dc
->xformWorld2Vport
;
381 newdc
->xformVport2World
= dc
->xformVport2World
;
382 newdc
->vport2WorldValid
= dc
->vport2WorldValid
;
383 newdc
->wndOrgX
= dc
->wndOrgX
;
384 newdc
->wndOrgY
= dc
->wndOrgY
;
385 newdc
->wndExtX
= dc
->wndExtX
;
386 newdc
->wndExtY
= dc
->wndExtY
;
387 newdc
->vportOrgX
= dc
->vportOrgX
;
388 newdc
->vportOrgY
= dc
->vportOrgY
;
389 newdc
->vportExtX
= dc
->vportExtX
;
390 newdc
->vportExtY
= dc
->vportExtY
;
391 newdc
->virtual_res
= dc
->virtual_res
;
392 newdc
->virtual_size
= dc
->virtual_size
;
393 newdc
->BoundsRect
= dc
->BoundsRect
;
394 newdc
->gdiFont
= dc
->gdiFont
;
396 newdc
->thread
= GetCurrentThreadId();
398 newdc
->saveLevel
= 0;
401 PATH_InitGdiPath( &newdc
->path
);
403 newdc
->pAbortProc
= NULL
;
404 newdc
->hookProc
= NULL
;
406 if (!(newdc
->hSelf
= alloc_gdi_handle( &newdc
->header
, dc
->header
.type
, &dc_funcs
)))
408 HeapFree( GetProcessHeap(), 0, newdc
);
409 release_dc_ptr( dc
);
413 /* Get/SetDCState() don't change hVisRgn field ("Undoc. Windows" p.559). */
418 newdc
->hMetaClipRgn
= 0;
421 newdc
->hClipRgn
= CreateRectRgn( 0, 0, 0, 0 );
422 CombineRgn( newdc
->hClipRgn
, dc
->hClipRgn
, 0, RGN_COPY
);
426 newdc
->hMetaRgn
= CreateRectRgn( 0, 0, 0, 0 );
427 CombineRgn( newdc
->hMetaRgn
, dc
->hMetaRgn
, 0, RGN_COPY
);
429 /* don't bother recomputing hMetaClipRgn, we'll do that in SetDCState */
431 if (!PATH_AssignGdiPath( &newdc
->path
, &dc
->path
))
433 release_dc_ptr( dc
);
434 free_dc_ptr( newdc
);
438 newdc
->saved_dc
= dc
->saved_dc
;
439 dc
->saved_dc
= newdc
->hSelf
;
440 ret
= ++dc
->saveLevel
;
441 release_dc_ptr( newdc
);
442 release_dc_ptr( dc
);
447 /***********************************************************************
450 BOOL
restore_dc_state( HDC hdc
, INT level
)
456 if (!(dc
= get_dc_ptr( hdc
))) return FALSE
;
458 /* find the state level to restore */
460 if (abs(level
) > dc
->saveLevel
|| level
== 0)
462 release_dc_ptr( dc
);
465 if (level
< 0) level
= dc
->saveLevel
+ level
+ 1;
466 first_dcs
= dc
->saved_dc
;
467 for (hdcs
= first_dcs
, save_level
= dc
->saveLevel
; save_level
> level
; save_level
--)
469 if (!(dcs
= get_dc_ptr( hdcs
)))
471 release_dc_ptr( dc
);
474 hdcs
= dcs
->saved_dc
;
475 release_dc_ptr( dcs
);
478 /* restore the state */
480 if (!(dcs
= get_dc_ptr( hdcs
)))
482 release_dc_ptr( dc
);
485 if (!PATH_AssignGdiPath( &dc
->path
, &dcs
->path
))
487 release_dc_ptr( dcs
);
488 release_dc_ptr( dc
);
492 dc
->flags
= dcs
->flags
& ~DC_SAVED
;
493 dc
->layout
= dcs
->layout
;
494 dc
->hDevice
= dcs
->hDevice
;
495 dc
->ROPmode
= dcs
->ROPmode
;
496 dc
->polyFillMode
= dcs
->polyFillMode
;
497 dc
->stretchBltMode
= dcs
->stretchBltMode
;
498 dc
->relAbsMode
= dcs
->relAbsMode
;
499 dc
->backgroundMode
= dcs
->backgroundMode
;
500 dc
->backgroundColor
= dcs
->backgroundColor
;
501 dc
->textColor
= dcs
->textColor
;
502 dc
->dcBrushColor
= dcs
->dcBrushColor
;
503 dc
->dcPenColor
= dcs
->dcPenColor
;
504 dc
->brushOrgX
= dcs
->brushOrgX
;
505 dc
->brushOrgY
= dcs
->brushOrgY
;
506 dc
->textAlign
= dcs
->textAlign
;
507 dc
->charExtra
= dcs
->charExtra
;
508 dc
->breakExtra
= dcs
->breakExtra
;
509 dc
->breakRem
= dcs
->breakRem
;
510 dc
->MapMode
= dcs
->MapMode
;
511 dc
->GraphicsMode
= dcs
->GraphicsMode
;
512 dc
->CursPosX
= dcs
->CursPosX
;
513 dc
->CursPosY
= dcs
->CursPosY
;
514 dc
->ArcDirection
= dcs
->ArcDirection
;
515 dc
->xformWorld2Wnd
= dcs
->xformWorld2Wnd
;
516 dc
->xformWorld2Vport
= dcs
->xformWorld2Vport
;
517 dc
->xformVport2World
= dcs
->xformVport2World
;
518 dc
->vport2WorldValid
= dcs
->vport2WorldValid
;
519 dc
->BoundsRect
= dcs
->BoundsRect
;
521 dc
->wndOrgX
= dcs
->wndOrgX
;
522 dc
->wndOrgY
= dcs
->wndOrgY
;
523 dc
->wndExtX
= dcs
->wndExtX
;
524 dc
->wndExtY
= dcs
->wndExtY
;
525 dc
->vportOrgX
= dcs
->vportOrgX
;
526 dc
->vportOrgY
= dcs
->vportOrgY
;
527 dc
->vportExtX
= dcs
->vportExtX
;
528 dc
->vportExtY
= dcs
->vportExtY
;
529 dc
->virtual_res
= dcs
->virtual_res
;
530 dc
->virtual_size
= dcs
->virtual_size
;
534 if (!dc
->hClipRgn
) dc
->hClipRgn
= CreateRectRgn( 0, 0, 0, 0 );
535 CombineRgn( dc
->hClipRgn
, dcs
->hClipRgn
, 0, RGN_COPY
);
539 if (dc
->hClipRgn
) DeleteObject( dc
->hClipRgn
);
544 if (!dc
->hMetaRgn
) dc
->hMetaRgn
= CreateRectRgn( 0, 0, 0, 0 );
545 CombineRgn( dc
->hMetaRgn
, dcs
->hMetaRgn
, 0, RGN_COPY
);
549 if (dc
->hMetaRgn
) DeleteObject( dc
->hMetaRgn
);
552 CLIPPING_UpdateGCRegion( dc
);
554 SelectObject( hdc
, dcs
->hBitmap
);
555 SelectObject( hdc
, dcs
->hBrush
);
556 SelectObject( hdc
, dcs
->hFont
);
557 SelectObject( hdc
, dcs
->hPen
);
558 SetBkColor( hdc
, dcs
->backgroundColor
);
559 SetTextColor( hdc
, dcs
->textColor
);
560 GDISelectPalette( hdc
, dcs
->hPalette
, FALSE
);
562 dc
->saved_dc
= dcs
->saved_dc
;
564 dc
->saveLevel
= save_level
- 1;
566 release_dc_ptr( dcs
);
568 /* now destroy all the saved DCs */
572 if (!(dcs
= get_dc_ptr( first_dcs
))) break;
573 hdcs
= dcs
->saved_dc
;
577 release_dc_ptr( dc
);
582 /***********************************************************************
585 INT WINAPI
SaveDC( HDC hdc
)
590 if (!(dc
= get_dc_ptr( hdc
))) return 0;
592 if(dc
->funcs
->pSaveDC
)
593 ret
= dc
->funcs
->pSaveDC( dc
->physDev
);
595 ret
= save_dc_state( hdc
);
597 release_dc_ptr( dc
);
602 /***********************************************************************
603 * RestoreDC (GDI32.@)
605 BOOL WINAPI
RestoreDC( HDC hdc
, INT level
)
610 TRACE("%p %d\n", hdc
, level
);
611 if (!(dc
= get_dc_ptr( hdc
))) return FALSE
;
614 if(dc
->funcs
->pRestoreDC
)
615 success
= dc
->funcs
->pRestoreDC( dc
->physDev
, level
);
617 success
= restore_dc_state( hdc
, level
);
619 release_dc_ptr( dc
);
624 /***********************************************************************
625 * CreateDCW (GDI32.@)
627 HDC WINAPI
CreateDCW( LPCWSTR driver
, LPCWSTR device
, LPCWSTR output
,
628 const DEVMODEW
*initData
)
632 const DC_FUNCTIONS
*funcs
;
637 if (!device
|| !DRIVER_GetDriverName( device
, buf
, 300 ))
641 ERR( "no device found for %s\n", debugstr_w(device
) );
644 strcpyW(buf
, driver
);
647 if (!(funcs
= DRIVER_load_driver( buf
)))
649 ERR( "no driver found for %s\n", debugstr_w(buf
) );
652 if (!(dc
= alloc_dc_ptr( funcs
, OBJ_DC
))) goto error
;
655 dc
->hBitmap
= GDI_inc_ref_count( GetStockObject( DEFAULT_BITMAP
));
656 if (!(dc
->hVisRgn
= CreateRectRgn( 0, 0, 1, 1 ))) goto error
;
658 TRACE("(driver=%s, device=%s, output=%s): returning %p\n",
659 debugstr_w(driver
), debugstr_w(device
), debugstr_w(output
), dc
->hSelf
);
661 if (dc
->funcs
->pCreateDC
&&
662 !dc
->funcs
->pCreateDC( hdc
, &dc
->physDev
, buf
, device
, output
, initData
))
664 WARN("creation aborted by device\n" );
668 SetRectRgn( dc
->hVisRgn
, 0, 0,
669 GetDeviceCaps( hdc
, DESKTOPHORZRES
), GetDeviceCaps( hdc
, DESKTOPVERTRES
) );
672 release_dc_ptr( dc
);
676 if (dc
) free_dc_ptr( dc
);
677 DRIVER_release_driver( funcs
);
682 /***********************************************************************
683 * CreateDCA (GDI32.@)
685 HDC WINAPI
CreateDCA( LPCSTR driver
, LPCSTR device
, LPCSTR output
,
686 const DEVMODEA
*initData
)
688 UNICODE_STRING driverW
, deviceW
, outputW
;
692 if (driver
) RtlCreateUnicodeStringFromAsciiz(&driverW
, driver
);
693 else driverW
.Buffer
= NULL
;
695 if (device
) RtlCreateUnicodeStringFromAsciiz(&deviceW
, device
);
696 else deviceW
.Buffer
= NULL
;
698 if (output
) RtlCreateUnicodeStringFromAsciiz(&outputW
, output
);
699 else outputW
.Buffer
= NULL
;
704 /* don't convert initData for DISPLAY driver, it's not used */
705 if (!driverW
.Buffer
|| strcmpiW( driverW
.Buffer
, displayW
))
706 initDataW
= GdiConvertToDevmodeW(initData
);
709 ret
= CreateDCW( driverW
.Buffer
, deviceW
.Buffer
, outputW
.Buffer
, initDataW
);
711 RtlFreeUnicodeString(&driverW
);
712 RtlFreeUnicodeString(&deviceW
);
713 RtlFreeUnicodeString(&outputW
);
714 HeapFree(GetProcessHeap(), 0, initDataW
);
719 /***********************************************************************
720 * CreateICA (GDI32.@)
722 HDC WINAPI
CreateICA( LPCSTR driver
, LPCSTR device
, LPCSTR output
,
723 const DEVMODEA
* initData
)
725 /* Nothing special yet for ICs */
726 return CreateDCA( driver
, device
, output
, initData
);
730 /***********************************************************************
731 * CreateICW (GDI32.@)
733 HDC WINAPI
CreateICW( LPCWSTR driver
, LPCWSTR device
, LPCWSTR output
,
734 const DEVMODEW
* initData
)
736 /* Nothing special yet for ICs */
737 return CreateDCW( driver
, device
, output
, initData
);
741 /***********************************************************************
742 * CreateCompatibleDC (GDI32.@)
744 HDC WINAPI
CreateCompatibleDC( HDC hdc
)
748 const DC_FUNCTIONS
*funcs
= NULL
;
749 PHYSDEV physDev
= NULL
;
755 if (!(origDC
= get_dc_ptr( hdc
))) return 0;
756 if (GetObjectType( hdc
) == OBJ_DC
)
758 funcs
= origDC
->funcs
;
759 physDev
= origDC
->physDev
;
761 release_dc_ptr( origDC
);
762 if (funcs
) funcs
= DRIVER_get_driver( funcs
);
765 if (!funcs
&& !(funcs
= DRIVER_load_driver( displayW
))) return 0;
767 if (!(dc
= alloc_dc_ptr( funcs
, OBJ_MEMDC
))) goto error
;
769 TRACE("(%p): returning %p\n", hdc
, dc
->hSelf
);
771 dc
->hBitmap
= GDI_inc_ref_count( GetStockObject( DEFAULT_BITMAP
));
772 if (!(dc
->hVisRgn
= CreateRectRgn( 0, 0, 1, 1 ))) goto error
; /* default bitmap is 1x1 */
774 /* Copy the driver-specific physical device info into
775 * the new DC. The driver may use this read-only info
776 * while creating the compatible DC below. */
777 dc
->physDev
= physDev
;
780 if (dc
->funcs
->pCreateDC
&&
781 !dc
->funcs
->pCreateDC( dc
->hSelf
, &dc
->physDev
, NULL
, NULL
, NULL
, NULL
))
783 WARN("creation aborted by device\n");
788 release_dc_ptr( dc
);
792 if (dc
) free_dc_ptr( dc
);
793 DRIVER_release_driver( funcs
);
798 /***********************************************************************
801 BOOL WINAPI
DeleteDC( HDC hdc
)
803 const DC_FUNCTIONS
*funcs
= NULL
;
810 if (!(dc
= get_dc_ptr( hdc
))) return FALSE
;
811 if (dc
->refcount
!= 1)
813 FIXME( "not deleting busy DC %p refcount %u\n", dc
->hSelf
, dc
->refcount
);
814 release_dc_ptr( dc
);
818 /* Call hook procedure to check whether is it OK to delete this DC */
819 if (dc
->hookProc
&& !dc
->hookProc( hdc
, DCHC_DELETEDC
, dc
->dwHookData
, 0 ))
821 release_dc_ptr( dc
);
825 while (dc
->saveLevel
)
828 HDC hdcs
= dc
->saved_dc
;
829 if (!(dcs
= get_dc_ptr( hdcs
))) break;
830 dc
->saved_dc
= dcs
->saved_dc
;
835 if (!(dc
->flags
& DC_SAVED
))
837 SelectObject( hdc
, GetStockObject(BLACK_PEN
) );
838 SelectObject( hdc
, GetStockObject(WHITE_BRUSH
) );
839 SelectObject( hdc
, GetStockObject(SYSTEM_FONT
) );
840 SelectObject( hdc
, GetStockObject(DEFAULT_BITMAP
) );
842 if (dc
->funcs
->pDeleteDC
) dc
->funcs
->pDeleteDC(dc
->physDev
);
847 if (funcs
) DRIVER_release_driver( funcs
); /* do that after releasing the GDI lock */
852 /***********************************************************************
855 HDC WINAPI
ResetDCW( HDC hdc
, const DEVMODEW
*devmode
)
860 if ((dc
= get_dc_ptr( hdc
)))
862 if (dc
->funcs
->pResetDC
)
864 ret
= dc
->funcs
->pResetDC( dc
->physDev
, devmode
);
865 if (ret
) /* reset the visible region */
868 SetRectRgn( dc
->hVisRgn
, 0, 0, GetDeviceCaps( hdc
, DESKTOPHORZRES
),
869 GetDeviceCaps( hdc
, DESKTOPVERTRES
) );
870 CLIPPING_UpdateGCRegion( dc
);
873 release_dc_ptr( dc
);
879 /***********************************************************************
882 HDC WINAPI
ResetDCA( HDC hdc
, const DEVMODEA
*devmode
)
887 if (devmode
) devmodeW
= GdiConvertToDevmodeW(devmode
);
888 else devmodeW
= NULL
;
890 ret
= ResetDCW(hdc
, devmodeW
);
892 HeapFree(GetProcessHeap(), 0, devmodeW
);
897 /***********************************************************************
898 * GetDeviceCaps (GDI32.@)
900 INT WINAPI
GetDeviceCaps( HDC hdc
, INT cap
)
905 if ((dc
= get_dc_ptr( hdc
)))
907 if (dc
->funcs
->pGetDeviceCaps
) ret
= dc
->funcs
->pGetDeviceCaps( dc
->physDev
, cap
);
908 else switch(cap
) /* return meaningful values for some entries */
910 case HORZRES
: ret
= 640; break;
911 case VERTRES
: ret
= 480; break;
912 case BITSPIXEL
: ret
= 1; break;
913 case PLANES
: ret
= 1; break;
914 case NUMCOLORS
: ret
= 2; break;
915 case ASPECTX
: ret
= 36; break;
916 case ASPECTY
: ret
= 36; break;
917 case ASPECTXY
: ret
= 51; break;
918 case LOGPIXELSX
: ret
= 72; break;
919 case LOGPIXELSY
: ret
= 72; break;
920 case SIZEPALETTE
: ret
= 2; break;
922 release_dc_ptr( dc
);
928 /***********************************************************************
929 * GetBkColor (GDI32.@)
931 COLORREF WINAPI
GetBkColor( HDC hdc
)
934 DC
* dc
= get_dc_ptr( hdc
);
937 ret
= dc
->backgroundColor
;
938 release_dc_ptr( dc
);
944 /***********************************************************************
945 * SetBkColor (GDI32.@)
947 COLORREF WINAPI
SetBkColor( HDC hdc
, COLORREF color
)
950 DC
* dc
= get_dc_ptr( hdc
);
952 TRACE("hdc=%p color=0x%08x\n", hdc
, color
);
954 if (!dc
) return CLR_INVALID
;
955 oldColor
= dc
->backgroundColor
;
956 if (dc
->funcs
->pSetBkColor
)
958 color
= dc
->funcs
->pSetBkColor(dc
->physDev
, color
);
959 if (color
== CLR_INVALID
) /* don't change it */
962 oldColor
= CLR_INVALID
;
965 dc
->backgroundColor
= color
;
966 release_dc_ptr( dc
);
971 /***********************************************************************
972 * GetTextColor (GDI32.@)
974 COLORREF WINAPI
GetTextColor( HDC hdc
)
977 DC
* dc
= get_dc_ptr( hdc
);
981 release_dc_ptr( dc
);
987 /***********************************************************************
988 * SetTextColor (GDI32.@)
990 COLORREF WINAPI
SetTextColor( HDC hdc
, COLORREF color
)
993 DC
* dc
= get_dc_ptr( hdc
);
995 TRACE(" hdc=%p color=0x%08x\n", hdc
, color
);
997 if (!dc
) return CLR_INVALID
;
998 oldColor
= dc
->textColor
;
999 if (dc
->funcs
->pSetTextColor
)
1001 color
= dc
->funcs
->pSetTextColor(dc
->physDev
, color
);
1002 if (color
== CLR_INVALID
) /* don't change it */
1005 oldColor
= CLR_INVALID
;
1008 dc
->textColor
= color
;
1009 release_dc_ptr( dc
);
1014 /***********************************************************************
1015 * GetTextAlign (GDI32.@)
1017 UINT WINAPI
GetTextAlign( HDC hdc
)
1020 DC
* dc
= get_dc_ptr( hdc
);
1023 ret
= dc
->textAlign
;
1024 release_dc_ptr( dc
);
1030 /***********************************************************************
1031 * SetTextAlign (GDI32.@)
1033 UINT WINAPI
SetTextAlign( HDC hdc
, UINT align
)
1036 DC
*dc
= get_dc_ptr( hdc
);
1038 TRACE("hdc=%p align=%d\n", hdc
, align
);
1040 if (!dc
) return 0x0;
1041 ret
= dc
->textAlign
;
1042 if (dc
->funcs
->pSetTextAlign
)
1043 if (!dc
->funcs
->pSetTextAlign(dc
->physDev
, align
))
1045 if (ret
!= GDI_ERROR
)
1046 dc
->textAlign
= align
;
1047 release_dc_ptr( dc
);
1051 /***********************************************************************
1052 * GetDCOrgEx (GDI32.@)
1054 BOOL WINAPI
GetDCOrgEx( HDC hDC
, LPPOINT lpp
)
1058 if (!lpp
) return FALSE
;
1059 if (!(dc
= get_dc_ptr( hDC
))) return FALSE
;
1061 lpp
->x
= lpp
->y
= 0;
1062 if (dc
->funcs
->pGetDCOrgEx
) dc
->funcs
->pGetDCOrgEx( dc
->physDev
, lpp
);
1063 release_dc_ptr( dc
);
1068 /***********************************************************************
1069 * GetGraphicsMode (GDI32.@)
1071 INT WINAPI
GetGraphicsMode( HDC hdc
)
1074 DC
* dc
= get_dc_ptr( hdc
);
1077 ret
= dc
->GraphicsMode
;
1078 release_dc_ptr( dc
);
1084 /***********************************************************************
1085 * SetGraphicsMode (GDI32.@)
1087 INT WINAPI
SetGraphicsMode( HDC hdc
, INT mode
)
1090 DC
*dc
= get_dc_ptr( hdc
);
1092 /* One would think that setting the graphics mode to GM_COMPATIBLE
1093 * would also reset the world transformation matrix to the unity
1094 * matrix. However, in Windows, this is not the case. This doesn't
1095 * make a lot of sense to me, but that's the way it is.
1098 if ((mode
> 0) && (mode
<= GM_LAST
))
1100 ret
= dc
->GraphicsMode
;
1101 dc
->GraphicsMode
= mode
;
1103 release_dc_ptr( dc
);
1108 /***********************************************************************
1109 * GetArcDirection (GDI32.@)
1111 INT WINAPI
GetArcDirection( HDC hdc
)
1114 DC
* dc
= get_dc_ptr( hdc
);
1117 ret
= dc
->ArcDirection
;
1118 release_dc_ptr( dc
);
1124 /***********************************************************************
1125 * SetArcDirection (GDI32.@)
1127 INT WINAPI
SetArcDirection( HDC hdc
, INT nDirection
)
1130 INT nOldDirection
= 0;
1132 if (nDirection
!=AD_COUNTERCLOCKWISE
&& nDirection
!=AD_CLOCKWISE
)
1134 SetLastError(ERROR_INVALID_PARAMETER
);
1138 if ((dc
= get_dc_ptr( hdc
)))
1140 if (dc
->funcs
->pSetArcDirection
)
1142 dc
->funcs
->pSetArcDirection(dc
->physDev
, nDirection
);
1144 nOldDirection
= dc
->ArcDirection
;
1145 dc
->ArcDirection
= nDirection
;
1146 release_dc_ptr( dc
);
1148 return nOldDirection
;
1152 /***********************************************************************
1153 * GetWorldTransform (GDI32.@)
1155 BOOL WINAPI
GetWorldTransform( HDC hdc
, LPXFORM xform
)
1158 if (!xform
) return FALSE
;
1159 if (!(dc
= get_dc_ptr( hdc
))) return FALSE
;
1160 *xform
= dc
->xformWorld2Wnd
;
1161 release_dc_ptr( dc
);
1166 /***********************************************************************
1167 * GetTransform (GDI32.@)
1171 * Returns one of the co-ordinate space transforms
1174 * hdc [I] Device context.
1175 * which [I] Which xform to return:
1176 * 0x203 World -> Page transform (that set by SetWorldTransform).
1177 * 0x304 Page -> Device transform (the mapping mode transform).
1178 * 0x204 World -> Device transform (the combination of the above two).
1179 * 0x402 Device -> World transform (the inversion of the above).
1180 * xform [O] The xform.
1183 BOOL WINAPI
GetTransform( HDC hdc
, DWORD which
, XFORM
*xform
)
1186 DC
*dc
= get_dc_ptr( hdc
);
1187 if (!dc
) return FALSE
;
1192 *xform
= dc
->xformWorld2Wnd
;
1196 construct_window_to_viewport(dc
, xform
);
1200 *xform
= dc
->xformWorld2Vport
;
1204 *xform
= dc
->xformVport2World
;
1208 FIXME("Unknown code %x\n", which
);
1212 release_dc_ptr( dc
);
1217 /***********************************************************************
1218 * SetWorldTransform (GDI32.@)
1220 BOOL WINAPI
SetWorldTransform( HDC hdc
, const XFORM
*xform
)
1225 if (!xform
) return FALSE
;
1227 dc
= get_dc_ptr( hdc
);
1228 if (!dc
) return FALSE
;
1230 /* Check that graphics mode is GM_ADVANCED */
1231 if (dc
->GraphicsMode
!=GM_ADVANCED
) goto done
;
1233 TRACE("eM11 %f eM12 %f eM21 %f eM22 %f eDx %f eDy %f\n",
1234 xform
->eM11
, xform
->eM12
, xform
->eM21
, xform
->eM22
, xform
->eDx
, xform
->eDy
);
1236 /* The transform must conform to (eM11 * eM22 != eM12 * eM21) requirement */
1237 if (xform
->eM11
* xform
->eM22
== xform
->eM12
* xform
->eM21
) goto done
;
1239 if (dc
->funcs
->pSetWorldTransform
)
1241 ret
= dc
->funcs
->pSetWorldTransform(dc
->physDev
, xform
);
1242 if (!ret
) goto done
;
1245 dc
->xformWorld2Wnd
= *xform
;
1246 DC_UpdateXforms( dc
);
1249 release_dc_ptr( dc
);
1254 /****************************************************************************
1255 * ModifyWorldTransform [GDI32.@]
1256 * Modifies the world transformation for a device context.
1259 * hdc [I] Handle to device context
1260 * xform [I] XFORM structure that will be used to modify the world
1262 * iMode [I] Specifies in what way to modify the world transformation
1265 * Resets the world transformation to the identity matrix.
1266 * The parameter xform is ignored.
1268 * Multiplies xform into the world transformation matrix from
1271 * Multiplies xform into the world transformation matrix from
1276 * Failure: FALSE. Use GetLastError() to determine the cause.
1278 BOOL WINAPI
ModifyWorldTransform( HDC hdc
, const XFORM
*xform
,
1282 DC
*dc
= get_dc_ptr( hdc
);
1284 /* Check for illegal parameters */
1285 if (!dc
) return FALSE
;
1286 if (!xform
&& iMode
!= MWT_IDENTITY
) goto done
;
1288 /* Check that graphics mode is GM_ADVANCED */
1289 if (dc
->GraphicsMode
!=GM_ADVANCED
) goto done
;
1291 if (dc
->funcs
->pModifyWorldTransform
)
1293 ret
= dc
->funcs
->pModifyWorldTransform(dc
->physDev
, xform
, iMode
);
1294 if (!ret
) goto done
;
1300 dc
->xformWorld2Wnd
.eM11
= 1.0f
;
1301 dc
->xformWorld2Wnd
.eM12
= 0.0f
;
1302 dc
->xformWorld2Wnd
.eM21
= 0.0f
;
1303 dc
->xformWorld2Wnd
.eM22
= 1.0f
;
1304 dc
->xformWorld2Wnd
.eDx
= 0.0f
;
1305 dc
->xformWorld2Wnd
.eDy
= 0.0f
;
1307 case MWT_LEFTMULTIPLY
:
1308 CombineTransform( &dc
->xformWorld2Wnd
, xform
,
1309 &dc
->xformWorld2Wnd
);
1311 case MWT_RIGHTMULTIPLY
:
1312 CombineTransform( &dc
->xformWorld2Wnd
, &dc
->xformWorld2Wnd
,
1319 DC_UpdateXforms( dc
);
1322 release_dc_ptr( dc
);
1327 /****************************************************************************
1328 * CombineTransform [GDI32.@]
1329 * Combines two transformation matrices.
1332 * xformResult [O] Stores the result of combining the two matrices
1333 * xform1 [I] Specifies the first matrix to apply
1334 * xform2 [I] Specifies the second matrix to apply
1337 * The same matrix can be passed in for more than one of the parameters.
1341 * Failure: FALSE. Use GetLastError() to determine the cause.
1343 BOOL WINAPI
CombineTransform( LPXFORM xformResult
, const XFORM
*xform1
,
1344 const XFORM
*xform2
)
1348 /* Check for illegal parameters */
1349 if (!xformResult
|| !xform1
|| !xform2
)
1352 /* Create the result in a temporary XFORM, since xformResult may be
1353 * equal to xform1 or xform2 */
1354 xformTemp
.eM11
= xform1
->eM11
* xform2
->eM11
+
1355 xform1
->eM12
* xform2
->eM21
;
1356 xformTemp
.eM12
= xform1
->eM11
* xform2
->eM12
+
1357 xform1
->eM12
* xform2
->eM22
;
1358 xformTemp
.eM21
= xform1
->eM21
* xform2
->eM11
+
1359 xform1
->eM22
* xform2
->eM21
;
1360 xformTemp
.eM22
= xform1
->eM21
* xform2
->eM12
+
1361 xform1
->eM22
* xform2
->eM22
;
1362 xformTemp
.eDx
= xform1
->eDx
* xform2
->eM11
+
1363 xform1
->eDy
* xform2
->eM21
+
1365 xformTemp
.eDy
= xform1
->eDx
* xform2
->eM12
+
1366 xform1
->eDy
* xform2
->eM22
+
1369 /* Copy the result to xformResult */
1370 *xformResult
= xformTemp
;
1376 /***********************************************************************
1377 * SetDCHook (GDI32.@)
1379 * Note: this doesn't exist in Win32, we add it here because user32 needs it.
1381 BOOL WINAPI
SetDCHook( HDC hdc
, DCHOOKPROC hookProc
, DWORD_PTR dwHookData
)
1383 DC
*dc
= get_dc_ptr( hdc
);
1385 if (!dc
) return FALSE
;
1387 if (!(dc
->flags
& DC_SAVED
))
1389 dc
->dwHookData
= dwHookData
;
1390 dc
->hookProc
= hookProc
;
1392 release_dc_ptr( dc
);
1397 /***********************************************************************
1398 * GetDCHook (GDI32.@)
1400 * Note: this doesn't exist in Win32, we add it here because user32 needs it.
1402 DWORD_PTR WINAPI
GetDCHook( HDC hdc
, DCHOOKPROC
*proc
)
1404 DC
*dc
= get_dc_ptr( hdc
);
1408 if (proc
) *proc
= dc
->hookProc
;
1409 ret
= dc
->dwHookData
;
1410 release_dc_ptr( dc
);
1415 /***********************************************************************
1416 * SetHookFlags (GDI32.@)
1418 * Note: this doesn't exist in Win32, we add it here because user32 needs it.
1420 WORD WINAPI
SetHookFlags( HDC hdc
, WORD flags
)
1422 DC
*dc
= get_dc_obj( hdc
); /* not get_dc_ptr, this needs to work from any thread */
1427 /* "Undocumented Windows" info is slightly confusing. */
1429 TRACE("hDC %p, flags %04x\n",hdc
,flags
);
1431 if (flags
& DCHF_INVALIDATEVISRGN
)
1432 ret
= InterlockedExchange( &dc
->dirty
, 1 );
1433 else if (flags
& DCHF_VALIDATEVISRGN
|| !flags
)
1434 ret
= InterlockedExchange( &dc
->dirty
, 0 );
1436 GDI_ReleaseObj( dc
);
1440 /***********************************************************************
1441 * SetICMMode (GDI32.@)
1443 INT WINAPI
SetICMMode(HDC hdc
, INT iEnableICM
)
1445 /*FIXME: Assume that ICM is always off, and cannot be turned on */
1446 if (iEnableICM
== ICM_OFF
) return ICM_OFF
;
1447 if (iEnableICM
== ICM_ON
) return 0;
1448 if (iEnableICM
== ICM_QUERY
) return ICM_OFF
;
1452 /***********************************************************************
1453 * GetDeviceGammaRamp (GDI32.@)
1455 BOOL WINAPI
GetDeviceGammaRamp(HDC hDC
, LPVOID ptr
)
1458 DC
*dc
= get_dc_ptr( hDC
);
1462 if (dc
->funcs
->pGetDeviceGammaRamp
)
1463 ret
= dc
->funcs
->pGetDeviceGammaRamp(dc
->physDev
, ptr
);
1464 release_dc_ptr( dc
);
1469 /***********************************************************************
1470 * SetDeviceGammaRamp (GDI32.@)
1472 BOOL WINAPI
SetDeviceGammaRamp(HDC hDC
, LPVOID ptr
)
1475 DC
*dc
= get_dc_ptr( hDC
);
1479 if (dc
->funcs
->pSetDeviceGammaRamp
)
1480 ret
= dc
->funcs
->pSetDeviceGammaRamp(dc
->physDev
, ptr
);
1481 release_dc_ptr( dc
);
1486 /***********************************************************************
1487 * GetColorSpace (GDI32.@)
1489 HCOLORSPACE WINAPI
GetColorSpace(HDC hdc
)
1491 /*FIXME Need to to whatever GetColorSpace actually does */
1495 /***********************************************************************
1496 * CreateColorSpaceA (GDI32.@)
1498 HCOLORSPACE WINAPI
CreateColorSpaceA( LPLOGCOLORSPACEA lpLogColorSpace
)
1504 /***********************************************************************
1505 * CreateColorSpaceW (GDI32.@)
1507 HCOLORSPACE WINAPI
CreateColorSpaceW( LPLOGCOLORSPACEW lpLogColorSpace
)
1513 /***********************************************************************
1514 * DeleteColorSpace (GDI32.@)
1516 BOOL WINAPI
DeleteColorSpace( HCOLORSPACE hColorSpace
)
1523 /***********************************************************************
1524 * SetColorSpace (GDI32.@)
1526 HCOLORSPACE WINAPI
SetColorSpace( HDC hDC
, HCOLORSPACE hColorSpace
)
1533 /***********************************************************************
1534 * GetBoundsRect (GDI32.@)
1536 UINT WINAPI
GetBoundsRect(HDC hdc
, LPRECT rect
, UINT flags
)
1539 DC
*dc
= get_dc_ptr( hdc
);
1541 if ( !dc
) return 0;
1543 if (rect
) *rect
= dc
->BoundsRect
;
1545 ret
= ((dc
->flags
& DC_BOUNDS_SET
) ? DCB_SET
: DCB_RESET
);
1547 if (flags
& DCB_RESET
)
1549 dc
->BoundsRect
.left
= 0;
1550 dc
->BoundsRect
.top
= 0;
1551 dc
->BoundsRect
.right
= 0;
1552 dc
->BoundsRect
.bottom
= 0;
1553 dc
->flags
&= ~DC_BOUNDS_SET
;
1555 release_dc_ptr( dc
);
1560 /***********************************************************************
1561 * SetBoundsRect (GDI32.@)
1563 UINT WINAPI
SetBoundsRect(HDC hdc
, const RECT
* rect
, UINT flags
)
1568 if ((flags
& DCB_ENABLE
) && (flags
& DCB_DISABLE
)) return 0;
1569 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1571 ret
= ((dc
->flags
& DC_BOUNDS_ENABLE
) ? DCB_ENABLE
: DCB_DISABLE
) |
1572 ((dc
->flags
& DC_BOUNDS_SET
) ? DCB_SET
: DCB_RESET
);
1574 if (flags
& DCB_RESET
)
1576 dc
->BoundsRect
.left
= 0;
1577 dc
->BoundsRect
.top
= 0;
1578 dc
->BoundsRect
.right
= 0;
1579 dc
->BoundsRect
.bottom
= 0;
1580 dc
->flags
&= ~DC_BOUNDS_SET
;
1583 if ((flags
& DCB_ACCUMULATE
) && rect
&& rect
->left
< rect
->right
&& rect
->top
< rect
->bottom
)
1585 if (dc
->flags
& DC_BOUNDS_SET
)
1587 dc
->BoundsRect
.left
= min( dc
->BoundsRect
.left
, rect
->left
);
1588 dc
->BoundsRect
.top
= min( dc
->BoundsRect
.top
, rect
->top
);
1589 dc
->BoundsRect
.right
= max( dc
->BoundsRect
.right
, rect
->right
);
1590 dc
->BoundsRect
.bottom
= max( dc
->BoundsRect
.bottom
, rect
->bottom
);
1594 dc
->BoundsRect
= *rect
;
1595 dc
->flags
|= DC_BOUNDS_SET
;
1599 if (flags
& DCB_ENABLE
) dc
->flags
|= DC_BOUNDS_ENABLE
;
1600 if (flags
& DCB_DISABLE
) dc
->flags
&= ~DC_BOUNDS_ENABLE
;
1602 release_dc_ptr( dc
);
1607 /***********************************************************************
1608 * GetRelAbs (GDI32.@)
1610 INT WINAPI
GetRelAbs( HDC hdc
, DWORD dwIgnore
)
1613 DC
*dc
= get_dc_ptr( hdc
);
1616 ret
= dc
->relAbsMode
;
1617 release_dc_ptr( dc
);
1625 /***********************************************************************
1626 * GetBkMode (GDI32.@)
1628 INT WINAPI
GetBkMode( HDC hdc
)
1631 DC
* dc
= get_dc_ptr( hdc
);
1634 ret
= dc
->backgroundMode
;
1635 release_dc_ptr( dc
);
1641 /***********************************************************************
1642 * SetBkMode (GDI32.@)
1644 INT WINAPI
SetBkMode( HDC hdc
, INT mode
)
1648 if ((mode
<= 0) || (mode
> BKMODE_LAST
))
1650 SetLastError(ERROR_INVALID_PARAMETER
);
1653 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1655 ret
= dc
->backgroundMode
;
1656 if (dc
->funcs
->pSetBkMode
)
1657 if (!dc
->funcs
->pSetBkMode( dc
->physDev
, mode
))
1660 dc
->backgroundMode
= mode
;
1661 release_dc_ptr( dc
);
1666 /***********************************************************************
1669 INT WINAPI
GetROP2( HDC hdc
)
1672 DC
* dc
= get_dc_ptr( hdc
);
1676 release_dc_ptr( dc
);
1682 /***********************************************************************
1685 INT WINAPI
SetROP2( HDC hdc
, INT mode
)
1689 if ((mode
< R2_BLACK
) || (mode
> R2_WHITE
))
1691 SetLastError(ERROR_INVALID_PARAMETER
);
1694 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1696 if (dc
->funcs
->pSetROP2
)
1697 if (!dc
->funcs
->pSetROP2( dc
->physDev
, mode
))
1701 release_dc_ptr( dc
);
1706 /***********************************************************************
1707 * SetRelAbs (GDI32.@)
1709 INT WINAPI
SetRelAbs( HDC hdc
, INT mode
)
1713 if ((mode
!= ABSOLUTE
) && (mode
!= RELATIVE
))
1715 SetLastError(ERROR_INVALID_PARAMETER
);
1718 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1719 if (dc
->funcs
->pSetRelAbs
)
1720 ret
= dc
->funcs
->pSetRelAbs( dc
->physDev
, mode
);
1723 ret
= dc
->relAbsMode
;
1724 dc
->relAbsMode
= mode
;
1726 release_dc_ptr( dc
);
1731 /***********************************************************************
1732 * GetPolyFillMode (GDI32.@)
1734 INT WINAPI
GetPolyFillMode( HDC hdc
)
1737 DC
* dc
= get_dc_ptr( hdc
);
1740 ret
= dc
->polyFillMode
;
1741 release_dc_ptr( dc
);
1747 /***********************************************************************
1748 * SetPolyFillMode (GDI32.@)
1750 INT WINAPI
SetPolyFillMode( HDC hdc
, INT mode
)
1754 if ((mode
<= 0) || (mode
> POLYFILL_LAST
))
1756 SetLastError(ERROR_INVALID_PARAMETER
);
1759 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1760 ret
= dc
->polyFillMode
;
1761 if (dc
->funcs
->pSetPolyFillMode
)
1762 if (!dc
->funcs
->pSetPolyFillMode( dc
->physDev
, mode
))
1765 dc
->polyFillMode
= mode
;
1766 release_dc_ptr( dc
);
1771 /***********************************************************************
1772 * GetStretchBltMode (GDI32.@)
1774 INT WINAPI
GetStretchBltMode( HDC hdc
)
1777 DC
* dc
= get_dc_ptr( hdc
);
1780 ret
= dc
->stretchBltMode
;
1781 release_dc_ptr( dc
);
1787 /***********************************************************************
1788 * SetStretchBltMode (GDI32.@)
1790 INT WINAPI
SetStretchBltMode( HDC hdc
, INT mode
)
1794 if ((mode
<= 0) || (mode
> MAXSTRETCHBLTMODE
))
1796 SetLastError(ERROR_INVALID_PARAMETER
);
1799 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1800 ret
= dc
->stretchBltMode
;
1801 if (dc
->funcs
->pSetStretchBltMode
)
1802 if (!dc
->funcs
->pSetStretchBltMode( dc
->physDev
, mode
))
1805 dc
->stretchBltMode
= mode
;
1806 release_dc_ptr( dc
);
1811 /***********************************************************************
1812 * GetMapMode (GDI32.@)
1814 INT WINAPI
GetMapMode( HDC hdc
)
1817 DC
* dc
= get_dc_ptr( hdc
);
1821 release_dc_ptr( dc
);
1827 /***********************************************************************
1828 * GetBrushOrgEx (GDI32.@)
1830 BOOL WINAPI
GetBrushOrgEx( HDC hdc
, LPPOINT pt
)
1832 DC
* dc
= get_dc_ptr( hdc
);
1833 if (!dc
) return FALSE
;
1834 pt
->x
= dc
->brushOrgX
;
1835 pt
->y
= dc
->brushOrgY
;
1836 release_dc_ptr( dc
);
1841 /***********************************************************************
1842 * GetCurrentPositionEx (GDI32.@)
1844 BOOL WINAPI
GetCurrentPositionEx( HDC hdc
, LPPOINT pt
)
1846 DC
* dc
= get_dc_ptr( hdc
);
1847 if (!dc
) return FALSE
;
1848 pt
->x
= dc
->CursPosX
;
1849 pt
->y
= dc
->CursPosY
;
1850 release_dc_ptr( dc
);
1855 /***********************************************************************
1856 * GetViewportExtEx (GDI32.@)
1858 BOOL WINAPI
GetViewportExtEx( HDC hdc
, LPSIZE size
)
1860 DC
* dc
= get_dc_ptr( hdc
);
1861 if (!dc
) return FALSE
;
1862 size
->cx
= dc
->vportExtX
;
1863 size
->cy
= dc
->vportExtY
;
1864 release_dc_ptr( dc
);
1869 /***********************************************************************
1870 * GetViewportOrgEx (GDI32.@)
1872 BOOL WINAPI
GetViewportOrgEx( HDC hdc
, LPPOINT pt
)
1874 DC
* dc
= get_dc_ptr( hdc
);
1875 if (!dc
) return FALSE
;
1876 pt
->x
= dc
->vportOrgX
;
1877 pt
->y
= dc
->vportOrgY
;
1878 release_dc_ptr( dc
);
1883 /***********************************************************************
1884 * GetWindowExtEx (GDI32.@)
1886 BOOL WINAPI
GetWindowExtEx( HDC hdc
, LPSIZE size
)
1888 DC
* dc
= get_dc_ptr( hdc
);
1889 if (!dc
) return FALSE
;
1890 size
->cx
= dc
->wndExtX
;
1891 size
->cy
= dc
->wndExtY
;
1892 release_dc_ptr( dc
);
1897 /***********************************************************************
1898 * GetWindowOrgEx (GDI32.@)
1900 BOOL WINAPI
GetWindowOrgEx( HDC hdc
, LPPOINT pt
)
1902 DC
* dc
= get_dc_ptr( hdc
);
1903 if (!dc
) return FALSE
;
1904 pt
->x
= dc
->wndOrgX
;
1905 pt
->y
= dc
->wndOrgY
;
1906 release_dc_ptr( dc
);
1911 /***********************************************************************
1912 * GetLayout (GDI32.@)
1914 * Gets left->right or right->left text layout flags of a dc.
1917 DWORD WINAPI
GetLayout(HDC hdc
)
1919 DWORD layout
= GDI_ERROR
;
1921 DC
* dc
= get_dc_ptr( hdc
);
1924 layout
= dc
->layout
;
1925 release_dc_ptr( dc
);
1928 TRACE("hdc : %p, layout : %08x\n", hdc
, layout
);
1933 /***********************************************************************
1934 * SetLayout (GDI32.@)
1936 * Sets left->right or right->left text layout flags of a dc.
1939 DWORD WINAPI
SetLayout(HDC hdc
, DWORD layout
)
1941 DWORD oldlayout
= GDI_ERROR
;
1943 DC
* dc
= get_dc_ptr( hdc
);
1946 oldlayout
= dc
->layout
;
1947 dc
->layout
= layout
;
1948 release_dc_ptr( dc
);
1951 TRACE("hdc : %p, old layout : %08x, new layout : %08x\n", hdc
, oldlayout
, layout
);
1956 /***********************************************************************
1957 * GetDCBrushColor (GDI32.@)
1959 * Retrieves the current brush color for the specified device
1963 COLORREF WINAPI
GetDCBrushColor(HDC hdc
)
1966 COLORREF dcBrushColor
= CLR_INVALID
;
1968 TRACE("hdc(%p)\n", hdc
);
1970 dc
= get_dc_ptr( hdc
);
1973 dcBrushColor
= dc
->dcBrushColor
;
1974 release_dc_ptr( dc
);
1977 return dcBrushColor
;
1980 /***********************************************************************
1981 * SetDCBrushColor (GDI32.@)
1983 * Sets the current device context (DC) brush color to the specified
1984 * color value. If the device cannot represent the specified color
1985 * value, the color is set to the nearest physical color.
1988 COLORREF WINAPI
SetDCBrushColor(HDC hdc
, COLORREF crColor
)
1991 COLORREF oldClr
= CLR_INVALID
;
1993 TRACE("hdc(%p) crColor(%08x)\n", hdc
, crColor
);
1995 dc
= get_dc_ptr( hdc
);
1998 if (dc
->funcs
->pSetDCBrushColor
)
1999 crColor
= dc
->funcs
->pSetDCBrushColor( dc
->physDev
, crColor
);
2000 else if (dc
->hBrush
== GetStockObject( DC_BRUSH
))
2002 /* If DC_BRUSH is selected, update driver pen color */
2003 HBRUSH hBrush
= CreateSolidBrush( crColor
);
2004 dc
->funcs
->pSelectBrush( dc
->physDev
, hBrush
);
2005 DeleteObject( hBrush
);
2008 if (crColor
!= CLR_INVALID
)
2010 oldClr
= dc
->dcBrushColor
;
2011 dc
->dcBrushColor
= crColor
;
2014 release_dc_ptr( dc
);
2020 /***********************************************************************
2021 * GetDCPenColor (GDI32.@)
2023 * Retrieves the current pen color for the specified device
2027 COLORREF WINAPI
GetDCPenColor(HDC hdc
)
2030 COLORREF dcPenColor
= CLR_INVALID
;
2032 TRACE("hdc(%p)\n", hdc
);
2034 dc
= get_dc_ptr( hdc
);
2037 dcPenColor
= dc
->dcPenColor
;
2038 release_dc_ptr( dc
);
2044 /***********************************************************************
2045 * SetDCPenColor (GDI32.@)
2047 * Sets the current device context (DC) pen color to the specified
2048 * color value. If the device cannot represent the specified color
2049 * value, the color is set to the nearest physical color.
2052 COLORREF WINAPI
SetDCPenColor(HDC hdc
, COLORREF crColor
)
2055 COLORREF oldClr
= CLR_INVALID
;
2057 TRACE("hdc(%p) crColor(%08x)\n", hdc
, crColor
);
2059 dc
= get_dc_ptr( hdc
);
2062 if (dc
->funcs
->pSetDCPenColor
)
2063 crColor
= dc
->funcs
->pSetDCPenColor( dc
->physDev
, crColor
);
2064 else if (dc
->hPen
== GetStockObject( DC_PEN
))
2066 /* If DC_PEN is selected, update the driver pen color */
2067 LOGPEN logpen
= { PS_SOLID
, { 0, 0 }, crColor
};
2068 HPEN hPen
= CreatePenIndirect( &logpen
);
2069 dc
->funcs
->pSelectPen( dc
->physDev
, hPen
);
2070 DeleteObject( hPen
);
2073 if (crColor
!= CLR_INVALID
)
2075 oldClr
= dc
->dcPenColor
;
2076 dc
->dcPenColor
= crColor
;
2079 release_dc_ptr( dc
);
2085 /***********************************************************************
2086 * CancelDC (GDI32.@)
2088 BOOL WINAPI
CancelDC(HDC hdc
)
2094 /*******************************************************************
2095 * GetMiterLimit [GDI32.@]
2099 BOOL WINAPI
GetMiterLimit(HDC hdc
, PFLOAT peLimit
)
2104 TRACE("(%p,%p)\n", hdc
, peLimit
);
2106 dc
= get_dc_ptr( hdc
);
2110 *peLimit
= dc
->miterLimit
;
2112 release_dc_ptr( dc
);
2118 /*******************************************************************
2119 * SetMiterLimit [GDI32.@]
2123 BOOL WINAPI
SetMiterLimit(HDC hdc
, FLOAT eNewLimit
, PFLOAT peOldLimit
)
2128 TRACE("(%p,%f,%p)\n", hdc
, eNewLimit
, peOldLimit
);
2130 dc
= get_dc_ptr( hdc
);
2134 *peOldLimit
= dc
->miterLimit
;
2135 dc
->miterLimit
= eNewLimit
;
2136 release_dc_ptr( dc
);
2142 /*******************************************************************
2143 * GdiIsMetaPrintDC [GDI32.@]
2145 BOOL WINAPI
GdiIsMetaPrintDC(HDC hdc
)
2151 /*******************************************************************
2152 * GdiIsMetaFileDC [GDI32.@]
2154 BOOL WINAPI
GdiIsMetaFileDC(HDC hdc
)
2158 switch( GetObjectType( hdc
) )
2167 /*******************************************************************
2168 * GdiIsPlayMetafileDC [GDI32.@]
2170 BOOL WINAPI
GdiIsPlayMetafileDC(HDC hdc
)