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(size_t len
) __WINE_ALLOC_SIZE(1);
52 static inline void *heap_alloc(size_t len
)
54 return HeapAlloc(GetProcessHeap(), 0, len
);
57 static void *heap_alloc_zero(size_t len
) __WINE_ALLOC_SIZE(1);
58 static inline void *heap_alloc_zero(size_t len
)
60 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, len
);
63 static void *heap_realloc(void *mem
, size_t len
) __WINE_ALLOC_SIZE(2);
64 static inline void *heap_realloc(void *mem
, size_t len
)
66 return HeapReAlloc(GetProcessHeap(), 0, mem
, len
);
69 static inline BOOL
heap_free(void *mem
)
71 return HeapFree(GetProcessHeap(), 0, mem
);
74 COLORREF
ARGB2COLORREF(ARGB color
) DECLSPEC_HIDDEN
;
75 HBITMAP
ARGB2BMP(ARGB color
) DECLSPEC_HIDDEN
;
76 extern INT
arc2polybezier(GpPointF
* points
, REAL x1
, REAL y1
, REAL x2
, REAL y2
,
77 REAL startAngle
, REAL sweepAngle
) DECLSPEC_HIDDEN
;
78 extern REAL
gdiplus_atan2(REAL dy
, REAL dx
) DECLSPEC_HIDDEN
;
79 extern GpStatus
hresult_to_status(HRESULT res
) DECLSPEC_HIDDEN
;
80 extern REAL
units_to_pixels(REAL units
, GpUnit unit
, REAL dpi
) DECLSPEC_HIDDEN
;
81 extern REAL
pixels_to_units(REAL pixels
, GpUnit unit
, REAL dpi
) DECLSPEC_HIDDEN
;
82 extern REAL
units_scale(GpUnit from
, GpUnit to
, REAL dpi
) DECLSPEC_HIDDEN
;
84 extern GpStatus
graphics_from_image(GpImage
*image
, GpGraphics
**graphics
) DECLSPEC_HIDDEN
;
86 extern GpStatus
METAFILE_GetGraphicsContext(GpMetafile
* metafile
, GpGraphics
**result
) DECLSPEC_HIDDEN
;
87 extern GpStatus
METAFILE_GetDC(GpMetafile
* metafile
, HDC
*hdc
) DECLSPEC_HIDDEN
;
88 extern GpStatus
METAFILE_ReleaseDC(GpMetafile
* metafile
, HDC hdc
) DECLSPEC_HIDDEN
;
89 extern GpStatus
METAFILE_FillRectangles(GpMetafile
* metafile
, GpBrush
* brush
,
90 GDIPCONST GpRectF
* rects
, INT count
) DECLSPEC_HIDDEN
;
91 extern GpStatus
METAFILE_SetPageTransform(GpMetafile
* metafile
, GpUnit unit
, REAL scale
) DECLSPEC_HIDDEN
;
92 extern GpStatus
METAFILE_GraphicsDeleted(GpMetafile
* metafile
) DECLSPEC_HIDDEN
;
94 extern void calc_curve_bezier(const GpPointF
*pts
, REAL tension
, REAL
*x1
,
95 REAL
*y1
, REAL
*x2
, REAL
*y2
) DECLSPEC_HIDDEN
;
96 extern void calc_curve_bezier_endp(REAL xend
, REAL yend
, REAL xadj
, REAL yadj
,
97 REAL tension
, REAL
*x
, REAL
*y
) DECLSPEC_HIDDEN
;
99 extern void free_installed_fonts(void) DECLSPEC_HIDDEN
;
101 extern BOOL
lengthen_path(GpPath
*path
, INT len
) DECLSPEC_HIDDEN
;
103 extern GpStatus
trace_path(GpGraphics
*graphics
, GpPath
*path
) DECLSPEC_HIDDEN
;
105 typedef struct region_element region_element
;
106 extern void delete_element(region_element
*element
) DECLSPEC_HIDDEN
;
108 extern GpStatus
get_hatch_data(HatchStyle hatchstyle
, const char **result
) DECLSPEC_HIDDEN
;
110 static inline INT
gdip_round(REAL x
)
112 return (INT
) floorf(x
+ 0.5);
115 static inline INT
ceilr(REAL x
)
117 return (INT
) ceilf(x
);
120 static inline REAL
deg2rad(REAL degrees
)
122 return M_PI
* degrees
/ 180.0;
125 static inline ARGB
color_over(ARGB bg
, ARGB fg
)
128 BYTE bg_alpha
, fg_alpha
;
130 fg_alpha
= (fg
>>24)&0xff;
132 if (fg_alpha
== 0xff) return fg
;
134 if (fg_alpha
== 0) return bg
;
136 bg_alpha
= (((bg
>>24)&0xff) * (0xff-fg_alpha
)) / 0xff;
138 if (bg_alpha
== 0) return fg
;
140 a
= bg_alpha
+ fg_alpha
;
141 b
= ((bg
&0xff)*bg_alpha
+ (fg
&0xff)*fg_alpha
)/a
;
142 g
= (((bg
>>8)&0xff)*bg_alpha
+ ((fg
>>8)&0xff)*fg_alpha
)/a
;
143 r
= (((bg
>>16)&0xff)*bg_alpha
+ ((fg
>>16)&0xff)*fg_alpha
)/a
;
145 return (a
<<24)|(r
<<16)|(g
<<8)|b
;
148 /* fg is premult, bg and return value are not */
149 static inline ARGB
color_over_fgpremult(ARGB bg
, ARGB fg
)
152 BYTE bg_alpha
, fg_alpha
;
154 fg_alpha
= (fg
>>24)&0xff;
156 if (fg_alpha
== 0) return bg
;
158 bg_alpha
= (((bg
>>24)&0xff) * (0xff-fg_alpha
)) / 0xff;
160 a
= bg_alpha
+ fg_alpha
;
161 b
= ((bg
&0xff)*bg_alpha
+ (fg
&0xff)*0xff)/a
;
162 g
= (((bg
>>8)&0xff)*bg_alpha
+ ((fg
>>8)&0xff)*0xff)/a
;
163 r
= (((bg
>>16)&0xff)*bg_alpha
+ ((fg
>>16)&0xff)*0xff)/a
;
165 return (a
<<24)|(r
<<16)|(g
<<8)|b
;
168 extern const char *debugstr_rectf(const RectF
* rc
) DECLSPEC_HIDDEN
;
170 extern const char *debugstr_pointf(const PointF
* pt
) DECLSPEC_HIDDEN
;
172 extern void convert_32bppARGB_to_32bppPARGB(UINT width
, UINT height
,
173 BYTE
*dst_bits
, INT dst_stride
, const BYTE
*src_bits
, INT src_stride
) DECLSPEC_HIDDEN
;
175 extern GpStatus
convert_pixels(INT width
, INT height
,
176 INT dst_stride
, BYTE
*dst_bits
, PixelFormat dst_format
,
177 INT src_stride
, const BYTE
*src_bits
, PixelFormat src_format
, ColorPalette
*palette
) DECLSPEC_HIDDEN
;
190 GpCustomLineCap
*customstart
;
191 GpCustomLineCap
*customend
;
197 REAL offset
; /* dash offset */
199 GpPenAlignment align
;
209 ImageType image_type
;
210 SmoothingMode smoothing
;
211 CompositingQuality compqual
;
212 InterpolationMode interpolation
;
213 PixelOffsetMode pixeloffset
;
214 CompositingMode compmode
;
215 TextRenderingHint texthint
;
216 GpUnit unit
; /* page unit */
217 REAL scale
; /* page scale */
219 GpMatrix worldtrans
; /* world transform */
220 BOOL busy
; /* hdc handle obtained by GdipGetDC */
221 GpRegion
*clip
; /* in device coords */
222 UINT textcontrast
; /* not used yet. get/set only */
223 struct list containers
;
224 GraphicsContainer contid
; /* last-issued container ID */
225 INT origin_x
, origin_y
;
226 /* For giving the caller an HDC when we technically can't: */
227 HBITMAP temp_hbitmap
;
228 int temp_hbitmap_width
;
229 int temp_hbitmap_height
;
240 HatchStyle hatchstyle
;
250 struct GpPathGradient
{
258 REAL
* blendfac
; /* blend factors */
259 REAL
* blendpos
; /* blend positions */
261 ARGB
*surroundcolors
;
262 INT surroundcolorcount
;
263 ARGB
* pblendcolor
; /* preset blend colors */
264 REAL
* pblendpos
; /* preset blend positions */
269 struct GpLineGradient
{
278 REAL
* blendfac
; /* blend factors */
279 REAL
* blendpos
; /* blend positions */
281 ARGB
* pblendcolor
; /* preset blend colors */
282 REAL
* pblendpos
; /* preset blend positions */
290 GpImageAttributes
*imageattributes
;
291 BYTE
*bitmap_bits
; /* image bits converted to ARGB and run through imageattributes */
297 BOOL newfigure
; /* whether the next drawing action starts a new figure */
298 INT datalen
; /* size of the arrays in pathdata */
301 struct GpPathIterator
{
303 INT subpath_pos
; /* for NextSubpath methods */
304 INT marker_pos
; /* for NextMarker methods */
305 INT pathtype_pos
; /* for NextPathType methods */
308 struct GpCustomLineCap
{
310 BOOL fill
; /* TRUE for fill, FALSE for stroke */
311 GpLineCap cap
; /* as far as I can tell, this value is ignored */
312 REAL inset
; /* how much to adjust the end of the line */
317 struct GpAdustableArrowCap
{
323 IWICBitmapDecoder
*decoder
;
327 UINT frame_count
, current_frame
;
328 ColorPalette
*palette
;
336 MetafileType metafile_type
;
338 int preserve_hemf
; /* if true, hemf belongs to the app and should not be deleted */
342 GpGraphics
*record_graphics
;
344 DWORD comment_data_size
;
345 DWORD comment_data_length
;
346 IStream
*record_stream
;
349 GpGraphics
*playback_graphics
;
351 GpPointF playback_points
[3];
353 HANDLETABLE
*handle_table
;
355 GpMatrix
*world_transform
;
365 ImageLockMode lockmode
;
367 BYTE
*bitmapbits
; /* pointer to the buffer we passed in BitmapLockBits */
370 BYTE
*bits
; /* actual image bits if this is a DIB */
371 INT stride
; /* stride of bits if this is a DIB */
372 BYTE
*own_bits
; /* image bits that need to be freed with this object */
373 INT lockx
, locky
; /* X and Y coordinates of the rect when a bitmap is locked for writing. */
374 IWICMetadataReader
*metadata_reader
; /* NULL if there is no metadata */
376 PropertyItem
*prop_item
; /* cached image properties */
379 struct GpCachedBitmap
{
391 ColorMatrixFlags flags
;
392 ColorMatrix colormatrix
;
393 ColorMatrix graymatrix
;
396 struct color_remap_table
{
402 struct GpImageAttributes
{
406 struct color_key colorkeys
[ColorAdjustTypeCount
];
407 struct color_matrix colormatrices
[ColorAdjustTypeCount
];
408 struct color_remap_table colorremaptables
[ColorAdjustTypeCount
];
409 BOOL gamma_enabled
[ColorAdjustTypeCount
];
410 REAL gamma
[ColorAdjustTypeCount
];
414 GpFontFamily
*family
;
415 OUTLINETEXTMETRICW otm
;
416 REAL emSize
; /* in font units */
420 struct GpStringFormat
{
424 StringAlignment align
;
425 StringTrimming trimming
;
426 HotkeyPrefix hkprefix
;
427 StringAlignment vertalign
;
428 StringDigitSubstitute digitsub
;
432 CharacterRange
*character_ranges
;
434 BOOL generic_typographic
;
437 struct GpFontCollection
{
438 GpFontFamily
**FontFamilies
;
444 WCHAR FamilyName
[LF_FACESIZE
];
445 UINT16 em_height
, ascent
, descent
, line_spacing
; /* in font units */
450 typedef enum RegionType
452 RegionDataRect
= 0x10000000,
453 RegionDataPath
= 0x10000001,
454 RegionDataEmptyRect
= 0x10000002,
455 RegionDataInfiniteRect
= 0x10000003,
458 struct region_element
460 DWORD type
; /* Rectangle, Path, SpecialRectangle, or CombineMode */
467 struct region_element
*left
; /* the original region */
468 struct region_element
*right
; /* what *left was combined with */
478 typedef GpStatus (*gdip_format_string_callback
)(HDC hdc
,
479 GDIPCONST WCHAR
*string
, INT index
, INT length
, GDIPCONST GpFont
*font
,
480 GDIPCONST RectF
*rect
, GDIPCONST GpStringFormat
*format
,
481 INT lineno
, const RectF
*bounds
, INT
*underlined_indexes
,
482 INT underlined_index_count
, void *user_data
);
484 GpStatus
gdip_format_string(HDC hdc
,
485 GDIPCONST WCHAR
*string
, INT length
, GDIPCONST GpFont
*font
,
486 GDIPCONST RectF
*rect
, GDIPCONST GpStringFormat
*format
, int ignore_empty_clip
,
487 gdip_format_string_callback callback
, void *user_data
) DECLSPEC_HIDDEN
;
489 void get_log_fontW(const GpFont
*, GpGraphics
*, LOGFONTW
*) DECLSPEC_HIDDEN
;