comctl32: Fix read of uninitialized data in LISTVIEW_GetItemExtT when LVIF_TEXT is...
[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 "wine/list.h"
33
34 #include "gdiplus.h"
35
36 #define GP_DEFAULT_PENSTYLE (PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT | PS_JOIN_MITER)
37 #define MAX_ARC_PTS (13)
38 #define MAX_DASHLEN (16) /* this is a limitation of gdi */
39 #define INCH_HIMETRIC (2540)
40
41 #define VERSION_MAGIC 0xdbc01001
42 #define TENSION_CONST (0.3)
43
44 COLORREF ARGB2COLORREF(ARGB color);
45 HBITMAP ARGB2BMP(ARGB color);
46 extern INT arc2polybezier(GpPointF * points, REAL x1, REAL y1, REAL x2, REAL y2,
47     REAL startAngle, REAL sweepAngle);
48 extern REAL gdiplus_atan2(REAL dy, REAL dx);
49 extern GpStatus hresult_to_status(HRESULT res);
50 extern REAL convert_unit(REAL logpixels, GpUnit unit);
51
52 extern GpStatus graphics_from_image(GpImage *image, GpGraphics **graphics);
53
54 extern void calc_curve_bezier(CONST GpPointF *pts, REAL tension, REAL *x1,
55     REAL *y1, REAL *x2, REAL *y2);
56 extern void calc_curve_bezier_endp(REAL xend, REAL yend, REAL xadj, REAL yadj,
57     REAL tension, REAL *x, REAL *y);
58
59 extern void free_installed_fonts(void);
60
61 extern BOOL lengthen_path(GpPath *path, INT len);
62
63 extern GpStatus trace_path(GpGraphics *graphics, GpPath *path);
64
65 typedef struct region_element region_element;
66 extern void delete_element(region_element *element);
67
68 extern GpStatus get_hatch_data(HatchStyle hatchstyle, const char **result);
69
70 static inline INT roundr(REAL x)
71 {
72     return (INT) floorf(x + 0.5);
73 }
74
75 static inline INT ceilr(REAL x)
76 {
77     return (INT) ceilf(x);
78 }
79
80 static inline REAL deg2rad(REAL degrees)
81 {
82     return M_PI * degrees / 180.0;
83 }
84
85 static inline ARGB color_over(ARGB bg, ARGB fg)
86 {
87     BYTE b, g, r, a;
88     BYTE bg_alpha, fg_alpha;
89
90     fg_alpha = (fg>>24)&0xff;
91
92     if (fg_alpha == 0xff) return fg;
93
94     if (fg_alpha == 0) return bg;
95
96     bg_alpha = (((bg>>24)&0xff) * (0xff-fg_alpha)) / 0xff;
97
98     if (bg_alpha == 0) return fg;
99
100     a = bg_alpha + fg_alpha;
101     b = ((bg&0xff)*bg_alpha + (fg&0xff)*fg_alpha)/a;
102     g = (((bg>>8)&0xff)*bg_alpha + ((fg>>8)&0xff)*fg_alpha)/a;
103     r = (((bg>>16)&0xff)*bg_alpha + ((fg>>16)&0xff)*fg_alpha)/a;
104
105     return (a<<24)|(r<<16)|(g<<8)|b;
106 }
107
108 extern const char *debugstr_rectf(CONST RectF* rc);
109
110 extern const char *debugstr_pointf(CONST PointF* pt);
111
112 extern void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height,
113     BYTE *dst_bits, INT dst_stride, const BYTE *src_bits, INT src_stride);
114
115 extern GpStatus convert_pixels(UINT width, UINT height,
116     INT dst_stride, BYTE *dst_bits, PixelFormat dst_format,
117     INT src_stride, const BYTE *src_bits, PixelFormat src_format, ARGB *src_palette);
118
119 struct GpPen{
120     UINT style;
121     GpUnit unit;
122     REAL width;
123     GpLineCap endcap;
124     GpLineCap startcap;
125     GpDashCap dashcap;
126     GpCustomLineCap *customstart;
127     GpCustomLineCap *customend;
128     GpLineJoin join;
129     REAL miterlimit;
130     GpDashStyle dash;
131     REAL *dashes;
132     INT numdashes;
133     REAL offset;    /* dash offset */
134     GpBrush *brush;
135     GpPenAlignment align;
136 };
137
138 struct GpGraphics{
139     HDC hdc;
140     HWND hwnd;
141     BOOL owndc;
142     GpImage *image;
143     SmoothingMode smoothing;
144     CompositingQuality compqual;
145     InterpolationMode interpolation;
146     PixelOffsetMode pixeloffset;
147     CompositingMode compmode;
148     TextRenderingHint texthint;
149     GpUnit unit;    /* page unit */
150     REAL scale;     /* page scale */
151     GpMatrix * worldtrans; /* world transform */
152     BOOL busy;      /* hdc handle obtained by GdipGetDC */
153     GpRegion *clip;
154     UINT textcontrast; /* not used yet. get/set only */
155     struct list containers;
156     GraphicsContainer contid; /* last-issued container ID */
157     /* For giving the caller an HDC when we technically can't: */
158     HBITMAP temp_hbitmap;
159     int temp_hbitmap_width;
160     int temp_hbitmap_height;
161     BYTE *temp_bits;
162     HDC temp_hdc;
163 };
164
165 struct GpBrush{
166     HBRUSH gdibrush;
167     GpBrushType bt;
168     LOGBRUSH lb;
169 };
170
171 struct GpHatch{
172     GpBrush brush;
173     HatchStyle hatchstyle;
174     ARGB forecol;
175     ARGB backcol;
176 };
177
178 struct GpSolidFill{
179     GpBrush brush;
180     ARGB color;
181     HBITMAP bmp;
182 };
183
184 struct GpPathGradient{
185     GpBrush brush;
186     PathData pathdata;
187     ARGB centercolor;
188     GpWrapMode wrap;
189     BOOL gamma;
190     GpPointF center;
191     GpPointF focus;
192     REAL* blendfac;  /* blend factors */
193     REAL* blendpos;  /* blend positions */
194     INT blendcount;
195 };
196
197 struct GpLineGradient{
198     GpBrush brush;
199     GpPointF startpoint;
200     GpPointF endpoint;
201     ARGB startcolor;
202     ARGB endcolor;
203     RectF rect;
204     GpWrapMode wrap;
205     BOOL gamma;
206     REAL* blendfac;  /* blend factors */
207     REAL* blendpos;  /* blend positions */
208     INT blendcount;
209     ARGB* pblendcolor; /* preset blend colors */
210     REAL* pblendpos; /* preset blend positions */
211     INT pblendcount;
212 };
213
214 struct GpTexture{
215     GpBrush brush;
216     GpMatrix *transform;
217     GpImage *image;
218     GpImageAttributes *imageattributes;
219 };
220
221 struct GpPath{
222     GpFillMode fill;
223     GpPathData pathdata;
224     BOOL newfigure; /* whether the next drawing action starts a new figure */
225     INT datalen; /* size of the arrays in pathdata */
226 };
227
228 struct GpMatrix{
229     REAL matrix[6];
230 };
231
232 struct GpPathIterator{
233     GpPathData pathdata;
234     INT subpath_pos;    /* for NextSubpath methods */
235     INT marker_pos;     /* for NextMarker methods */
236     INT pathtype_pos;   /* for NextPathType methods */
237 };
238
239 struct GpCustomLineCap{
240     GpPathData pathdata;
241     BOOL fill;      /* TRUE for fill, FALSE for stroke */
242     GpLineCap cap;  /* as far as I can tell, this value is ignored */
243     REAL inset;     /* how much to adjust the end of the line */
244     GpLineJoin join;
245     REAL scale;
246 };
247
248 struct GpAdustableArrowCap{
249     GpCustomLineCap cap;
250 };
251
252 struct GpImage{
253     IPicture* picture;
254     ImageType type;
255     GUID format;
256     UINT flags;
257     UINT palette_flags;
258     UINT palette_count;
259     UINT palette_size;
260     ARGB *palette_entries;
261     REAL xres, yres;
262 };
263
264 struct GpMetafile{
265     GpImage image;
266     GpRectF bounds;
267     GpUnit unit;
268 };
269
270 struct GpBitmap{
271     GpImage image;
272     INT width;
273     INT height;
274     PixelFormat format;
275     ImageLockMode lockmode;
276     INT numlocks;
277     BYTE *bitmapbits;   /* pointer to the buffer we passed in BitmapLockBits */
278     HBITMAP hbitmap;
279     HDC hdc;
280     BYTE *bits; /* actual image bits if this is a DIB */
281     INT stride; /* stride of bits if this is a DIB */
282     BYTE *own_bits; /* image bits that need to be freed with this object */
283 };
284
285 struct GpCachedBitmap{
286     GpImage *image;
287 };
288
289 struct color_key{
290     BOOL enabled;
291     ARGB low;
292     ARGB high;
293 };
294
295 struct color_matrix{
296     BOOL enabled;
297     ColorMatrixFlags flags;
298     ColorMatrix colormatrix;
299     ColorMatrix graymatrix;
300 };
301
302 struct color_remap_table{
303     BOOL enabled;
304     INT mapsize;
305     GDIPCONST ColorMap *colormap;
306 };
307
308 struct GpImageAttributes{
309     WrapMode wrap;
310     ARGB outside_color;
311     BOOL clamp;
312     struct color_key colorkeys[ColorAdjustTypeCount];
313     struct color_matrix colormatrices[ColorAdjustTypeCount];
314     struct color_remap_table colorremaptables[ColorAdjustTypeCount];
315     BOOL gamma_enabled[ColorAdjustTypeCount];
316     REAL gamma[ColorAdjustTypeCount];
317 };
318
319 struct GpFont{
320     LOGFONTW lfw;
321     REAL emSize;
322     UINT height;
323     LONG line_spacing;
324     Unit unit;
325 };
326
327 struct GpStringFormat{
328     INT attr;
329     LANGID lang;
330     LANGID digitlang;
331     StringAlignment align;
332     StringTrimming trimming;
333     HotkeyPrefix hkprefix;
334     StringAlignment vertalign;
335     StringDigitSubstitute digitsub;
336     INT tabcount;
337     REAL firsttab;
338     REAL *tabs;
339     CharacterRange *character_ranges;
340     INT range_count;
341 };
342
343 struct GpFontCollection{
344     GpFontFamily **FontFamilies;
345     INT count;
346     INT allocated;
347 };
348
349 struct GpFontFamily{
350     NEWTEXTMETRICW tmw;
351     WCHAR FamilyName[LF_FACESIZE];
352 };
353
354 /* internal use */
355 typedef enum RegionType
356 {
357     RegionDataRect          = 0x10000000,
358     RegionDataPath          = 0x10000001,
359     RegionDataEmptyRect     = 0x10000002,
360     RegionDataInfiniteRect  = 0x10000003,
361 } RegionType;
362
363 struct region_element
364 {
365     DWORD type; /* Rectangle, Path, SpecialRectangle, or CombineMode */
366     union
367     {
368         GpRectF rect;
369         struct
370         {
371             GpPath* path;
372             struct
373             {
374                 DWORD size;
375                 DWORD magic;
376                 DWORD count;
377                 DWORD flags;
378             } pathheader;
379         } pathdata;
380         struct
381         {
382             struct region_element *left;  /* the original region */
383             struct region_element *right; /* what *left was combined with */
384         } combine;
385     } elementdata;
386 };
387
388 struct GpRegion{
389     struct
390     {
391         DWORD size;
392         DWORD checksum;
393         DWORD magic;
394         DWORD num_children;
395     } header;
396     region_element node;
397 };
398
399 #endif