ws2_32: Accept NULL lpNumberOfBytesSent for overlapped calls to WSASend/To.
[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     struct gdi_physdev       *next;
79     HDC                       hdc;
80 } *PHYSDEV;
81
82 typedef struct
83 {
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. */
87
88     DWORD red_mask, green_mask, blue_mask;
89     int red_shift, green_shift, blue_shift;
90     int red_len, green_len, blue_len;
91
92     RGBQUAD *color_table;
93     DWORD color_table_size;
94
95     const struct primitive_funcs *funcs;
96 } dib_info;
97
98 typedef struct
99 {
100     DWORD count;
101     DWORD dashes[16]; /* 16 is the maximium number for a PS_USERSTYLE pen */
102     DWORD total_len;  /* total length of the dashes, should be multiplied by 2 if there are an odd number of dash lengths */
103 } dash_pattern;
104
105 typedef struct
106 {
107     int left_in_dash;
108     int cur_dash;
109     BOOL mark;
110 } dash_pos;
111
112 typedef struct dibdrv_physdev
113 {
114     struct gdi_physdev dev;
115     dib_info dib;
116
117     HRGN clip;
118     DWORD defer;
119
120     /* pen */
121     COLORREF pen_colorref;
122     DWORD pen_color, pen_and, pen_xor;
123     dash_pattern pen_pattern;
124     dash_pos dash_pos;
125     BOOL   (* pen_line)(struct dibdrv_physdev *pdev, POINT *start, POINT *end);
126
127     /* brush */
128     UINT brush_style;
129     INT brush_rop;   /* PatBlt, for example, can override the DC's rop2 */
130     COLORREF brush_colorref;
131     DWORD brush_color, brush_and, brush_xor;
132     dib_info brush_dib;
133     void *brush_and_bits, *brush_xor_bits;
134     BOOL   (* brush_rects)(struct dibdrv_physdev *pdev, int num, RECT *rects);
135
136     /* background */
137     DWORD bkgnd_color, bkgnd_and, bkgnd_xor;
138 } dibdrv_physdev;
139
140 #define DEFER_FORMAT     1
141 #define DEFER_PEN        2
142 #define DEFER_BRUSH      4
143
144 typedef struct tagDC_FUNCS
145 {
146     INT      (CDECL *pAbortDoc)(PHYSDEV);
147     BOOL     (CDECL *pAbortPath)(PHYSDEV);
148     BOOL     (CDECL *pAlphaBlend)(PHYSDEV,INT,INT,INT,INT,PHYSDEV,INT,INT,INT,INT,BLENDFUNCTION);
149     BOOL     (CDECL *pAngleArc)(PHYSDEV,INT,INT,DWORD,FLOAT,FLOAT);
150     BOOL     (CDECL *pArc)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
151     BOOL     (CDECL *pArcTo)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
152     BOOL     (CDECL *pBeginPath)(PHYSDEV);
153     INT      (CDECL *pChoosePixelFormat)(PHYSDEV,const PIXELFORMATDESCRIPTOR *);
154     BOOL     (CDECL *pChord)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
155     BOOL     (CDECL *pCloseFigure)(PHYSDEV);
156     BOOL     (CDECL *pCreateBitmap)(PHYSDEV,HBITMAP,LPVOID);
157     BOOL     (CDECL *pCreateDC)(HDC,PHYSDEV *,LPCWSTR,LPCWSTR,LPCWSTR,const DEVMODEW*);
158     HBITMAP  (CDECL *pCreateDIBSection)(PHYSDEV,HBITMAP,const BITMAPINFO *,UINT);
159     BOOL     (CDECL *pDeleteBitmap)(HBITMAP);
160     BOOL     (CDECL *pDeleteDC)(PHYSDEV);
161     BOOL     (CDECL *pDeleteObject)(PHYSDEV,HGDIOBJ);
162     INT      (CDECL *pDescribePixelFormat)(PHYSDEV,INT,UINT,PIXELFORMATDESCRIPTOR *);
163     DWORD    (CDECL *pDeviceCapabilities)(LPSTR,LPCSTR,LPCSTR,WORD,LPSTR,LPDEVMODEA);
164     BOOL     (CDECL *pEllipse)(PHYSDEV,INT,INT,INT,INT);
165     INT      (CDECL *pEndDoc)(PHYSDEV);
166     INT      (CDECL *pEndPage)(PHYSDEV);
167     BOOL     (CDECL *pEndPath)(PHYSDEV);
168     BOOL     (CDECL *pEnumDeviceFonts)(PHYSDEV,LPLOGFONTW,FONTENUMPROCW,LPARAM);
169     INT      (CDECL *pEnumICMProfiles)(PHYSDEV,ICMENUMPROCW,LPARAM);
170     INT      (CDECL *pExcludeClipRect)(PHYSDEV,INT,INT,INT,INT);
171     INT      (CDECL *pExtDeviceMode)(LPSTR,HWND,LPDEVMODEA,LPSTR,LPSTR,LPDEVMODEA,LPSTR,DWORD);
172     INT      (CDECL *pExtEscape)(PHYSDEV,INT,INT,LPCVOID,INT,LPVOID);
173     BOOL     (CDECL *pExtFloodFill)(PHYSDEV,INT,INT,COLORREF,UINT);
174     INT      (CDECL *pExtSelectClipRgn)(PHYSDEV,HRGN,INT);
175     BOOL     (CDECL *pExtTextOut)(PHYSDEV,INT,INT,UINT,const RECT*,LPCWSTR,UINT,const INT*);
176     BOOL     (CDECL *pFillPath)(PHYSDEV);
177     BOOL     (CDECL *pFillRgn)(PHYSDEV,HRGN,HBRUSH);
178     BOOL     (CDECL *pFlattenPath)(PHYSDEV);
179     BOOL     (CDECL *pFrameRgn)(PHYSDEV,HRGN,HBRUSH,INT,INT);
180     BOOL     (CDECL *pGdiComment)(PHYSDEV,UINT,CONST BYTE*);
181     LONG     (CDECL *pGetBitmapBits)(HBITMAP,void*,LONG);
182     BOOL     (CDECL *pGetCharWidth)(PHYSDEV,UINT,UINT,LPINT);
183     INT      (CDECL *pGetDIBits)(PHYSDEV,HBITMAP,UINT,UINT,LPVOID,BITMAPINFO*,UINT);
184     INT      (CDECL *pGetDeviceCaps)(PHYSDEV,INT);
185     BOOL     (CDECL *pGetDeviceGammaRamp)(PHYSDEV,LPVOID);
186     BOOL     (CDECL *pGetICMProfile)(PHYSDEV,LPDWORD,LPWSTR);
187     COLORREF (CDECL *pGetNearestColor)(PHYSDEV,COLORREF);
188     COLORREF (CDECL *pGetPixel)(PHYSDEV,INT,INT);
189     INT      (CDECL *pGetPixelFormat)(PHYSDEV);
190     UINT     (CDECL *pGetSystemPaletteEntries)(PHYSDEV,UINT,UINT,LPPALETTEENTRY);
191     BOOL     (CDECL *pGetTextExtentExPoint)(PHYSDEV,LPCWSTR,INT,INT,LPINT,LPINT,LPSIZE);
192     BOOL     (CDECL *pGetTextMetrics)(PHYSDEV,TEXTMETRICW*);
193     INT      (CDECL *pIntersectClipRect)(PHYSDEV,INT,INT,INT,INT);
194     BOOL     (CDECL *pInvertRgn)(PHYSDEV,HRGN);
195     BOOL     (CDECL *pLineTo)(PHYSDEV,INT,INT);
196     BOOL     (CDECL *pModifyWorldTransform)(PHYSDEV,const XFORM*,DWORD);
197     BOOL     (CDECL *pMoveTo)(PHYSDEV,INT,INT);
198     INT      (CDECL *pOffsetClipRgn)(PHYSDEV,INT,INT);
199     BOOL     (CDECL *pOffsetViewportOrgEx)(PHYSDEV,INT,INT,POINT*);
200     BOOL     (CDECL *pOffsetWindowOrgEx)(PHYSDEV,INT,INT,POINT*);
201     BOOL     (CDECL *pPaintRgn)(PHYSDEV,HRGN);
202     BOOL     (CDECL *pPatBlt)(PHYSDEV,INT,INT,INT,INT,DWORD);
203     BOOL     (CDECL *pPie)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT);
204     BOOL     (CDECL *pPolyBezier)(PHYSDEV,const POINT*,DWORD);
205     BOOL     (CDECL *pPolyBezierTo)(PHYSDEV,const POINT*,DWORD);
206     BOOL     (CDECL *pPolyDraw)(PHYSDEV,const POINT*,const BYTE *,DWORD);
207     BOOL     (CDECL *pPolyPolygon)(PHYSDEV,const POINT*,const INT*,UINT);
208     BOOL     (CDECL *pPolyPolyline)(PHYSDEV,const POINT*,const DWORD*,DWORD);
209     BOOL     (CDECL *pPolygon)(PHYSDEV,const POINT*,INT);
210     BOOL     (CDECL *pPolyline)(PHYSDEV,const POINT*,INT);
211     BOOL     (CDECL *pPolylineTo)(PHYSDEV,const POINT*,INT);
212     UINT     (CDECL *pRealizeDefaultPalette)(PHYSDEV);
213     UINT     (CDECL *pRealizePalette)(PHYSDEV,HPALETTE,BOOL);
214     BOOL     (CDECL *pRectangle)(PHYSDEV,INT,INT,INT,INT);
215     HDC      (CDECL *pResetDC)(PHYSDEV,const DEVMODEW*);
216     BOOL     (CDECL *pRestoreDC)(PHYSDEV,INT);
217     BOOL     (CDECL *pRoundRect)(PHYSDEV,INT,INT,INT,INT,INT,INT);
218     INT      (CDECL *pSaveDC)(PHYSDEV);
219     BOOL     (CDECL *pScaleViewportExtEx)(PHYSDEV,INT,INT,INT,INT,SIZE*);
220     BOOL     (CDECL *pScaleWindowExtEx)(PHYSDEV,INT,INT,INT,INT,SIZE*);
221     HBITMAP  (CDECL *pSelectBitmap)(PHYSDEV,HBITMAP);
222     HBRUSH   (CDECL *pSelectBrush)(PHYSDEV,HBRUSH);
223     BOOL     (CDECL *pSelectClipPath)(PHYSDEV,INT);
224     HFONT    (CDECL *pSelectFont)(PHYSDEV,HFONT,HANDLE);
225     HPALETTE (CDECL *pSelectPalette)(PHYSDEV,HPALETTE,BOOL);
226     HPEN     (CDECL *pSelectPen)(PHYSDEV,HPEN);
227     INT      (CDECL *pSetArcDirection)(PHYSDEV,INT);
228     LONG     (CDECL *pSetBitmapBits)(HBITMAP,const void*,LONG);
229     COLORREF (CDECL *pSetBkColor)(PHYSDEV,COLORREF);
230     INT      (CDECL *pSetBkMode)(PHYSDEV,INT);
231     COLORREF (CDECL *pSetDCBrushColor)(PHYSDEV, COLORREF);
232     COLORREF (CDECL *pSetDCPenColor)(PHYSDEV, COLORREF);
233     UINT     (CDECL *pSetDIBColorTable)(PHYSDEV,UINT,UINT,const RGBQUAD*);
234     INT      (CDECL *pSetDIBits)(PHYSDEV,HBITMAP,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
235     INT      (CDECL *pSetDIBitsToDevice)(PHYSDEV,INT,INT,DWORD,DWORD,INT,INT,UINT,UINT,LPCVOID,
236                                            const BITMAPINFO*,UINT);
237     VOID     (CDECL *pSetDeviceClipping)(PHYSDEV,HRGN,HRGN);
238     BOOL     (CDECL *pSetDeviceGammaRamp)(PHYSDEV,LPVOID);
239     DWORD    (CDECL *pSetLayout)(PHYSDEV,DWORD);
240     INT      (CDECL *pSetMapMode)(PHYSDEV,INT);
241     DWORD    (CDECL *pSetMapperFlags)(PHYSDEV,DWORD);
242     COLORREF (CDECL *pSetPixel)(PHYSDEV,INT,INT,COLORREF);
243     BOOL     (CDECL *pSetPixelFormat)(PHYSDEV,INT,const PIXELFORMATDESCRIPTOR *);
244     INT      (CDECL *pSetPolyFillMode)(PHYSDEV,INT);
245     INT      (CDECL *pSetROP2)(PHYSDEV,INT);
246     INT      (CDECL *pSetRelAbs)(PHYSDEV,INT);
247     INT      (CDECL *pSetStretchBltMode)(PHYSDEV,INT);
248     UINT     (CDECL *pSetTextAlign)(PHYSDEV,UINT);
249     INT      (CDECL *pSetTextCharacterExtra)(PHYSDEV,INT);
250     COLORREF (CDECL *pSetTextColor)(PHYSDEV,COLORREF);
251     BOOL     (CDECL *pSetTextJustification)(PHYSDEV,INT,INT);
252     BOOL     (CDECL *pSetViewportExtEx)(PHYSDEV,INT,INT,SIZE*);
253     BOOL     (CDECL *pSetViewportOrgEx)(PHYSDEV,INT,INT,POINT*);
254     BOOL     (CDECL *pSetWindowExtEx)(PHYSDEV,INT,INT,SIZE*);
255     BOOL     (CDECL *pSetWindowOrgEx)(PHYSDEV,INT,INT,POINT*);
256     BOOL     (CDECL *pSetWorldTransform)(PHYSDEV,const XFORM*);
257     INT      (CDECL *pStartDoc)(PHYSDEV,const DOCINFOW*);
258     INT      (CDECL *pStartPage)(PHYSDEV);
259     BOOL     (CDECL *pStretchBlt)(PHYSDEV,INT,INT,INT,INT,PHYSDEV,INT,INT,INT,INT,DWORD);
260     INT      (CDECL *pStretchDIBits)(PHYSDEV,INT,INT,INT,INT,INT,INT,INT,INT,const void *,
261                                        const BITMAPINFO*,UINT,DWORD);
262     BOOL     (CDECL *pStrokeAndFillPath)(PHYSDEV);
263     BOOL     (CDECL *pStrokePath)(PHYSDEV);
264     BOOL     (CDECL *pSwapBuffers)(PHYSDEV);
265     BOOL     (CDECL *pUnrealizePalette)(HPALETTE);
266     BOOL     (CDECL *pWidenPath)(PHYSDEV);
267
268     /* OpenGL32 */
269     BOOL     (CDECL *pwglCopyContext)(HGLRC, HGLRC, UINT);
270     HGLRC    (CDECL *pwglCreateContext)(PHYSDEV);
271     HGLRC    (CDECL *pwglCreateContextAttribsARB)(PHYSDEV, HGLRC, const int*);
272     BOOL     (CDECL *pwglDeleteContext)(HGLRC);
273     PROC     (CDECL *pwglGetProcAddress)(LPCSTR);
274     HDC      (CDECL *pwglGetPbufferDCARB)(PHYSDEV, void*);
275     BOOL     (CDECL *pwglMakeCurrent)(PHYSDEV, HGLRC);
276     BOOL     (CDECL *pwglMakeContextCurrentARB)(PHYSDEV, PHYSDEV, HGLRC);
277     BOOL     (CDECL *pwglSetPixelFormatWINE)(PHYSDEV,INT,const PIXELFORMATDESCRIPTOR *);
278     BOOL     (CDECL *pwglShareLists)(HGLRC hglrc1, HGLRC hglrc2);
279     BOOL     (CDECL *pwglUseFontBitmapsA)(PHYSDEV, DWORD, DWORD, DWORD);
280     BOOL     (CDECL *pwglUseFontBitmapsW)(PHYSDEV, DWORD, DWORD, DWORD);
281 } DC_FUNCTIONS;
282
283 /* It should not be necessary to access the contents of the GdiPath
284  * structure directly; if you find that the exported functions don't
285  * allow you to do what you want, then please place a new exported
286  * function that does this job in path.c.
287  */
288 typedef enum tagGdiPathState
289 {
290    PATH_Null,
291    PATH_Open,
292    PATH_Closed
293 } GdiPathState;
294
295 typedef struct tagGdiPath
296 {
297    GdiPathState state;
298    POINT      *pPoints;
299    BYTE         *pFlags;
300    int          numEntriesUsed, numEntriesAllocated;
301    BOOL       newStroke;
302 } GdiPath;
303
304 typedef struct tagGdiFont GdiFont;
305
306 typedef struct tagDC
307 {
308     GDIOBJHDR    header;
309     HDC          hSelf;            /* Handle to this DC */
310     struct gdi_physdev nulldrv;    /* physdev for the null driver */
311     struct dibdrv_physdev dibdrv;  /* physdev for the dib driver */
312     PHYSDEV      physDev;         /* Physical device (driver-specific) */
313     DWORD        thread;          /* thread owning the DC */
314     LONG         refcount;        /* thread refcount */
315     LONG         dirty;           /* dirty flag */
316     INT          saveLevel;
317     struct tagDC *saved_dc;
318     DWORD_PTR    dwHookData;
319     DCHOOKPROC   hookProc;         /* DC hook */
320
321     INT          wndOrgX;          /* Window origin */
322     INT          wndOrgY;
323     INT          wndExtX;          /* Window extent */
324     INT          wndExtY;
325     INT          vportOrgX;        /* Viewport origin */
326     INT          vportOrgY;
327     INT          vportExtX;        /* Viewport extent */
328     INT          vportExtY;
329     SIZE         virtual_res;      /* Initially HORZRES,VERTRES. Changed by SetVirtualResolution */
330     SIZE         virtual_size;     /* Initially HORZSIZE,VERTSIZE. Changed by SetVirtualResolution */
331     RECT         vis_rect;         /* visible rectangle in screen coords */
332     FLOAT        miterLimit;
333
334     int           flags;
335     DWORD         layout;
336     HRGN          hClipRgn;      /* Clip region (may be 0) */
337     HRGN          hMetaRgn;      /* Meta region (may be 0) */
338     HRGN          hMetaClipRgn;  /* Intersection of meta and clip regions (may be 0) */
339     HRGN          hVisRgn;       /* Visible region (must never be 0) */
340     HPEN          hPen;
341     HBRUSH        hBrush;
342     HFONT         hFont;
343     HBITMAP       hBitmap;
344     HANDLE        hDevice;
345     HPALETTE      hPalette;
346
347     GdiFont      *gdiFont;
348     GdiPath       path;
349
350     UINT          font_code_page;
351     WORD          ROPmode;
352     WORD          polyFillMode;
353     WORD          stretchBltMode;
354     WORD          relAbsMode;
355     WORD          backgroundMode;
356     COLORREF      backgroundColor;
357     COLORREF      textColor;
358     COLORREF      dcBrushColor;
359     COLORREF      dcPenColor;
360     short         brushOrgX;
361     short         brushOrgY;
362
363     DWORD         mapperFlags;       /* Font mapper flags */
364     WORD          textAlign;         /* Text alignment from SetTextAlign() */
365     INT           charExtra;         /* Spacing from SetTextCharacterExtra() */
366     INT           breakExtra;        /* breakTotalExtra / breakCount */
367     INT           breakRem;          /* breakTotalExtra % breakCount */
368     INT           MapMode;
369     INT           GraphicsMode;      /* Graphics mode */
370     ABORTPROC     pAbortProc;        /* AbortProc for Printing */
371     INT           CursPosX;          /* Current position */
372     INT           CursPosY;
373     INT           ArcDirection;
374     XFORM         xformWorld2Wnd;    /* World-to-window transformation */
375     XFORM         xformWorld2Vport;  /* World-to-viewport transformation */
376     XFORM         xformVport2World;  /* Inverse of the above transformation */
377     BOOL          vport2WorldValid;  /* Is xformVport2World valid? */
378     RECT          BoundsRect;        /* Current bounding rect */
379 } DC;
380
381   /* DC flags */
382 #define DC_BOUNDS_ENABLE 0x0008   /* Bounding rectangle tracking is enabled */
383 #define DC_BOUNDS_SET    0x0010   /* Bounding rectangle has been set */
384
385 /* Certain functions will do no further processing if the driver returns this.
386    Used by mfdrv for example. */
387 #define GDI_NO_MORE_WORK 2
388
389 /* Rounds a floating point number to integer. The world-to-viewport
390  * transformation process is done in floating point internally. This function
391  * is then used to round these coordinates to integer values.
392  */
393 static inline INT GDI_ROUND(double val)
394 {
395    return (int)floor(val + 0.5);
396 }
397
398 /* bitmap object */
399
400 typedef struct tagBITMAPOBJ
401 {
402     GDIOBJHDR           header;
403     BITMAP              bitmap;
404     SIZE                size;   /* For SetBitmapDimension() */
405     const DC_FUNCTIONS *funcs; /* DC function table */
406     /* For device-independent bitmaps: */
407     DIBSECTION         *dib;
408     RGBQUAD            *color_table;  /* DIB color table if <= 8bpp */
409     UINT                nb_colors;    /* number of colors in table */
410 } BITMAPOBJ;
411
412 /* bidi.c */
413
414 /* Wine_GCPW Flags */
415 /* Directionality -
416  * LOOSE means taking the directionality of the first strong character, if there is found one.
417  * FORCE means the paragraph direction is forced. (RLE/LRE)
418  */
419 #define WINE_GCPW_FORCE_LTR 0
420 #define WINE_GCPW_FORCE_RTL 1
421 #define WINE_GCPW_LOOSE_LTR 2
422 #define WINE_GCPW_LOOSE_RTL 3
423 #define WINE_GCPW_DIR_MASK 3
424 #define WINE_GCPW_LOOSE_MASK 2
425
426 extern BOOL BIDI_Reorder( HDC hDC, LPCWSTR lpString, INT uCount, DWORD dwFlags, DWORD dwWineGCP_Flags,
427                           LPWSTR lpOutString, INT uCountOut, UINT *lpOrder, WORD **lpGlyphs, INT* cGlyphs ) DECLSPEC_HIDDEN;
428
429 /* bitmap.c */
430 extern HBITMAP BITMAP_CopyBitmap( HBITMAP hbitmap ) DECLSPEC_HIDDEN;
431 extern BOOL BITMAP_SetOwnerDC( HBITMAP hbitmap, PHYSDEV physdev ) DECLSPEC_HIDDEN;
432 extern INT BITMAP_GetWidthBytes( INT bmWidth, INT bpp ) DECLSPEC_HIDDEN;
433
434 /* clipping.c */
435 extern void CLIPPING_UpdateGCRegion( DC * dc ) DECLSPEC_HIDDEN;
436
437 /* Return the total clip region (if any) */
438 static inline HRGN get_clip_region( DC * dc )
439 {
440     if (dc->hMetaClipRgn) return dc->hMetaClipRgn;
441     if (dc->hMetaRgn) return dc->hMetaRgn;
442     return dc->hClipRgn;
443 }
444
445 /* dc.c */
446 extern DC *alloc_dc_ptr( WORD magic ) DECLSPEC_HIDDEN;
447 extern void free_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
448 extern DC *get_dc_ptr( HDC hdc ) DECLSPEC_HIDDEN;
449 extern void release_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
450 extern void update_dc( DC *dc ) DECLSPEC_HIDDEN;
451 extern void push_dc_driver( DC * dc, PHYSDEV physdev, const DC_FUNCTIONS *funcs ) DECLSPEC_HIDDEN;
452 extern void pop_dc_driver( DC * dc, PHYSDEV physdev ) DECLSPEC_HIDDEN;
453 extern void DC_InitDC( DC * dc ) DECLSPEC_HIDDEN;
454 extern void DC_UpdateXforms( DC * dc ) DECLSPEC_HIDDEN;
455
456 /* dib.c */
457 extern int DIB_GetDIBWidthBytes( int width, int depth ) DECLSPEC_HIDDEN;
458 extern int DIB_GetDIBImageBytes( int width, int height, int depth ) DECLSPEC_HIDDEN;
459 extern int bitmap_info_size( const BITMAPINFO * info, WORD coloruse ) DECLSPEC_HIDDEN;
460 extern int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
461                               LONG *height, WORD *planes, WORD *bpp, DWORD *compr, DWORD *size ) DECLSPEC_HIDDEN;
462
463 /* driver.c */
464 extern const DC_FUNCTIONS null_driver DECLSPEC_HIDDEN;
465 extern const DC_FUNCTIONS dib_driver DECLSPEC_HIDDEN;
466 extern const DC_FUNCTIONS *DRIVER_get_display_driver(void) DECLSPEC_HIDDEN;
467 extern const DC_FUNCTIONS *DRIVER_load_driver( LPCWSTR name ) DECLSPEC_HIDDEN;
468 extern BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size ) DECLSPEC_HIDDEN;
469
470 static inline PHYSDEV get_physdev_entry_point( PHYSDEV dev, size_t offset )
471 {
472     while (!((void **)dev->funcs)[offset / sizeof(void *)]) dev = dev->next;
473     return dev;
474 }
475
476 #define GET_DC_PHYSDEV(dc,func) get_physdev_entry_point( (dc)->physDev, FIELD_OFFSET(DC_FUNCTIONS,func))
477 #define GET_NEXT_PHYSDEV(dev,func) get_physdev_entry_point( (dev)->next, FIELD_OFFSET(DC_FUNCTIONS,func))
478
479 /* enhmetafile.c */
480 extern HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk ) DECLSPEC_HIDDEN;
481
482 /* freetype.c */
483
484 /* Undocumented structure filled in by GdiRealizationInfo */
485 typedef struct
486 {
487     DWORD flags;       /* 1 for bitmap fonts, 3 for scalable fonts */
488     DWORD cache_num;   /* keeps incrementing - num of fonts that have been created allowing for caching?? */
489     DWORD unknown2;    /* fixed for a given font - looks like it could be the order of the face in the font list or the order
490                           in which the face was first rendered. */
491 } realization_info_t;
492
493
494 extern INT WineEngAddFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
495 extern HANDLE WineEngAddFontMemResourceEx(PVOID, DWORD, PVOID, LPDWORD) DECLSPEC_HIDDEN;
496 extern GdiFont* WineEngCreateFontInstance(DC*, HFONT) DECLSPEC_HIDDEN;
497 extern BOOL WineEngDestroyFontInstance(HFONT handle) DECLSPEC_HIDDEN;
498 extern DWORD WineEngEnumFonts(LPLOGFONTW, FONTENUMPROCW, LPARAM) DECLSPEC_HIDDEN;
499 extern BOOL WineEngGetCharABCWidths(GdiFont *font, UINT firstChar,
500                                     UINT lastChar, LPABC buffer) DECLSPEC_HIDDEN;
501 extern BOOL WineEngGetCharABCWidthsFloat(GdiFont *font, UINT firstChar,
502                                          UINT lastChar, LPABCFLOAT buffer) DECLSPEC_HIDDEN;
503 extern BOOL WineEngGetCharABCWidthsI(GdiFont *font, UINT firstChar,
504                                     UINT count, LPWORD pgi, LPABC buffer) DECLSPEC_HIDDEN;
505 extern BOOL WineEngGetCharWidth(GdiFont*, UINT, UINT, LPINT) DECLSPEC_HIDDEN;
506 extern DWORD WineEngGetFontData(GdiFont*, DWORD, DWORD, LPVOID, DWORD) DECLSPEC_HIDDEN;
507 extern DWORD WineEngGetFontUnicodeRanges(GdiFont *, LPGLYPHSET) DECLSPEC_HIDDEN;
508 extern DWORD WineEngGetGlyphIndices(GdiFont *font, LPCWSTR lpstr, INT count,
509                                     LPWORD pgi, DWORD flags) DECLSPEC_HIDDEN;
510 extern DWORD WineEngGetGlyphOutline(GdiFont*, UINT glyph, UINT format,
511                                     LPGLYPHMETRICS, DWORD buflen, LPVOID buf,
512                                     const MAT2*) DECLSPEC_HIDDEN;
513 extern DWORD WineEngGetKerningPairs(GdiFont*, DWORD, KERNINGPAIR *) DECLSPEC_HIDDEN;
514 extern BOOL WineEngGetLinkedHFont(DC *dc, WCHAR c, HFONT *new_hfont, UINT *glyph) DECLSPEC_HIDDEN;
515 extern UINT WineEngGetOutlineTextMetrics(GdiFont*, UINT, LPOUTLINETEXTMETRICW) DECLSPEC_HIDDEN;
516 extern UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags) DECLSPEC_HIDDEN;
517 extern BOOL WineEngGetTextExtentExPoint(GdiFont*, LPCWSTR, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
518 extern BOOL WineEngGetTextExtentExPointI(GdiFont*, const WORD *, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
519 extern INT  WineEngGetTextFace(GdiFont*, INT, LPWSTR) DECLSPEC_HIDDEN;
520 extern BOOL WineEngGetTextMetrics(GdiFont*, LPTEXTMETRICW) DECLSPEC_HIDDEN;
521 extern BOOL WineEngFontIsLinked(GdiFont*) DECLSPEC_HIDDEN;
522 extern BOOL WineEngInit(void) DECLSPEC_HIDDEN;
523 extern BOOL WineEngRealizationInfo(GdiFont*, realization_info_t*) DECLSPEC_HIDDEN;
524 extern BOOL WineEngRemoveFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
525
526 /* gdiobj.c */
527 extern HGDIOBJ alloc_gdi_handle( GDIOBJHDR *obj, WORD type, const struct gdi_obj_funcs *funcs ) DECLSPEC_HIDDEN;
528 extern void *free_gdi_handle( HGDIOBJ handle ) DECLSPEC_HIDDEN;
529 extern void *GDI_GetObjPtr( HGDIOBJ, WORD ) DECLSPEC_HIDDEN;
530 extern void GDI_ReleaseObj( HGDIOBJ ) DECLSPEC_HIDDEN;
531 extern void GDI_CheckNotLock(void) DECLSPEC_HIDDEN;
532 extern HGDIOBJ GDI_inc_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
533 extern BOOL GDI_dec_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
534 extern BOOL GDI_hdc_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
535 extern BOOL GDI_hdc_not_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
536
537 /* metafile.c */
538 extern HMETAFILE MF_Create_HMETAFILE(METAHEADER *mh) DECLSPEC_HIDDEN;
539 extern METAHEADER *MF_CreateMetaHeaderDisk(METAHEADER *mr, LPCVOID filename, BOOL unicode ) DECLSPEC_HIDDEN;
540
541 /* path.c */
542
543 #define PATH_IsPathOpen(path) ((path).state==PATH_Open)
544 /* Returns TRUE if the specified path is in the open state, i.e. in the
545  * state where points will be added to the path, or FALSE otherwise. This
546  * function is implemented as a macro for performance reasons.
547  */
548
549 extern void PATH_InitGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
550 extern void PATH_DestroyGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
551 extern BOOL PATH_AssignGdiPath(GdiPath *pPathDest, const GdiPath *pPathSrc) DECLSPEC_HIDDEN;
552
553 extern BOOL PATH_MoveTo(DC *dc) DECLSPEC_HIDDEN;
554 extern BOOL PATH_LineTo(DC *dc, INT x, INT y) DECLSPEC_HIDDEN;
555 extern BOOL PATH_Rectangle(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
556 extern BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc,
557                             LPCWSTR str, UINT count, const INT *dx) DECLSPEC_HIDDEN;
558 extern BOOL PATH_Ellipse(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
559 extern BOOL PATH_Arc(DC *dc, INT x1, INT y1, INT x2, INT y2,
560                      INT xStart, INT yStart, INT xEnd, INT yEnd, INT lines) DECLSPEC_HIDDEN;
561 extern BOOL PATH_PolyBezierTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
562 extern BOOL PATH_PolyBezier(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
563 extern BOOL PATH_PolyDraw(DC *dc, const POINT *pts, const BYTE *types, DWORD cbCount) DECLSPEC_HIDDEN;
564 extern BOOL PATH_PolylineTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
565 extern BOOL PATH_Polyline(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
566 extern BOOL PATH_Polygon(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
567 extern BOOL PATH_PolyPolyline(DC *dc, const POINT *pt, const DWORD *counts, DWORD polylines) DECLSPEC_HIDDEN;
568 extern BOOL PATH_PolyPolygon(DC *dc, const POINT *pt, const INT *counts, UINT polygons) DECLSPEC_HIDDEN;
569 extern BOOL PATH_RoundRect(DC *dc, INT x1, INT y1, INT x2, INT y2, INT ell_width, INT ell_height) DECLSPEC_HIDDEN;
570
571 /* painting.c */
572 extern POINT *GDI_Bezier( const POINT *Points, INT count, INT *nPtsOut ) DECLSPEC_HIDDEN;
573
574 /* palette.c */
575 extern HPALETTE WINAPI GDISelectPalette( HDC hdc, HPALETTE hpal, WORD wBkg) DECLSPEC_HIDDEN;
576 extern UINT WINAPI GDIRealizePalette( HDC hdc ) DECLSPEC_HIDDEN;
577 extern HPALETTE PALETTE_Init(void) DECLSPEC_HIDDEN;
578
579 /* region.c */
580 extern INT mirror_region( HRGN dst, HRGN src, INT width ) DECLSPEC_HIDDEN;
581 extern BOOL REGION_FrameRgn( HRGN dest, HRGN src, INT x, INT y ) DECLSPEC_HIDDEN;
582
583 typedef struct
584 {
585     INT size;
586     INT numRects;
587     RECT *rects;
588     RECT extents;
589 } WINEREGION;
590 extern const WINEREGION *get_wine_region(HRGN rgn) DECLSPEC_HIDDEN;
591 static inline void release_wine_region(HRGN rgn)
592 {
593     GDI_ReleaseObj(rgn);
594 }
595
596 /* null driver entry points */
597 extern BOOL CDECL nulldrv_AbortPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
598 extern BOOL CDECL nulldrv_AngleArc( PHYSDEV dev, INT x, INT y, DWORD radius, FLOAT start, FLOAT sweep ) DECLSPEC_HIDDEN;
599 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;
600 extern BOOL CDECL nulldrv_BeginPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
601 extern BOOL CDECL nulldrv_CloseFigure( PHYSDEV dev ) DECLSPEC_HIDDEN;
602 extern BOOL CDECL nulldrv_EndPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
603 extern INT  CDECL nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
604 extern INT  CDECL nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode ) DECLSPEC_HIDDEN;
605 extern BOOL CDECL nulldrv_FillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
606 extern BOOL CDECL nulldrv_FillRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush ) DECLSPEC_HIDDEN;
607 extern BOOL CDECL nulldrv_FlattenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
608 extern BOOL CDECL nulldrv_FrameRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush, INT width, INT height ) DECLSPEC_HIDDEN;
609 extern LONG CDECL nulldrv_GetBitmapBits( HBITMAP bitmap, void *bits, LONG size ) DECLSPEC_HIDDEN;
610 extern INT  CDECL nulldrv_GetDIBits( PHYSDEV dev, HBITMAP bitmap, UINT start, UINT lines, LPVOID bits, BITMAPINFO *info, UINT coloruse ) DECLSPEC_HIDDEN;
611 extern COLORREF CDECL nulldrv_GetNearestColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
612 extern INT  CDECL nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
613 extern BOOL CDECL nulldrv_InvertRgn( PHYSDEV dev, HRGN rgn ) DECLSPEC_HIDDEN;
614 extern BOOL CDECL nulldrv_ModifyWorldTransform( PHYSDEV dev, const XFORM *xform, DWORD mode ) DECLSPEC_HIDDEN;
615 extern INT  CDECL nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
616 extern BOOL CDECL nulldrv_OffsetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
617 extern BOOL CDECL nulldrv_OffsetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
618 extern BOOL CDECL nulldrv_PolyBezier( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
619 extern BOOL CDECL nulldrv_PolyBezierTo( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
620 extern BOOL CDECL nulldrv_PolyDraw( PHYSDEV dev, const POINT *points, const BYTE *types, DWORD count ) DECLSPEC_HIDDEN;
621 extern BOOL CDECL nulldrv_PolylineTo( PHYSDEV dev, const POINT *points, INT count ) DECLSPEC_HIDDEN;
622 extern BOOL CDECL nulldrv_RestoreDC( PHYSDEV dev, INT level ) DECLSPEC_HIDDEN;
623 extern INT  CDECL nulldrv_SaveDC( PHYSDEV dev ) DECLSPEC_HIDDEN;
624 extern BOOL CDECL nulldrv_ScaleViewportExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
625 extern BOOL CDECL nulldrv_ScaleWindowExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
626 extern BOOL CDECL nulldrv_SelectClipPath( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
627 extern LONG CDECL nulldrv_SetBitmapBits( HBITMAP bitmap, const void *bits, LONG size ) DECLSPEC_HIDDEN;
628 extern INT  CDECL nulldrv_SetDIBits( PHYSDEV dev, HBITMAP bitmap, UINT start, UINT lines, const void *bits, const BITMAPINFO *info, UINT coloruse ) DECLSPEC_HIDDEN;
629 extern INT  CDECL nulldrv_SetMapMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
630 extern BOOL CDECL nulldrv_SetViewportExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
631 extern BOOL CDECL nulldrv_SetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
632 extern BOOL CDECL nulldrv_SetWindowExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
633 extern BOOL CDECL nulldrv_SetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
634 extern BOOL CDECL nulldrv_SetWorldTransform( PHYSDEV dev, const XFORM *xform ) DECLSPEC_HIDDEN;
635 extern BOOL CDECL nulldrv_StretchBlt( PHYSDEV dst_dev, INT xDst, INT yDst, INT widthDst, INT heightDst,
636                                       PHYSDEV src_dev, INT xSrc, INT ySrc, INT widthSrc, INT heightSrc, DWORD rop ) DECLSPEC_HIDDEN;
637 extern INT  CDECL nulldrv_StretchDIBits( PHYSDEV dev, INT xDst, INT yDst, INT widthDst, INT heightDst,
638                                          INT xSrc, INT ySrc, INT widthSrc, INT heightSrc, const void *bits,
639                                          const BITMAPINFO *info, UINT coloruse, DWORD rop ) DECLSPEC_HIDDEN;
640 extern BOOL CDECL nulldrv_StrokeAndFillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
641 extern BOOL CDECL nulldrv_StrokePath( PHYSDEV dev ) DECLSPEC_HIDDEN;
642 extern BOOL CDECL nulldrv_WidenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
643
644 static inline DC *get_nulldrv_dc( PHYSDEV dev )
645 {
646     return CONTAINING_RECORD( dev, DC, nulldrv );
647 }
648
649 /* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal entries */
650 #define DIB_PAL_MONO 2
651
652 BOOL WINAPI FontIsLinked(HDC);
653
654 BOOL WINAPI SetVirtualResolution(HDC hdc, DWORD horz_res, DWORD vert_res, DWORD horz_size, DWORD vert_size);
655
656 #endif /* __WINE_GDI_PRIVATE_H */