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