gdi32: Add a skeleton dib driver.
[wine/wine-gecko.git] / dlls / gdi32 / gdi_private.h
blob5849d882c07ed2c49389a5b68f1d9116b0650860
1 /*
2 * GDI definitions
4 * Copyright 1993 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_GDI_PRIVATE_H
22 #define __WINE_GDI_PRIVATE_H
24 #include <math.h>
25 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
30 /* Metafile defines */
31 #define META_EOF 0x0000
32 /* values of mtType in METAHEADER. Note however that the disk image of a disk
33 based metafile has mtType == 1 */
34 #define METAFILE_MEMORY 1
35 #define METAFILE_DISK 2
36 #define MFHEADERSIZE (sizeof(METAHEADER))
37 #define MFVERSION 0x300
39 typedef struct {
40 EMR emr;
41 INT nBreakExtra;
42 INT nBreakCount;
43 } EMRSETTEXTJUSTIFICATION, *PEMRSETTEXTJUSTIFICATION;
45 /* extra stock object: default 1x1 bitmap for memory DCs */
46 #define DEFAULT_BITMAP (STOCK_LAST+1)
48 struct gdi_obj_funcs
50 HGDIOBJ (*pSelectObject)( HGDIOBJ handle, HDC hdc );
51 INT (*pGetObjectA)( HGDIOBJ handle, INT count, LPVOID buffer );
52 INT (*pGetObjectW)( HGDIOBJ handle, INT count, LPVOID buffer );
53 BOOL (*pUnrealizeObject)( HGDIOBJ handle );
54 BOOL (*pDeleteObject)( HGDIOBJ handle );
57 struct hdc_list
59 HDC hdc;
60 struct hdc_list *next;
63 typedef struct tagGDIOBJHDR
65 WORD type; /* object type (one of the OBJ_* constants) */
66 WORD system : 1; /* system object flag */
67 WORD deleted : 1; /* whether DeleteObject has been called on this object */
68 DWORD selcount; /* number of times the object is selected in a DC */
69 const struct gdi_obj_funcs *funcs;
70 struct hdc_list *hdcs;
71 } GDIOBJHDR;
73 /* Device functions for the Wine driver interface */
75 typedef struct gdi_physdev
77 const struct tagDC_FUNCS *funcs;
78 struct gdi_physdev *next;
79 HDC hdc;
80 } *PHYSDEV;
82 typedef struct
84 int bit_count, width, height;
85 int stride; /* stride in bytes. Will be -ve for bottom-up dibs (see bits). */
86 void *bits; /* points to the top-left corner of the dib. */
88 DWORD red_mask, green_mask, blue_mask;
89 } dib_info;
91 typedef struct dibdrv_physdev
93 struct gdi_physdev dev;
94 dib_info dib;
95 } dibdrv_physdev;
97 typedef struct tagDC_FUNCS
99 INT (CDECL *pAbortDoc)(PHYSDEV);
100 BOOL (CDECL *pAbortPath)(PHYSDEV);
101 BOOL (CDECL *pAlphaBlend)(PHYSDEV,INT,INT,INT,INT,PHYSDEV,INT,INT,INT,INT,BLENDFUNCTION);
102 BOOL (CDECL *pAngleArc)(PHYSDEV,INT,INT,DWORD,FLOAT,FLOAT);
103 BOOL (CDECL *pArc)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
104 BOOL (CDECL *pArcTo)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
105 BOOL (CDECL *pBeginPath)(PHYSDEV);
106 INT (CDECL *pChoosePixelFormat)(PHYSDEV,const PIXELFORMATDESCRIPTOR *);
107 BOOL (CDECL *pChord)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
108 BOOL (CDECL *pCloseFigure)(PHYSDEV);
109 BOOL (CDECL *pCreateBitmap)(PHYSDEV,HBITMAP,LPVOID);
110 BOOL (CDECL *pCreateDC)(HDC,PHYSDEV *,LPCWSTR,LPCWSTR,LPCWSTR,const DEVMODEW*);
111 HBITMAP (CDECL *pCreateDIBSection)(PHYSDEV,HBITMAP,const BITMAPINFO *,UINT);
112 BOOL (CDECL *pDeleteBitmap)(HBITMAP);
113 BOOL (CDECL *pDeleteDC)(PHYSDEV);
114 BOOL (CDECL *pDeleteObject)(PHYSDEV,HGDIOBJ);
115 INT (CDECL *pDescribePixelFormat)(PHYSDEV,INT,UINT,PIXELFORMATDESCRIPTOR *);
116 DWORD (CDECL *pDeviceCapabilities)(LPSTR,LPCSTR,LPCSTR,WORD,LPSTR,LPDEVMODEA);
117 BOOL (CDECL *pEllipse)(PHYSDEV,INT,INT,INT,INT);
118 INT (CDECL *pEndDoc)(PHYSDEV);
119 INT (CDECL *pEndPage)(PHYSDEV);
120 BOOL (CDECL *pEndPath)(PHYSDEV);
121 BOOL (CDECL *pEnumDeviceFonts)(PHYSDEV,LPLOGFONTW,FONTENUMPROCW,LPARAM);
122 INT (CDECL *pEnumICMProfiles)(PHYSDEV,ICMENUMPROCW,LPARAM);
123 INT (CDECL *pExcludeClipRect)(PHYSDEV,INT,INT,INT,INT);
124 INT (CDECL *pExtDeviceMode)(LPSTR,HWND,LPDEVMODEA,LPSTR,LPSTR,LPDEVMODEA,LPSTR,DWORD);
125 INT (CDECL *pExtEscape)(PHYSDEV,INT,INT,LPCVOID,INT,LPVOID);
126 BOOL (CDECL *pExtFloodFill)(PHYSDEV,INT,INT,COLORREF,UINT);
127 INT (CDECL *pExtSelectClipRgn)(PHYSDEV,HRGN,INT);
128 BOOL (CDECL *pExtTextOut)(PHYSDEV,INT,INT,UINT,const RECT*,LPCWSTR,UINT,const INT*);
129 BOOL (CDECL *pFillPath)(PHYSDEV);
130 BOOL (CDECL *pFillRgn)(PHYSDEV,HRGN,HBRUSH);
131 BOOL (CDECL *pFlattenPath)(PHYSDEV);
132 BOOL (CDECL *pFrameRgn)(PHYSDEV,HRGN,HBRUSH,INT,INT);
133 BOOL (CDECL *pGdiComment)(PHYSDEV,UINT,CONST BYTE*);
134 LONG (CDECL *pGetBitmapBits)(HBITMAP,void*,LONG);
135 BOOL (CDECL *pGetCharWidth)(PHYSDEV,UINT,UINT,LPINT);
136 INT (CDECL *pGetDIBits)(PHYSDEV,HBITMAP,UINT,UINT,LPVOID,BITMAPINFO*,UINT);
137 INT (CDECL *pGetDeviceCaps)(PHYSDEV,INT);
138 BOOL (CDECL *pGetDeviceGammaRamp)(PHYSDEV,LPVOID);
139 BOOL (CDECL *pGetICMProfile)(PHYSDEV,LPDWORD,LPWSTR);
140 COLORREF (CDECL *pGetNearestColor)(PHYSDEV,COLORREF);
141 COLORREF (CDECL *pGetPixel)(PHYSDEV,INT,INT);
142 INT (CDECL *pGetPixelFormat)(PHYSDEV);
143 UINT (CDECL *pGetSystemPaletteEntries)(PHYSDEV,UINT,UINT,LPPALETTEENTRY);
144 BOOL (CDECL *pGetTextExtentExPoint)(PHYSDEV,LPCWSTR,INT,INT,LPINT,LPINT,LPSIZE);
145 BOOL (CDECL *pGetTextMetrics)(PHYSDEV,TEXTMETRICW*);
146 INT (CDECL *pIntersectClipRect)(PHYSDEV,INT,INT,INT,INT);
147 BOOL (CDECL *pInvertRgn)(PHYSDEV,HRGN);
148 BOOL (CDECL *pLineTo)(PHYSDEV,INT,INT);
149 BOOL (CDECL *pModifyWorldTransform)(PHYSDEV,const XFORM*,DWORD);
150 BOOL (CDECL *pMoveTo)(PHYSDEV,INT,INT);
151 INT (CDECL *pOffsetClipRgn)(PHYSDEV,INT,INT);
152 BOOL (CDECL *pOffsetViewportOrgEx)(PHYSDEV,INT,INT,POINT*);
153 BOOL (CDECL *pOffsetWindowOrgEx)(PHYSDEV,INT,INT,POINT*);
154 BOOL (CDECL *pPaintRgn)(PHYSDEV,HRGN);
155 BOOL (CDECL *pPatBlt)(PHYSDEV,INT,INT,INT,INT,DWORD);
156 BOOL (CDECL *pPie)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
157 BOOL (CDECL *pPolyBezier)(PHYSDEV,const POINT*,DWORD);
158 BOOL (CDECL *pPolyBezierTo)(PHYSDEV,const POINT*,DWORD);
159 BOOL (CDECL *pPolyDraw)(PHYSDEV,const POINT*,const BYTE *,DWORD);
160 BOOL (CDECL *pPolyPolygon)(PHYSDEV,const POINT*,const INT*,UINT);
161 BOOL (CDECL *pPolyPolyline)(PHYSDEV,const POINT*,const DWORD*,DWORD);
162 BOOL (CDECL *pPolygon)(PHYSDEV,const POINT*,INT);
163 BOOL (CDECL *pPolyline)(PHYSDEV,const POINT*,INT);
164 BOOL (CDECL *pPolylineTo)(PHYSDEV,const POINT*,INT);
165 UINT (CDECL *pRealizeDefaultPalette)(PHYSDEV);
166 UINT (CDECL *pRealizePalette)(PHYSDEV,HPALETTE,BOOL);
167 BOOL (CDECL *pRectangle)(PHYSDEV,INT,INT,INT,INT);
168 HDC (CDECL *pResetDC)(PHYSDEV,const DEVMODEW*);
169 BOOL (CDECL *pRestoreDC)(PHYSDEV,INT);
170 BOOL (CDECL *pRoundRect)(PHYSDEV,INT,INT,INT,INT,INT,INT);
171 INT (CDECL *pSaveDC)(PHYSDEV);
172 BOOL (CDECL *pScaleViewportExtEx)(PHYSDEV,INT,INT,INT,INT,SIZE*);
173 BOOL (CDECL *pScaleWindowExtEx)(PHYSDEV,INT,INT,INT,INT,SIZE*);
174 HBITMAP (CDECL *pSelectBitmap)(PHYSDEV,HBITMAP);
175 HBRUSH (CDECL *pSelectBrush)(PHYSDEV,HBRUSH);
176 BOOL (CDECL *pSelectClipPath)(PHYSDEV,INT);
177 HFONT (CDECL *pSelectFont)(PHYSDEV,HFONT,HANDLE);
178 HPALETTE (CDECL *pSelectPalette)(PHYSDEV,HPALETTE,BOOL);
179 HPEN (CDECL *pSelectPen)(PHYSDEV,HPEN);
180 INT (CDECL *pSetArcDirection)(PHYSDEV,INT);
181 LONG (CDECL *pSetBitmapBits)(HBITMAP,const void*,LONG);
182 COLORREF (CDECL *pSetBkColor)(PHYSDEV,COLORREF);
183 INT (CDECL *pSetBkMode)(PHYSDEV,INT);
184 COLORREF (CDECL *pSetDCBrushColor)(PHYSDEV, COLORREF);
185 COLORREF (CDECL *pSetDCPenColor)(PHYSDEV, COLORREF);
186 UINT (CDECL *pSetDIBColorTable)(PHYSDEV,UINT,UINT,const RGBQUAD*);
187 INT (CDECL *pSetDIBits)(PHYSDEV,HBITMAP,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
188 INT (CDECL *pSetDIBitsToDevice)(PHYSDEV,INT,INT,DWORD,DWORD,INT,INT,UINT,UINT,LPCVOID,
189 const BITMAPINFO*,UINT);
190 VOID (CDECL *pSetDeviceClipping)(PHYSDEV,HRGN,HRGN);
191 BOOL (CDECL *pSetDeviceGammaRamp)(PHYSDEV,LPVOID);
192 DWORD (CDECL *pSetLayout)(PHYSDEV,DWORD);
193 INT (CDECL *pSetMapMode)(PHYSDEV,INT);
194 DWORD (CDECL *pSetMapperFlags)(PHYSDEV,DWORD);
195 COLORREF (CDECL *pSetPixel)(PHYSDEV,INT,INT,COLORREF);
196 BOOL (CDECL *pSetPixelFormat)(PHYSDEV,INT,const PIXELFORMATDESCRIPTOR *);
197 INT (CDECL *pSetPolyFillMode)(PHYSDEV,INT);
198 INT (CDECL *pSetROP2)(PHYSDEV,INT);
199 INT (CDECL *pSetRelAbs)(PHYSDEV,INT);
200 INT (CDECL *pSetStretchBltMode)(PHYSDEV,INT);
201 UINT (CDECL *pSetTextAlign)(PHYSDEV,UINT);
202 INT (CDECL *pSetTextCharacterExtra)(PHYSDEV,INT);
203 COLORREF (CDECL *pSetTextColor)(PHYSDEV,COLORREF);
204 BOOL (CDECL *pSetTextJustification)(PHYSDEV,INT,INT);
205 BOOL (CDECL *pSetViewportExtEx)(PHYSDEV,INT,INT,SIZE*);
206 BOOL (CDECL *pSetViewportOrgEx)(PHYSDEV,INT,INT,POINT*);
207 BOOL (CDECL *pSetWindowExtEx)(PHYSDEV,INT,INT,SIZE*);
208 BOOL (CDECL *pSetWindowOrgEx)(PHYSDEV,INT,INT,POINT*);
209 BOOL (CDECL *pSetWorldTransform)(PHYSDEV,const XFORM*);
210 INT (CDECL *pStartDoc)(PHYSDEV,const DOCINFOW*);
211 INT (CDECL *pStartPage)(PHYSDEV);
212 BOOL (CDECL *pStretchBlt)(PHYSDEV,INT,INT,INT,INT,PHYSDEV,INT,INT,INT,INT,DWORD);
213 INT (CDECL *pStretchDIBits)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT,const void *,
214 const BITMAPINFO*,UINT,DWORD);
215 BOOL (CDECL *pStrokeAndFillPath)(PHYSDEV);
216 BOOL (CDECL *pStrokePath)(PHYSDEV);
217 BOOL (CDECL *pSwapBuffers)(PHYSDEV);
218 BOOL (CDECL *pUnrealizePalette)(HPALETTE);
219 BOOL (CDECL *pWidenPath)(PHYSDEV);
221 /* OpenGL32 */
222 BOOL (CDECL *pwglCopyContext)(HGLRC, HGLRC, UINT);
223 HGLRC (CDECL *pwglCreateContext)(PHYSDEV);
224 HGLRC (CDECL *pwglCreateContextAttribsARB)(PHYSDEV, HGLRC, const int*);
225 BOOL (CDECL *pwglDeleteContext)(HGLRC);
226 PROC (CDECL *pwglGetProcAddress)(LPCSTR);
227 HDC (CDECL *pwglGetPbufferDCARB)(PHYSDEV, void*);
228 BOOL (CDECL *pwglMakeCurrent)(PHYSDEV, HGLRC);
229 BOOL (CDECL *pwglMakeContextCurrentARB)(PHYSDEV, PHYSDEV, HGLRC);
230 BOOL (CDECL *pwglSetPixelFormatWINE)(PHYSDEV,INT,const PIXELFORMATDESCRIPTOR *);
231 BOOL (CDECL *pwglShareLists)(HGLRC hglrc1, HGLRC hglrc2);
232 BOOL (CDECL *pwglUseFontBitmapsA)(PHYSDEV, DWORD, DWORD, DWORD);
233 BOOL (CDECL *pwglUseFontBitmapsW)(PHYSDEV, DWORD, DWORD, DWORD);
234 } DC_FUNCTIONS;
236 /* It should not be necessary to access the contents of the GdiPath
237 * structure directly; if you find that the exported functions don't
238 * allow you to do what you want, then please place a new exported
239 * function that does this job in path.c.
241 typedef enum tagGdiPathState
243 PATH_Null,
244 PATH_Open,
245 PATH_Closed
246 } GdiPathState;
248 typedef struct tagGdiPath
250 GdiPathState state;
251 POINT *pPoints;
252 BYTE *pFlags;
253 int numEntriesUsed, numEntriesAllocated;
254 BOOL newStroke;
255 } GdiPath;
257 typedef struct tagGdiFont GdiFont;
259 typedef struct tagDC
261 GDIOBJHDR header;
262 HDC hSelf; /* Handle to this DC */
263 struct gdi_physdev nulldrv; /* physdev for the null driver */
264 struct dibdrv_physdev dibdrv; /* physdev for the dib driver */
265 PHYSDEV physDev; /* Physical device (driver-specific) */
266 DWORD thread; /* thread owning the DC */
267 LONG refcount; /* thread refcount */
268 LONG dirty; /* dirty flag */
269 INT saveLevel;
270 struct tagDC *saved_dc;
271 DWORD_PTR dwHookData;
272 DCHOOKPROC hookProc; /* DC hook */
274 INT wndOrgX; /* Window origin */
275 INT wndOrgY;
276 INT wndExtX; /* Window extent */
277 INT wndExtY;
278 INT vportOrgX; /* Viewport origin */
279 INT vportOrgY;
280 INT vportExtX; /* Viewport extent */
281 INT vportExtY;
282 SIZE virtual_res; /* Initially HORZRES,VERTRES. Changed by SetVirtualResolution */
283 SIZE virtual_size; /* Initially HORZSIZE,VERTSIZE. Changed by SetVirtualResolution */
284 RECT vis_rect; /* visible rectangle in screen coords */
285 FLOAT miterLimit;
287 int flags;
288 DWORD layout;
289 HRGN hClipRgn; /* Clip region (may be 0) */
290 HRGN hMetaRgn; /* Meta region (may be 0) */
291 HRGN hMetaClipRgn; /* Intersection of meta and clip regions (may be 0) */
292 HRGN hVisRgn; /* Visible region (must never be 0) */
293 HPEN hPen;
294 HBRUSH hBrush;
295 HFONT hFont;
296 HBITMAP hBitmap;
297 HANDLE hDevice;
298 HPALETTE hPalette;
300 GdiFont *gdiFont;
301 GdiPath path;
303 UINT font_code_page;
304 WORD ROPmode;
305 WORD polyFillMode;
306 WORD stretchBltMode;
307 WORD relAbsMode;
308 WORD backgroundMode;
309 COLORREF backgroundColor;
310 COLORREF textColor;
311 COLORREF dcBrushColor;
312 COLORREF dcPenColor;
313 short brushOrgX;
314 short brushOrgY;
316 DWORD mapperFlags; /* Font mapper flags */
317 WORD textAlign; /* Text alignment from SetTextAlign() */
318 INT charExtra; /* Spacing from SetTextCharacterExtra() */
319 INT breakExtra; /* breakTotalExtra / breakCount */
320 INT breakRem; /* breakTotalExtra % breakCount */
321 INT MapMode;
322 INT GraphicsMode; /* Graphics mode */
323 ABORTPROC pAbortProc; /* AbortProc for Printing */
324 INT CursPosX; /* Current position */
325 INT CursPosY;
326 INT ArcDirection;
327 XFORM xformWorld2Wnd; /* World-to-window transformation */
328 XFORM xformWorld2Vport; /* World-to-viewport transformation */
329 XFORM xformVport2World; /* Inverse of the above transformation */
330 BOOL vport2WorldValid; /* Is xformVport2World valid? */
331 RECT BoundsRect; /* Current bounding rect */
332 } DC;
334 /* DC flags */
335 #define DC_BOUNDS_ENABLE 0x0008 /* Bounding rectangle tracking is enabled */
336 #define DC_BOUNDS_SET 0x0010 /* Bounding rectangle has been set */
338 /* Certain functions will do no further processing if the driver returns this.
339 Used by mfdrv for example. */
340 #define GDI_NO_MORE_WORK 2
342 /* Rounds a floating point number to integer. The world-to-viewport
343 * transformation process is done in floating point internally. This function
344 * is then used to round these coordinates to integer values.
346 static inline INT GDI_ROUND(double val)
348 return (int)floor(val + 0.5);
351 /* bitmap object */
353 typedef struct tagBITMAPOBJ
355 GDIOBJHDR header;
356 BITMAP bitmap;
357 SIZE size; /* For SetBitmapDimension() */
358 const DC_FUNCTIONS *funcs; /* DC function table */
359 /* For device-independent bitmaps: */
360 DIBSECTION *dib;
361 RGBQUAD *color_table; /* DIB color table if <= 8bpp */
362 UINT nb_colors; /* number of colors in table */
363 } BITMAPOBJ;
365 /* bidi.c */
367 /* Wine_GCPW Flags */
368 /* Directionality -
369 * LOOSE means taking the directionality of the first strong character, if there is found one.
370 * FORCE means the paragraph direction is forced. (RLE/LRE)
372 #define WINE_GCPW_FORCE_LTR 0
373 #define WINE_GCPW_FORCE_RTL 1
374 #define WINE_GCPW_LOOSE_LTR 2
375 #define WINE_GCPW_LOOSE_RTL 3
376 #define WINE_GCPW_DIR_MASK 3
377 #define WINE_GCPW_LOOSE_MASK 2
379 extern BOOL BIDI_Reorder( HDC hDC, LPCWSTR lpString, INT uCount, DWORD dwFlags, DWORD dwWineGCP_Flags,
380 LPWSTR lpOutString, INT uCountOut, UINT *lpOrder, WORD **lpGlyphs, INT* cGlyphs ) DECLSPEC_HIDDEN;
382 /* bitmap.c */
383 extern HBITMAP BITMAP_CopyBitmap( HBITMAP hbitmap ) DECLSPEC_HIDDEN;
384 extern BOOL BITMAP_SetOwnerDC( HBITMAP hbitmap, PHYSDEV physdev ) DECLSPEC_HIDDEN;
385 extern INT BITMAP_GetWidthBytes( INT bmWidth, INT bpp ) DECLSPEC_HIDDEN;
387 /* clipping.c */
388 extern void CLIPPING_UpdateGCRegion( DC * dc ) DECLSPEC_HIDDEN;
390 /* dc.c */
391 extern DC *alloc_dc_ptr( WORD magic ) DECLSPEC_HIDDEN;
392 extern void free_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
393 extern DC *get_dc_ptr( HDC hdc ) DECLSPEC_HIDDEN;
394 extern void release_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
395 extern void update_dc( DC *dc ) DECLSPEC_HIDDEN;
396 extern void push_dc_driver( DC * dc, PHYSDEV physdev, const DC_FUNCTIONS *funcs ) DECLSPEC_HIDDEN;
397 extern void pop_dc_driver( DC * dc, PHYSDEV physdev ) DECLSPEC_HIDDEN;
398 extern void DC_InitDC( DC * dc ) DECLSPEC_HIDDEN;
399 extern void DC_UpdateXforms( DC * dc ) DECLSPEC_HIDDEN;
401 /* dib.c */
402 extern int DIB_GetDIBWidthBytes( int width, int depth ) DECLSPEC_HIDDEN;
403 extern int DIB_GetDIBImageBytes( int width, int height, int depth ) DECLSPEC_HIDDEN;
404 extern int bitmap_info_size( const BITMAPINFO * info, WORD coloruse ) DECLSPEC_HIDDEN;
405 extern int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
406 LONG *height, WORD *planes, WORD *bpp, DWORD *compr, DWORD *size ) DECLSPEC_HIDDEN;
408 /* driver.c */
409 extern const DC_FUNCTIONS null_driver DECLSPEC_HIDDEN;
410 extern const DC_FUNCTIONS dib_driver DECLSPEC_HIDDEN;
411 extern const DC_FUNCTIONS *DRIVER_get_display_driver(void) DECLSPEC_HIDDEN;
412 extern const DC_FUNCTIONS *DRIVER_load_driver( LPCWSTR name ) DECLSPEC_HIDDEN;
413 extern BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size ) DECLSPEC_HIDDEN;
415 static inline PHYSDEV get_physdev_entry_point( PHYSDEV dev, size_t offset )
417 while (!((void **)dev->funcs)[offset / sizeof(void *)]) dev = dev->next;
418 return dev;
421 #define GET_DC_PHYSDEV(dc,func) get_physdev_entry_point( (dc)->physDev, FIELD_OFFSET(DC_FUNCTIONS,func))
422 #define GET_NEXT_PHYSDEV(dev,func) get_physdev_entry_point( (dev)->next, FIELD_OFFSET(DC_FUNCTIONS,func))
424 /* enhmetafile.c */
425 extern HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk ) DECLSPEC_HIDDEN;
427 /* freetype.c */
429 /* Undocumented structure filled in by GdiRealizationInfo */
430 typedef struct
432 DWORD flags; /* 1 for bitmap fonts, 3 for scalable fonts */
433 DWORD cache_num; /* keeps incrementing - num of fonts that have been created allowing for caching?? */
434 DWORD unknown2; /* fixed for a given font - looks like it could be the order of the face in the font list or the order
435 in which the face was first rendered. */
436 } realization_info_t;
439 extern INT WineEngAddFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
440 extern HANDLE WineEngAddFontMemResourceEx(PVOID, DWORD, PVOID, LPDWORD) DECLSPEC_HIDDEN;
441 extern GdiFont* WineEngCreateFontInstance(DC*, HFONT) DECLSPEC_HIDDEN;
442 extern BOOL WineEngDestroyFontInstance(HFONT handle) DECLSPEC_HIDDEN;
443 extern DWORD WineEngEnumFonts(LPLOGFONTW, FONTENUMPROCW, LPARAM) DECLSPEC_HIDDEN;
444 extern BOOL WineEngGetCharABCWidths(GdiFont *font, UINT firstChar,
445 UINT lastChar, LPABC buffer) DECLSPEC_HIDDEN;
446 extern BOOL WineEngGetCharABCWidthsFloat(GdiFont *font, UINT firstChar,
447 UINT lastChar, LPABCFLOAT buffer) DECLSPEC_HIDDEN;
448 extern BOOL WineEngGetCharABCWidthsI(GdiFont *font, UINT firstChar,
449 UINT count, LPWORD pgi, LPABC buffer) DECLSPEC_HIDDEN;
450 extern BOOL WineEngGetCharWidth(GdiFont*, UINT, UINT, LPINT) DECLSPEC_HIDDEN;
451 extern DWORD WineEngGetFontData(GdiFont*, DWORD, DWORD, LPVOID, DWORD) DECLSPEC_HIDDEN;
452 extern DWORD WineEngGetFontUnicodeRanges(GdiFont *, LPGLYPHSET) DECLSPEC_HIDDEN;
453 extern DWORD WineEngGetGlyphIndices(GdiFont *font, LPCWSTR lpstr, INT count,
454 LPWORD pgi, DWORD flags) DECLSPEC_HIDDEN;
455 extern DWORD WineEngGetGlyphOutline(GdiFont*, UINT glyph, UINT format,
456 LPGLYPHMETRICS, DWORD buflen, LPVOID buf,
457 const MAT2*) DECLSPEC_HIDDEN;
458 extern DWORD WineEngGetKerningPairs(GdiFont*, DWORD, KERNINGPAIR *) DECLSPEC_HIDDEN;
459 extern BOOL WineEngGetLinkedHFont(DC *dc, WCHAR c, HFONT *new_hfont, UINT *glyph) DECLSPEC_HIDDEN;
460 extern UINT WineEngGetOutlineTextMetrics(GdiFont*, UINT, LPOUTLINETEXTMETRICW) DECLSPEC_HIDDEN;
461 extern UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags) DECLSPEC_HIDDEN;
462 extern BOOL WineEngGetTextExtentExPoint(GdiFont*, LPCWSTR, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
463 extern BOOL WineEngGetTextExtentExPointI(GdiFont*, const WORD *, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
464 extern INT WineEngGetTextFace(GdiFont*, INT, LPWSTR) DECLSPEC_HIDDEN;
465 extern BOOL WineEngGetTextMetrics(GdiFont*, LPTEXTMETRICW) DECLSPEC_HIDDEN;
466 extern BOOL WineEngFontIsLinked(GdiFont*) DECLSPEC_HIDDEN;
467 extern BOOL WineEngInit(void) DECLSPEC_HIDDEN;
468 extern BOOL WineEngRealizationInfo(GdiFont*, realization_info_t*) DECLSPEC_HIDDEN;
469 extern BOOL WineEngRemoveFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
471 /* gdiobj.c */
472 extern HGDIOBJ alloc_gdi_handle( GDIOBJHDR *obj, WORD type, const struct gdi_obj_funcs *funcs ) DECLSPEC_HIDDEN;
473 extern void *free_gdi_handle( HGDIOBJ handle ) DECLSPEC_HIDDEN;
474 extern void *GDI_GetObjPtr( HGDIOBJ, WORD ) DECLSPEC_HIDDEN;
475 extern void GDI_ReleaseObj( HGDIOBJ ) DECLSPEC_HIDDEN;
476 extern void GDI_CheckNotLock(void) DECLSPEC_HIDDEN;
477 extern HGDIOBJ GDI_inc_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
478 extern BOOL GDI_dec_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
479 extern BOOL GDI_hdc_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
480 extern BOOL GDI_hdc_not_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
482 /* metafile.c */
483 extern HMETAFILE MF_Create_HMETAFILE(METAHEADER *mh) DECLSPEC_HIDDEN;
484 extern METAHEADER *MF_CreateMetaHeaderDisk(METAHEADER *mr, LPCVOID filename, BOOL unicode ) DECLSPEC_HIDDEN;
486 /* path.c */
488 #define PATH_IsPathOpen(path) ((path).state==PATH_Open)
489 /* Returns TRUE if the specified path is in the open state, i.e. in the
490 * state where points will be added to the path, or FALSE otherwise. This
491 * function is implemented as a macro for performance reasons.
494 extern void PATH_InitGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
495 extern void PATH_DestroyGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
496 extern BOOL PATH_AssignGdiPath(GdiPath *pPathDest, const GdiPath *pPathSrc) DECLSPEC_HIDDEN;
498 extern BOOL PATH_MoveTo(DC *dc) DECLSPEC_HIDDEN;
499 extern BOOL PATH_LineTo(DC *dc, INT x, INT y) DECLSPEC_HIDDEN;
500 extern BOOL PATH_Rectangle(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
501 extern BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc,
502 LPCWSTR str, UINT count, const INT *dx) DECLSPEC_HIDDEN;
503 extern BOOL PATH_Ellipse(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
504 extern BOOL PATH_Arc(DC *dc, INT x1, INT y1, INT x2, INT y2,
505 INT xStart, INT yStart, INT xEnd, INT yEnd, INT lines) DECLSPEC_HIDDEN;
506 extern BOOL PATH_PolyBezierTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
507 extern BOOL PATH_PolyBezier(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
508 extern BOOL PATH_PolyDraw(DC *dc, const POINT *pts, const BYTE *types, DWORD cbCount) DECLSPEC_HIDDEN;
509 extern BOOL PATH_PolylineTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
510 extern BOOL PATH_Polyline(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
511 extern BOOL PATH_Polygon(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
512 extern BOOL PATH_PolyPolyline(DC *dc, const POINT *pt, const DWORD *counts, DWORD polylines) DECLSPEC_HIDDEN;
513 extern BOOL PATH_PolyPolygon(DC *dc, const POINT *pt, const INT *counts, UINT polygons) DECLSPEC_HIDDEN;
514 extern BOOL PATH_RoundRect(DC *dc, INT x1, INT y1, INT x2, INT y2, INT ell_width, INT ell_height) DECLSPEC_HIDDEN;
516 /* painting.c */
517 extern POINT *GDI_Bezier( const POINT *Points, INT count, INT *nPtsOut ) DECLSPEC_HIDDEN;
519 /* palette.c */
520 extern HPALETTE WINAPI GDISelectPalette( HDC hdc, HPALETTE hpal, WORD wBkg);
521 extern UINT WINAPI GDIRealizePalette( HDC hdc );
522 extern HPALETTE PALETTE_Init(void) DECLSPEC_HIDDEN;
524 /* region.c */
525 extern INT mirror_region( HRGN dst, HRGN src, INT width ) DECLSPEC_HIDDEN;
526 extern BOOL REGION_FrameRgn( HRGN dest, HRGN src, INT x, INT y ) DECLSPEC_HIDDEN;
528 /* null driver entry points */
529 extern BOOL CDECL nulldrv_AbortPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
530 extern BOOL CDECL nulldrv_AngleArc( PHYSDEV dev, INT x, INT y, DWORD radius, FLOAT start, FLOAT sweep ) DECLSPEC_HIDDEN;
531 extern BOOL CDECL nulldrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT bottom, INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
532 extern BOOL CDECL nulldrv_BeginPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
533 extern BOOL CDECL nulldrv_CloseFigure( PHYSDEV dev ) DECLSPEC_HIDDEN;
534 extern BOOL CDECL nulldrv_EndPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
535 extern INT CDECL nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
536 extern INT CDECL nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode ) DECLSPEC_HIDDEN;
537 extern BOOL CDECL nulldrv_FillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
538 extern BOOL CDECL nulldrv_FillRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush ) DECLSPEC_HIDDEN;
539 extern BOOL CDECL nulldrv_FlattenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
540 extern BOOL CDECL nulldrv_FrameRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush, INT width, INT height ) DECLSPEC_HIDDEN;
541 extern LONG CDECL nulldrv_GetBitmapBits( HBITMAP bitmap, void *bits, LONG size ) DECLSPEC_HIDDEN;
542 extern INT CDECL nulldrv_GetDIBits( PHYSDEV dev, HBITMAP bitmap, UINT start, UINT lines, LPVOID bits, BITMAPINFO *info, UINT coloruse ) DECLSPEC_HIDDEN;
543 extern COLORREF CDECL nulldrv_GetNearestColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
544 extern INT CDECL nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
545 extern BOOL CDECL nulldrv_InvertRgn( PHYSDEV dev, HRGN rgn ) DECLSPEC_HIDDEN;
546 extern BOOL CDECL nulldrv_ModifyWorldTransform( PHYSDEV dev, const XFORM *xform, DWORD mode ) DECLSPEC_HIDDEN;
547 extern INT CDECL nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
548 extern BOOL CDECL nulldrv_OffsetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
549 extern BOOL CDECL nulldrv_OffsetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
550 extern BOOL CDECL nulldrv_PolyBezier( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
551 extern BOOL CDECL nulldrv_PolyBezierTo( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
552 extern BOOL CDECL nulldrv_PolyDraw( PHYSDEV dev, const POINT *points, const BYTE *types, DWORD count ) DECLSPEC_HIDDEN;
553 extern BOOL CDECL nulldrv_PolylineTo( PHYSDEV dev, const POINT *points, INT count ) DECLSPEC_HIDDEN;
554 extern BOOL CDECL nulldrv_RestoreDC( PHYSDEV dev, INT level ) DECLSPEC_HIDDEN;
555 extern INT CDECL nulldrv_SaveDC( PHYSDEV dev ) DECLSPEC_HIDDEN;
556 extern BOOL CDECL nulldrv_ScaleViewportExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
557 extern BOOL CDECL nulldrv_ScaleWindowExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
558 extern BOOL CDECL nulldrv_SelectClipPath( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
559 extern LONG CDECL nulldrv_SetBitmapBits( HBITMAP bitmap, const void *bits, LONG size ) DECLSPEC_HIDDEN;
560 extern INT CDECL nulldrv_SetDIBits( PHYSDEV dev, HBITMAP bitmap, UINT start, UINT lines, const void *bits, const BITMAPINFO *info, UINT coloruse ) DECLSPEC_HIDDEN;
561 extern INT CDECL nulldrv_SetMapMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
562 extern BOOL CDECL nulldrv_SetViewportExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
563 extern BOOL CDECL nulldrv_SetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
564 extern BOOL CDECL nulldrv_SetWindowExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
565 extern BOOL CDECL nulldrv_SetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
566 extern BOOL CDECL nulldrv_SetWorldTransform( PHYSDEV dev, const XFORM *xform ) DECLSPEC_HIDDEN;
567 extern BOOL CDECL nulldrv_StretchBlt( PHYSDEV dst_dev, INT xDst, INT yDst, INT widthDst, INT heightDst,
568 PHYSDEV src_dev, INT xSrc, INT ySrc, INT widthSrc, INT heightSrc, DWORD rop ) DECLSPEC_HIDDEN;
569 extern INT CDECL nulldrv_StretchDIBits( PHYSDEV dev, INT xDst, INT yDst, INT widthDst, INT heightDst,
570 INT xSrc, INT ySrc, INT widthSrc, INT heightSrc, const void *bits,
571 const BITMAPINFO *info, UINT coloruse, DWORD rop ) DECLSPEC_HIDDEN;
572 extern BOOL CDECL nulldrv_StrokeAndFillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
573 extern BOOL CDECL nulldrv_StrokePath( PHYSDEV dev ) DECLSPEC_HIDDEN;
574 extern BOOL CDECL nulldrv_WidenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
576 static inline DC *get_nulldrv_dc( PHYSDEV dev )
578 return CONTAINING_RECORD( dev, DC, nulldrv );
581 /* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal entries */
582 #define DIB_PAL_MONO 2
584 BOOL WINAPI FontIsLinked(HDC);
586 BOOL WINAPI SetVirtualResolution(HDC hdc, DWORD horz_res, DWORD vert_res, DWORD horz_size, DWORD vert_size);
588 #endif /* __WINE_GDI_PRIVATE_H */