gdiplus: Add blend information to linear gradient brushes.
[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
33 #include "gdiplus.h"
34
35 #define GP_DEFAULT_PENSTYLE (PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT | PS_JOIN_MITER)
36 #define MAX_ARC_PTS (13)
37 #define MAX_DASHLEN (16) /* this is a limitation of gdi */
38 #define INCH_HIMETRIC (2540)
39
40 #define VERSION_MAGIC 0xdbc01001
41 #define TENSION_CONST (0.3)
42
43 COLORREF ARGB2COLORREF(ARGB color);
44 extern INT arc2polybezier(GpPointF * points, REAL x1, REAL y1, REAL x2, REAL y2,
45     REAL startAngle, REAL sweepAngle);
46 extern REAL gdiplus_atan2(REAL dy, REAL dx);
47 extern GpStatus hresult_to_status(HRESULT res);
48 extern REAL convert_unit(HDC hdc, GpUnit unit);
49
50 extern void calc_curve_bezier(CONST GpPointF *pts, REAL tension, REAL *x1,
51     REAL *y1, REAL *x2, REAL *y2);
52 extern void calc_curve_bezier_endp(REAL xend, REAL yend, REAL xadj, REAL yadj,
53     REAL tension, REAL *x, REAL *y);
54
55 extern BOOL lengthen_path(GpPath *path, INT len);
56
57 extern GpStatus trace_path(GpGraphics *graphics, GpPath *path);
58
59 typedef struct region_element region_element;
60 extern inline void delete_element(region_element *element);
61
62 static inline INT roundr(REAL x)
63 {
64     return (INT) floorf(x + 0.5);
65 }
66
67 static inline REAL deg2rad(REAL degrees)
68 {
69     return M_PI * degrees / 180.0;
70 }
71
72 struct GpPen{
73     UINT style;
74     GpUnit unit;
75     REAL width;
76     GpLineCap endcap;
77     GpLineCap startcap;
78     GpDashCap dashcap;
79     GpCustomLineCap *customstart;
80     GpCustomLineCap *customend;
81     GpLineJoin join;
82     REAL miterlimit;
83     GpDashStyle dash;
84     REAL *dashes;
85     INT numdashes;
86     REAL offset;    /* dash offset */
87     GpBrush *brush;
88     GpPenAlignment align;
89 };
90
91 struct GpGraphics{
92     HDC hdc;
93     HWND hwnd;
94     BOOL owndc;
95     SmoothingMode smoothing;
96     CompositingQuality compqual;
97     InterpolationMode interpolation;
98     PixelOffsetMode pixeloffset;
99     CompositingMode compmode;
100     TextRenderingHint texthint;
101     GpUnit unit;    /* page unit */
102     REAL scale;     /* page scale */
103     GpMatrix * worldtrans; /* world transform */
104     BOOL busy;      /* hdc handle obtained by GdipGetDC */
105     GpRegion *clip;
106     UINT textcontrast; /* not used yet. get/set only */
107 };
108
109 struct GpBrush{
110     HBRUSH gdibrush;
111     GpBrushType bt;
112     LOGBRUSH lb;
113 };
114
115 struct GpHatch{
116     GpBrush brush;
117     HatchStyle hatchstyle;
118     ARGB forecol;
119     ARGB backcol;
120 };
121
122 struct GpSolidFill{
123     GpBrush brush;
124     ARGB color;
125 };
126
127 struct GpPathGradient{
128     GpBrush brush;
129     PathData pathdata;
130     ARGB centercolor;
131     GpWrapMode wrap;
132     BOOL gamma;
133     GpPointF center;
134     GpPointF focus;
135     REAL* blendfac;  /* blend factors */
136     REAL* blendpos;  /* blend positions */
137     INT blendcount;
138 };
139
140 struct GpLineGradient{
141     GpBrush brush;
142     GpPointF startpoint;
143     GpPointF endpoint;
144     ARGB startcolor;
145     ARGB endcolor;
146     GpWrapMode wrap;
147     BOOL gamma;
148     REAL* blendfac;  /* blend factors */
149     REAL* blendpos;  /* blend positions */
150     INT blendcount;
151 };
152
153 struct GpTexture{
154     GpBrush brush;
155     GpMatrix *transform;
156     WrapMode wrap;  /* not used yet */
157 };
158
159 struct GpPath{
160     GpFillMode fill;
161     GpPathData pathdata;
162     BOOL newfigure; /* whether the next drawing action starts a new figure */
163     INT datalen; /* size of the arrays in pathdata */
164 };
165
166 struct GpMatrix{
167     REAL matrix[6];
168 };
169
170 struct GpPathIterator{
171     GpPathData pathdata;
172     INT subpath_pos;    /* for NextSubpath methods */
173     INT marker_pos;     /* for NextMarker methods */
174     INT pathtype_pos;   /* for NextPathType methods */
175 };
176
177 struct GpCustomLineCap{
178     GpPathData pathdata;
179     BOOL fill;      /* TRUE for fill, FALSE for stroke */
180     GpLineCap cap;  /* as far as I can tell, this value is ignored */
181     REAL inset;     /* how much to adjust the end of the line */
182     GpLineJoin join;
183     REAL scale;
184 };
185
186 struct GpAdustableArrowCap{
187     GpCustomLineCap cap;
188 };
189
190 struct GpImage{
191     IPicture* picture;
192     ImageType type;
193     UINT flags;
194 };
195
196 struct GpMetafile{
197     GpImage image;
198     GpRectF bounds;
199     GpUnit unit;
200 };
201
202 struct GpBitmap{
203     GpImage image;
204     INT width;
205     INT height;
206     PixelFormat format;
207     ImageLockMode lockmode;
208     INT numlocks;
209     BYTE *bitmapbits;   /* pointer to the buffer we passed in BitmapLockBits */
210 };
211
212 struct GpCachedBitmap{
213     GpImage *image;
214 };
215
216 struct GpImageAttributes{
217     WrapMode wrap;
218 };
219
220 struct GpFont{
221     LOGFONTW lfw;
222     REAL emSize;
223     UINT height;
224     LONG line_spacing;
225     Unit unit;
226 };
227
228 struct GpStringFormat{
229     INT attr;
230     LANGID lang;
231     LANGID digitlang;
232     StringAlignment align;
233     StringTrimming trimming;
234     HotkeyPrefix hkprefix;
235     StringAlignment vertalign;
236     StringDigitSubstitute digitsub;
237     INT tabcount;
238     REAL firsttab;
239     REAL *tabs;
240 };
241
242 struct GpFontCollection{
243     GpFontFamily **FontFamilies;
244     INT count;
245 };
246
247 struct GpFontFamily{
248     NEWTEXTMETRICW tmw;
249     WCHAR FamilyName[LF_FACESIZE];
250 };
251
252 /* internal use */
253 typedef enum RegionType
254 {
255     RegionDataRect          = 0x10000000,
256     RegionDataPath          = 0x10000001,
257     RegionDataEmptyRect     = 0x10000002,
258     RegionDataInfiniteRect  = 0x10000003,
259 } RegionType;
260
261 struct region_element
262 {
263     DWORD type; /* Rectangle, Path, SpecialRectangle, or CombineMode */
264     union
265     {
266         GpRectF rect;
267         struct
268         {
269             GpPath* path;
270             struct
271             {
272                 DWORD size;
273                 DWORD magic;
274                 DWORD count;
275                 DWORD flags;
276             } pathheader;
277         } pathdata;
278         struct
279         {
280             struct region_element *left;  /* the original region */
281             struct region_element *right; /* what *left was combined with */
282         } combine;
283     } elementdata;
284 };
285
286 struct GpRegion{
287     struct
288     {
289         DWORD size;
290         DWORD checksum;
291         DWORD magic;
292         DWORD num_children;
293     } header;
294     region_element node;
295 };
296
297 #endif