gdi32: Add an inline helper to return the number of colour entries in a dib.
[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 <stdlib.h>
26 #include <stdarg.h>
27 #include "windef.h"
28 #include "winbase.h"
29 #include "wingdi.h"
30 #include "wine/gdi_driver.h"
31
32 /* Metafile defines */
33 #define META_EOF 0x0000
34 /* values of mtType in METAHEADER.  Note however that the disk image of a disk
35    based metafile has mtType == 1 */
36 #define METAFILE_MEMORY 1
37 #define METAFILE_DISK   2
38 #define MFHEADERSIZE (sizeof(METAHEADER))
39 #define MFVERSION 0x300
40
41 typedef struct {
42     EMR   emr;
43     INT   nBreakExtra;
44     INT   nBreakCount;
45 } EMRSETTEXTJUSTIFICATION, *PEMRSETTEXTJUSTIFICATION;
46
47 /* extra stock object: default 1x1 bitmap for memory DCs */
48 #define DEFAULT_BITMAP (STOCK_LAST+1)
49
50 struct gdi_obj_funcs
51 {
52     HGDIOBJ (*pSelectObject)( HGDIOBJ handle, HDC hdc );
53     INT     (*pGetObjectA)( HGDIOBJ handle, INT count, LPVOID buffer );
54     INT     (*pGetObjectW)( HGDIOBJ handle, INT count, LPVOID buffer );
55     BOOL    (*pUnrealizeObject)( HGDIOBJ handle );
56     BOOL    (*pDeleteObject)( HGDIOBJ handle );
57 };
58
59 struct hdc_list
60 {
61     HDC hdc;
62     struct hdc_list *next;
63 };
64
65 typedef struct tagGDIOBJHDR
66 {
67     WORD        type;         /* object type (one of the OBJ_* constants) */
68     WORD        system : 1;   /* system object flag */
69     WORD        deleted : 1;  /* whether DeleteObject has been called on this object */
70     DWORD       selcount;     /* number of times the object is selected in a DC */
71     const struct gdi_obj_funcs *funcs;
72     struct hdc_list *hdcs;
73 } GDIOBJHDR;
74
75 /* Device functions for the Wine driver interface */
76
77 enum dib_info_flags
78 {
79     private_color_table = 1
80 };
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     void *ptr_to_free;
88
89     DWORD red_mask, green_mask, blue_mask;
90     int red_shift, green_shift, blue_shift;
91     int red_len, green_len, blue_len;
92
93     RGBQUAD *color_table;
94     DWORD color_table_size;
95
96     enum dib_info_flags flags;
97
98     const struct primitive_funcs *funcs;
99 } dib_info;
100
101 typedef struct
102 {
103     DWORD count;
104     DWORD dashes[16]; /* 16 is the maximium number for a PS_USERSTYLE pen */
105     DWORD total_len;  /* total length of the dashes, should be multiplied by 2 if there are an odd number of dash lengths */
106 } dash_pattern;
107
108 typedef struct
109 {
110     int left_in_dash;
111     int cur_dash;
112     BOOL mark;
113 } dash_pos;
114
115 typedef struct
116 {
117     DWORD and;
118     DWORD xor;
119 } rop_mask;
120
121 typedef struct
122 {
123     void *and;
124     void *xor;
125 } rop_mask_bits;
126
127 typedef struct dibdrv_physdev
128 {
129     struct gdi_physdev dev;
130     dib_info dib;
131
132     HRGN clip;
133     DWORD defer;
134
135     /* pen */
136     COLORREF pen_colorref;
137     DWORD pen_color, pen_and, pen_xor;
138     dash_pattern pen_pattern;
139     dash_pos dash_pos;
140     BOOL   (* pen_line)(struct dibdrv_physdev *pdev, POINT *start, POINT *end);
141
142     /* brush */
143     UINT brush_style;
144     UINT brush_hatch;
145     INT brush_rop;   /* PatBlt, for example, can override the DC's rop2 */
146     COLORREF brush_colorref;
147     DWORD brush_color, brush_and, brush_xor;
148     dib_info brush_dib;
149     void *brush_and_bits, *brush_xor_bits;
150     BOOL   (* brush_rects)(struct dibdrv_physdev *pdev, int num, RECT *rects);
151
152     /* background */
153     DWORD bkgnd_color, bkgnd_and, bkgnd_xor;
154 } dibdrv_physdev;
155
156 #define DEFER_FORMAT     1
157 #define DEFER_PEN        2
158 #define DEFER_BRUSH      4
159
160 typedef struct gdi_dc_funcs DC_FUNCTIONS;
161
162 /* It should not be necessary to access the contents of the GdiPath
163  * structure directly; if you find that the exported functions don't
164  * allow you to do what you want, then please place a new exported
165  * function that does this job in path.c.
166  */
167 typedef enum tagGdiPathState
168 {
169    PATH_Null,
170    PATH_Open,
171    PATH_Closed
172 } GdiPathState;
173
174 typedef struct tagGdiPath
175 {
176    GdiPathState state;
177    POINT      *pPoints;
178    BYTE         *pFlags;
179    int          numEntriesUsed, numEntriesAllocated;
180    BOOL       newStroke;
181 } GdiPath;
182
183 typedef struct tagGdiFont GdiFont;
184
185 typedef struct tagDC
186 {
187     GDIOBJHDR    header;
188     HDC          hSelf;            /* Handle to this DC */
189     struct gdi_physdev nulldrv;    /* physdev for the null driver */
190     struct dibdrv_physdev dibdrv;  /* physdev for the dib driver */
191     PHYSDEV      physDev;         /* Physical device (driver-specific) */
192     DWORD        thread;          /* thread owning the DC */
193     LONG         refcount;        /* thread refcount */
194     LONG         dirty;           /* dirty flag */
195     INT          saveLevel;
196     struct tagDC *saved_dc;
197     DWORD_PTR    dwHookData;
198     DCHOOKPROC   hookProc;         /* DC hook */
199
200     INT          wndOrgX;          /* Window origin */
201     INT          wndOrgY;
202     INT          wndExtX;          /* Window extent */
203     INT          wndExtY;
204     INT          vportOrgX;        /* Viewport origin */
205     INT          vportOrgY;
206     INT          vportExtX;        /* Viewport extent */
207     INT          vportExtY;
208     SIZE         virtual_res;      /* Initially HORZRES,VERTRES. Changed by SetVirtualResolution */
209     SIZE         virtual_size;     /* Initially HORZSIZE,VERTSIZE. Changed by SetVirtualResolution */
210     RECT         vis_rect;         /* visible rectangle in screen coords */
211     FLOAT        miterLimit;
212
213     int           flags;
214     DWORD         layout;
215     HRGN          hClipRgn;      /* Clip region (may be 0) */
216     HRGN          hMetaRgn;      /* Meta region (may be 0) */
217     HRGN          hMetaClipRgn;  /* Intersection of meta and clip regions (may be 0) */
218     HRGN          hVisRgn;       /* Visible region (must never be 0) */
219     HPEN          hPen;
220     HBRUSH        hBrush;
221     HFONT         hFont;
222     HBITMAP       hBitmap;
223     HANDLE        hDevice;
224     HPALETTE      hPalette;
225
226     GdiFont      *gdiFont;
227     GdiPath       path;
228
229     UINT          font_code_page;
230     WORD          ROPmode;
231     WORD          polyFillMode;
232     WORD          stretchBltMode;
233     WORD          relAbsMode;
234     WORD          backgroundMode;
235     COLORREF      backgroundColor;
236     COLORREF      textColor;
237     COLORREF      dcBrushColor;
238     COLORREF      dcPenColor;
239     short         brushOrgX;
240     short         brushOrgY;
241
242     DWORD         mapperFlags;       /* Font mapper flags */
243     WORD          textAlign;         /* Text alignment from SetTextAlign() */
244     INT           charExtra;         /* Spacing from SetTextCharacterExtra() */
245     INT           breakExtra;        /* breakTotalExtra / breakCount */
246     INT           breakRem;          /* breakTotalExtra % breakCount */
247     INT           MapMode;
248     INT           GraphicsMode;      /* Graphics mode */
249     ABORTPROC     pAbortProc;        /* AbortProc for Printing */
250     INT           CursPosX;          /* Current position */
251     INT           CursPosY;
252     INT           ArcDirection;
253     XFORM         xformWorld2Wnd;    /* World-to-window transformation */
254     XFORM         xformWorld2Vport;  /* World-to-viewport transformation */
255     XFORM         xformVport2World;  /* Inverse of the above transformation */
256     BOOL          vport2WorldValid;  /* Is xformVport2World valid? */
257     RECT          BoundsRect;        /* Current bounding rect */
258 } DC;
259
260   /* DC flags */
261 #define DC_BOUNDS_ENABLE 0x0008   /* Bounding rectangle tracking is enabled */
262 #define DC_BOUNDS_SET    0x0010   /* Bounding rectangle has been set */
263
264 /* Certain functions will do no further processing if the driver returns this.
265    Used by mfdrv for example. */
266 #define GDI_NO_MORE_WORK 2
267
268 /* Rounds a floating point number to integer. The world-to-viewport
269  * transformation process is done in floating point internally. This function
270  * is then used to round these coordinates to integer values.
271  */
272 static inline INT GDI_ROUND(double val)
273 {
274    return (int)floor(val + 0.5);
275 }
276
277 #define GET_DC_PHYSDEV(dc,func) \
278     get_physdev_entry_point( (dc)->physDev, FIELD_OFFSET(struct gdi_dc_funcs,func))
279
280 /* bitmap object */
281
282 typedef struct tagBITMAPOBJ
283 {
284     GDIOBJHDR           header;
285     BITMAP              bitmap;
286     SIZE                size;   /* For SetBitmapDimension() */
287     const DC_FUNCTIONS *funcs; /* DC function table */
288     /* For device-independent bitmaps: */
289     DIBSECTION         *dib;
290     RGBQUAD            *color_table;  /* DIB color table if <= 8bpp */
291     UINT                nb_colors;    /* number of colors in table */
292 } BITMAPOBJ;
293
294 /* bidi.c */
295
296 /* Wine_GCPW Flags */
297 /* Directionality -
298  * LOOSE means taking the directionality of the first strong character, if there is found one.
299  * FORCE means the paragraph direction is forced. (RLE/LRE)
300  */
301 #define WINE_GCPW_FORCE_LTR 0
302 #define WINE_GCPW_FORCE_RTL 1
303 #define WINE_GCPW_LOOSE_LTR 2
304 #define WINE_GCPW_LOOSE_RTL 3
305 #define WINE_GCPW_DIR_MASK 3
306 #define WINE_GCPW_LOOSE_MASK 2
307
308 extern BOOL BIDI_Reorder( HDC hDC, LPCWSTR lpString, INT uCount, DWORD dwFlags, DWORD dwWineGCP_Flags,
309                           LPWSTR lpOutString, INT uCountOut, UINT *lpOrder, WORD **lpGlyphs, INT* cGlyphs ) DECLSPEC_HIDDEN;
310
311 /* bitmap.c */
312 extern HBITMAP BITMAP_CopyBitmap( HBITMAP hbitmap ) DECLSPEC_HIDDEN;
313 extern BOOL BITMAP_SetOwnerDC( HBITMAP hbitmap, PHYSDEV physdev ) DECLSPEC_HIDDEN;
314
315 /* clipping.c */
316 extern int get_clip_box( DC *dc, RECT *rect ) DECLSPEC_HIDDEN;
317 extern void CLIPPING_UpdateGCRegion( DC * dc ) DECLSPEC_HIDDEN;
318
319 /* Return the total clip region (if any) */
320 static inline HRGN get_clip_region( DC * dc )
321 {
322     if (dc->hMetaClipRgn) return dc->hMetaClipRgn;
323     if (dc->hMetaRgn) return dc->hMetaRgn;
324     return dc->hClipRgn;
325 }
326
327 /* dc.c */
328 extern DC *alloc_dc_ptr( WORD magic ) DECLSPEC_HIDDEN;
329 extern void free_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
330 extern DC *get_dc_ptr( HDC hdc ) DECLSPEC_HIDDEN;
331 extern void release_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
332 extern void update_dc( DC *dc ) DECLSPEC_HIDDEN;
333 extern void push_dc_driver( DC * dc, PHYSDEV physdev, const DC_FUNCTIONS *funcs ) DECLSPEC_HIDDEN;
334 extern void pop_dc_driver( DC * dc, PHYSDEV physdev ) DECLSPEC_HIDDEN;
335 extern void DC_InitDC( DC * dc ) DECLSPEC_HIDDEN;
336 extern void DC_UpdateXforms( DC * dc ) DECLSPEC_HIDDEN;
337
338 /* dib.c */
339 extern int bitmap_info_size( const BITMAPINFO * info, WORD coloruse ) DECLSPEC_HIDDEN;
340 extern int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
341                               LONG *height, WORD *planes, WORD *bpp, DWORD *compr, DWORD *size ) DECLSPEC_HIDDEN;
342 extern DWORD convert_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, const RECT *src_rect,
343                                  const BITMAPINFO *dst_info, void *dst_bits ) DECLSPEC_HIDDEN;
344
345
346 /* driver.c */
347 extern const DC_FUNCTIONS null_driver DECLSPEC_HIDDEN;
348 extern const DC_FUNCTIONS dib_driver DECLSPEC_HIDDEN;
349 extern const DC_FUNCTIONS *DRIVER_get_display_driver(void) DECLSPEC_HIDDEN;
350 extern const DC_FUNCTIONS *DRIVER_load_driver( LPCWSTR name ) DECLSPEC_HIDDEN;
351 extern BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size ) DECLSPEC_HIDDEN;
352
353 /* enhmetafile.c */
354 extern HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk ) DECLSPEC_HIDDEN;
355
356 /* freetype.c */
357
358 /* Undocumented structure filled in by GdiRealizationInfo */
359 typedef struct
360 {
361     DWORD flags;       /* 1 for bitmap fonts, 3 for scalable fonts */
362     DWORD cache_num;   /* keeps incrementing - num of fonts that have been created allowing for caching?? */
363     DWORD unknown2;    /* fixed for a given font - looks like it could be the order of the face in the font list or the order
364                           in which the face was first rendered. */
365 } realization_info_t;
366
367
368 extern INT WineEngAddFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
369 extern HANDLE WineEngAddFontMemResourceEx(PVOID, DWORD, PVOID, LPDWORD) DECLSPEC_HIDDEN;
370 extern GdiFont* WineEngCreateFontInstance(DC*, HFONT) DECLSPEC_HIDDEN;
371 extern BOOL WineEngDestroyFontInstance(HFONT handle) DECLSPEC_HIDDEN;
372 extern DWORD WineEngEnumFonts(LPLOGFONTW, FONTENUMPROCW, LPARAM) DECLSPEC_HIDDEN;
373 extern BOOL WineEngGetCharABCWidths(GdiFont *font, UINT firstChar,
374                                     UINT lastChar, LPABC buffer) DECLSPEC_HIDDEN;
375 extern BOOL WineEngGetCharABCWidthsFloat(GdiFont *font, UINT firstChar,
376                                          UINT lastChar, LPABCFLOAT buffer) DECLSPEC_HIDDEN;
377 extern BOOL WineEngGetCharABCWidthsI(GdiFont *font, UINT firstChar,
378                                     UINT count, LPWORD pgi, LPABC buffer) DECLSPEC_HIDDEN;
379 extern BOOL WineEngGetCharWidth(GdiFont*, UINT, UINT, LPINT) DECLSPEC_HIDDEN;
380 extern DWORD WineEngGetFontData(GdiFont*, DWORD, DWORD, LPVOID, DWORD) DECLSPEC_HIDDEN;
381 extern DWORD WineEngGetFontUnicodeRanges(GdiFont *, LPGLYPHSET) DECLSPEC_HIDDEN;
382 extern DWORD WineEngGetGlyphIndices(GdiFont *font, LPCWSTR lpstr, INT count,
383                                     LPWORD pgi, DWORD flags) DECLSPEC_HIDDEN;
384 extern DWORD WineEngGetGlyphOutline(GdiFont*, UINT glyph, UINT format,
385                                     LPGLYPHMETRICS, DWORD buflen, LPVOID buf,
386                                     const MAT2*) DECLSPEC_HIDDEN;
387 extern DWORD WineEngGetKerningPairs(GdiFont*, DWORD, KERNINGPAIR *) DECLSPEC_HIDDEN;
388 extern BOOL WineEngGetLinkedHFont(DC *dc, WCHAR c, HFONT *new_hfont, UINT *glyph) DECLSPEC_HIDDEN;
389 extern UINT WineEngGetOutlineTextMetrics(GdiFont*, UINT, LPOUTLINETEXTMETRICW) DECLSPEC_HIDDEN;
390 extern UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags) DECLSPEC_HIDDEN;
391 extern BOOL WineEngGetTextExtentExPoint(GdiFont*, LPCWSTR, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
392 extern BOOL WineEngGetTextExtentExPointI(GdiFont*, const WORD *, INT, INT, LPINT, LPINT, LPSIZE) DECLSPEC_HIDDEN;
393 extern INT  WineEngGetTextFace(GdiFont*, INT, LPWSTR) DECLSPEC_HIDDEN;
394 extern BOOL WineEngGetTextMetrics(GdiFont*, LPTEXTMETRICW) DECLSPEC_HIDDEN;
395 extern BOOL WineEngFontIsLinked(GdiFont*) DECLSPEC_HIDDEN;
396 extern BOOL WineEngInit(void) DECLSPEC_HIDDEN;
397 extern BOOL WineEngRealizationInfo(GdiFont*, realization_info_t*) DECLSPEC_HIDDEN;
398 extern BOOL WineEngRemoveFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
399
400 /* gdiobj.c */
401 extern HGDIOBJ alloc_gdi_handle( GDIOBJHDR *obj, WORD type, const struct gdi_obj_funcs *funcs ) DECLSPEC_HIDDEN;
402 extern void *free_gdi_handle( HGDIOBJ handle ) DECLSPEC_HIDDEN;
403 extern void *GDI_GetObjPtr( HGDIOBJ, WORD ) DECLSPEC_HIDDEN;
404 extern void GDI_ReleaseObj( HGDIOBJ ) DECLSPEC_HIDDEN;
405 extern void GDI_CheckNotLock(void) DECLSPEC_HIDDEN;
406 extern HGDIOBJ GDI_inc_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
407 extern BOOL GDI_dec_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
408 extern BOOL GDI_hdc_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
409 extern BOOL GDI_hdc_not_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
410
411 /* metafile.c */
412 extern HMETAFILE MF_Create_HMETAFILE(METAHEADER *mh) DECLSPEC_HIDDEN;
413 extern METAHEADER *MF_CreateMetaHeaderDisk(METAHEADER *mr, LPCVOID filename, BOOL unicode ) DECLSPEC_HIDDEN;
414
415 /* path.c */
416
417 #define PATH_IsPathOpen(path) ((path).state==PATH_Open)
418 /* Returns TRUE if the specified path is in the open state, i.e. in the
419  * state where points will be added to the path, or FALSE otherwise. This
420  * function is implemented as a macro for performance reasons.
421  */
422
423 extern void PATH_InitGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
424 extern void PATH_DestroyGdiPath(GdiPath *pPath) DECLSPEC_HIDDEN;
425 extern BOOL PATH_AssignGdiPath(GdiPath *pPathDest, const GdiPath *pPathSrc) DECLSPEC_HIDDEN;
426
427 extern BOOL PATH_MoveTo(DC *dc) DECLSPEC_HIDDEN;
428 extern BOOL PATH_LineTo(DC *dc, INT x, INT y) DECLSPEC_HIDDEN;
429 extern BOOL PATH_Rectangle(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
430 extern BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc,
431                             LPCWSTR str, UINT count, const INT *dx) DECLSPEC_HIDDEN;
432 extern BOOL PATH_Ellipse(DC *dc, INT x1, INT y1, INT x2, INT y2) DECLSPEC_HIDDEN;
433 extern BOOL PATH_Arc(DC *dc, INT x1, INT y1, INT x2, INT y2,
434                      INT xStart, INT yStart, INT xEnd, INT yEnd, INT lines) DECLSPEC_HIDDEN;
435 extern BOOL PATH_PolyBezierTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
436 extern BOOL PATH_PolyBezier(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
437 extern BOOL PATH_PolyDraw(DC *dc, const POINT *pts, const BYTE *types, DWORD cbCount) DECLSPEC_HIDDEN;
438 extern BOOL PATH_PolylineTo(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
439 extern BOOL PATH_Polyline(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
440 extern BOOL PATH_Polygon(DC *dc, const POINT *pt, DWORD cbCount) DECLSPEC_HIDDEN;
441 extern BOOL PATH_PolyPolyline(DC *dc, const POINT *pt, const DWORD *counts, DWORD polylines) DECLSPEC_HIDDEN;
442 extern BOOL PATH_PolyPolygon(DC *dc, const POINT *pt, const INT *counts, UINT polygons) DECLSPEC_HIDDEN;
443 extern BOOL PATH_RoundRect(DC *dc, INT x1, INT y1, INT x2, INT y2, INT ell_width, INT ell_height) DECLSPEC_HIDDEN;
444
445 /* painting.c */
446 extern POINT *GDI_Bezier( const POINT *Points, INT count, INT *nPtsOut ) DECLSPEC_HIDDEN;
447
448 /* palette.c */
449 extern HPALETTE WINAPI GDISelectPalette( HDC hdc, HPALETTE hpal, WORD wBkg) DECLSPEC_HIDDEN;
450 extern UINT WINAPI GDIRealizePalette( HDC hdc ) DECLSPEC_HIDDEN;
451 extern HPALETTE PALETTE_Init(void) DECLSPEC_HIDDEN;
452
453 /* region.c */
454 extern INT mirror_region( HRGN dst, HRGN src, INT width ) DECLSPEC_HIDDEN;
455 extern BOOL REGION_FrameRgn( HRGN dest, HRGN src, INT x, INT y ) DECLSPEC_HIDDEN;
456
457 typedef struct
458 {
459     INT size;
460     INT numRects;
461     RECT *rects;
462     RECT extents;
463 } WINEREGION;
464 extern const WINEREGION *get_wine_region(HRGN rgn) DECLSPEC_HIDDEN;
465 static inline void release_wine_region(HRGN rgn)
466 {
467     GDI_ReleaseObj(rgn);
468 }
469
470 /* null driver entry points */
471 extern BOOL nulldrv_AbortPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
472 extern BOOL nulldrv_AngleArc( PHYSDEV dev, INT x, INT y, DWORD radius, FLOAT start, FLOAT sweep ) DECLSPEC_HIDDEN;
473 extern BOOL nulldrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT bottom, INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
474 extern BOOL nulldrv_BeginPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
475 extern BOOL nulldrv_CloseFigure( PHYSDEV dev ) DECLSPEC_HIDDEN;
476 extern BOOL nulldrv_EndPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
477 extern INT  nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
478 extern INT  nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode ) DECLSPEC_HIDDEN;
479 extern BOOL nulldrv_FillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
480 extern BOOL nulldrv_FillRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush ) DECLSPEC_HIDDEN;
481 extern BOOL nulldrv_FlattenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
482 extern BOOL nulldrv_FrameRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush, INT width, INT height ) DECLSPEC_HIDDEN;
483 extern LONG nulldrv_GetBitmapBits( HBITMAP bitmap, void *bits, LONG size ) DECLSPEC_HIDDEN;
484 extern DWORD nulldrv_GetImage( PHYSDEV dev, HBITMAP hbitmap, BITMAPINFO *info, struct gdi_image_bits *bits, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
485 extern COLORREF nulldrv_GetNearestColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
486 extern INT  nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
487 extern BOOL nulldrv_InvertRgn( PHYSDEV dev, HRGN rgn ) DECLSPEC_HIDDEN;
488 extern BOOL nulldrv_ModifyWorldTransform( PHYSDEV dev, const XFORM *xform, DWORD mode ) DECLSPEC_HIDDEN;
489 extern INT  nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
490 extern BOOL nulldrv_OffsetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
491 extern BOOL nulldrv_OffsetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
492 extern BOOL nulldrv_PolyBezier( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
493 extern BOOL nulldrv_PolyBezierTo( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
494 extern BOOL nulldrv_PolyDraw( PHYSDEV dev, const POINT *points, const BYTE *types, DWORD count ) DECLSPEC_HIDDEN;
495 extern BOOL nulldrv_PolylineTo( PHYSDEV dev, const POINT *points, INT count ) DECLSPEC_HIDDEN;
496 extern BOOL nulldrv_RestoreDC( PHYSDEV dev, INT level ) DECLSPEC_HIDDEN;
497 extern INT  nulldrv_SaveDC( PHYSDEV dev ) DECLSPEC_HIDDEN;
498 extern BOOL nulldrv_ScaleViewportExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
499 extern BOOL nulldrv_ScaleWindowExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
500 extern BOOL nulldrv_SelectClipPath( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
501 extern LONG nulldrv_SetBitmapBits( HBITMAP bitmap, const void *bits, LONG size ) DECLSPEC_HIDDEN;
502 extern INT  nulldrv_SetMapMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
503 extern BOOL nulldrv_SetViewportExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
504 extern BOOL nulldrv_SetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
505 extern BOOL nulldrv_SetWindowExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
506 extern BOOL nulldrv_SetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
507 extern BOOL nulldrv_SetWorldTransform( PHYSDEV dev, const XFORM *xform ) DECLSPEC_HIDDEN;
508 extern BOOL nulldrv_StretchBlt( PHYSDEV dst_dev, struct bitblt_coords *dst,
509                                 PHYSDEV src_dev, struct bitblt_coords *src, DWORD rop ) DECLSPEC_HIDDEN;
510 extern INT  nulldrv_StretchDIBits( PHYSDEV dev, INT xDst, INT yDst, INT widthDst, INT heightDst,
511                                    INT xSrc, INT ySrc, INT widthSrc, INT heightSrc, const void *bits,
512                                    const BITMAPINFO *info, UINT coloruse, DWORD rop ) DECLSPEC_HIDDEN;
513 extern BOOL nulldrv_StrokeAndFillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
514 extern BOOL nulldrv_StrokePath( PHYSDEV dev ) DECLSPEC_HIDDEN;
515 extern BOOL nulldrv_WidenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
516
517 static inline DC *get_nulldrv_dc( PHYSDEV dev )
518 {
519     return CONTAINING_RECORD( dev, DC, nulldrv );
520 }
521
522 /* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal entries */
523 #define DIB_PAL_MONO 2
524
525 BOOL WINAPI FontIsLinked(HDC);
526
527 BOOL WINAPI SetVirtualResolution(HDC hdc, DWORD horz_res, DWORD vert_res, DWORD horz_size, DWORD vert_size);
528
529 static inline BOOL is_rect_empty( const RECT *rect )
530 {
531     return (rect->left >= rect->right || rect->top >= rect->bottom);
532 }
533
534 static inline BOOL intersect_rect( RECT *dst, const RECT *src1, const RECT *src2 )
535 {
536     dst->left   = max( src1->left, src2->left );
537     dst->top    = max( src1->top, src2->top );
538     dst->right  = min( src1->right, src2->right );
539     dst->bottom = min( src1->bottom, src2->bottom );
540     return !is_rect_empty( dst );
541 }
542
543 static inline void offset_rect( RECT *rect, int offset_x, int offset_y )
544 {
545     rect->left   += offset_x;
546     rect->top    += offset_y;
547     rect->right  += offset_x;
548     rect->bottom += offset_y;
549 }
550
551 static inline int get_bitmap_stride( int width, int bpp )
552 {
553     return ((width * bpp + 15) >> 3) & ~1;
554 }
555
556 static inline int get_dib_stride( int width, int bpp )
557 {
558     return ((width * bpp + 31) >> 3) & ~3;
559 }
560
561 static inline int get_dib_image_size( const BITMAPINFO *info )
562 {
563     return get_dib_stride( info->bmiHeader.biWidth, info->bmiHeader.biBitCount )
564         * abs( info->bmiHeader.biHeight );
565 }
566
567 static inline int get_dib_num_of_colors( const BITMAPINFO *info )
568 {
569     if (info->bmiHeader.biClrUsed) return min( info->bmiHeader.biClrUsed, 256 );
570     return info->bmiHeader.biBitCount > 8 ? 0 : 1 << info->bmiHeader.biBitCount;
571 }
572
573 extern void free_heap_bits( struct gdi_image_bits *bits ) DECLSPEC_HIDDEN;
574
575 #endif /* __WINE_GDI_PRIVATE_H */