2 * Copyright (C) 2007 Google (Evan Stade)
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.
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.
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
19 #ifndef __WINE_GP_PRIVATE_H_
20 #define __WINE_GP_PRIVATE_H_
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)
40 #define VERSION_MAGIC 0xdbc01001
41 #define TENSION_CONST (0.3)
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
);
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
);
55 extern BOOL
lengthen_path(GpPath
*path
, INT len
);
57 extern GpStatus
trace_path(GpGraphics
*graphics
, GpPath
*path
);
59 typedef struct region_element region_element
;
60 extern inline void delete_element(region_element
*element
);
62 static inline INT
roundr(REAL x
)
64 return (INT
) floorf(x
+ 0.5);
67 static inline REAL
deg2rad(REAL degrees
)
69 return M_PI
* degrees
/ 180.0;
79 GpCustomLineCap
*customstart
;
80 GpCustomLineCap
*customend
;
86 REAL offset
; /* dash offset */
94 SmoothingMode smoothing
;
95 CompositingQuality compqual
;
96 InterpolationMode interpolation
;
97 PixelOffsetMode pixeloffset
;
98 CompositingMode compmode
;
99 TextRenderingHint texthint
;
100 GpUnit unit
; /* page unit */
101 REAL scale
; /* page scale */
102 GpMatrix
* worldtrans
; /* world transform */
103 BOOL busy
; /* hdc handle obtained by GdipGetDC */
105 UINT textcontrast
; /* not used yet. get/set only */
116 HatchStyle hatchstyle
;
126 struct GpPathGradient
{
134 REAL
* blendfac
; /* blend factors */
135 REAL
* blendpos
; /* blend positions */
139 struct GpLineGradient
{
152 WrapMode wrap
; /* not used yet */
158 BOOL newfigure
; /* whether the next drawing action starts a new figure */
159 INT datalen
; /* size of the arrays in pathdata */
166 struct GpPathIterator
{
168 INT subpath_pos
; /* for NextSubpath methods */
169 INT marker_pos
; /* for NextMarker methods */
170 INT pathtype_pos
; /* for NextPathType methods */
173 struct GpCustomLineCap
{
175 BOOL fill
; /* TRUE for fill, FALSE for stroke */
176 GpLineCap cap
; /* as far as I can tell, this value is ignored */
177 REAL inset
; /* how much to adjust the end of the line */
182 struct GpAdustableArrowCap
{
203 ImageLockMode lockmode
;
205 BYTE
*bitmapbits
; /* pointer to the buffer we passed in BitmapLockBits */
208 struct GpCachedBitmap
{
212 struct GpImageAttributes
{
224 struct GpStringFormat
{
228 StringAlignment align
;
229 StringTrimming trimming
;
230 HotkeyPrefix hkprefix
;
231 StringAlignment vertalign
;
232 StringDigitSubstitute digitsub
;
238 struct GpFontCollection
{
239 GpFontFamily
**FontFamilies
;
245 WCHAR FamilyName
[LF_FACESIZE
];
249 typedef enum RegionType
251 RegionDataRect
= 0x10000000,
252 RegionDataPath
= 0x10000001,
253 RegionDataEmptyRect
= 0x10000002,
254 RegionDataInfiniteRect
= 0x10000003,
257 struct region_element
259 DWORD type
; /* Rectangle, Path, SpecialRectangle, or CombineMode */
276 struct region_element
*left
; /* the original region */
277 struct region_element
*right
; /* what *left was combined with */