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