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