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 "wine/list.h"
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)
41 #define VERSION_MAGIC 0xdbc01001
42 #define TENSION_CONST (0.3)
44 COLORREF ARGB2COLORREF(ARGB color) DECLSPEC_HIDDEN;
45 HBITMAP ARGB2BMP(ARGB color) DECLSPEC_HIDDEN;
46 extern INT arc2polybezier(GpPointF * points, REAL x1, REAL y1, REAL x2, REAL y2,
47 REAL startAngle, REAL sweepAngle) DECLSPEC_HIDDEN;
48 extern REAL gdiplus_atan2(REAL dy, REAL dx) DECLSPEC_HIDDEN;
49 extern GpStatus hresult_to_status(HRESULT res) DECLSPEC_HIDDEN;
50 extern REAL convert_unit(REAL logpixels, GpUnit unit) DECLSPEC_HIDDEN;
52 extern GpStatus graphics_from_image(GpImage *image, GpGraphics **graphics) DECLSPEC_HIDDEN;
54 extern GpStatus METAFILE_GetGraphicsContext(GpMetafile* metafile, GpGraphics **result) DECLSPEC_HIDDEN;
55 extern GpStatus METAFILE_GetDC(GpMetafile* metafile, HDC *hdc) DECLSPEC_HIDDEN;
56 extern GpStatus METAFILE_ReleaseDC(GpMetafile* metafile, HDC hdc) DECLSPEC_HIDDEN;
57 extern GpStatus METAFILE_GraphicsDeleted(GpMetafile* metafile) DECLSPEC_HIDDEN;
59 extern void calc_curve_bezier(CONST GpPointF *pts, REAL tension, REAL *x1,
60 REAL *y1, REAL *x2, REAL *y2) DECLSPEC_HIDDEN;
61 extern void calc_curve_bezier_endp(REAL xend, REAL yend, REAL xadj, REAL yadj,
62 REAL tension, REAL *x, REAL *y) DECLSPEC_HIDDEN;
64 extern void free_installed_fonts(void) DECLSPEC_HIDDEN;
66 extern void get_font_hfont(GpGraphics *graphics, GDIPCONST GpFont *font, HFONT *hfont) DECLSPEC_HIDDEN;
68 extern BOOL lengthen_path(GpPath *path, INT len) DECLSPEC_HIDDEN;
70 extern GpStatus trace_path(GpGraphics *graphics, GpPath *path) DECLSPEC_HIDDEN;
72 typedef struct region_element region_element;
73 extern void delete_element(region_element *element) DECLSPEC_HIDDEN;
75 extern GpStatus get_hatch_data(HatchStyle hatchstyle, const char **result) DECLSPEC_HIDDEN;
77 static inline INT roundr(REAL x)
79 return (INT) floorf(x + 0.5);
82 static inline INT ceilr(REAL x)
84 return (INT) ceilf(x);
87 static inline REAL deg2rad(REAL degrees)
89 return M_PI * degrees / 180.0;
92 static inline ARGB color_over(ARGB bg, ARGB fg)
95 BYTE bg_alpha, fg_alpha;
97 fg_alpha = (fg>>24)&0xff;
99 if (fg_alpha == 0xff) return fg;
101 if (fg_alpha == 0) return bg;
103 bg_alpha = (((bg>>24)&0xff) * (0xff-fg_alpha)) / 0xff;
105 if (bg_alpha == 0) return fg;
107 a = bg_alpha + fg_alpha;
108 b = ((bg&0xff)*bg_alpha + (fg&0xff)*fg_alpha)/a;
109 g = (((bg>>8)&0xff)*bg_alpha + ((fg>>8)&0xff)*fg_alpha)/a;
110 r = (((bg>>16)&0xff)*bg_alpha + ((fg>>16)&0xff)*fg_alpha)/a;
112 return (a<<24)|(r<<16)|(g<<8)|b;
115 extern const char *debugstr_rectf(CONST RectF* rc) DECLSPEC_HIDDEN;
117 extern const char *debugstr_pointf(CONST PointF* pt) DECLSPEC_HIDDEN;
119 extern void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height,
120 BYTE *dst_bits, INT dst_stride, const BYTE *src_bits, INT src_stride) DECLSPEC_HIDDEN;
122 extern GpStatus convert_pixels(INT width, INT height,
123 INT dst_stride, BYTE *dst_bits, PixelFormat dst_format,
124 INT src_stride, const BYTE *src_bits, PixelFormat src_format, ARGB *src_palette) DECLSPEC_HIDDEN;
133 GpCustomLineCap *customstart;
134 GpCustomLineCap *customend;
140 REAL offset; /* dash offset */
142 GpPenAlignment align;
150 SmoothingMode smoothing;
151 CompositingQuality compqual;
152 InterpolationMode interpolation;
153 PixelOffsetMode pixeloffset;
154 CompositingMode compmode;
155 TextRenderingHint texthint;
156 GpUnit unit; /* page unit */
157 REAL scale; /* page scale */
158 GpMatrix * worldtrans; /* world transform */
159 BOOL busy; /* hdc handle obtained by GdipGetDC */
161 UINT textcontrast; /* not used yet. get/set only */
162 struct list containers;
163 GraphicsContainer contid; /* last-issued container ID */
164 /* For giving the caller an HDC when we technically can't: */
165 HBITMAP temp_hbitmap;
166 int temp_hbitmap_width;
167 int temp_hbitmap_height;
178 HatchStyle hatchstyle;
188 struct GpPathGradient{
196 REAL* blendfac; /* blend factors */
197 REAL* blendpos; /* blend positions */
199 ARGB *surroundcolors;
200 INT surroundcolorcount;
201 ARGB* pblendcolor; /* preset blend colors */
202 REAL* pblendpos; /* preset blend positions */
207 struct GpLineGradient{
216 REAL* blendfac; /* blend factors */
217 REAL* blendpos; /* blend positions */
219 ARGB* pblendcolor; /* preset blend colors */
220 REAL* pblendpos; /* preset blend positions */
228 GpImageAttributes *imageattributes;
229 BYTE *bitmap_bits; /* image bits converted to ARGB and run through imageattributes */
235 BOOL newfigure; /* whether the next drawing action starts a new figure */
236 INT datalen; /* size of the arrays in pathdata */
243 struct GpPathIterator{
245 INT subpath_pos; /* for NextSubpath methods */
246 INT marker_pos; /* for NextMarker methods */
247 INT pathtype_pos; /* for NextPathType methods */
250 struct GpCustomLineCap{
252 BOOL fill; /* TRUE for fill, FALSE for stroke */
253 GpLineCap cap; /* as far as I can tell, this value is ignored */
254 REAL inset; /* how much to adjust the end of the line */
259 struct GpAdustableArrowCap{
271 ARGB *palette_entries;
279 MetafileType metafile_type;
284 GpGraphics *record_graphics;
286 DWORD comment_data_size;
287 DWORD comment_data_length;
290 GpGraphics *playback_graphics;
292 GpPointF playback_points[3];
293 HANDLETABLE *handle_table;
302 ImageLockMode lockmode;
304 BYTE *bitmapbits; /* pointer to the buffer we passed in BitmapLockBits */
307 BYTE *bits; /* actual image bits if this is a DIB */
308 INT stride; /* stride of bits if this is a DIB */
309 BYTE *own_bits; /* image bits that need to be freed with this object */
310 INT lockx, locky; /* X and Y coordinates of the rect when a bitmap is locked for writing. */
313 struct GpCachedBitmap{
325 ColorMatrixFlags flags;
326 ColorMatrix colormatrix;
327 ColorMatrix graymatrix;
330 struct color_remap_table{
336 struct GpImageAttributes{
340 struct color_key colorkeys[ColorAdjustTypeCount];
341 struct color_matrix colormatrices[ColorAdjustTypeCount];
342 struct color_remap_table colorremaptables[ColorAdjustTypeCount];
343 BOOL gamma_enabled[ColorAdjustTypeCount];
344 REAL gamma[ColorAdjustTypeCount];
356 struct GpStringFormat{
360 StringAlignment align;
361 StringTrimming trimming;
362 HotkeyPrefix hkprefix;
363 StringAlignment vertalign;
364 StringDigitSubstitute digitsub;
368 CharacterRange *character_ranges;
372 struct GpFontCollection{
373 GpFontFamily **FontFamilies;
380 WCHAR FamilyName[LF_FACESIZE];
384 typedef enum RegionType
386 RegionDataRect = 0x10000000,
387 RegionDataPath = 0x10000001,
388 RegionDataEmptyRect = 0x10000002,
389 RegionDataInfiniteRect = 0x10000003,
392 struct region_element
394 DWORD type; /* Rectangle, Path, SpecialRectangle, or CombineMode */
411 struct region_element *left; /* the original region */
412 struct region_element *right; /* what *left was combined with */
428 typedef GpStatus (*gdip_format_string_callback)(HDC hdc,
429 GDIPCONST WCHAR *string, INT index, INT length, GDIPCONST GpFont *font,
430 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
431 INT lineno, const RectF *bounds, INT *underlined_indexes,
432 INT underlined_index_count, void *user_data);
434 GpStatus gdip_format_string(HDC hdc,
435 GDIPCONST WCHAR *string, INT length, GDIPCONST GpFont *font,
436 GDIPCONST RectF *rect, GDIPCONST GpStringFormat *format,
437 gdip_format_string_callback callback, void *user_data) DECLSPEC_HIDDEN;