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
);
681 /***********************************************************************
682 * CreateDCA (GDI32.@)
684 HDC WINAPI
CreateDCA( LPCSTR driver
, LPCSTR device
, LPCSTR output
,
685 const DEVMODEA
*initData
)
687 UNICODE_STRING driverW
, deviceW
, outputW
;
691 if (driver
) RtlCreateUnicodeStringFromAsciiz(&driverW
, driver
);
692 else driverW
.Buffer
= NULL
;
694 if (device
) RtlCreateUnicodeStringFromAsciiz(&deviceW
, device
);
695 else deviceW
.Buffer
= NULL
;
697 if (output
) RtlCreateUnicodeStringFromAsciiz(&outputW
, output
);
698 else outputW
.Buffer
= NULL
;
703 /* don't convert initData for DISPLAY driver, it's not used */
704 if (!driverW
.Buffer
|| strcmpiW( driverW
.Buffer
, displayW
))
705 initDataW
= GdiConvertToDevmodeW(initData
);
708 ret
= CreateDCW( driverW
.Buffer
, deviceW
.Buffer
, outputW
.Buffer
, initDataW
);
710 RtlFreeUnicodeString(&driverW
);
711 RtlFreeUnicodeString(&deviceW
);
712 RtlFreeUnicodeString(&outputW
);
713 HeapFree(GetProcessHeap(), 0, initDataW
);
718 /***********************************************************************
719 * CreateICA (GDI32.@)
721 HDC WINAPI
CreateICA( LPCSTR driver
, LPCSTR device
, LPCSTR output
,
722 const DEVMODEA
* initData
)
724 /* Nothing special yet for ICs */
725 return CreateDCA( driver
, device
, output
, initData
);
729 /***********************************************************************
730 * CreateICW (GDI32.@)
732 HDC WINAPI
CreateICW( LPCWSTR driver
, LPCWSTR device
, LPCWSTR output
,
733 const DEVMODEW
* initData
)
735 /* Nothing special yet for ICs */
736 return CreateDCW( driver
, device
, output
, initData
);
740 /***********************************************************************
741 * CreateCompatibleDC (GDI32.@)
743 HDC WINAPI
CreateCompatibleDC( HDC hdc
)
747 const DC_FUNCTIONS
*funcs
= NULL
;
748 PHYSDEV physDev
= NULL
;
754 if (!(origDC
= get_dc_ptr( hdc
))) return 0;
755 if (GetObjectType( hdc
) == OBJ_DC
)
757 funcs
= origDC
->funcs
;
758 physDev
= origDC
->physDev
;
760 release_dc_ptr( origDC
);
763 if (!funcs
&& !(funcs
= DRIVER_get_display_driver())) return 0;
765 if (!(dc
= alloc_dc_ptr( funcs
, OBJ_MEMDC
))) goto error
;
767 TRACE("(%p): returning %p\n", hdc
, dc
->hSelf
);
769 dc
->hBitmap
= GDI_inc_ref_count( GetStockObject( DEFAULT_BITMAP
));
770 if (!(dc
->hVisRgn
= CreateRectRgn( 0, 0, 1, 1 ))) goto error
; /* default bitmap is 1x1 */
772 /* Copy the driver-specific physical device info into
773 * the new DC. The driver may use this read-only info
774 * while creating the compatible DC below. */
775 dc
->physDev
= physDev
;
778 if (dc
->funcs
->pCreateDC
&&
779 !dc
->funcs
->pCreateDC( dc
->hSelf
, &dc
->physDev
, NULL
, NULL
, NULL
, NULL
))
781 WARN("creation aborted by device\n");
786 release_dc_ptr( dc
);
790 if (dc
) free_dc_ptr( dc
);
795 /***********************************************************************
798 BOOL WINAPI
DeleteDC( HDC hdc
)
806 if (!(dc
= get_dc_ptr( hdc
))) return FALSE
;
807 if (dc
->refcount
!= 1)
809 FIXME( "not deleting busy DC %p refcount %u\n", dc
->hSelf
, dc
->refcount
);
810 release_dc_ptr( dc
);
814 /* Call hook procedure to check whether is it OK to delete this DC */
815 if (dc
->hookProc
&& !dc
->hookProc( hdc
, DCHC_DELETEDC
, dc
->dwHookData
, 0 ))
817 release_dc_ptr( dc
);
821 while (dc
->saveLevel
)
824 HDC hdcs
= dc
->saved_dc
;
825 if (!(dcs
= get_dc_ptr( hdcs
))) break;
826 dc
->saved_dc
= dcs
->saved_dc
;
831 if (!(dc
->flags
& DC_SAVED
))
833 SelectObject( hdc
, GetStockObject(BLACK_PEN
) );
834 SelectObject( hdc
, GetStockObject(WHITE_BRUSH
) );
835 SelectObject( hdc
, GetStockObject(SYSTEM_FONT
) );
836 SelectObject( hdc
, GetStockObject(DEFAULT_BITMAP
) );
837 if (dc
->funcs
->pDeleteDC
) dc
->funcs
->pDeleteDC(dc
->physDev
);
846 /***********************************************************************
849 HDC WINAPI
ResetDCW( HDC hdc
, const DEVMODEW
*devmode
)
854 if ((dc
= get_dc_ptr( hdc
)))
856 if (dc
->funcs
->pResetDC
)
858 ret
= dc
->funcs
->pResetDC( dc
->physDev
, devmode
);
859 if (ret
) /* reset the visible region */
862 SetRectRgn( dc
->hVisRgn
, 0, 0, GetDeviceCaps( hdc
, DESKTOPHORZRES
),
863 GetDeviceCaps( hdc
, DESKTOPVERTRES
) );
864 CLIPPING_UpdateGCRegion( dc
);
867 release_dc_ptr( dc
);
873 /***********************************************************************
876 HDC WINAPI
ResetDCA( HDC hdc
, const DEVMODEA
*devmode
)
881 if (devmode
) devmodeW
= GdiConvertToDevmodeW(devmode
);
882 else devmodeW
= NULL
;
884 ret
= ResetDCW(hdc
, devmodeW
);
886 HeapFree(GetProcessHeap(), 0, devmodeW
);
891 /***********************************************************************
892 * GetDeviceCaps (GDI32.@)
894 INT WINAPI
GetDeviceCaps( HDC hdc
, INT cap
)
899 if ((dc
= get_dc_ptr( hdc
)))
901 if (dc
->funcs
->pGetDeviceCaps
) ret
= dc
->funcs
->pGetDeviceCaps( dc
->physDev
, cap
);
902 else switch(cap
) /* return meaningful values for some entries */
904 case HORZRES
: ret
= 640; break;
905 case VERTRES
: ret
= 480; break;
906 case BITSPIXEL
: ret
= 1; break;
907 case PLANES
: ret
= 1; break;
908 case NUMCOLORS
: ret
= 2; break;
909 case ASPECTX
: ret
= 36; break;
910 case ASPECTY
: ret
= 36; break;
911 case ASPECTXY
: ret
= 51; break;
912 case LOGPIXELSX
: ret
= 72; break;
913 case LOGPIXELSY
: ret
= 72; break;
914 case SIZEPALETTE
: ret
= 2; break;
916 ret
= (TC_OP_CHARACTER
| TC_OP_STROKE
| TC_CP_STROKE
|
917 TC_CR_ANY
| TC_SF_X_YINDEP
| TC_SA_DOUBLE
| TC_SA_INTEGER
|
918 TC_SA_CONTIN
| TC_UA_ABLE
| TC_SO_ABLE
| TC_RA_ABLE
| TC_VA_ABLE
);
921 release_dc_ptr( dc
);
927 /***********************************************************************
928 * GetBkColor (GDI32.@)
930 COLORREF WINAPI
GetBkColor( HDC hdc
)
933 DC
* dc
= get_dc_ptr( hdc
);
936 ret
= dc
->backgroundColor
;
937 release_dc_ptr( dc
);
943 /***********************************************************************
944 * SetBkColor (GDI32.@)
946 COLORREF WINAPI
SetBkColor( HDC hdc
, COLORREF color
)
949 DC
* dc
= get_dc_ptr( hdc
);
951 TRACE("hdc=%p color=0x%08x\n", hdc
, color
);
953 if (!dc
) return CLR_INVALID
;
954 oldColor
= dc
->backgroundColor
;
955 if (dc
->funcs
->pSetBkColor
)
957 color
= dc
->funcs
->pSetBkColor(dc
->physDev
, color
);
958 if (color
== CLR_INVALID
) /* don't change it */
961 oldColor
= CLR_INVALID
;
964 dc
->backgroundColor
= color
;
965 release_dc_ptr( dc
);
970 /***********************************************************************
971 * GetTextColor (GDI32.@)
973 COLORREF WINAPI
GetTextColor( HDC hdc
)
976 DC
* dc
= get_dc_ptr( hdc
);
980 release_dc_ptr( dc
);
986 /***********************************************************************
987 * SetTextColor (GDI32.@)
989 COLORREF WINAPI
SetTextColor( HDC hdc
, COLORREF color
)
992 DC
* dc
= get_dc_ptr( hdc
);
994 TRACE(" hdc=%p color=0x%08x\n", hdc
, color
);
996 if (!dc
) return CLR_INVALID
;
997 oldColor
= dc
->textColor
;
998 if (dc
->funcs
->pSetTextColor
)
1000 color
= dc
->funcs
->pSetTextColor(dc
->physDev
, color
);
1001 if (color
== CLR_INVALID
) /* don't change it */
1004 oldColor
= CLR_INVALID
;
1007 dc
->textColor
= color
;
1008 release_dc_ptr( dc
);
1013 /***********************************************************************
1014 * GetTextAlign (GDI32.@)
1016 UINT WINAPI
GetTextAlign( HDC hdc
)
1019 DC
* dc
= get_dc_ptr( hdc
);
1022 ret
= dc
->textAlign
;
1023 release_dc_ptr( dc
);
1029 /***********************************************************************
1030 * SetTextAlign (GDI32.@)
1032 UINT WINAPI
SetTextAlign( HDC hdc
, UINT align
)
1035 DC
*dc
= get_dc_ptr( hdc
);
1037 TRACE("hdc=%p align=%d\n", hdc
, align
);
1039 if (!dc
) return 0x0;
1040 ret
= dc
->textAlign
;
1041 if (dc
->funcs
->pSetTextAlign
)
1042 if (!dc
->funcs
->pSetTextAlign(dc
->physDev
, align
))
1044 if (ret
!= GDI_ERROR
)
1045 dc
->textAlign
= align
;
1046 release_dc_ptr( dc
);
1050 /***********************************************************************
1051 * GetDCOrgEx (GDI32.@)
1053 BOOL WINAPI
GetDCOrgEx( HDC hDC
, LPPOINT lpp
)
1057 if (!lpp
) return FALSE
;
1058 if (!(dc
= get_dc_ptr( hDC
))) return FALSE
;
1060 lpp
->x
= lpp
->y
= 0;
1061 if (dc
->funcs
->pGetDCOrgEx
) dc
->funcs
->pGetDCOrgEx( dc
->physDev
, lpp
);
1062 release_dc_ptr( dc
);
1067 /***********************************************************************
1068 * GetGraphicsMode (GDI32.@)
1070 INT WINAPI
GetGraphicsMode( HDC hdc
)
1073 DC
* dc
= get_dc_ptr( hdc
);
1076 ret
= dc
->GraphicsMode
;
1077 release_dc_ptr( dc
);
1083 /***********************************************************************
1084 * SetGraphicsMode (GDI32.@)
1086 INT WINAPI
SetGraphicsMode( HDC hdc
, INT mode
)
1089 DC
*dc
= get_dc_ptr( hdc
);
1091 /* One would think that setting the graphics mode to GM_COMPATIBLE
1092 * would also reset the world transformation matrix to the unity
1093 * matrix. However, in Windows, this is not the case. This doesn't
1094 * make a lot of sense to me, but that's the way it is.
1097 if ((mode
> 0) && (mode
<= GM_LAST
))
1099 ret
= dc
->GraphicsMode
;
1100 dc
->GraphicsMode
= mode
;
1102 release_dc_ptr( dc
);
1107 /***********************************************************************
1108 * GetArcDirection (GDI32.@)
1110 INT WINAPI
GetArcDirection( HDC hdc
)
1113 DC
* dc
= get_dc_ptr( hdc
);
1116 ret
= dc
->ArcDirection
;
1117 release_dc_ptr( dc
);
1123 /***********************************************************************
1124 * SetArcDirection (GDI32.@)
1126 INT WINAPI
SetArcDirection( HDC hdc
, INT nDirection
)
1129 INT nOldDirection
= 0;
1131 if (nDirection
!=AD_COUNTERCLOCKWISE
&& nDirection
!=AD_CLOCKWISE
)
1133 SetLastError(ERROR_INVALID_PARAMETER
);
1137 if ((dc
= get_dc_ptr( hdc
)))
1139 if (dc
->funcs
->pSetArcDirection
)
1141 dc
->funcs
->pSetArcDirection(dc
->physDev
, nDirection
);
1143 nOldDirection
= dc
->ArcDirection
;
1144 dc
->ArcDirection
= nDirection
;
1145 release_dc_ptr( dc
);
1147 return nOldDirection
;
1151 /***********************************************************************
1152 * GetWorldTransform (GDI32.@)
1154 BOOL WINAPI
GetWorldTransform( HDC hdc
, LPXFORM xform
)
1157 if (!xform
) return FALSE
;
1158 if (!(dc
= get_dc_ptr( hdc
))) return FALSE
;
1159 *xform
= dc
->xformWorld2Wnd
;
1160 release_dc_ptr( dc
);
1165 /***********************************************************************
1166 * GetTransform (GDI32.@)
1170 * Returns one of the co-ordinate space transforms
1173 * hdc [I] Device context.
1174 * which [I] Which xform to return:
1175 * 0x203 World -> Page transform (that set by SetWorldTransform).
1176 * 0x304 Page -> Device transform (the mapping mode transform).
1177 * 0x204 World -> Device transform (the combination of the above two).
1178 * 0x402 Device -> World transform (the inversion of the above).
1179 * xform [O] The xform.
1182 BOOL WINAPI
GetTransform( HDC hdc
, DWORD which
, XFORM
*xform
)
1185 DC
*dc
= get_dc_ptr( hdc
);
1186 if (!dc
) return FALSE
;
1191 *xform
= dc
->xformWorld2Wnd
;
1195 construct_window_to_viewport(dc
, xform
);
1199 *xform
= dc
->xformWorld2Vport
;
1203 *xform
= dc
->xformVport2World
;
1207 FIXME("Unknown code %x\n", which
);
1211 release_dc_ptr( dc
);
1216 /***********************************************************************
1217 * SetWorldTransform (GDI32.@)
1219 BOOL WINAPI
SetWorldTransform( HDC hdc
, const XFORM
*xform
)
1224 if (!xform
) return FALSE
;
1226 dc
= get_dc_ptr( hdc
);
1227 if (!dc
) return FALSE
;
1229 /* Check that graphics mode is GM_ADVANCED */
1230 if (dc
->GraphicsMode
!=GM_ADVANCED
) goto done
;
1232 TRACE("eM11 %f eM12 %f eM21 %f eM22 %f eDx %f eDy %f\n",
1233 xform
->eM11
, xform
->eM12
, xform
->eM21
, xform
->eM22
, xform
->eDx
, xform
->eDy
);
1235 /* The transform must conform to (eM11 * eM22 != eM12 * eM21) requirement */
1236 if (xform
->eM11
* xform
->eM22
== xform
->eM12
* xform
->eM21
) goto done
;
1238 if (dc
->funcs
->pSetWorldTransform
)
1240 ret
= dc
->funcs
->pSetWorldTransform(dc
->physDev
, xform
);
1241 if (!ret
) goto done
;
1244 dc
->xformWorld2Wnd
= *xform
;
1245 DC_UpdateXforms( dc
);
1248 release_dc_ptr( dc
);
1253 /****************************************************************************
1254 * ModifyWorldTransform [GDI32.@]
1255 * Modifies the world transformation for a device context.
1258 * hdc [I] Handle to device context
1259 * xform [I] XFORM structure that will be used to modify the world
1261 * iMode [I] Specifies in what way to modify the world transformation
1264 * Resets the world transformation to the identity matrix.
1265 * The parameter xform is ignored.
1267 * Multiplies xform into the world transformation matrix from
1270 * Multiplies xform into the world transformation matrix from
1275 * Failure: FALSE. Use GetLastError() to determine the cause.
1277 BOOL WINAPI
ModifyWorldTransform( HDC hdc
, const XFORM
*xform
,
1281 DC
*dc
= get_dc_ptr( hdc
);
1283 /* Check for illegal parameters */
1284 if (!dc
) return FALSE
;
1285 if (!xform
&& iMode
!= MWT_IDENTITY
) goto done
;
1287 /* Check that graphics mode is GM_ADVANCED */
1288 if (dc
->GraphicsMode
!=GM_ADVANCED
) goto done
;
1290 if (dc
->funcs
->pModifyWorldTransform
)
1292 ret
= dc
->funcs
->pModifyWorldTransform(dc
->physDev
, xform
, iMode
);
1293 if (!ret
) goto done
;
1299 dc
->xformWorld2Wnd
.eM11
= 1.0f
;
1300 dc
->xformWorld2Wnd
.eM12
= 0.0f
;
1301 dc
->xformWorld2Wnd
.eM21
= 0.0f
;
1302 dc
->xformWorld2Wnd
.eM22
= 1.0f
;
1303 dc
->xformWorld2Wnd
.eDx
= 0.0f
;
1304 dc
->xformWorld2Wnd
.eDy
= 0.0f
;
1306 case MWT_LEFTMULTIPLY
:
1307 CombineTransform( &dc
->xformWorld2Wnd
, xform
,
1308 &dc
->xformWorld2Wnd
);
1310 case MWT_RIGHTMULTIPLY
:
1311 CombineTransform( &dc
->xformWorld2Wnd
, &dc
->xformWorld2Wnd
,
1318 DC_UpdateXforms( dc
);
1321 release_dc_ptr( dc
);
1326 /****************************************************************************
1327 * CombineTransform [GDI32.@]
1328 * Combines two transformation matrices.
1331 * xformResult [O] Stores the result of combining the two matrices
1332 * xform1 [I] Specifies the first matrix to apply
1333 * xform2 [I] Specifies the second matrix to apply
1336 * The same matrix can be passed in for more than one of the parameters.
1340 * Failure: FALSE. Use GetLastError() to determine the cause.
1342 BOOL WINAPI
CombineTransform( LPXFORM xformResult
, const XFORM
*xform1
,
1343 const XFORM
*xform2
)
1347 /* Check for illegal parameters */
1348 if (!xformResult
|| !xform1
|| !xform2
)
1351 /* Create the result in a temporary XFORM, since xformResult may be
1352 * equal to xform1 or xform2 */
1353 xformTemp
.eM11
= xform1
->eM11
* xform2
->eM11
+
1354 xform1
->eM12
* xform2
->eM21
;
1355 xformTemp
.eM12
= xform1
->eM11
* xform2
->eM12
+
1356 xform1
->eM12
* xform2
->eM22
;
1357 xformTemp
.eM21
= xform1
->eM21
* xform2
->eM11
+
1358 xform1
->eM22
* xform2
->eM21
;
1359 xformTemp
.eM22
= xform1
->eM21
* xform2
->eM12
+
1360 xform1
->eM22
* xform2
->eM22
;
1361 xformTemp
.eDx
= xform1
->eDx
* xform2
->eM11
+
1362 xform1
->eDy
* xform2
->eM21
+
1364 xformTemp
.eDy
= xform1
->eDx
* xform2
->eM12
+
1365 xform1
->eDy
* xform2
->eM22
+
1368 /* Copy the result to xformResult */
1369 *xformResult
= xformTemp
;
1375 /***********************************************************************
1376 * SetDCHook (GDI32.@)
1378 * Note: this doesn't exist in Win32, we add it here because user32 needs it.
1380 BOOL WINAPI
SetDCHook( HDC hdc
, DCHOOKPROC hookProc
, DWORD_PTR dwHookData
)
1382 DC
*dc
= get_dc_ptr( hdc
);
1384 if (!dc
) return FALSE
;
1386 if (!(dc
->flags
& DC_SAVED
))
1388 dc
->dwHookData
= dwHookData
;
1389 dc
->hookProc
= hookProc
;
1391 release_dc_ptr( dc
);
1396 /***********************************************************************
1397 * GetDCHook (GDI32.@)
1399 * Note: this doesn't exist in Win32, we add it here because user32 needs it.
1401 DWORD_PTR WINAPI
GetDCHook( HDC hdc
, DCHOOKPROC
*proc
)
1403 DC
*dc
= get_dc_ptr( hdc
);
1407 if (proc
) *proc
= dc
->hookProc
;
1408 ret
= dc
->dwHookData
;
1409 release_dc_ptr( dc
);
1414 /***********************************************************************
1415 * SetHookFlags (GDI32.@)
1417 * Note: this doesn't exist in Win32, we add it here because user32 needs it.
1419 WORD WINAPI
SetHookFlags( HDC hdc
, WORD flags
)
1421 DC
*dc
= get_dc_obj( hdc
); /* not get_dc_ptr, this needs to work from any thread */
1426 /* "Undocumented Windows" info is slightly confusing. */
1428 TRACE("hDC %p, flags %04x\n",hdc
,flags
);
1430 if (flags
& DCHF_INVALIDATEVISRGN
)
1431 ret
= InterlockedExchange( &dc
->dirty
, 1 );
1432 else if (flags
& DCHF_VALIDATEVISRGN
|| !flags
)
1433 ret
= InterlockedExchange( &dc
->dirty
, 0 );
1435 GDI_ReleaseObj( dc
);
1439 /***********************************************************************
1440 * SetICMMode (GDI32.@)
1442 INT WINAPI
SetICMMode(HDC hdc
, INT iEnableICM
)
1444 /*FIXME: Assume that ICM is always off, and cannot be turned on */
1445 if (iEnableICM
== ICM_OFF
) return ICM_OFF
;
1446 if (iEnableICM
== ICM_ON
) return 0;
1447 if (iEnableICM
== ICM_QUERY
) return ICM_OFF
;
1451 /***********************************************************************
1452 * GetDeviceGammaRamp (GDI32.@)
1454 BOOL WINAPI
GetDeviceGammaRamp(HDC hDC
, LPVOID ptr
)
1457 DC
*dc
= get_dc_ptr( hDC
);
1461 if (dc
->funcs
->pGetDeviceGammaRamp
)
1462 ret
= dc
->funcs
->pGetDeviceGammaRamp(dc
->physDev
, ptr
);
1463 release_dc_ptr( dc
);
1468 /***********************************************************************
1469 * SetDeviceGammaRamp (GDI32.@)
1471 BOOL WINAPI
SetDeviceGammaRamp(HDC hDC
, LPVOID ptr
)
1474 DC
*dc
= get_dc_ptr( hDC
);
1478 if (dc
->funcs
->pSetDeviceGammaRamp
)
1479 ret
= dc
->funcs
->pSetDeviceGammaRamp(dc
->physDev
, ptr
);
1480 release_dc_ptr( dc
);
1485 /***********************************************************************
1486 * GetColorSpace (GDI32.@)
1488 HCOLORSPACE WINAPI
GetColorSpace(HDC hdc
)
1490 /*FIXME Need to to whatever GetColorSpace actually does */
1494 /***********************************************************************
1495 * CreateColorSpaceA (GDI32.@)
1497 HCOLORSPACE WINAPI
CreateColorSpaceA( LPLOGCOLORSPACEA lpLogColorSpace
)
1503 /***********************************************************************
1504 * CreateColorSpaceW (GDI32.@)
1506 HCOLORSPACE WINAPI
CreateColorSpaceW( LPLOGCOLORSPACEW lpLogColorSpace
)
1512 /***********************************************************************
1513 * DeleteColorSpace (GDI32.@)
1515 BOOL WINAPI
DeleteColorSpace( HCOLORSPACE hColorSpace
)
1522 /***********************************************************************
1523 * SetColorSpace (GDI32.@)
1525 HCOLORSPACE WINAPI
SetColorSpace( HDC hDC
, HCOLORSPACE hColorSpace
)
1532 /***********************************************************************
1533 * GetBoundsRect (GDI32.@)
1535 UINT WINAPI
GetBoundsRect(HDC hdc
, LPRECT rect
, UINT flags
)
1538 DC
*dc
= get_dc_ptr( hdc
);
1540 if ( !dc
) return 0;
1544 *rect
= dc
->BoundsRect
;
1545 ret
= ((dc
->flags
& DC_BOUNDS_SET
) ? DCB_SET
: DCB_RESET
);
1550 if (flags
& DCB_RESET
)
1552 dc
->BoundsRect
.left
= 0;
1553 dc
->BoundsRect
.top
= 0;
1554 dc
->BoundsRect
.right
= 0;
1555 dc
->BoundsRect
.bottom
= 0;
1556 dc
->flags
&= ~DC_BOUNDS_SET
;
1558 release_dc_ptr( dc
);
1563 /***********************************************************************
1564 * SetBoundsRect (GDI32.@)
1566 UINT WINAPI
SetBoundsRect(HDC hdc
, const RECT
* rect
, UINT flags
)
1571 if ((flags
& DCB_ENABLE
) && (flags
& DCB_DISABLE
)) return 0;
1572 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1574 ret
= ((dc
->flags
& DC_BOUNDS_ENABLE
) ? DCB_ENABLE
: DCB_DISABLE
) |
1575 ((dc
->flags
& DC_BOUNDS_SET
) ? DCB_SET
: DCB_RESET
);
1577 if (flags
& DCB_RESET
)
1579 dc
->BoundsRect
.left
= 0;
1580 dc
->BoundsRect
.top
= 0;
1581 dc
->BoundsRect
.right
= 0;
1582 dc
->BoundsRect
.bottom
= 0;
1583 dc
->flags
&= ~DC_BOUNDS_SET
;
1586 if ((flags
& DCB_ACCUMULATE
) && rect
&& rect
->left
< rect
->right
&& rect
->top
< rect
->bottom
)
1588 if (dc
->flags
& DC_BOUNDS_SET
)
1590 dc
->BoundsRect
.left
= min( dc
->BoundsRect
.left
, rect
->left
);
1591 dc
->BoundsRect
.top
= min( dc
->BoundsRect
.top
, rect
->top
);
1592 dc
->BoundsRect
.right
= max( dc
->BoundsRect
.right
, rect
->right
);
1593 dc
->BoundsRect
.bottom
= max( dc
->BoundsRect
.bottom
, rect
->bottom
);
1597 dc
->BoundsRect
= *rect
;
1598 dc
->flags
|= DC_BOUNDS_SET
;
1602 if (flags
& DCB_ENABLE
) dc
->flags
|= DC_BOUNDS_ENABLE
;
1603 if (flags
& DCB_DISABLE
) dc
->flags
&= ~DC_BOUNDS_ENABLE
;
1605 release_dc_ptr( dc
);
1610 /***********************************************************************
1611 * GetRelAbs (GDI32.@)
1613 INT WINAPI
GetRelAbs( HDC hdc
, DWORD dwIgnore
)
1616 DC
*dc
= get_dc_ptr( hdc
);
1619 ret
= dc
->relAbsMode
;
1620 release_dc_ptr( dc
);
1628 /***********************************************************************
1629 * GetBkMode (GDI32.@)
1631 INT WINAPI
GetBkMode( HDC hdc
)
1634 DC
* dc
= get_dc_ptr( hdc
);
1637 ret
= dc
->backgroundMode
;
1638 release_dc_ptr( dc
);
1644 /***********************************************************************
1645 * SetBkMode (GDI32.@)
1647 INT WINAPI
SetBkMode( HDC hdc
, INT mode
)
1651 if ((mode
<= 0) || (mode
> BKMODE_LAST
))
1653 SetLastError(ERROR_INVALID_PARAMETER
);
1656 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1658 ret
= dc
->backgroundMode
;
1659 if (dc
->funcs
->pSetBkMode
)
1660 if (!dc
->funcs
->pSetBkMode( dc
->physDev
, mode
))
1663 dc
->backgroundMode
= mode
;
1664 release_dc_ptr( dc
);
1669 /***********************************************************************
1672 INT WINAPI
GetROP2( HDC hdc
)
1675 DC
* dc
= get_dc_ptr( hdc
);
1679 release_dc_ptr( dc
);
1685 /***********************************************************************
1688 INT WINAPI
SetROP2( HDC hdc
, INT mode
)
1692 if ((mode
< R2_BLACK
) || (mode
> R2_WHITE
))
1694 SetLastError(ERROR_INVALID_PARAMETER
);
1697 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1699 if (dc
->funcs
->pSetROP2
)
1700 if (!dc
->funcs
->pSetROP2( dc
->physDev
, mode
))
1704 release_dc_ptr( dc
);
1709 /***********************************************************************
1710 * SetRelAbs (GDI32.@)
1712 INT WINAPI
SetRelAbs( HDC hdc
, INT mode
)
1716 if ((mode
!= ABSOLUTE
) && (mode
!= RELATIVE
))
1718 SetLastError(ERROR_INVALID_PARAMETER
);
1721 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1722 if (dc
->funcs
->pSetRelAbs
)
1723 ret
= dc
->funcs
->pSetRelAbs( dc
->physDev
, mode
);
1726 ret
= dc
->relAbsMode
;
1727 dc
->relAbsMode
= mode
;
1729 release_dc_ptr( dc
);
1734 /***********************************************************************
1735 * GetPolyFillMode (GDI32.@)
1737 INT WINAPI
GetPolyFillMode( HDC hdc
)
1740 DC
* dc
= get_dc_ptr( hdc
);
1743 ret
= dc
->polyFillMode
;
1744 release_dc_ptr( dc
);
1750 /***********************************************************************
1751 * SetPolyFillMode (GDI32.@)
1753 INT WINAPI
SetPolyFillMode( HDC hdc
, INT mode
)
1757 if ((mode
<= 0) || (mode
> POLYFILL_LAST
))
1759 SetLastError(ERROR_INVALID_PARAMETER
);
1762 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1763 ret
= dc
->polyFillMode
;
1764 if (dc
->funcs
->pSetPolyFillMode
)
1765 if (!dc
->funcs
->pSetPolyFillMode( dc
->physDev
, mode
))
1768 dc
->polyFillMode
= mode
;
1769 release_dc_ptr( dc
);
1774 /***********************************************************************
1775 * GetStretchBltMode (GDI32.@)
1777 INT WINAPI
GetStretchBltMode( HDC hdc
)
1780 DC
* dc
= get_dc_ptr( hdc
);
1783 ret
= dc
->stretchBltMode
;
1784 release_dc_ptr( dc
);
1790 /***********************************************************************
1791 * SetStretchBltMode (GDI32.@)
1793 INT WINAPI
SetStretchBltMode( HDC hdc
, INT mode
)
1797 if ((mode
<= 0) || (mode
> MAXSTRETCHBLTMODE
))
1799 SetLastError(ERROR_INVALID_PARAMETER
);
1802 if (!(dc
= get_dc_ptr( hdc
))) return 0;
1803 ret
= dc
->stretchBltMode
;
1804 if (dc
->funcs
->pSetStretchBltMode
)
1805 if (!dc
->funcs
->pSetStretchBltMode( dc
->physDev
, mode
))
1808 dc
->stretchBltMode
= mode
;
1809 release_dc_ptr( dc
);
1814 /***********************************************************************
1815 * GetMapMode (GDI32.@)
1817 INT WINAPI
GetMapMode( HDC hdc
)
1820 DC
* dc
= get_dc_ptr( hdc
);
1824 release_dc_ptr( dc
);
1830 /***********************************************************************
1831 * GetBrushOrgEx (GDI32.@)
1833 BOOL WINAPI
GetBrushOrgEx( HDC hdc
, LPPOINT pt
)
1835 DC
* dc
= get_dc_ptr( hdc
);
1836 if (!dc
) return FALSE
;
1837 pt
->x
= dc
->brushOrgX
;
1838 pt
->y
= dc
->brushOrgY
;
1839 release_dc_ptr( dc
);
1844 /***********************************************************************
1845 * GetCurrentPositionEx (GDI32.@)
1847 BOOL WINAPI
GetCurrentPositionEx( HDC hdc
, LPPOINT pt
)
1849 DC
* dc
= get_dc_ptr( hdc
);
1850 if (!dc
) return FALSE
;
1851 pt
->x
= dc
->CursPosX
;
1852 pt
->y
= dc
->CursPosY
;
1853 release_dc_ptr( dc
);
1858 /***********************************************************************
1859 * GetViewportExtEx (GDI32.@)
1861 BOOL WINAPI
GetViewportExtEx( HDC hdc
, LPSIZE size
)
1863 DC
* dc
= get_dc_ptr( hdc
);
1864 if (!dc
) return FALSE
;
1865 size
->cx
= dc
->vportExtX
;
1866 size
->cy
= dc
->vportExtY
;
1867 release_dc_ptr( dc
);
1872 /***********************************************************************
1873 * GetViewportOrgEx (GDI32.@)
1875 BOOL WINAPI
GetViewportOrgEx( HDC hdc
, LPPOINT pt
)
1877 DC
* dc
= get_dc_ptr( hdc
);
1878 if (!dc
) return FALSE
;
1879 pt
->x
= dc
->vportOrgX
;
1880 pt
->y
= dc
->vportOrgY
;
1881 release_dc_ptr( dc
);
1886 /***********************************************************************
1887 * GetWindowExtEx (GDI32.@)
1889 BOOL WINAPI
GetWindowExtEx( HDC hdc
, LPSIZE size
)
1891 DC
* dc
= get_dc_ptr( hdc
);
1892 if (!dc
) return FALSE
;
1893 size
->cx
= dc
->wndExtX
;
1894 size
->cy
= dc
->wndExtY
;
1895 release_dc_ptr( dc
);
1900 /***********************************************************************
1901 * GetWindowOrgEx (GDI32.@)
1903 BOOL WINAPI
GetWindowOrgEx( HDC hdc
, LPPOINT pt
)
1905 DC
* dc
= get_dc_ptr( hdc
);
1906 if (!dc
) return FALSE
;
1907 pt
->x
= dc
->wndOrgX
;
1908 pt
->y
= dc
->wndOrgY
;
1909 release_dc_ptr( dc
);
1914 /***********************************************************************
1915 * GetLayout (GDI32.@)
1917 * Gets left->right or right->left text layout flags of a dc.
1920 DWORD WINAPI
GetLayout(HDC hdc
)
1922 DWORD layout
= GDI_ERROR
;
1924 DC
* dc
= get_dc_ptr( hdc
);
1927 layout
= dc
->layout
;
1928 release_dc_ptr( dc
);
1931 TRACE("hdc : %p, layout : %08x\n", hdc
, layout
);
1936 /***********************************************************************
1937 * SetLayout (GDI32.@)
1939 * Sets left->right or right->left text layout flags of a dc.
1942 DWORD WINAPI
SetLayout(HDC hdc
, DWORD layout
)
1944 DWORD oldlayout
= GDI_ERROR
;
1946 DC
* dc
= get_dc_ptr( hdc
);
1949 oldlayout
= dc
->layout
;
1950 dc
->layout
= layout
;
1951 release_dc_ptr( dc
);
1954 TRACE("hdc : %p, old layout : %08x, new layout : %08x\n", hdc
, oldlayout
, layout
);
1959 /***********************************************************************
1960 * GetDCBrushColor (GDI32.@)
1962 * Retrieves the current brush color for the specified device
1966 COLORREF WINAPI
GetDCBrushColor(HDC hdc
)
1969 COLORREF dcBrushColor
= CLR_INVALID
;
1971 TRACE("hdc(%p)\n", hdc
);
1973 dc
= get_dc_ptr( hdc
);
1976 dcBrushColor
= dc
->dcBrushColor
;
1977 release_dc_ptr( dc
);
1980 return dcBrushColor
;
1983 /***********************************************************************
1984 * SetDCBrushColor (GDI32.@)
1986 * Sets the current device context (DC) brush color to the specified
1987 * color value. If the device cannot represent the specified color
1988 * value, the color is set to the nearest physical color.
1991 COLORREF WINAPI
SetDCBrushColor(HDC hdc
, COLORREF crColor
)
1994 COLORREF oldClr
= CLR_INVALID
;
1996 TRACE("hdc(%p) crColor(%08x)\n", hdc
, crColor
);
1998 dc
= get_dc_ptr( hdc
);
2001 if (dc
->funcs
->pSetDCBrushColor
)
2002 crColor
= dc
->funcs
->pSetDCBrushColor( dc
->physDev
, crColor
);
2003 else if (dc
->hBrush
== GetStockObject( DC_BRUSH
))
2005 /* If DC_BRUSH is selected, update driver pen color */
2006 HBRUSH hBrush
= CreateSolidBrush( crColor
);
2007 dc
->funcs
->pSelectBrush( dc
->physDev
, hBrush
);
2008 DeleteObject( hBrush
);
2011 if (crColor
!= CLR_INVALID
)
2013 oldClr
= dc
->dcBrushColor
;
2014 dc
->dcBrushColor
= crColor
;
2017 release_dc_ptr( dc
);
2023 /***********************************************************************
2024 * GetDCPenColor (GDI32.@)
2026 * Retrieves the current pen color for the specified device
2030 COLORREF WINAPI
GetDCPenColor(HDC hdc
)
2033 COLORREF dcPenColor
= CLR_INVALID
;
2035 TRACE("hdc(%p)\n", hdc
);
2037 dc
= get_dc_ptr( hdc
);
2040 dcPenColor
= dc
->dcPenColor
;
2041 release_dc_ptr( dc
);
2047 /***********************************************************************
2048 * SetDCPenColor (GDI32.@)
2050 * Sets the current device context (DC) pen color to the specified
2051 * color value. If the device cannot represent the specified color
2052 * value, the color is set to the nearest physical color.
2055 COLORREF WINAPI
SetDCPenColor(HDC hdc
, COLORREF crColor
)
2058 COLORREF oldClr
= CLR_INVALID
;
2060 TRACE("hdc(%p) crColor(%08x)\n", hdc
, crColor
);
2062 dc
= get_dc_ptr( hdc
);
2065 if (dc
->funcs
->pSetDCPenColor
)
2066 crColor
= dc
->funcs
->pSetDCPenColor( dc
->physDev
, crColor
);
2067 else if (dc
->hPen
== GetStockObject( DC_PEN
))
2069 /* If DC_PEN is selected, update the driver pen color */
2070 LOGPEN logpen
= { PS_SOLID
, { 0, 0 }, crColor
};
2071 HPEN hPen
= CreatePenIndirect( &logpen
);
2072 dc
->funcs
->pSelectPen( dc
->physDev
, hPen
);
2073 DeleteObject( hPen
);
2076 if (crColor
!= CLR_INVALID
)
2078 oldClr
= dc
->dcPenColor
;
2079 dc
->dcPenColor
= crColor
;
2082 release_dc_ptr( dc
);
2088 /***********************************************************************
2089 * CancelDC (GDI32.@)
2091 BOOL WINAPI
CancelDC(HDC hdc
)
2097 /*******************************************************************
2098 * GetMiterLimit [GDI32.@]
2102 BOOL WINAPI
GetMiterLimit(HDC hdc
, PFLOAT peLimit
)
2107 TRACE("(%p,%p)\n", hdc
, peLimit
);
2109 dc
= get_dc_ptr( hdc
);
2113 *peLimit
= dc
->miterLimit
;
2115 release_dc_ptr( dc
);
2121 /*******************************************************************
2122 * SetMiterLimit [GDI32.@]
2126 BOOL WINAPI
SetMiterLimit(HDC hdc
, FLOAT eNewLimit
, PFLOAT peOldLimit
)
2131 TRACE("(%p,%f,%p)\n", hdc
, eNewLimit
, peOldLimit
);
2133 dc
= get_dc_ptr( hdc
);
2137 *peOldLimit
= dc
->miterLimit
;
2138 dc
->miterLimit
= eNewLimit
;
2139 release_dc_ptr( dc
);
2145 /*******************************************************************
2146 * GdiIsMetaPrintDC [GDI32.@]
2148 BOOL WINAPI
GdiIsMetaPrintDC(HDC hdc
)
2154 /*******************************************************************
2155 * GdiIsMetaFileDC [GDI32.@]
2157 BOOL WINAPI
GdiIsMetaFileDC(HDC hdc
)
2161 switch( GetObjectType( hdc
) )
2170 /*******************************************************************
2171 * GdiIsPlayMetafileDC [GDI32.@]
2173 BOOL WINAPI
GdiIsPlayMetafileDC(HDC hdc
)