The [windows] section is in win.ini not in ~/.wine/config.
[wine/testsucceed.git] / objects / dc.c
blob675c9dbef3f3d5b347c3fe42f7b5edd20548707a
1 /*
2 * GDI Device Context functions
4 * Copyright 1993 Alexandre Julliard
6 */
8 #include "config.h"
10 #include <stdlib.h>
11 #include <string.h>
12 #include "gdi.h"
13 #include "heap.h"
14 #include "debugtools.h"
15 #include "font.h"
16 #include "callback.h"
17 #include "winerror.h"
18 #include "windef.h"
19 #include "wingdi.h"
20 #include "wine/winuser16.h"
22 DEFAULT_DEBUG_CHANNEL(dc);
25 /***********************************************************************
26 * DC_AllocDC
28 DC *DC_AllocDC( const DC_FUNCTIONS *funcs )
30 HDC hdc;
31 DC *dc;
33 if (!(dc = GDI_AllocObject( sizeof(*dc), DC_MAGIC, &hdc ))) return NULL;
35 dc->hSelf = hdc;
36 dc->funcs = funcs;
37 dc->physDev = NULL;
38 dc->saveLevel = 0;
39 dc->dwHookData = 0;
40 dc->hookProc = NULL;
41 dc->hookThunk = NULL;
42 dc->wndOrgX = 0;
43 dc->wndOrgY = 0;
44 dc->wndExtX = 1;
45 dc->wndExtY = 1;
46 dc->vportOrgX = 0;
47 dc->vportOrgY = 0;
48 dc->vportExtX = 1;
49 dc->vportExtY = 1;
50 dc->flags = 0;
51 dc->hClipRgn = 0;
52 dc->hVisRgn = 0;
53 dc->hGCClipRgn = 0;
54 dc->hPen = GetStockObject( BLACK_PEN );
55 dc->hBrush = GetStockObject( WHITE_BRUSH );
56 dc->hFont = GetStockObject( SYSTEM_FONT );
57 dc->hBitmap = 0;
58 dc->hDevice = 0;
59 dc->hPalette = GetStockObject( DEFAULT_PALETTE );
60 dc->ROPmode = R2_COPYPEN;
61 dc->polyFillMode = ALTERNATE;
62 dc->stretchBltMode = BLACKONWHITE;
63 dc->relAbsMode = ABSOLUTE;
64 dc->backgroundMode = OPAQUE;
65 dc->backgroundColor = RGB( 255, 255, 255 );
66 dc->textColor = RGB( 0, 0, 0 );
67 dc->brushOrgX = 0;
68 dc->brushOrgY = 0;
69 dc->textAlign = TA_LEFT | TA_TOP | TA_NOUPDATECP;
70 dc->charExtra = 0;
71 dc->breakTotalExtra = 0;
72 dc->breakCount = 0;
73 dc->breakExtra = 0;
74 dc->breakRem = 0;
75 dc->totalExtent.left = 0;
76 dc->totalExtent.top = 0;
77 dc->totalExtent.right = 0;
78 dc->totalExtent.bottom = 0;
79 dc->bitsPerPixel = 1;
80 dc->MapMode = MM_TEXT;
81 dc->GraphicsMode = GM_COMPATIBLE;
82 dc->DCOrgX = 0;
83 dc->DCOrgY = 0;
84 dc->pAbortProc = NULL;
85 dc->CursPosX = 0;
86 dc->CursPosY = 0;
87 dc->ArcDirection = AD_COUNTERCLOCKWISE;
88 dc->xformWorld2Wnd.eM11 = 1.0f;
89 dc->xformWorld2Wnd.eM12 = 0.0f;
90 dc->xformWorld2Wnd.eM21 = 0.0f;
91 dc->xformWorld2Wnd.eM22 = 1.0f;
92 dc->xformWorld2Wnd.eDx = 0.0f;
93 dc->xformWorld2Wnd.eDy = 0.0f;
94 dc->xformWorld2Vport = dc->xformWorld2Wnd;
95 dc->xformVport2World = dc->xformWorld2Wnd;
96 dc->vport2WorldValid = TRUE;
97 PATH_InitGdiPath(&dc->path);
98 return dc;
103 /***********************************************************************
104 * DC_GetDCPtr
106 DC *DC_GetDCPtr( HDC hdc )
108 GDIOBJHDR *ptr = GDI_GetObjPtr( hdc, MAGIC_DONTCARE );
109 if (!ptr) return NULL;
110 if ((GDIMAGIC(ptr->wMagic) == DC_MAGIC) ||
111 (GDIMAGIC(ptr->wMagic) == METAFILE_DC_MAGIC) ||
112 (GDIMAGIC(ptr->wMagic) == ENHMETAFILE_DC_MAGIC))
113 return (DC *)ptr;
114 GDI_ReleaseObj( hdc );
115 SetLastError( ERROR_INVALID_HANDLE );
116 return NULL;
119 /***********************************************************************
120 * DC_GetDCUpdate
122 * Retrieve a DC ptr while making sure the visRgn is updated.
123 * This function may call up to USER so the GDI lock should _not_
124 * be held when calling it.
126 DC *DC_GetDCUpdate( HDC hdc )
128 DC *dc = DC_GetDCPtr( hdc );
129 if (!dc) return NULL;
130 while (dc->flags & DC_DIRTY)
132 dc->flags &= ~DC_DIRTY;
133 if (!(dc->flags & (DC_SAVED | DC_MEMORY)))
135 DCHOOKPROC proc = dc->hookThunk;
136 if (proc)
138 DWORD data = dc->dwHookData;
139 GDI_ReleaseObj( hdc );
140 proc( hdc, DCHC_INVALIDVISRGN, data, 0 );
141 if (!(dc = DC_GetDCPtr( hdc ))) break;
142 /* otherwise restart the loop in case it became dirty again in the meantime */
146 return dc;
149 /***********************************************************************
150 * DC_InitDC
152 * Setup device-specific DC values for a newly created DC.
154 void DC_InitDC( DC* dc )
156 RealizeDefaultPalette16( dc->hSelf );
157 SetTextColor( dc->hSelf, dc->textColor );
158 SetBkColor( dc->hSelf, dc->backgroundColor );
159 SelectObject( dc->hSelf, dc->hPen );
160 SelectObject( dc->hSelf, dc->hBrush );
161 SelectObject( dc->hSelf, dc->hFont );
162 CLIPPING_UpdateGCRegion( dc );
166 /***********************************************************************
167 * DC_InvertXform
169 * Computes the inverse of the transformation xformSrc and stores it to
170 * xformDest. Returns TRUE if successful or FALSE if the xformSrc matrix
171 * is singular.
173 static BOOL DC_InvertXform( const XFORM *xformSrc, XFORM *xformDest )
175 FLOAT determinant;
177 determinant = xformSrc->eM11*xformSrc->eM22 -
178 xformSrc->eM12*xformSrc->eM21;
179 if (determinant > -1e-12 && determinant < 1e-12)
180 return FALSE;
182 xformDest->eM11 = xformSrc->eM22 / determinant;
183 xformDest->eM12 = -xformSrc->eM12 / determinant;
184 xformDest->eM21 = -xformSrc->eM21 / determinant;
185 xformDest->eM22 = xformSrc->eM11 / determinant;
186 xformDest->eDx = -xformSrc->eDx * xformDest->eM11 -
187 xformSrc->eDy * xformDest->eM21;
188 xformDest->eDy = -xformSrc->eDx * xformDest->eM12 -
189 xformSrc->eDy * xformDest->eM22;
191 return TRUE;
195 /***********************************************************************
196 * DC_UpdateXforms
198 * Updates the xformWorld2Vport, xformVport2World and vport2WorldValid
199 * fields of the specified DC by creating a transformation that
200 * represents the current mapping mode and combining it with the DC's
201 * world transform. This function should be called whenever the
202 * parameters associated with the mapping mode (window and viewport
203 * extents and origins) or the world transform change.
205 void DC_UpdateXforms( DC *dc )
207 XFORM xformWnd2Vport;
208 FLOAT scaleX, scaleY;
210 /* Construct a transformation to do the window-to-viewport conversion */
211 scaleX = (FLOAT)dc->vportExtX / (FLOAT)dc->wndExtX;
212 scaleY = (FLOAT)dc->vportExtY / (FLOAT)dc->wndExtY;
213 xformWnd2Vport.eM11 = scaleX;
214 xformWnd2Vport.eM12 = 0.0;
215 xformWnd2Vport.eM21 = 0.0;
216 xformWnd2Vport.eM22 = scaleY;
217 xformWnd2Vport.eDx = (FLOAT)dc->vportOrgX -
218 scaleX * (FLOAT)dc->wndOrgX;
219 xformWnd2Vport.eDy = (FLOAT)dc->vportOrgY -
220 scaleY * (FLOAT)dc->wndOrgY;
222 /* Combine with the world transformation */
223 CombineTransform( &dc->xformWorld2Vport, &dc->xformWorld2Wnd,
224 &xformWnd2Vport );
226 /* Create inverse of world-to-viewport transformation */
227 dc->vport2WorldValid = DC_InvertXform( &dc->xformWorld2Vport,
228 &dc->xformVport2World );
232 /***********************************************************************
233 * GetDCState (GDI.179)
235 HDC16 WINAPI GetDCState16( HDC16 hdc )
237 DC * newdc, * dc;
238 HGDIOBJ handle;
240 if (!(dc = DC_GetDCUpdate( hdc ))) return 0;
241 if (!(newdc = GDI_AllocObject( sizeof(DC), DC_MAGIC, &handle )))
243 GDI_ReleaseObj( hdc );
244 return 0;
246 TRACE("(%04x): returning %04x\n", hdc, handle );
248 newdc->flags = dc->flags | DC_SAVED;
249 newdc->hPen = dc->hPen;
250 newdc->hBrush = dc->hBrush;
251 newdc->hFont = dc->hFont;
252 newdc->hBitmap = dc->hBitmap;
253 newdc->hDevice = dc->hDevice;
254 newdc->hPalette = dc->hPalette;
255 newdc->totalExtent = dc->totalExtent;
256 newdc->bitsPerPixel = dc->bitsPerPixel;
257 newdc->ROPmode = dc->ROPmode;
258 newdc->polyFillMode = dc->polyFillMode;
259 newdc->stretchBltMode = dc->stretchBltMode;
260 newdc->relAbsMode = dc->relAbsMode;
261 newdc->backgroundMode = dc->backgroundMode;
262 newdc->backgroundColor = dc->backgroundColor;
263 newdc->textColor = dc->textColor;
264 newdc->brushOrgX = dc->brushOrgX;
265 newdc->brushOrgY = dc->brushOrgY;
266 newdc->textAlign = dc->textAlign;
267 newdc->charExtra = dc->charExtra;
268 newdc->breakTotalExtra = dc->breakTotalExtra;
269 newdc->breakCount = dc->breakCount;
270 newdc->breakExtra = dc->breakExtra;
271 newdc->breakRem = dc->breakRem;
272 newdc->MapMode = dc->MapMode;
273 newdc->GraphicsMode = dc->GraphicsMode;
274 #if 0
275 /* Apparently, the DC origin is not changed by [GS]etDCState */
276 newdc->DCOrgX = dc->DCOrgX;
277 newdc->DCOrgY = dc->DCOrgY;
278 #endif
279 newdc->CursPosX = dc->CursPosX;
280 newdc->CursPosY = dc->CursPosY;
281 newdc->ArcDirection = dc->ArcDirection;
282 newdc->xformWorld2Wnd = dc->xformWorld2Wnd;
283 newdc->xformWorld2Vport = dc->xformWorld2Vport;
284 newdc->xformVport2World = dc->xformVport2World;
285 newdc->vport2WorldValid = dc->vport2WorldValid;
286 newdc->wndOrgX = dc->wndOrgX;
287 newdc->wndOrgY = dc->wndOrgY;
288 newdc->wndExtX = dc->wndExtX;
289 newdc->wndExtY = dc->wndExtY;
290 newdc->vportOrgX = dc->vportOrgX;
291 newdc->vportOrgY = dc->vportOrgY;
292 newdc->vportExtX = dc->vportExtX;
293 newdc->vportExtY = dc->vportExtY;
295 newdc->hSelf = (HDC)handle;
296 newdc->saveLevel = 0;
298 PATH_InitGdiPath( &newdc->path );
300 newdc->pAbortProc = NULL;
301 newdc->hookThunk = NULL;
302 newdc->hookProc = 0;
304 /* Get/SetDCState() don't change hVisRgn field ("Undoc. Windows" p.559). */
306 newdc->hGCClipRgn = newdc->hVisRgn = 0;
307 if (dc->hClipRgn)
309 newdc->hClipRgn = CreateRectRgn( 0, 0, 0, 0 );
310 CombineRgn( newdc->hClipRgn, dc->hClipRgn, 0, RGN_COPY );
312 else
313 newdc->hClipRgn = 0;
314 GDI_ReleaseObj( handle );
315 GDI_ReleaseObj( hdc );
316 return handle;
320 /***********************************************************************
321 * SetDCState (GDI.180)
323 void WINAPI SetDCState16( HDC16 hdc, HDC16 hdcs )
325 DC *dc, *dcs;
327 if (!(dc = GDI_GetObjPtr( hdc, DC_MAGIC ))) return;
328 if (!(dcs = GDI_GetObjPtr( hdcs, DC_MAGIC )))
330 GDI_ReleaseObj( hdc );
331 return;
333 if (!dcs->flags & DC_SAVED)
335 GDI_ReleaseObj( hdc );
336 GDI_ReleaseObj( hdcs );
337 return;
339 TRACE("%04x %04x\n", hdc, hdcs );
341 dc->flags = dcs->flags & ~DC_SAVED;
342 dc->hDevice = dcs->hDevice;
343 dc->totalExtent = dcs->totalExtent;
344 dc->ROPmode = dcs->ROPmode;
345 dc->polyFillMode = dcs->polyFillMode;
346 dc->stretchBltMode = dcs->stretchBltMode;
347 dc->relAbsMode = dcs->relAbsMode;
348 dc->backgroundMode = dcs->backgroundMode;
349 dc->backgroundColor = dcs->backgroundColor;
350 dc->textColor = dcs->textColor;
351 dc->brushOrgX = dcs->brushOrgX;
352 dc->brushOrgY = dcs->brushOrgY;
353 dc->textAlign = dcs->textAlign;
354 dc->charExtra = dcs->charExtra;
355 dc->breakTotalExtra = dcs->breakTotalExtra;
356 dc->breakCount = dcs->breakCount;
357 dc->breakExtra = dcs->breakExtra;
358 dc->breakRem = dcs->breakRem;
359 dc->MapMode = dcs->MapMode;
360 dc->GraphicsMode = dcs->GraphicsMode;
361 #if 0
362 /* Apparently, the DC origin is not changed by [GS]etDCState */
363 dc->DCOrgX = dcs->DCOrgX;
364 dc->DCOrgY = dcs->DCOrgY;
365 #endif
366 dc->CursPosX = dcs->CursPosX;
367 dc->CursPosY = dcs->CursPosY;
368 dc->ArcDirection = dcs->ArcDirection;
369 dc->xformWorld2Wnd = dcs->xformWorld2Wnd;
370 dc->xformWorld2Vport = dcs->xformWorld2Vport;
371 dc->xformVport2World = dcs->xformVport2World;
372 dc->vport2WorldValid = dcs->vport2WorldValid;
374 dc->wndOrgX = dcs->wndOrgX;
375 dc->wndOrgY = dcs->wndOrgY;
376 dc->wndExtX = dcs->wndExtX;
377 dc->wndExtY = dcs->wndExtY;
378 dc->vportOrgX = dcs->vportOrgX;
379 dc->vportOrgY = dcs->vportOrgY;
380 dc->vportExtX = dcs->vportExtX;
381 dc->vportExtY = dcs->vportExtY;
383 if (!(dc->flags & DC_MEMORY)) dc->bitsPerPixel = dcs->bitsPerPixel;
385 if (dcs->hClipRgn)
387 if (!dc->hClipRgn) dc->hClipRgn = CreateRectRgn( 0, 0, 0, 0 );
388 CombineRgn( dc->hClipRgn, dcs->hClipRgn, 0, RGN_COPY );
390 else
392 if (dc->hClipRgn) DeleteObject( dc->hClipRgn );
393 dc->hClipRgn = 0;
395 CLIPPING_UpdateGCRegion( dc );
397 SelectObject( hdc, dcs->hBitmap );
398 SelectObject( hdc, dcs->hBrush );
399 SelectObject( hdc, dcs->hFont );
400 SelectObject( hdc, dcs->hPen );
401 SetBkColor( hdc, dcs->backgroundColor);
402 SetTextColor( hdc, dcs->textColor);
403 GDISelectPalette16( hdc, dcs->hPalette, FALSE );
404 GDI_ReleaseObj( hdcs );
405 GDI_ReleaseObj( hdc );
409 /***********************************************************************
410 * SaveDC (GDI.30)
412 INT16 WINAPI SaveDC16( HDC16 hdc )
414 return (INT16)SaveDC( hdc );
418 /***********************************************************************
419 * SaveDC (GDI32.@)
421 INT WINAPI SaveDC( HDC hdc )
423 HDC hdcs;
424 DC * dc, * dcs;
425 INT ret;
427 dc = DC_GetDCUpdate( hdc );
428 if (!dc) return 0;
430 if(dc->funcs->pSaveDC)
432 ret = dc->funcs->pSaveDC( dc );
433 GDI_ReleaseObj( hdc );
434 return ret;
437 if (!(hdcs = GetDCState16( hdc )))
439 GDI_ReleaseObj( hdc );
440 return 0;
442 dcs = GDI_GetObjPtr( hdcs, DC_MAGIC );
444 /* Copy path. The reason why path saving / restoring is in SaveDC/
445 * RestoreDC and not in GetDCState/SetDCState is that the ...DCState
446 * functions are only in Win16 (which doesn't have paths) and that
447 * SetDCState doesn't allow us to signal an error (which can happen
448 * when copying paths).
450 if (!PATH_AssignGdiPath( &dcs->path, &dc->path ))
452 GDI_ReleaseObj( hdc );
453 GDI_ReleaseObj( hdcs );
454 DeleteDC( hdcs );
455 return 0;
458 dcs->header.hNext = dc->header.hNext;
459 dc->header.hNext = hdcs;
460 TRACE("(%04x): returning %d\n", hdc, dc->saveLevel+1 );
461 ret = ++dc->saveLevel;
462 GDI_ReleaseObj( hdcs );
463 GDI_ReleaseObj( hdc );
464 return ret;
468 /***********************************************************************
469 * RestoreDC (GDI.39)
471 BOOL16 WINAPI RestoreDC16( HDC16 hdc, INT16 level )
473 return RestoreDC( hdc, level );
477 /***********************************************************************
478 * RestoreDC (GDI32.@)
480 BOOL WINAPI RestoreDC( HDC hdc, INT level )
482 DC * dc, * dcs;
483 BOOL success;
485 TRACE("%04x %d\n", hdc, level );
486 dc = DC_GetDCPtr( hdc );
487 if(!dc) return FALSE;
488 if(dc->funcs->pRestoreDC)
490 success = dc->funcs->pRestoreDC( dc, level );
491 GDI_ReleaseObj( hdc );
492 return success;
495 if (level == -1) level = dc->saveLevel;
496 if ((level < 1)
497 /* This pair of checks disagrees with MSDN "Platform SDK:
498 Windows GDI" July 2000 which says all negative values
499 for level will be interpreted as an instance relative
500 to the current state. Restricting it to just -1 does
501 not satisfy this */
502 || (level > dc->saveLevel))
504 GDI_ReleaseObj( hdc );
505 return FALSE;
508 success=TRUE;
509 while (dc->saveLevel >= level)
511 HDC16 hdcs = dc->header.hNext;
512 if (!(dcs = GDI_GetObjPtr( hdcs, DC_MAGIC )))
514 GDI_ReleaseObj( hdc );
515 return FALSE;
517 dc->header.hNext = dcs->header.hNext;
518 if (--dc->saveLevel < level)
520 SetDCState16( hdc, hdcs );
521 if (!PATH_AssignGdiPath( &dc->path, &dcs->path ))
522 /* FIXME: This might not be quite right, since we're
523 * returning FALSE but still destroying the saved DC state */
524 success=FALSE;
526 GDI_ReleaseObj( hdcs );
527 GDI_ReleaseObj( hdc );
528 DeleteDC( hdcs );
529 if (!(dc = DC_GetDCPtr( hdc ))) return FALSE;
531 GDI_ReleaseObj( hdc );
532 return success;
536 /***********************************************************************
537 * CreateDC (GDI.53)
539 HDC16 WINAPI CreateDC16( LPCSTR driver, LPCSTR device, LPCSTR output,
540 const DEVMODEA *initData )
542 return CreateDCA( driver, device, output, initData );
545 /***********************************************************************
546 * CreateDCA (GDI32.@)
548 HDC WINAPI CreateDCA( LPCSTR driver, LPCSTR device, LPCSTR output,
549 const DEVMODEA *initData )
551 HDC hdc;
552 DC * dc;
553 const DC_FUNCTIONS *funcs;
554 char buf[300];
556 GDI_CheckNotLock();
558 if (!device || !DRIVER_GetDriverName( device, buf, sizeof(buf) ))
559 strcpy(buf, driver);
561 if (!(funcs = DRIVER_load_driver( buf )))
563 ERR( "no driver found for %s\n", buf );
564 return 0;
566 if (!(dc = DC_AllocDC( funcs )))
568 DRIVER_release_driver( funcs );
569 return 0;
572 dc->flags = 0;
574 TRACE("(driver=%s, device=%s, output=%s): returning %04x\n",
575 debugstr_a(driver), debugstr_a(device), debugstr_a(output), dc->hSelf );
577 if (dc->funcs->pCreateDC &&
578 !dc->funcs->pCreateDC( dc, buf, device, output, initData ))
580 WARN("creation aborted by device\n" );
581 GDI_FreeObject( dc->hSelf, dc );
582 DRIVER_release_driver( funcs );
583 return 0;
586 DC_InitDC( dc );
587 hdc = dc->hSelf;
588 GDI_ReleaseObj( hdc );
589 return hdc;
593 /***********************************************************************
594 * CreateDCW (GDI32.@)
596 HDC WINAPI CreateDCW( LPCWSTR driver, LPCWSTR device, LPCWSTR output,
597 const DEVMODEW *initData )
599 LPSTR driverA = HEAP_strdupWtoA( GetProcessHeap(), 0, driver );
600 LPSTR deviceA = HEAP_strdupWtoA( GetProcessHeap(), 0, device );
601 LPSTR outputA = HEAP_strdupWtoA( GetProcessHeap(), 0, output );
602 HDC res = CreateDCA( driverA, deviceA, outputA,
603 (const DEVMODEA *)initData /*FIXME*/ );
604 HeapFree( GetProcessHeap(), 0, driverA );
605 HeapFree( GetProcessHeap(), 0, deviceA );
606 HeapFree( GetProcessHeap(), 0, outputA );
607 return res;
611 /***********************************************************************
612 * CreateIC (GDI.153)
614 HDC16 WINAPI CreateIC16( LPCSTR driver, LPCSTR device, LPCSTR output,
615 const DEVMODEA* initData )
617 /* Nothing special yet for ICs */
618 return CreateDC16( driver, device, output, initData );
622 /***********************************************************************
623 * CreateICA (GDI32.@)
625 HDC WINAPI CreateICA( LPCSTR driver, LPCSTR device, LPCSTR output,
626 const DEVMODEA* initData )
628 /* Nothing special yet for ICs */
629 return CreateDCA( driver, device, output, initData );
633 /***********************************************************************
634 * CreateICW (GDI32.@)
636 HDC WINAPI CreateICW( LPCWSTR driver, LPCWSTR device, LPCWSTR output,
637 const DEVMODEW* initData )
639 /* Nothing special yet for ICs */
640 return CreateDCW( driver, device, output, initData );
644 /***********************************************************************
645 * CreateCompatibleDC (GDI.52)
647 HDC16 WINAPI CreateCompatibleDC16( HDC16 hdc )
649 return (HDC16)CreateCompatibleDC( hdc );
653 /***********************************************************************
654 * CreateCompatibleDC (GDI32.@)
656 HDC WINAPI CreateCompatibleDC( HDC hdc )
658 DC *dc, *origDC;
659 const DC_FUNCTIONS *funcs;
661 GDI_CheckNotLock();
663 if ((origDC = GDI_GetObjPtr( hdc, DC_MAGIC )))
665 funcs = origDC->funcs;
666 GDI_ReleaseObj( hdc ); /* can't hold the lock while loading the driver */
667 funcs = DRIVER_get_driver( funcs );
669 else funcs = DRIVER_load_driver( "DISPLAY" );
671 if (!funcs) return 0;
673 if (!(dc = DC_AllocDC( funcs )))
675 DRIVER_release_driver( funcs );
676 return 0;
679 TRACE("(%04x): returning %04x\n",
680 hdc, dc->hSelf );
682 dc->flags = DC_MEMORY;
683 dc->bitsPerPixel = 1;
684 dc->hBitmap = GetStockObject( DEFAULT_BITMAP );
686 /* Copy the driver-specific physical device info into
687 * the new DC. The driver may use this read-only info
688 * while creating the compatible DC below. */
689 if ((origDC = GDI_GetObjPtr( hdc, DC_MAGIC ))) dc->physDev = origDC->physDev;
691 if (dc->funcs->pCreateDC &&
692 !dc->funcs->pCreateDC( dc, NULL, NULL, NULL, NULL ))
694 WARN("creation aborted by device\n");
695 GDI_FreeObject( dc->hSelf, dc );
696 if (origDC) GDI_ReleaseObj( hdc );
697 DRIVER_release_driver( funcs );
698 return 0;
701 DC_InitDC( dc );
702 GDI_ReleaseObj( dc->hSelf );
703 if (origDC) GDI_ReleaseObj( hdc );
704 return dc->hSelf;
708 /***********************************************************************
709 * DeleteDC (GDI.68)
711 BOOL16 WINAPI DeleteDC16( HDC16 hdc )
713 return DeleteDC( hdc );
717 /***********************************************************************
718 * DeleteDC (GDI32.@)
720 BOOL WINAPI DeleteDC( HDC hdc )
722 const DC_FUNCTIONS *funcs = NULL;
723 DC * dc;
725 TRACE("%04x\n", hdc );
727 GDI_CheckNotLock();
729 if (!(dc = GDI_GetObjPtr( hdc, DC_MAGIC ))) return FALSE;
731 /* Call hook procedure to check whether is it OK to delete this DC */
732 if (dc->hookThunk && !(dc->flags & (DC_SAVED | DC_MEMORY)))
734 DCHOOKPROC proc = dc->hookThunk;
735 if (proc)
737 DWORD data = dc->dwHookData;
738 GDI_ReleaseObj( hdc );
739 if (!proc( hdc, DCHC_DELETEDC, data, 0 )) return FALSE;
740 if (!(dc = DC_GetDCPtr( hdc ))) return FALSE;
744 while (dc->saveLevel)
746 DC * dcs;
747 HDC16 hdcs = dc->header.hNext;
748 if (!(dcs = GDI_GetObjPtr( hdcs, DC_MAGIC ))) break;
749 dc->header.hNext = dcs->header.hNext;
750 dc->saveLevel--;
751 GDI_ReleaseObj( hdcs );
752 DeleteDC( hdcs );
755 if (!(dc->flags & DC_SAVED))
757 SelectObject( hdc, GetStockObject(BLACK_PEN) );
758 SelectObject( hdc, GetStockObject(WHITE_BRUSH) );
759 SelectObject( hdc, GetStockObject(SYSTEM_FONT) );
760 SelectObject( hdc, GetStockObject(DEFAULT_BITMAP) );
761 funcs = dc->funcs;
762 if (dc->funcs->pDeleteDC) dc->funcs->pDeleteDC(dc);
765 if (dc->hClipRgn) DeleteObject( dc->hClipRgn );
766 if (dc->hVisRgn) DeleteObject( dc->hVisRgn );
767 if (dc->hGCClipRgn) DeleteObject( dc->hGCClipRgn );
768 if (dc->pAbortProc) THUNK_Free( (FARPROC)dc->pAbortProc );
769 if (dc->hookThunk) THUNK_Free( (FARPROC)dc->hookThunk );
770 PATH_DestroyGdiPath(&dc->path);
772 GDI_FreeObject( hdc, dc );
773 if (funcs) DRIVER_release_driver( funcs ); /* do that after releasing the GDI lock */
774 return TRUE;
778 /***********************************************************************
779 * ResetDC (GDI.376)
781 HDC16 WINAPI ResetDC16( HDC16 hdc, const DEVMODEA *devmode )
783 FIXME("stub\n" );
784 return hdc;
788 /***********************************************************************
789 * ResetDCA (GDI32.@)
791 HDC WINAPI ResetDCA( HDC hdc, const DEVMODEA *devmode )
793 FIXME("stub\n" );
794 return hdc;
798 /***********************************************************************
799 * ResetDCW (GDI32.@)
801 HDC WINAPI ResetDCW( HDC hdc, const DEVMODEW *devmode )
803 FIXME("stub\n" );
804 return hdc;
808 /***********************************************************************
809 * GetDeviceCaps (GDI.80)
811 INT16 WINAPI GetDeviceCaps16( HDC16 hdc, INT16 cap )
813 INT16 ret = GetDeviceCaps( hdc, cap );
814 /* some apps don't expect -1 and think it's a B&W screen */
815 if ((cap == NUMCOLORS) && (ret == -1)) ret = 2048;
816 return ret;
820 /***********************************************************************
821 * GetDeviceCaps (GDI32.@)
823 INT WINAPI GetDeviceCaps( HDC hdc, INT cap )
825 DC *dc;
826 INT ret = 0;
828 if ((dc = DC_GetDCPtr( hdc )))
830 if (dc->funcs->pGetDeviceCaps) ret = dc->funcs->pGetDeviceCaps( dc, cap );
831 GDI_ReleaseObj( hdc );
833 return ret;
837 /***********************************************************************
838 * SetBkColor (GDI.1)
840 COLORREF WINAPI SetBkColor16( HDC16 hdc, COLORREF color )
842 return SetBkColor( hdc, color );
846 /***********************************************************************
847 * SetBkColor (GDI32.@)
849 COLORREF WINAPI SetBkColor( HDC hdc, COLORREF color )
851 COLORREF oldColor;
852 DC * dc = DC_GetDCPtr( hdc );
854 if (!dc) return 0x80000000;
855 if (dc->funcs->pSetBkColor)
856 oldColor = dc->funcs->pSetBkColor(dc, color);
857 else {
858 oldColor = dc->backgroundColor;
859 dc->backgroundColor = color;
861 GDI_ReleaseObj( hdc );
862 return oldColor;
866 /***********************************************************************
867 * SetTextColor (GDI.9)
869 COLORREF WINAPI SetTextColor16( HDC16 hdc, COLORREF color )
871 return SetTextColor( hdc, color );
875 /***********************************************************************
876 * SetTextColor (GDI32.@)
878 COLORREF WINAPI SetTextColor( HDC hdc, COLORREF color )
880 COLORREF oldColor;
881 DC * dc = DC_GetDCPtr( hdc );
883 if (!dc) return 0x80000000;
884 if (dc->funcs->pSetTextColor)
885 oldColor = dc->funcs->pSetTextColor(dc, color);
886 else {
887 oldColor = dc->textColor;
888 dc->textColor = color;
890 GDI_ReleaseObj( hdc );
891 return oldColor;
894 /***********************************************************************
895 * SetTextAlign (GDI.346)
897 UINT16 WINAPI SetTextAlign16( HDC16 hdc, UINT16 align )
899 return SetTextAlign( hdc, align );
903 /***********************************************************************
904 * SetTextAlign (GDI32.@)
906 UINT WINAPI SetTextAlign( HDC hdc, UINT align )
908 UINT prevAlign;
909 DC *dc = DC_GetDCPtr( hdc );
910 if (!dc) return 0x0;
911 if (dc->funcs->pSetTextAlign)
912 prevAlign = dc->funcs->pSetTextAlign(dc, align);
913 else {
914 prevAlign = dc->textAlign;
915 dc->textAlign = align;
917 GDI_ReleaseObj( hdc );
918 return prevAlign;
921 /***********************************************************************
922 * GetDCOrgEx (GDI32.@)
924 BOOL WINAPI GetDCOrgEx( HDC hDC, LPPOINT lpp )
926 DC * dc;
928 if (!lpp) return FALSE;
929 if (!(dc = DC_GetDCPtr( hDC ))) return FALSE;
931 lpp->x = lpp->y = 0;
932 if (dc->funcs->pGetDCOrgEx) dc->funcs->pGetDCOrgEx( dc, lpp );
933 lpp->x += dc->DCOrgX;
934 lpp->y += dc->DCOrgY;
935 GDI_ReleaseObj( hDC );
936 return TRUE;
940 /***********************************************************************
941 * GetDCOrg (GDI.79)
943 DWORD WINAPI GetDCOrg16( HDC16 hdc )
945 POINT pt;
946 if( GetDCOrgEx( hdc, &pt) )
947 return MAKELONG( (WORD)pt.x, (WORD)pt.y );
948 return 0;
952 /***********************************************************************
953 * SetDCOrg (GDI.117)
955 DWORD WINAPI SetDCOrg16( HDC16 hdc, INT16 x, INT16 y )
957 DWORD prevOrg;
958 DC *dc = DC_GetDCPtr( hdc );
959 if (!dc) return 0;
960 prevOrg = dc->DCOrgX | (dc->DCOrgY << 16);
961 dc->DCOrgX = x;
962 dc->DCOrgY = y;
963 GDI_ReleaseObj( hdc );
964 return prevOrg;
968 /***********************************************************************
969 * SetGraphicsMode (GDI32.@)
971 INT WINAPI SetGraphicsMode( HDC hdc, INT mode )
973 INT ret = 0;
974 DC *dc = DC_GetDCPtr( hdc );
976 /* One would think that setting the graphics mode to GM_COMPATIBLE
977 * would also reset the world transformation matrix to the unity
978 * matrix. However, in Windows, this is not the case. This doesn't
979 * make a lot of sense to me, but that's the way it is.
981 if (!dc) return 0;
982 if ((mode > 0) || (mode <= GM_LAST))
984 ret = dc->GraphicsMode;
985 dc->GraphicsMode = mode;
987 GDI_ReleaseObj( hdc );
988 return ret;
992 /***********************************************************************
993 * SetArcDirection (GDI.525)
995 INT16 WINAPI SetArcDirection16( HDC16 hdc, INT16 nDirection )
997 return SetArcDirection( (HDC)hdc, (INT)nDirection );
1001 /***********************************************************************
1002 * SetArcDirection (GDI32.@)
1004 INT WINAPI SetArcDirection( HDC hdc, INT nDirection )
1006 DC * dc;
1007 INT nOldDirection = 0;
1009 if (nDirection!=AD_COUNTERCLOCKWISE && nDirection!=AD_CLOCKWISE)
1011 SetLastError(ERROR_INVALID_PARAMETER);
1012 return 0;
1015 if ((dc = DC_GetDCPtr( hdc )))
1017 nOldDirection = dc->ArcDirection;
1018 dc->ArcDirection = nDirection;
1019 GDI_ReleaseObj( hdc );
1021 return nOldDirection;
1025 /***********************************************************************
1026 * GetWorldTransform (GDI32.@)
1028 BOOL WINAPI GetWorldTransform( HDC hdc, LPXFORM xform )
1030 DC * dc;
1031 if (!xform) return FALSE;
1032 if (!(dc = DC_GetDCPtr( hdc ))) return FALSE;
1033 *xform = dc->xformWorld2Wnd;
1034 GDI_ReleaseObj( hdc );
1035 return TRUE;
1039 /***********************************************************************
1040 * SetWorldTransform (GDI32.@)
1042 BOOL WINAPI SetWorldTransform( HDC hdc, const XFORM *xform )
1044 BOOL ret = FALSE;
1045 DC *dc = DC_GetDCPtr( hdc );
1047 if (!dc) return FALSE;
1048 if (!xform) goto done;
1050 /* Check that graphics mode is GM_ADVANCED */
1051 if (dc->GraphicsMode!=GM_ADVANCED) goto done;
1053 dc->xformWorld2Wnd = *xform;
1054 DC_UpdateXforms( dc );
1055 ret = TRUE;
1056 done:
1057 GDI_ReleaseObj( hdc );
1058 return ret;
1062 /****************************************************************************
1063 * ModifyWorldTransform [GDI32.@]
1064 * Modifies the world transformation for a device context.
1066 * PARAMS
1067 * hdc [I] Handle to device context
1068 * xform [I] XFORM structure that will be used to modify the world
1069 * transformation
1070 * iMode [I] Specifies in what way to modify the world transformation
1071 * Possible values:
1072 * MWT_IDENTITY
1073 * Resets the world transformation to the identity matrix.
1074 * The parameter xform is ignored.
1075 * MWT_LEFTMULTIPLY
1076 * Multiplies xform into the world transformation matrix from
1077 * the left.
1078 * MWT_RIGHTMULTIPLY
1079 * Multiplies xform into the world transformation matrix from
1080 * the right.
1082 * RETURNS STD
1084 BOOL WINAPI ModifyWorldTransform( HDC hdc, const XFORM *xform,
1085 DWORD iMode )
1087 BOOL ret = FALSE;
1088 DC *dc = DC_GetDCPtr( hdc );
1090 /* Check for illegal parameters */
1091 if (!dc) return FALSE;
1092 if (!xform) goto done;
1094 /* Check that graphics mode is GM_ADVANCED */
1095 if (dc->GraphicsMode!=GM_ADVANCED) goto done;
1097 switch (iMode)
1099 case MWT_IDENTITY:
1100 dc->xformWorld2Wnd.eM11 = 1.0f;
1101 dc->xformWorld2Wnd.eM12 = 0.0f;
1102 dc->xformWorld2Wnd.eM21 = 0.0f;
1103 dc->xformWorld2Wnd.eM22 = 1.0f;
1104 dc->xformWorld2Wnd.eDx = 0.0f;
1105 dc->xformWorld2Wnd.eDy = 0.0f;
1106 break;
1107 case MWT_LEFTMULTIPLY:
1108 CombineTransform( &dc->xformWorld2Wnd, xform,
1109 &dc->xformWorld2Wnd );
1110 break;
1111 case MWT_RIGHTMULTIPLY:
1112 CombineTransform( &dc->xformWorld2Wnd, &dc->xformWorld2Wnd,
1113 xform );
1114 break;
1115 default:
1116 goto done;
1119 DC_UpdateXforms( dc );
1120 ret = TRUE;
1121 done:
1122 GDI_ReleaseObj( hdc );
1123 return ret;
1127 /****************************************************************************
1128 * CombineTransform [GDI32.@]
1129 * Combines two transformation matrices.
1131 * PARAMS
1132 * xformResult [O] Stores the result of combining the two matrices
1133 * xform1 [I] Specifies the first matrix to apply
1134 * xform2 [I] Specifies the second matrix to apply
1136 * REMARKS
1137 * The same matrix can be passed in for more than one of the parameters.
1139 * RETURNS STD
1141 BOOL WINAPI CombineTransform( LPXFORM xformResult, const XFORM *xform1,
1142 const XFORM *xform2 )
1144 XFORM xformTemp;
1146 /* Check for illegal parameters */
1147 if (!xformResult || !xform1 || !xform2)
1148 return FALSE;
1150 /* Create the result in a temporary XFORM, since xformResult may be
1151 * equal to xform1 or xform2 */
1152 xformTemp.eM11 = xform1->eM11 * xform2->eM11 +
1153 xform1->eM12 * xform2->eM21;
1154 xformTemp.eM12 = xform1->eM11 * xform2->eM12 +
1155 xform1->eM12 * xform2->eM22;
1156 xformTemp.eM21 = xform1->eM21 * xform2->eM11 +
1157 xform1->eM22 * xform2->eM21;
1158 xformTemp.eM22 = xform1->eM21 * xform2->eM12 +
1159 xform1->eM22 * xform2->eM22;
1160 xformTemp.eDx = xform1->eDx * xform2->eM11 +
1161 xform1->eDy * xform2->eM21 +
1162 xform2->eDx;
1163 xformTemp.eDy = xform1->eDx * xform2->eM12 +
1164 xform1->eDy * xform2->eM22 +
1165 xform2->eDy;
1167 /* Copy the result to xformResult */
1168 *xformResult = xformTemp;
1170 return TRUE;
1174 /***********************************************************************
1175 * SetDCHook (GDI.190)
1178 /* ### start build ### */
1179 extern WORD CALLBACK GDI_CallTo16_word_wwll(FARPROC16,WORD,WORD,LONG,LONG);
1180 /* ### stop build ### */
1182 /**********************************************************************/
1184 BOOL16 WINAPI SetDCHook( HDC16 hdc, FARPROC16 hookProc, DWORD dwHookData )
1186 DC *dc = DC_GetDCPtr( hdc );
1187 if (!dc) return FALSE;
1190 * Note: We store the original SEGPTR 'hookProc' as we need to be
1191 * able to return it verbatim in GetDCHook,
1193 * On the other hand, we still call THUNK_Alloc and store the
1194 * 32-bit thunk into another DC member, because THUNK_Alloc
1195 * recognizes the (typical) case that the 'hookProc' is indeed
1196 * the 16-bit API entry point of a built-in routine (e.g. DCHook16)
1198 * We could perform that test every time the hook is about to
1199 * be called (or else we could live with the 32->16->32 detour),
1200 * but this way is the most efficient ...
1203 dc->hookProc = hookProc;
1204 dc->dwHookData = dwHookData;
1206 THUNK_Free( (FARPROC)dc->hookThunk );
1207 dc->hookThunk = (DCHOOKPROC)
1208 THUNK_Alloc( hookProc, (RELAY)GDI_CallTo16_word_wwll );
1210 GDI_ReleaseObj( hdc );
1211 return TRUE;
1215 /***********************************************************************
1216 * GetDCHook (GDI.191)
1218 DWORD WINAPI GetDCHook( HDC16 hdc, FARPROC16 *phookProc )
1220 DC *dc = DC_GetDCPtr( hdc );
1221 if (!dc) return 0;
1222 *phookProc = dc->hookProc;
1223 GDI_ReleaseObj( hdc );
1224 return dc->dwHookData;
1228 /***********************************************************************
1229 * SetHookFlags (GDI.192)
1231 WORD WINAPI SetHookFlags16(HDC16 hDC, WORD flags)
1233 DC *dc = DC_GetDCPtr( hDC );
1235 if( dc )
1237 WORD wRet = dc->flags & DC_DIRTY;
1239 /* "Undocumented Windows" info is slightly confusing.
1242 TRACE("hDC %04x, flags %04x\n",hDC,flags);
1244 if( flags & DCHF_INVALIDATEVISRGN )
1245 dc->flags |= DC_DIRTY;
1246 else if( flags & DCHF_VALIDATEVISRGN || !flags )
1247 dc->flags &= ~DC_DIRTY;
1248 GDI_ReleaseObj( hDC );
1249 return wRet;
1251 return 0;
1254 /***********************************************************************
1255 * SetICMMode (GDI32.@)
1257 INT WINAPI SetICMMode(HDC hdc, INT iEnableICM)
1259 /*FIXME Asuming that ICM is always off, and cannot be turned on */
1260 if (iEnableICM == ICM_OFF) return ICM_OFF;
1261 if (iEnableICM == ICM_ON) return 0;
1262 if (iEnableICM == ICM_QUERY) return ICM_OFF;
1263 return 0;
1266 /***********************************************************************
1267 * GetDeviceGammaRamp (GDI32.@)
1269 BOOL WINAPI GetDeviceGammaRamp(HDC hDC, LPVOID ptr)
1271 BOOL ret = FALSE;
1272 DC *dc = DC_GetDCPtr( hDC );
1274 if( dc )
1276 if (dc->funcs->pGetDeviceGammaRamp)
1277 ret = dc->funcs->pGetDeviceGammaRamp(dc, ptr);
1278 GDI_ReleaseObj( hDC );
1280 return ret;
1283 /***********************************************************************
1284 * SetDeviceGammaRamp (GDI32.@)
1286 BOOL WINAPI SetDeviceGammaRamp(HDC hDC, LPVOID ptr)
1288 BOOL ret = FALSE;
1289 DC *dc = DC_GetDCPtr( hDC );
1291 if( dc )
1293 if (dc->funcs->pSetDeviceGammaRamp)
1294 ret = dc->funcs->pSetDeviceGammaRamp(dc, ptr);
1295 GDI_ReleaseObj( hDC );
1297 return ret;
1300 /***********************************************************************
1301 * GetColorSpace (GDI32.@)
1303 HCOLORSPACE WINAPI GetColorSpace(HDC hdc)
1305 /*FIXME Need to to whatever GetColorSpace actually does */
1306 return 0;
1309 /***********************************************************************
1310 * CreateColorSpaceA (GDI32.@)
1312 HCOLORSPACE WINAPI CreateColorSpaceA( LPLOGCOLORSPACEA lpLogColorSpace )
1314 FIXME( "stub\n" );
1315 return 0;
1318 /***********************************************************************
1319 * CreateColorSpaceW (GDI32.@)
1321 HCOLORSPACE WINAPI CreateColorSpaceW( LPLOGCOLORSPACEW lpLogColorSpace )
1323 FIXME( "stub\n" );
1324 return 0;
1327 /***********************************************************************
1328 * DeleteColorSpace (GDI32.@)
1330 BOOL WINAPI DeleteColorSpace( HCOLORSPACE hColorSpace )
1332 FIXME( "stub\n" );
1334 return TRUE;
1337 /***********************************************************************
1338 * SetColorSpace (GDI32.@)
1340 HCOLORSPACE WINAPI SetColorSpace( HDC hDC, HCOLORSPACE hColorSpace )
1342 FIXME( "stub\n" );
1344 return hColorSpace;
1347 /***********************************************************************
1348 * GetBoundsRect (GDI.194)
1350 UINT16 WINAPI GetBoundsRect16(HDC16 hdc, LPRECT16 rect, UINT16 flags)
1352 return DCB_RESET | DCB_DISABLE; /* bounding rectangle always empty and disabled*/
1355 /***********************************************************************
1356 * GetBoundsRect (GDI32.@)
1358 UINT WINAPI GetBoundsRect(HDC hdc, LPRECT rect, UINT flags)
1360 FIXME("(): stub\n");
1361 return DCB_RESET; /* bounding rectangle always empty */
1364 /***********************************************************************
1365 * SetBoundsRect (GDI.193)
1367 UINT16 WINAPI SetBoundsRect16(HDC16 hdc, const RECT16* rect, UINT16 flags)
1369 if ( (flags & DCB_ACCUMULATE) || (flags & DCB_ENABLE) )
1370 FIXME("(%04x, %p, %04x): stub\n", hdc, rect, flags );
1372 return DCB_RESET | DCB_DISABLE; /* bounding rectangle always empty and disabled*/
1375 /***********************************************************************
1376 * SetBoundsRect (GDI32.@)
1378 UINT WINAPI SetBoundsRect(HDC hdc, const RECT* rect, UINT flags)
1380 FIXME("(): stub\n");
1381 return DCB_DISABLE; /* bounding rectangle always empty */
1385 /***********************************************************************
1386 * GetRelAbs (GDI32.@)
1388 INT WINAPI GetRelAbs( HDC hdc, DWORD dwIgnore )
1390 INT ret = 0;
1391 DC *dc = DC_GetDCPtr( hdc );
1392 if (dc) ret = dc->relAbsMode;
1393 GDI_ReleaseObj( hdc );
1394 return ret;
1397 /***********************************************************************
1398 * Death (GDI.121)
1400 * Disables GDI, switches back to text mode.
1401 * We don't have to do anything here,
1402 * just let console support handle everything
1404 void WINAPI Death16(HDC16 hDC)
1406 MESSAGE("Death(%04x) called. Application enters text mode...\n", hDC);
1409 /***********************************************************************
1410 * Resurrection (GDI.122)
1412 * Restores GDI functionality
1414 void WINAPI Resurrection16(HDC16 hDC,
1415 WORD w1, WORD w2, WORD w3, WORD w4, WORD w5, WORD w6)
1417 MESSAGE("Resurrection(%04x, %04x, %04x, %04x, %04x, %04x, %04x) called. Application left text mode.\n", hDC, w1, w2, w3, w4, w5, w6);
1420 /***********************************************************************
1421 * GetLayout (GDI32.@)
1423 * Gets left->right or right->left text layout flags of a dc.
1424 * win98 just returns 0 and sets ERROR_CALL_NOT_IMPLEMENTED so we do the same
1427 DWORD WINAPI GetLayout(HDC hdc)
1429 FIXME("(%08x): stub\n", hdc);
1430 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1431 return 0;
1434 /***********************************************************************
1435 * SetLayout (GDI32.@)
1437 * Sets left->right or right->left text layout flags of a dc.
1438 * win98 just returns 0 and sets ERROR_CALL_NOT_IMPLEMENTED so we do the same
1441 DWORD WINAPI SetLayout(HDC hdc, DWORD layout)
1443 FIXME("(%08x,%08lx): stub\n", hdc, layout);
1444 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
1445 return 0;