imm32: Retrieve the graphics driver module from gdi32.
[wine] / dlls / gdiplus / gdiplus_private.h
1 /*
2  * Copyright (C) 2007 Google (Evan Stade)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef __WINE_GP_PRIVATE_H_
20 #define __WINE_GP_PRIVATE_H_
21
22 #include <math.h>
23 #include <stdarg.h>
24
25 #include "windef.h"
26 #include "wingdi.h"
27 #include "winbase.h"
28 #include "winuser.h"
29
30 #include "objbase.h"
31 #include "ocidl.h"
32 #include "wincodecsdk.h"
33 #include "wine/list.h"
34
35 #include "gdiplus.h"
36
37 #define GP_DEFAULT_PENSTYLE (PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT | PS_JOIN_MITER)
38 #define MAX_ARC_PTS (13)
39 #define MAX_DASHLEN (16) /* this is a limitation of gdi */
40 #define INCH_HIMETRIC (2540)
41
42 #define VERSION_MAGIC 0xdbc01001
43 #define TENSION_CONST (0.3)
44
45 COLORREF ARGB2COLORREF(ARGB color) DECLSPEC_HIDDEN;
46 HBITMAP ARGB2BMP(ARGB color) DECLSPEC_HIDDEN;
47 extern INT arc2polybezier(GpPointF * points, REAL x1, REAL y1, REAL x2, REAL y2,
48     REAL startAngle, REAL sweepAngle) DECLSPEC_HIDDEN;
49 extern REAL gdiplus_atan2(REAL dy, REAL dx) DECLSPEC_HIDDEN;
50 extern GpStatus hresult_to_status(HRESULT res) DECLSPEC_HIDDEN;
51 extern REAL units_to_pixels(REAL units, GpUnit unit, REAL dpi) DECLSPEC_HIDDEN;
52 extern REAL pixels_to_units(REAL pixels, GpUnit unit, REAL dpi) DECLSPEC_HIDDEN;
53 extern REAL units_scale(GpUnit from, GpUnit to, REAL dpi) DECLSPEC_HIDDEN;
54
55 extern GpStatus graphics_from_image(GpImage *image, GpGraphics **graphics) DECLSPEC_HIDDEN;
56
57 extern GpStatus METAFILE_GetGraphicsContext(GpMetafile* metafile, GpGraphics **result) DECLSPEC_HIDDEN;
58 extern GpStatus METAFILE_GetDC(GpMetafile* metafile, HDC *hdc) DECLSPEC_HIDDEN;
59 extern GpStatus METAFILE_ReleaseDC(GpMetafile* metafile, HDC hdc) DECLSPEC_HIDDEN;
60 extern GpStatus METAFILE_GraphicsDeleted(GpMetafile* metafile) DECLSPEC_HIDDEN;
61 extern MetafileType METAFILE_GetEmfType(HENHMETAFILE hemf) DECLSPEC_HIDDEN;
62
63 extern void calc_curve_bezier(CONST GpPointF *pts, REAL tension, REAL *x1,
64     REAL *y1, REAL *x2, REAL *y2) DECLSPEC_HIDDEN;
65 extern void calc_curve_bezier_endp(REAL xend, REAL yend, REAL xadj, REAL yadj,
66     REAL tension, REAL *x, REAL *y) DECLSPEC_HIDDEN;
67
68 extern void free_installed_fonts(void) DECLSPEC_HIDDEN;
69
70 extern BOOL lengthen_path(GpPath *path, INT len) DECLSPEC_HIDDEN;
71
72 extern GpStatus trace_path(GpGraphics *graphics, GpPath *path) DECLSPEC_HIDDEN;
73
74 typedef struct region_element region_element;
75 extern void delete_element(region_element *element) DECLSPEC_HIDDEN;
76
77 extern GpStatus get_hatch_data(HatchStyle hatchstyle, const char **result) DECLSPEC_HIDDEN;
78
79 static inline INT gdip_round(REAL x)
80 {
81     return (INT) floorf(x + 0.5);
82 }
83
84 static inline INT ceilr(REAL x)
85 {
86     return (INT) ceilf(x);
87 }
88
89 static inline REAL deg2rad(REAL degrees)
90 {
91     return M_PI * degrees / 180.0;
92 }
93
94 static inline ARGB color_over(ARGB bg, ARGB fg)
95 {
96     BYTE b, g, r, a;
97     BYTE bg_alpha, fg_alpha;
98
99     fg_alpha = (fg>>24)&0xff;
100
101     if (fg_alpha == 0xff) return fg;
102
103     if (fg_alpha == 0) return bg;
104
105     bg_alpha = (((bg>>24)&0xff) * (0xff-fg_alpha)) / 0xff;
106
107     if (bg_alpha == 0) return fg;
108
109     a = bg_alpha + fg_alpha;
110     b = ((bg&0xff)*bg_alpha + (fg&0xff)*fg_alpha)/a;
111     g = (((bg>>8)&0xff)*bg_alpha + ((fg>>8)&0xff)*fg_alpha)/a;
112     r = (((bg>>16)&0xff)*bg_alpha + ((fg>>16)&0xff)*fg_alpha)/a;
113
114     return (a<<24)|(r<<16)|(g<<8)|b;
115 }
116
117 extern const char *debugstr_rectf(CONST RectF* rc) DECLSPEC_HIDDEN;
118
119 extern const char *debugstr_pointf(CONST PointF* pt) DECLSPEC_HIDDEN;
120
121 extern void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height,
122     BYTE *dst_bits, INT dst_stride, const BYTE *src_bits, INT src_stride) DECLSPEC_HIDDEN;
123
124 extern GpStatus convert_pixels(INT width, INT height,
125     INT dst_stride, BYTE *dst_bits, PixelFormat dst_format,
126     INT src_stride, const BYTE *src_bits, PixelFormat src_format, ColorPalette *palette) DECLSPEC_HIDDEN;
127
128 struct GpMatrix{
129     REAL matrix[6];
130 };
131
132 struct GpPen{
133     UINT style;
134     GpUnit unit;
135     REAL width;
136     GpLineCap endcap;
137     GpLineCap startcap;
138     GpDashCap dashcap;
139     GpCustomLineCap *customstart;
140     GpCustomLineCap *customend;
141     GpLineJoin join;
142     REAL miterlimit;
143     GpDashStyle dash;
144     REAL *dashes;
145     INT numdashes;
146     REAL offset;    /* dash offset */
147     GpBrush *brush;
148     GpPenAlignment align;
149 };
150
151 struct GpGraphics{
152     HDC hdc;
153     HWND hwnd;
154     BOOL owndc;
155     BOOL alpha_hdc;
156     GpImage *image;
157     SmoothingMode smoothing;
158     CompositingQuality compqual;
159     InterpolationMode interpolation;
160     PixelOffsetMode pixeloffset;
161     CompositingMode compmode;
162     TextRenderingHint texthint;
163     GpUnit unit;    /* page unit */
164     REAL scale;     /* page scale */
165     REAL xres, yres;
166     GpMatrix worldtrans; /* world transform */
167     BOOL busy;      /* hdc handle obtained by GdipGetDC */
168     GpRegion *clip;
169     UINT textcontrast; /* not used yet. get/set only */
170     struct list containers;
171     GraphicsContainer contid; /* last-issued container ID */
172     INT origin_x, origin_y;
173     /* For giving the caller an HDC when we technically can't: */
174     HBITMAP temp_hbitmap;
175     int temp_hbitmap_width;
176     int temp_hbitmap_height;
177     BYTE *temp_bits;
178     HDC temp_hdc;
179 };
180
181 struct GpBrush{
182     GpBrushType bt;
183 };
184
185 struct GpHatch{
186     GpBrush brush;
187     HatchStyle hatchstyle;
188     ARGB forecol;
189     ARGB backcol;
190 };
191
192 struct GpSolidFill{
193     GpBrush brush;
194     ARGB color;
195 };
196
197 struct GpPathGradient{
198     GpBrush brush;
199     GpPath* path;
200     ARGB centercolor;
201     GpWrapMode wrap;
202     BOOL gamma;
203     GpPointF center;
204     GpPointF focus;
205     REAL* blendfac;  /* blend factors */
206     REAL* blendpos;  /* blend positions */
207     INT blendcount;
208     ARGB *surroundcolors;
209     INT surroundcolorcount;
210     ARGB* pblendcolor; /* preset blend colors */
211     REAL* pblendpos; /* preset blend positions */
212     INT pblendcount;
213     GpMatrix transform;
214 };
215
216 struct GpLineGradient{
217     GpBrush brush;
218     GpPointF startpoint;
219     GpPointF endpoint;
220     ARGB startcolor;
221     ARGB endcolor;
222     RectF rect;
223     GpWrapMode wrap;
224     BOOL gamma;
225     REAL* blendfac;  /* blend factors */
226     REAL* blendpos;  /* blend positions */
227     INT blendcount;
228     ARGB* pblendcolor; /* preset blend colors */
229     REAL* pblendpos; /* preset blend positions */
230     INT pblendcount;
231 };
232
233 struct GpTexture{
234     GpBrush brush;
235     GpMatrix transform;
236     GpImage *image;
237     GpImageAttributes *imageattributes;
238     BYTE *bitmap_bits; /* image bits converted to ARGB and run through imageattributes */
239 };
240
241 struct GpPath{
242     GpFillMode fill;
243     GpPathData pathdata;
244     BOOL newfigure; /* whether the next drawing action starts a new figure */
245     INT datalen; /* size of the arrays in pathdata */
246 };
247
248 struct GpPathIterator{
249     GpPathData pathdata;
250     INT subpath_pos;    /* for NextSubpath methods */
251     INT marker_pos;     /* for NextMarker methods */
252     INT pathtype_pos;   /* for NextPathType methods */
253 };
254
255 struct GpCustomLineCap{
256     GpPathData pathdata;
257     BOOL fill;      /* TRUE for fill, FALSE for stroke */
258     GpLineCap cap;  /* as far as I can tell, this value is ignored */
259     REAL inset;     /* how much to adjust the end of the line */
260     GpLineJoin join;
261     REAL scale;
262 };
263
264 struct GpAdustableArrowCap{
265     GpCustomLineCap cap;
266 };
267
268 struct GpImage{
269     IPicture *picture;
270     IStream *stream; /* source stream */
271     ImageType type;
272     GUID format;
273     UINT flags;
274     UINT frame_count, current_frame;
275     ColorPalette *palette;
276     REAL xres, yres;
277 };
278
279 struct GpMetafile{
280     GpImage image;
281     GpRectF bounds;
282     GpUnit unit;
283     MetafileType metafile_type;
284     HENHMETAFILE hemf;
285     int preserve_hemf; /* if true, hemf belongs to the app and should not be deleted */
286
287     /* recording */
288     HDC record_dc;
289     GpGraphics *record_graphics;
290     BYTE *comment_data;
291     DWORD comment_data_size;
292     DWORD comment_data_length;
293
294     /* playback */
295     GpGraphics *playback_graphics;
296     HDC playback_dc;
297     GpPointF playback_points[3];
298     HANDLETABLE *handle_table;
299     int handle_count;
300 };
301
302 struct GpBitmap{
303     GpImage image;
304     INT width;
305     INT height;
306     PixelFormat format;
307     ImageLockMode lockmode;
308     INT numlocks;
309     BYTE *bitmapbits;   /* pointer to the buffer we passed in BitmapLockBits */
310     HBITMAP hbitmap;
311     HDC hdc;
312     BYTE *bits; /* actual image bits if this is a DIB */
313     INT stride; /* stride of bits if this is a DIB */
314     BYTE *own_bits; /* image bits that need to be freed with this object */
315     INT lockx, locky; /* X and Y coordinates of the rect when a bitmap is locked for writing. */
316     IWICMetadataReader *metadata_reader; /* NULL if there is no metadata */
317     UINT prop_count;
318     PropertyItem *prop_item; /* cached image properties */
319 };
320
321 struct GpCachedBitmap{
322     GpImage *image;
323 };
324
325 struct color_key{
326     BOOL enabled;
327     ARGB low;
328     ARGB high;
329 };
330
331 struct color_matrix{
332     BOOL enabled;
333     ColorMatrixFlags flags;
334     ColorMatrix colormatrix;
335     ColorMatrix graymatrix;
336 };
337
338 struct color_remap_table{
339     BOOL enabled;
340     INT mapsize;
341     ColorMap *colormap;
342 };
343
344 struct GpImageAttributes{
345     WrapMode wrap;
346     ARGB outside_color;
347     BOOL clamp;
348     struct color_key colorkeys[ColorAdjustTypeCount];
349     struct color_matrix colormatrices[ColorAdjustTypeCount];
350     struct color_remap_table colorremaptables[ColorAdjustTypeCount];
351     BOOL gamma_enabled[ColorAdjustTypeCount];
352     REAL gamma[ColorAdjustTypeCount];
353 };
354
355 struct GpFont{
356     GpFontFamily *family;
357     OUTLINETEXTMETRICW otm;
358     REAL emSize; /* in font units */
359     Unit unit;
360 };
361
362 struct GpStringFormat{
363     INT attr;
364     LANGID lang;
365     LANGID digitlang;
366     StringAlignment align;
367     StringTrimming trimming;
368     HotkeyPrefix hkprefix;
369     StringAlignment vertalign;
370     StringDigitSubstitute digitsub;
371     INT tabcount;
372     REAL firsttab;
373     REAL *tabs;
374     CharacterRange *character_ranges;
375     INT range_count;
376     BOOL generic_typographic;
377 };
378
379 struct GpFontCollection{
380     GpFontFamily **FontFamilies;
381     INT count;
382     INT allocated;
383 };
384
385 struct GpFontFamily{
386     WCHAR FamilyName[LF_FACESIZE];
387     UINT16 em_height, ascent, descent, line_spacing; /* in font units */
388     int dpi;
389 };
390
391 /* internal use */
392 typedef enum RegionType
393 {
394     RegionDataRect          = 0x10000000,
395     RegionDataPath          = 0x10000001,
396     RegionDataEmptyRect     = 0x10000002,
397     RegionDataInfiniteRect  = 0x10000003,
398 } RegionType;
399
400 struct region_element
401 {
402     DWORD type; /* Rectangle, Path, SpecialRectangle, or CombineMode */
403     union
404     {
405         GpRectF rect;
406         struct
407         {
408             GpPath* path;
409             struct
410             {
411                 DWORD size;
412                 DWORD magic;
413                 DWORD count;
414                 DWORD flags;
415             } pathheader;
416         } pathdata;
417         struct
418         {
419             struct region_element *left;  /* the original region */
420             struct region_element *right; /* what *left was combined with */
421         } combine;
422     } elementdata;
423 };
424
425 struct GpRegion{
426     struct
427     {
428         DWORD size;
429         DWORD checksum;
430         DWORD magic;
431         DWORD num_children;
432     } header;
433     region_element node;
434 };
435
436 typedef GpStatus (*gdip_format_string_callback)(HDC hdc,
437     GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
438     GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
439     INT lineno, const RectF *bounds, INT *underlined_indexes,
440     INT underlined_index_count, void *user_data);
441
442 GpStatus gdip_format_string(HDC hdc,
443     GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
444     GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
445     gdip_format_string_callback callback, void *user_data) DECLSPEC_HIDDEN;
446
447 void get_log_fontW(const GpFont *, GpGraphics *, LOGFONTW *) DECLSPEC_HIDDEN;
448
449 #endif