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_
32 #include "wincodecsdk.h"
33 #include "wine/list.h"
37 #define GP_DEFAULT_PENSTYLE (PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT | PS_JOIN_MITER)
38 #define MAX_ARC_PTS (13)
39 #define MAX_DASHLEN (16) /* this is a limitation of gdi */
40 #define INCH_HIMETRIC (2540)
42 #define VERSION_MAGIC 0xdbc01001
43 #define VERSION_MAGIC2 0xdbc01002
44 #define TENSION_CONST (0.3)
46 #define GIF_DISPOSE_UNSPECIFIED 0
47 #define GIF_DISPOSE_DO_NOT_DISPOSE 1
48 #define GIF_DISPOSE_RESTORE_TO_BKGND 2
49 #define GIF_DISPOSE_RESTORE_TO_PREV 3
51 static void *heap_alloc_zero(size_t len
) __WINE_ALLOC_SIZE(1);
52 static inline void *heap_alloc_zero(size_t len
)
54 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, len
);
57 static inline BOOL
heap_free(void *mem
)
59 return HeapFree(GetProcessHeap(), 0, mem
);
62 COLORREF
ARGB2COLORREF(ARGB color
) DECLSPEC_HIDDEN
;
63 HBITMAP
ARGB2BMP(ARGB color
) DECLSPEC_HIDDEN
;
64 extern INT
arc2polybezier(GpPointF
* points
, REAL x1
, REAL y1
, REAL x2
, REAL y2
,
65 REAL startAngle
, REAL sweepAngle
) DECLSPEC_HIDDEN
;
66 extern REAL
gdiplus_atan2(REAL dy
, REAL dx
) DECLSPEC_HIDDEN
;
67 extern GpStatus
hresult_to_status(HRESULT res
) DECLSPEC_HIDDEN
;
68 extern REAL
units_to_pixels(REAL units
, GpUnit unit
, REAL dpi
) DECLSPEC_HIDDEN
;
69 extern REAL
pixels_to_units(REAL pixels
, GpUnit unit
, REAL dpi
) DECLSPEC_HIDDEN
;
70 extern REAL
units_scale(GpUnit from
, GpUnit to
, REAL dpi
) DECLSPEC_HIDDEN
;
72 extern GpStatus
graphics_from_image(GpImage
*image
, GpGraphics
**graphics
) DECLSPEC_HIDDEN
;
74 extern GpStatus
METAFILE_GetGraphicsContext(GpMetafile
* metafile
, GpGraphics
**result
) DECLSPEC_HIDDEN
;
75 extern GpStatus
METAFILE_GetDC(GpMetafile
* metafile
, HDC
*hdc
) DECLSPEC_HIDDEN
;
76 extern GpStatus
METAFILE_ReleaseDC(GpMetafile
* metafile
, HDC hdc
) DECLSPEC_HIDDEN
;
77 extern GpStatus
METAFILE_FillRectangles(GpMetafile
* metafile
, GpBrush
* brush
,
78 GDIPCONST GpRectF
* rects
, INT count
) DECLSPEC_HIDDEN
;
79 extern GpStatus
METAFILE_SetPageTransform(GpMetafile
* metafile
, GpUnit unit
, REAL scale
) DECLSPEC_HIDDEN
;
80 extern GpStatus
METAFILE_GraphicsDeleted(GpMetafile
* metafile
) DECLSPEC_HIDDEN
;
82 extern void calc_curve_bezier(const GpPointF
*pts
, REAL tension
, REAL
*x1
,
83 REAL
*y1
, REAL
*x2
, REAL
*y2
) DECLSPEC_HIDDEN
;
84 extern void calc_curve_bezier_endp(REAL xend
, REAL yend
, REAL xadj
, REAL yadj
,
85 REAL tension
, REAL
*x
, REAL
*y
) DECLSPEC_HIDDEN
;
87 extern void free_installed_fonts(void) DECLSPEC_HIDDEN
;
89 extern BOOL
lengthen_path(GpPath
*path
, INT len
) DECLSPEC_HIDDEN
;
91 extern GpStatus
trace_path(GpGraphics
*graphics
, GpPath
*path
) DECLSPEC_HIDDEN
;
93 typedef struct region_element region_element
;
94 extern void delete_element(region_element
*element
) DECLSPEC_HIDDEN
;
96 extern GpStatus
get_hatch_data(HatchStyle hatchstyle
, const char **result
) DECLSPEC_HIDDEN
;
98 static inline INT
gdip_round(REAL x
)
100 return (INT
) floorf(x
+ 0.5);
103 static inline INT
ceilr(REAL x
)
105 return (INT
) ceilf(x
);
108 static inline REAL
deg2rad(REAL degrees
)
110 return M_PI
* degrees
/ 180.0;
113 static inline ARGB
color_over(ARGB bg
, ARGB fg
)
116 BYTE bg_alpha
, fg_alpha
;
118 fg_alpha
= (fg
>>24)&0xff;
120 if (fg_alpha
== 0xff) return fg
;
122 if (fg_alpha
== 0) return bg
;
124 bg_alpha
= (((bg
>>24)&0xff) * (0xff-fg_alpha
)) / 0xff;
126 if (bg_alpha
== 0) return fg
;
128 a
= bg_alpha
+ fg_alpha
;
129 b
= ((bg
&0xff)*bg_alpha
+ (fg
&0xff)*fg_alpha
)/a
;
130 g
= (((bg
>>8)&0xff)*bg_alpha
+ ((fg
>>8)&0xff)*fg_alpha
)/a
;
131 r
= (((bg
>>16)&0xff)*bg_alpha
+ ((fg
>>16)&0xff)*fg_alpha
)/a
;
133 return (a
<<24)|(r
<<16)|(g
<<8)|b
;
136 /* fg is premult, bg and return value are not */
137 static inline ARGB
color_over_fgpremult(ARGB bg
, ARGB fg
)
140 BYTE bg_alpha
, fg_alpha
;
142 fg_alpha
= (fg
>>24)&0xff;
144 if (fg_alpha
== 0) return bg
;
146 bg_alpha
= (((bg
>>24)&0xff) * (0xff-fg_alpha
)) / 0xff;
148 a
= bg_alpha
+ fg_alpha
;
149 b
= ((bg
&0xff)*bg_alpha
+ (fg
&0xff)*0xff)/a
;
150 g
= (((bg
>>8)&0xff)*bg_alpha
+ ((fg
>>8)&0xff)*0xff)/a
;
151 r
= (((bg
>>16)&0xff)*bg_alpha
+ ((fg
>>16)&0xff)*0xff)/a
;
153 return (a
<<24)|(r
<<16)|(g
<<8)|b
;
156 extern const char *debugstr_rectf(const RectF
* rc
) DECLSPEC_HIDDEN
;
158 extern const char *debugstr_pointf(const PointF
* pt
) DECLSPEC_HIDDEN
;
160 extern void convert_32bppARGB_to_32bppPARGB(UINT width
, UINT height
,
161 BYTE
*dst_bits
, INT dst_stride
, const BYTE
*src_bits
, INT src_stride
) DECLSPEC_HIDDEN
;
163 extern GpStatus
convert_pixels(INT width
, INT height
,
164 INT dst_stride
, BYTE
*dst_bits
, PixelFormat dst_format
,
165 INT src_stride
, const BYTE
*src_bits
, PixelFormat src_format
, ColorPalette
*palette
) DECLSPEC_HIDDEN
;
178 GpCustomLineCap
*customstart
;
179 GpCustomLineCap
*customend
;
185 REAL offset
; /* dash offset */
187 GpPenAlignment align
;
196 ImageType image_type
;
197 SmoothingMode smoothing
;
198 CompositingQuality compqual
;
199 InterpolationMode interpolation
;
200 PixelOffsetMode pixeloffset
;
201 CompositingMode compmode
;
202 TextRenderingHint texthint
;
203 GpUnit unit
; /* page unit */
204 REAL scale
; /* page scale */
206 GpMatrix worldtrans
; /* world transform */
207 BOOL busy
; /* hdc handle obtained by GdipGetDC */
208 GpRegion
*clip
; /* in device coords */
209 UINT textcontrast
; /* not used yet. get/set only */
210 struct list containers
;
211 GraphicsContainer contid
; /* last-issued container ID */
212 INT origin_x
, origin_y
;
213 /* For giving the caller an HDC when we technically can't: */
214 HBITMAP temp_hbitmap
;
215 int temp_hbitmap_width
;
216 int temp_hbitmap_height
;
227 HatchStyle hatchstyle
;
237 struct GpPathGradient
{
245 REAL
* blendfac
; /* blend factors */
246 REAL
* blendpos
; /* blend positions */
248 ARGB
*surroundcolors
;
249 INT surroundcolorcount
;
250 ARGB
* pblendcolor
; /* preset blend colors */
251 REAL
* pblendpos
; /* preset blend positions */
256 struct GpLineGradient
{
265 REAL
* blendfac
; /* blend factors */
266 REAL
* blendpos
; /* blend positions */
268 ARGB
* pblendcolor
; /* preset blend colors */
269 REAL
* pblendpos
; /* preset blend positions */
277 GpImageAttributes
*imageattributes
;
278 BYTE
*bitmap_bits
; /* image bits converted to ARGB and run through imageattributes */
284 BOOL newfigure
; /* whether the next drawing action starts a new figure */
285 INT datalen
; /* size of the arrays in pathdata */
288 struct GpPathIterator
{
290 INT subpath_pos
; /* for NextSubpath methods */
291 INT marker_pos
; /* for NextMarker methods */
292 INT pathtype_pos
; /* for NextPathType methods */
295 struct GpCustomLineCap
{
297 BOOL fill
; /* TRUE for fill, FALSE for stroke */
298 GpLineCap cap
; /* as far as I can tell, this value is ignored */
299 REAL inset
; /* how much to adjust the end of the line */
304 struct GpAdustableArrowCap
{
310 IWICBitmapDecoder
*decoder
;
314 UINT frame_count
, current_frame
;
315 ColorPalette
*palette
;
323 MetafileType metafile_type
;
325 int preserve_hemf
; /* if true, hemf belongs to the app and should not be deleted */
329 GpGraphics
*record_graphics
;
331 DWORD comment_data_size
;
332 DWORD comment_data_length
;
335 GpGraphics
*playback_graphics
;
337 GpPointF playback_points
[3];
339 HANDLETABLE
*handle_table
;
341 GpMatrix
*world_transform
;
351 ImageLockMode lockmode
;
353 BYTE
*bitmapbits
; /* pointer to the buffer we passed in BitmapLockBits */
356 BYTE
*bits
; /* actual image bits if this is a DIB */
357 INT stride
; /* stride of bits if this is a DIB */
358 BYTE
*own_bits
; /* image bits that need to be freed with this object */
359 INT lockx
, locky
; /* X and Y coordinates of the rect when a bitmap is locked for writing. */
360 IWICMetadataReader
*metadata_reader
; /* NULL if there is no metadata */
362 PropertyItem
*prop_item
; /* cached image properties */
365 struct GpCachedBitmap
{
377 ColorMatrixFlags flags
;
378 ColorMatrix colormatrix
;
379 ColorMatrix graymatrix
;
382 struct color_remap_table
{
388 struct GpImageAttributes
{
392 struct color_key colorkeys
[ColorAdjustTypeCount
];
393 struct color_matrix colormatrices
[ColorAdjustTypeCount
];
394 struct color_remap_table colorremaptables
[ColorAdjustTypeCount
];
395 BOOL gamma_enabled
[ColorAdjustTypeCount
];
396 REAL gamma
[ColorAdjustTypeCount
];
400 GpFontFamily
*family
;
401 OUTLINETEXTMETRICW otm
;
402 REAL emSize
; /* in font units */
406 struct GpStringFormat
{
410 StringAlignment align
;
411 StringTrimming trimming
;
412 HotkeyPrefix hkprefix
;
413 StringAlignment vertalign
;
414 StringDigitSubstitute digitsub
;
418 CharacterRange
*character_ranges
;
420 BOOL generic_typographic
;
423 struct GpFontCollection
{
424 GpFontFamily
**FontFamilies
;
430 WCHAR FamilyName
[LF_FACESIZE
];
431 UINT16 em_height
, ascent
, descent
, line_spacing
; /* in font units */
436 typedef enum RegionType
438 RegionDataRect
= 0x10000000,
439 RegionDataPath
= 0x10000001,
440 RegionDataEmptyRect
= 0x10000002,
441 RegionDataInfiniteRect
= 0x10000003,
444 struct region_element
446 DWORD type
; /* Rectangle, Path, SpecialRectangle, or CombineMode */
453 struct region_element
*left
; /* the original region */
454 struct region_element
*right
; /* what *left was combined with */
464 typedef GpStatus (*gdip_format_string_callback
)(HDC hdc
,
465 GDIPCONST WCHAR
*string
, INT index
, INT length
, GDIPCONST GpFont
*font
,
466 GDIPCONST RectF
*rect
, GDIPCONST GpStringFormat
*format
,
467 INT lineno
, const RectF
*bounds
, INT
*underlined_indexes
,
468 INT underlined_index_count
, void *user_data
);
470 GpStatus
gdip_format_string(HDC hdc
,
471 GDIPCONST WCHAR
*string
, INT length
, GDIPCONST GpFont
*font
,
472 GDIPCONST RectF
*rect
, GDIPCONST GpStringFormat
*format
, int ignore_empty_clip
,
473 gdip_format_string_callback callback
, void *user_data
) DECLSPEC_HIDDEN
;
475 void get_log_fontW(const GpFont
*, GpGraphics
*, LOGFONTW
*) DECLSPEC_HIDDEN
;