gdi32: Add null driver entry points for the clipping functions.
[wine] / dlls / gdi32 / gdi_private.h
1 /*
2  * GDI definitions
3  *
4  * Copyright 1993 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #ifndef __WINE_GDI_PRIVATE_H
22 #define __WINE_GDI_PRIVATE_H
23
24 #include <math.h>
25 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
29
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
38
39 typedef struct {
40     EMR   emr;
41     INT   nBreakExtra;
42     INT   nBreakCount;
43 } EMRSETTEXTJUSTIFICATION, *PEMRSETTEXTJUSTIFICATION;
44
45 /* extra stock object: default 1x1 bitmap for memory DCs */
46 #define DEFAULT_BITMAP (STOCK_LAST+1)
47
48 struct gdi_obj_funcs
49 {
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 );
55 };
56
57 struct hdc_list
58 {
59     HDC hdc;
60     struct hdc_list *next;
61 };
62
63 typedef struct tagGDIOBJHDR
64 {
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;
72
73 /* Device functions for the Wine driver interface */
74
75 typedef struct gdi_physdev
76 {
77     const struct tagDC_FUNCS *funcs;
78     HDC                       hdc;
79 } *PHYSDEV;
80
81 typedef struct tagDC_FUNCS
82 {
83     INT      (CDECL *pAbortDoc)(PHYSDEV);
84     BOOL     (CDECL *pAbortPath)(PHYSDEV);
85     BOOL     (CDECL *pAlphaBlend)(PHYSDEV,INT,INT,INT,INT,PHYSDEV,INT,INT,INT,INT,BLENDFUNCTION);
86     BOOL     (CDECL *pAngleArc)(PHYSDEV,INT,INT,DWORD,FLOAT,FLOAT);
87     BOOL     (CDECL *pArc)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
88     BOOL     (CDECL *pArcTo)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
89     BOOL     (CDECL *pBeginPath)(PHYSDEV);
90     BOOL     (CDECL *pBitBlt)(PHYSDEV,INT,INT,INT,INT,PHYSDEV,INT,INT,DWORD);
91     INT      (CDECL *pChoosePixelFormat)(PHYSDEV,const PIXELFORMATDESCRIPTOR *);
92     BOOL     (CDECL *pChord)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
93     BOOL     (CDECL *pCloseFigure)(PHYSDEV);
94     BOOL     (CDECL *pCreateBitmap)(PHYSDEV,HBITMAP,LPVOID);
95     BOOL     (CDECL *pCreateDC)(HDC,PHYSDEV *,LPCWSTR,LPCWSTR,LPCWSTR,const DEVMODEW*);
96     HBITMAP  (CDECL *pCreateDIBSection)(PHYSDEV,HBITMAP,const BITMAPINFO *,UINT);
97     BOOL     (CDECL *pDeleteBitmap)(HBITMAP);
98     BOOL     (CDECL *pDeleteDC)(PHYSDEV);
99     BOOL     (CDECL *pDeleteObject)(PHYSDEV,HGDIOBJ);
100     INT      (CDECL *pDescribePixelFormat)(PHYSDEV,INT,UINT,PIXELFORMATDESCRIPTOR *);
101     DWORD    (CDECL *pDeviceCapabilities)(LPSTR,LPCSTR,LPCSTR,WORD,LPSTR,LPDEVMODEA);
102     BOOL     (CDECL *pEllipse)(PHYSDEV,INT,INT,INT,INT);
103     INT      (CDECL *pEndDoc)(PHYSDEV);
104     INT      (CDECL *pEndPage)(PHYSDEV);
105     BOOL     (CDECL *pEndPath)(PHYSDEV);
106     INT      (CDECL *pEnumICMProfiles)(PHYSDEV,ICMENUMPROCW,LPARAM);
107     BOOL     (CDECL *pEnumDeviceFonts)(PHYSDEV,LPLOGFONTW,FONTENUMPROCW,LPARAM);
108     INT      (CDECL *pExcludeClipRect)(PHYSDEV,INT,INT,INT,INT);
109     INT      (CDECL *pExtDeviceMode)(LPSTR,HWND,LPDEVMODEA,LPSTR,LPSTR,LPDEVMODEA,LPSTR,DWORD);
110     INT      (CDECL *pExtEscape)(PHYSDEV,INT,INT,LPCVOID,INT,LPVOID);
111     BOOL     (CDECL *pExtFloodFill)(PHYSDEV,INT,INT,COLORREF,UINT);
112     INT      (CDECL *pExtSelectClipRgn)(PHYSDEV,HRGN,INT);
113     BOOL     (CDECL *pExtTextOut)(PHYSDEV,INT,INT,UINT,const RECT*,LPCWSTR,UINT,const INT*);
114     BOOL     (CDECL *pFillPath)(PHYSDEV);
115     BOOL     (CDECL *pFillRgn)(PHYSDEV,HRGN,HBRUSH);
116     BOOL     (CDECL *pFlattenPath)(PHYSDEV);
117     BOOL     (CDECL *pFrameRgn)(PHYSDEV,HRGN,HBRUSH,INT,INT);
118     BOOL     (CDECL *pGdiComment)(PHYSDEV,UINT,CONST BYTE*);
119     LONG     (CDECL *pGetBitmapBits)(HBITMAP,void*,LONG);
120     BOOL     (CDECL *pGetCharWidth)(PHYSDEV,UINT,UINT,LPINT);
121     INT      (CDECL *pGetDIBits)(PHYSDEV,HBITMAP,UINT,UINT,LPVOID,BITMAPINFO*,UINT);
122     INT      (CDECL *pGetDeviceCaps)(PHYSDEV,INT);
123     BOOL     (CDECL *pGetDeviceGammaRamp)(PHYSDEV,LPVOID);
124     BOOL     (CDECL *pGetICMProfile)(PHYSDEV,LPDWORD,LPWSTR);
125     COLORREF (CDECL *pGetNearestColor)(PHYSDEV,COLORREF);
126     COLORREF (CDECL *pGetPixel)(PHYSDEV,INT,INT);
127     INT      (CDECL *pGetPixelFormat)(PHYSDEV);
128     UINT     (CDECL *pGetSystemPaletteEntries)(PHYSDEV,UINT,UINT,LPPALETTEENTRY);
129     BOOL     (CDECL *pGetTextExtentExPoint)(PHYSDEV,LPCWSTR,INT,INT,LPINT,LPINT,LPSIZE);
130     BOOL     (CDECL *pGetTextMetrics)(PHYSDEV,TEXTMETRICW*);
131     INT      (CDECL *pIntersectClipRect)(PHYSDEV,INT,INT,INT,INT);
132     BOOL     (CDECL *pInvertRgn)(PHYSDEV,HRGN);
133     BOOL     (CDECL *pLineTo)(PHYSDEV,INT,INT);
134     BOOL     (CDECL *pModifyWorldTransform)(PHYSDEV,const XFORM*,DWORD);
135     BOOL     (CDECL *pMoveTo)(PHYSDEV,INT,INT);
136     INT      (CDECL *pOffsetClipRgn)(PHYSDEV,INT,INT);
137     INT      (CDECL *pOffsetViewportOrg)(PHYSDEV,INT,INT);
138     INT      (CDECL *pOffsetWindowOrg)(PHYSDEV,INT,INT);
139     BOOL     (CDECL *pPaintRgn)(PHYSDEV,HRGN);
140     BOOL     (CDECL *pPatBlt)(PHYSDEV,INT,INT,INT,INT,DWORD);
141     BOOL     (CDECL *pPie)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
142     BOOL     (CDECL *pPolyBezier)(PHYSDEV,const POINT*,DWORD);
143     BOOL     (CDECL *pPolyBezierTo)(PHYSDEV,const POINT*,DWORD);
144     BOOL     (CDECL *pPolyDraw)(PHYSDEV,const POINT*,const BYTE *,DWORD);
145     BOOL     (CDECL *pPolyPolygon)(PHYSDEV,const POINT*,const INT*,UINT);
146     BOOL     (CDECL *pPolyPolyline)(PHYSDEV,const POINT*,const DWORD*,DWORD);
147     BOOL     (CDECL *pPolygon)(PHYSDEV,const POINT*,INT);
148     BOOL     (CDECL *pPolyline)(PHYSDEV,const POINT*,INT);
149     BOOL     (CDECL *pPolylineTo)(PHYSDEV,const POINT*,INT);
150     UINT     (CDECL *pRealizeDefaultPalette)(PHYSDEV);
151     UINT     (CDECL *pRealizePalette)(PHYSDEV,HPALETTE,BOOL);
152     BOOL     (CDECL *pRectangle)(PHYSDEV,INT,INT,INT,INT);
153     HDC      (CDECL *pResetDC)(PHYSDEV,const DEVMODEW*);
154     BOOL     (CDECL *pRestoreDC)(PHYSDEV,INT);
155     BOOL     (CDECL *pRoundRect)(PHYSDEV,INT,INT,INT,INT,INT,INT);
156     INT      (CDECL *pSaveDC)(PHYSDEV);
157     INT      (CDECL *pScaleViewportExt)(PHYSDEV,INT,INT,INT,INT);
158     INT      (CDECL *pScaleWindowExt)(PHYSDEV,INT,INT,INT,INT);
159     HBITMAP  (CDECL *pSelectBitmap)(PHYSDEV,HBITMAP);
160     HBRUSH   (CDECL *pSelectBrush)(PHYSDEV,HBRUSH);
161     BOOL     (CDECL *pSelectClipPath)(PHYSDEV,INT);
162     HFONT    (CDECL *pSelectFont)(PHYSDEV,HFONT,HANDLE);
163     HPALETTE (CDECL *pSelectPalette)(PHYSDEV,HPALETTE,BOOL);
164     HPEN     (CDECL *pSelectPen)(PHYSDEV,HPEN);
165     INT      (CDECL *pSetArcDirection)(PHYSDEV,INT);
166     LONG     (CDECL *pSetBitmapBits)(HBITMAP,const void*,LONG);
167     COLORREF (CDECL *pSetBkColor)(PHYSDEV,COLORREF);
168     INT      (CDECL *pSetBkMode)(PHYSDEV,INT);
169     COLORREF (CDECL *pSetDCBrushColor)(PHYSDEV, COLORREF);
170     COLORREF (CDECL *pSetDCPenColor)(PHYSDEV, COLORREF);
171     UINT     (CDECL *pSetDIBColorTable)(PHYSDEV,UINT,UINT,const RGBQUAD*);
172     INT      (CDECL *pSetDIBits)(PHYSDEV,HBITMAP,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
173     INT      (CDECL *pSetDIBitsToDevice)(PHYSDEV,INT,INT,DWORD,DWORD,INT,INT,UINT,UINT,LPCVOID,
174                                            const BITMAPINFO*,UINT);
175     VOID     (CDECL *pSetDeviceClipping)(PHYSDEV,HRGN,HRGN);
176     BOOL     (CDECL *pSetDeviceGammaRamp)(PHYSDEV,LPVOID);
177     INT      (CDECL *pSetMapMode)(PHYSDEV,INT);
178     DWORD    (CDECL *pSetMapperFlags)(PHYSDEV,DWORD);
179     COLORREF (CDECL *pSetPixel)(PHYSDEV,INT,INT,COLORREF);
180     BOOL     (CDECL *pSetPixelFormat)(PHYSDEV,INT,const PIXELFORMATDESCRIPTOR *);
181     INT      (CDECL *pSetPolyFillMode)(PHYSDEV,INT);
182     INT      (CDECL *pSetROP2)(PHYSDEV,INT);
183     INT      (CDECL *pSetRelAbs)(PHYSDEV,INT);
184     INT      (CDECL *pSetStretchBltMode)(PHYSDEV,INT);
185     UINT     (CDECL *pSetTextAlign)(PHYSDEV,UINT);
186     INT      (CDECL *pSetTextCharacterExtra)(PHYSDEV,INT);
187     DWORD    (CDECL *pSetTextColor)(PHYSDEV,DWORD);
188     INT      (CDECL *pSetTextJustification)(PHYSDEV,INT,INT);
189     INT      (CDECL *pSetViewportExt)(PHYSDEV,INT,INT);
190     INT      (CDECL *pSetViewportOrg)(PHYSDEV,INT,INT);
191     INT      (CDECL *pSetWindowExt)(PHYSDEV,INT,INT);
192     INT      (CDECL *pSetWindowOrg)(PHYSDEV,INT,INT);
193     BOOL     (CDECL *pSetWorldTransform)(PHYSDEV,const XFORM*);
194     INT      (CDECL *pStartDoc)(PHYSDEV,const DOCINFOW*);
195     INT      (CDECL *pStartPage)(PHYSDEV);
196     BOOL     (CDECL *pStretchBlt)(PHYSDEV,INT,INT,INT,INT,PHYSDEV,INT,INT,INT,INT,DWORD);
197     INT      (CDECL *pStretchDIBits)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT,const void *,
198                                        const BITMAPINFO*,UINT,DWORD);
199     BOOL     (CDECL *pStrokeAndFillPath)(PHYSDEV);
200     BOOL     (CDECL *pStrokePath)(PHYSDEV);
201     BOOL     (CDECL *pSwapBuffers)(PHYSDEV);
202     BOOL     (CDECL *pUnrealizePalette)(HPALETTE);
203     BOOL     (CDECL *pWidenPath)(PHYSDEV);
204
205     /* OpenGL32 */
206     BOOL     (CDECL *pwglCopyContext)(HGLRC, HGLRC, UINT);
207     HGLRC    (CDECL *pwglCreateContext)(PHYSDEV);
208     HGLRC    (CDECL *pwglCreateContextAttribsARB)(PHYSDEV, HGLRC, const int*);
209     BOOL     (CDECL *pwglDeleteContext)(HGLRC);
210     PROC     (CDECL *pwglGetProcAddress)(LPCSTR);
211     HDC      (CDECL *pwglGetPbufferDCARB)(PHYSDEV, void*);
212     BOOL     (CDECL *pwglMakeCurrent)(PHYSDEV, HGLRC);
213     BOOL     (CDECL *pwglMakeContextCurrentARB)(PHYSDEV, PHYSDEV, HGLRC);
214     BOOL     (CDECL *pwglSetPixelFormatWINE)(PHYSDEV,INT,const PIXELFORMATDESCRIPTOR *);
215     BOOL     (CDECL *pwglShareLists)(HGLRC hglrc1, HGLRC hglrc2);
216     BOOL     (CDECL *pwglUseFontBitmapsA)(PHYSDEV, DWORD, DWORD, DWORD);
217     BOOL     (CDECL *pwglUseFontBitmapsW)(PHYSDEV, DWORD, DWORD, DWORD);
218 } DC_FUNCTIONS;
219
220 /* It should not be necessary to access the contents of the GdiPath
221  * structure directly; if you find that the exported functions don't
222  * allow you to do what you want, then please place a new exported
223  * function that does this job in path.c.
224  */
225 typedef enum tagGdiPathState
226 {
227    PATH_Null,
228    PATH_Open,
229    PATH_Closed
230 } GdiPathState;
231
232 typedef struct tagGdiPath
233 {
234    GdiPathState state;
235    POINT      *pPoints;
236    BYTE         *pFlags;
237    int          numEntriesUsed, numEntriesAllocated;
238    BOOL       newStroke;
239 } GdiPath;
240
241 typedef struct tagGdiFont GdiFont;
242
243 typedef struct tagDC
244 {
245     GDIOBJHDR    header;
246     HDC          hSelf;            /* Handle to this DC */
247     struct gdi_physdev nulldrv;    /* physdev for the null driver */
248     const struct tagDC_FUNCS *funcs; /* DC function table */
249     PHYSDEV      physDev;         /* Physical device (driver-specific) */
250     DWORD        thread;          /* thread owning the DC */
251     LONG         refcount;        /* thread refcount */
252     LONG         dirty;           /* dirty flag */
253     INT          saveLevel;
254     HDC          saved_dc;
255     DWORD_PTR    dwHookData;
256     DCHOOKPROC   hookProc;         /* DC hook */
257
258     INT          wndOrgX;          /* Window origin */
259     INT          wndOrgY;
260     INT          wndExtX;          /* Window extent */
261     INT          wndExtY;
262     INT          vportOrgX;        /* Viewport origin */
263     INT          vportOrgY;
264     INT          vportExtX;        /* Viewport extent */
265     INT          vportExtY;
266     SIZE         virtual_res;      /* Initially HORZRES,VERTRES. Changed by SetVirtualResolution */
267     SIZE         virtual_size;     /* Initially HORZSIZE,VERTSIZE. Changed by SetVirtualResolution */
268     RECT         vis_rect;         /* visible rectangle in screen coords */
269     FLOAT        miterLimit;
270
271     int           flags;
272     DWORD         layout;
273     HRGN          hClipRgn;      /* Clip region (may be 0) */
274     HRGN          hMetaRgn;      /* Meta region (may be 0) */
275     HRGN          hMetaClipRgn;  /* Intersection of meta and clip regions (may be 0) */
276     HRGN          hVisRgn;       /* Visible region (must never be 0) */
277     HPEN          hPen;
278     HBRUSH        hBrush;
279     HFONT         hFont;
280     HBITMAP       hBitmap;
281     HANDLE        hDevice;
282     HPALETTE      hPalette;
283
284     GdiFont      *gdiFont;
285     GdiPath       path;
286
287     UINT          font_code_page;
288     WORD          ROPmode;
289     WORD          polyFillMode;
290     WORD          stretchBltMode;
291     WORD          relAbsMode;
292     WORD          backgroundMode;
293     COLORREF      backgroundColor;
294     COLORREF      textColor;
295     COLORREF      dcBrushColor;
296     COLORREF      dcPenColor;
297     short         brushOrgX;
298     short         brushOrgY;
299
300     WORD          textAlign;         /* Text alignment from SetTextAlign() */
301     INT           charExtra;         /* Spacing from SetTextCharacterExtra() */
302     INT           breakExtra;        /* breakTotalExtra / breakCount */
303     INT           breakRem;          /* breakTotalExtra % breakCount */
304     INT           MapMode;
305     INT           GraphicsMode;      /* Graphics mode */
306     ABORTPROC     pAbortProc;        /* AbortProc for Printing */
307     INT           CursPosX;          /* Current position */
308     INT           CursPosY;
309     INT           ArcDirection;
310     XFORM         xformWorld2Wnd;    /* World-to-window transformation */
311     XFORM         xformWorld2Vport;  /* World-to-viewport transformation */
312     XFORM         xformVport2World;  /* Inverse of the above transformation */
313     BOOL          vport2WorldValid;  /* Is xformVport2World valid? */
314     RECT          BoundsRect;        /* Current bounding rect */
315 } DC;
316
317   /* DC flags */
318 #define DC_SAVED         0x0002   /* It is a saved DC */
319 #define DC_BOUNDS_ENABLE 0x0008   /* Bounding rectangle tracking is enabled */
320 #define DC_BOUNDS_SET    0x0010   /* Bounding rectangle has been set */
321
322 /* Certain functions will do no further processing if the driver returns this.
323    Used by mfdrv for example. */
324 #define GDI_NO_MORE_WORK 2
325
326 /* Rounds a floating point number to integer. The world-to-viewport
327  * transformation process is done in floating point internally. This function
328  * is then used to round these coordinates to integer values.
329  */
330 static inline INT GDI_ROUND(double val)
331 {
332    return (int)floor(val + 0.5);
333 }
334
335 /* bitmap object */
336
337 typedef struct tagBITMAPOBJ
338 {
339     GDIOBJHDR           header;
340     BITMAP              bitmap;
341     SIZE                size;   /* For SetBitmapDimension() */
342     const DC_FUNCTIONS *funcs; /* DC function table */
343     /* For device-independent bitmaps: */
344     DIBSECTION         *dib;
345     RGBQUAD            *color_table;  /* DIB color table if <= 8bpp */
346     UINT                nb_colors;    /* number of colors in table */
347 } BITMAPOBJ;
348
349 /* bidi.c */
350
351 /* Wine_GCPW Flags */
352 /* Directionality -
353  * LOOSE means taking the directionality of the first strong character, if there is found one.
354  * FORCE means the paragraph direction is forced. (RLE/LRE)
355  */
356 #define WINE_GCPW_FORCE_LTR 0
357 #define WINE_GCPW_FORCE_RTL 1
358 #define WINE_GCPW_LOOSE_LTR 2
359 #define WINE_GCPW_LOOSE_RTL 3
360 #define WINE_GCPW_DIR_MASK 3
361 #define WINE_GCPW_LOOSE_MASK 2
362
363 extern BOOL BIDI_Reorder( HDC hDC, LPCWSTR lpString, INT uCount, DWORD dwFlags, DWORD dwWineGCP_Flags,
364                           LPWSTR lpOutString, INT uCountOut, UINT *lpOrder, WORD **lpGlyphs, INT* cGlyphs ) DECLSPEC_HIDDEN;
365
366 /* bitmap.c */
367 extern HBITMAP BITMAP_CopyBitmap( HBITMAP hbitmap ) DECLSPEC_HIDDEN;
368 extern BOOL BITMAP_SetOwnerDC( HBITMAP hbitmap, DC *dc ) DECLSPEC_HIDDEN;
369 extern INT BITMAP_GetWidthBytes( INT bmWidth, INT bpp ) DECLSPEC_HIDDEN;
370
371 /* clipping.c */
372 extern void CLIPPING_UpdateGCRegion( DC * dc ) DECLSPEC_HIDDEN;
373
374 /* dc.c */
375 extern DC *alloc_dc_ptr( const DC_FUNCTIONS *funcs, WORD magic ) DECLSPEC_HIDDEN;
376 extern BOOL free_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
377 extern DC *get_dc_ptr( HDC hdc ) DECLSPEC_HIDDEN;
378 extern void release_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
379 extern void update_dc( DC *dc ) DECLSPEC_HIDDEN;
380 extern void DC_InitDC( DC * dc ) DECLSPEC_HIDDEN;
381 extern void DC_UpdateXforms( DC * dc ) DECLSPEC_HIDDEN;
382 extern INT save_dc_state( HDC hdc ) DECLSPEC_HIDDEN;
383 extern BOOL restore_dc_state( HDC hdc, INT level ) DECLSPEC_HIDDEN;
384
385 /* dib.c */
386 extern int DIB_GetDIBWidthBytes( int width, int depth ) DECLSPEC_HIDDEN;
387 extern int DIB_GetDIBImageBytes( int width, int height, int depth ) DECLSPEC_HIDDEN;
388 extern int bitmap_info_size( const BITMAPINFO * info, WORD coloruse ) DECLSPEC_HIDDEN;
389 extern int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
390                               LONG *height, WORD *planes, WORD *bpp, DWORD *compr, DWORD *size ) DECLSPEC_HIDDEN;
391
392 /* driver.c */
393 extern const DC_FUNCTIONS null_driver DECLSPEC_HIDDEN;
394 extern const DC_FUNCTIONS *DRIVER_get_display_driver(void) DECLSPEC_HIDDEN;
395 extern const DC_FUNCTIONS *DRIVER_load_driver( LPCWSTR name ) DECLSPEC_HIDDEN;
396 extern BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size ) DECLSPEC_HIDDEN;
397
398 #define GET_DC_PHYSDEV(dc,func) ((dc)->physDev->funcs->func ? (dc)->physDev : &(dc)->nulldrv)
399
400 /* enhmetafile.c */
401 extern HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk ) DECLSPEC_HIDDEN;
402
403 /* freetype.c */
404
405 /* Undocumented structure filled in by GdiRealizationInfo */
406 typedef struct
407 {
408     DWORD flags;       /* 1 for bitmap fonts, 3 for scalable fonts */
409     DWORD cache_num;   /* keeps incrementing - num of fonts that have been created allowing for caching?? */
410     DWORD unknown2;    /* fixed for a given font - looks like it could be the order of the face in the font list or the order
411                           in which the face was first rendered. */
412 } realization_info_t;
413
414
415 extern INT WineEngAddFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
416 extern HANDLE WineEngAddFontMemResourceEx(PVOID, DWORD, PVOID, LPDWORD) DECLSPEC_HIDDEN;
417 extern GdiFont* WineEngCreateFontInstance(DC*, HFONT) DECLSPEC_HIDDEN;
418 extern BOOL WineEngDestroyFontInstance(HFONT handle) DECLSPEC_HIDDEN;
419 extern DWORD WineEngEnumFonts(LPLOGFONTW, FONTENUMPROCW, LPARAM) DECLSPEC_HIDDEN;
420 extern BOOL WineEngGetCharABCWidths(GdiFont *font, UINT firstChar,
421                                     UINT lastChar, LPABC buffer) DECLSPEC_HIDDEN;
422 extern BOOL WineEngGetCharABCWidthsFloat(GdiFont *font, UINT firstChar,
423                                          UINT lastChar, LPABCFLOAT buffer) DECLSPEC_HIDDEN;
424 extern BOOL WineEngGetCharABCWidthsI(GdiFont *font, UINT firstChar,
425                                     UINT count, LPWORD pgi, LPABC buffer) DECLSPEC_HIDDEN;
426 extern BOOL WineEngGetCharWidth(GdiFont*, UINT, UINT, LPINT) DECLSPEC_HIDDEN;
427 extern DWORD WineEngGetFontData(GdiFont*, DWORD, DWORD, LPVOID, DWORD) DECLSPEC_HIDDEN;
428 extern DWORD WineEngGetFontUnicodeRanges(GdiFont *, LPGLYPHSET) DECLSPEC_HIDDEN;
429 extern DWORD WineEngGetGlyphIndices(GdiFont *font, LPCWSTR lpstr, INT count,
430                                     LPWORD pgi, DWORD flags) DECLSPEC_HIDDEN;
431 extern DWORD WineEngGetGlyphOutline(GdiFont*, UINT glyph, UINT format,
432                                     LPGLYPHMETRICS, DWORD buflen, LPVOID buf,
433                                     const MAT2*) DECLSPEC_HIDDEN;
434 extern DWORD WineEngGetKerningPairs(GdiFont*, DWORD, KERNINGPAIR *) DECLSPEC_HIDDEN;
435 extern BOOL WineEngGetLinkedHFont(DC *dc, WCHAR c, HFONT *new_hfont, UINT *glyph) DECLSPEC_HIDDEN;
436 extern UINT WineEngGetOutlineTextMetrics(GdiFont*, UINT, LPOUTLINETEXTMETRICW) DECLSPEC_HIDDEN;
437 extern UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags) DECLSPEC_HIDDEN;
438 extern BOOL WineEngGetTextExtentExPoint(GdiFont*, LPCWSTR, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
439 extern BOOL WineEngGetTextExtentExPointI(GdiFont*, const WORD *, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
440 extern INT  WineEngGetTextFace(GdiFont*, INT, LPWSTR) DECLSPEC_HIDDEN;
441 extern BOOL WineEngGetTextMetrics(GdiFont*, LPTEXTMETRICW) DECLSPEC_HIDDEN;
442 extern BOOL WineEngFontIsLinked(GdiFont*) DECLSPEC_HIDDEN;
443 extern BOOL WineEngInit(void) DECLSPEC_HIDDEN;
444 extern BOOL WineEngRealizationInfo(GdiFont*, realization_info_t*) DECLSPEC_HIDDEN;
445 extern BOOL WineEngRemoveFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
446
447 /* gdiobj.c */
448 extern HGDIOBJ alloc_gdi_handle( GDIOBJHDR *obj, WORD type, const struct gdi_obj_funcs *funcs ) DECLSPEC_HIDDEN;
449 extern void *free_gdi_handle( HGDIOBJ handle ) DECLSPEC_HIDDEN;
450 extern void *GDI_GetObjPtr( HGDIOBJ, WORD ) DECLSPEC_HIDDEN;
451 extern void GDI_ReleaseObj( HGDIOBJ ) DECLSPEC_HIDDEN;
452 extern void GDI_CheckNotLock(void) DECLSPEC_HIDDEN;
453 extern HGDIOBJ GDI_inc_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
454 extern BOOL GDI_dec_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
455 extern BOOL GDI_hdc_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
456 extern BOOL GDI_hdc_not_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
457
458 /* metafile.c */
459 extern HMETAFILE MF_Create_HMETAFILE(METAHEADER *mh) DECLSPEC_HIDDEN;
460 extern METAHEADER *MF_CreateMetaHeaderDisk(METAHEADER *mr, LPCVOID filename, BOOL unicode ) DECLSPEC_HIDDEN;
461
462 /* path.c */
463
464 #define PATH_IsPathOpen(path) ((path).state==PATH_Open)
465 /* Returns TRUE if the specified path is in the open state, i.e. in the
466  * state where points will be added to the path, or FALSE otherwise. This
467  * function is implemented as a macro for performance reasons.
468  */
469
470 extern void PATH_InitGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
471 extern void PATH_DestroyGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
472 extern BOOL PATH_AssignGdiPath(GdiPath *pPathDest, const GdiPath *pPathSrc) DECLSPEC_HIDDEN;
473
474 extern BOOL PATH_MoveTo(DC *dc) DECLSPEC_HIDDEN;
475 extern BOOL PATH_LineTo(DC *dc, INT x, INT y) DECLSPEC_HIDDEN;
476 extern BOOL PATH_Rectangle(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
477 extern BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc,
478                             LPCWSTR str, UINT count, const INT *dx) DECLSPEC_HIDDEN;
479 extern BOOL PATH_Ellipse(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
480 extern BOOL PATH_Arc(DC *dc, INT x1, INT y1, INT x2, INT y2,
481                      INT xStart, INT yStart, INT xEnd, INT yEnd, INT lines) DECLSPEC_HIDDEN;
482 extern BOOL PATH_PolyBezierTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
483 extern BOOL PATH_PolyBezier(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
484 extern BOOL PATH_PolyDraw(DC *dc, const POINT *pts, const BYTE *types, DWORD cbCount) DECLSPEC_HIDDEN;
485 extern BOOL PATH_PolylineTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
486 extern BOOL PATH_Polyline(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
487 extern BOOL PATH_Polygon(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
488 extern BOOL PATH_PolyPolyline(DC *dc, const POINT *pt, const DWORD *counts, DWORD polylines) DECLSPEC_HIDDEN;
489 extern BOOL PATH_PolyPolygon(DC *dc, const POINT *pt, const INT *counts, UINT polygons) DECLSPEC_HIDDEN;
490 extern BOOL PATH_RoundRect(DC *dc, INT x1, INT y1, INT x2, INT y2, INT ell_width, INT ell_height) DECLSPEC_HIDDEN;
491
492 /* painting.c */
493 extern POINT *GDI_Bezier( const POINT *Points, INT count, INT *nPtsOut ) DECLSPEC_HIDDEN;
494
495 /* palette.c */
496 extern HPALETTE WINAPI GDISelectPalette( HDC hdc, HPALETTE hpal, WORD wBkg);
497 extern UINT WINAPI GDIRealizePalette( HDC hdc );
498 extern HPALETTE PALETTE_Init(void) DECLSPEC_HIDDEN;
499
500 /* region.c */
501 extern INT mirror_region( HRGN dst, HRGN src, INT width ) DECLSPEC_HIDDEN;
502 extern BOOL REGION_FrameRgn( HRGN dest, HRGN src, INT x, INT y ) DECLSPEC_HIDDEN;
503
504 /* null driver entry points */
505 extern BOOL CDECL nulldrv_AngleArc( PHYSDEV dev, INT x, INT y, DWORD radius, FLOAT start, FLOAT sweep ) DECLSPEC_HIDDEN;
506 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;
507 extern INT  CDECL nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
508 extern INT  CDECL nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode ) DECLSPEC_HIDDEN;
509 extern BOOL CDECL nulldrv_FillRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush ) DECLSPEC_HIDDEN;
510 extern BOOL CDECL nulldrv_FrameRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush, INT width, INT height ) DECLSPEC_HIDDEN;
511 extern INT  CDECL nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
512 extern BOOL CDECL nulldrv_InvertRgn( PHYSDEV dev, HRGN rgn ) DECLSPEC_HIDDEN;
513 extern INT  CDECL nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
514 extern BOOL CDECL nulldrv_PolyBezier( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
515 extern BOOL CDECL nulldrv_PolyBezierTo( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
516 extern BOOL CDECL nulldrv_PolyDraw( PHYSDEV dev, const POINT *points, const BYTE *types, DWORD count ) DECLSPEC_HIDDEN;
517 extern BOOL CDECL nulldrv_PolylineTo( PHYSDEV dev, const POINT *points, INT count ) DECLSPEC_HIDDEN;
518
519 static inline DC *get_nulldrv_dc( PHYSDEV dev )
520 {
521     return CONTAINING_RECORD( dev, DC, nulldrv );
522 }
523
524 /* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal entries */
525 #define DIB_PAL_MONO 2
526
527 BOOL WINAPI FontIsLinked(HDC);
528
529 BOOL WINAPI SetVirtualResolution(HDC hdc, DWORD horz_res, DWORD vert_res, DWORD horz_size, DWORD vert_size);
530
531 #endif /* __WINE_GDI_PRIVATE_H */