gdi32: Calculate the min/max color component intensities for 17 glyph levels.
[wine] / dlls / gdi32 / dibdrv / dibdrv.h
1 /*
2  * DIB driver include file.
3  *
4  * Copyright 2011 Huw Davies
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 enum dib_info_flags
22 {
23     private_color_table = 1
24 };
25
26 typedef struct
27 {
28     int bit_count, width, height;
29     int stride; /* stride in bytes.  Will be -ve for bottom-up dibs (see bits). */
30     struct gdi_image_bits bits; /* bits.ptr points to the top-left corner of the dib. */
31
32     DWORD red_mask, green_mask, blue_mask;
33     int red_shift, green_shift, blue_shift;
34     int red_len, green_len, blue_len;
35
36     RGBQUAD *color_table;
37     DWORD color_table_size;
38
39     enum dib_info_flags flags;
40
41     const struct primitive_funcs *funcs;
42 } dib_info;
43
44 typedef struct
45 {
46     DWORD count;
47     DWORD dashes[16]; /* 16 is the maximum number for a PS_USERSTYLE pen */
48     DWORD total_len;  /* total length of the dashes, should be multiplied by 2 if there are an odd number of dash lengths */
49 } dash_pattern;
50
51 typedef struct
52 {
53     int left_in_dash;
54     int cur_dash;
55     BOOL mark;
56 } dash_pos;
57
58 typedef struct
59 {
60     DWORD and;
61     DWORD xor;
62 } rop_mask;
63
64 typedef struct
65 {
66     void *and;
67     void *xor;
68 } rop_mask_bits;
69
70 struct intensity_range
71 {
72     BYTE r_min, r_max;
73     BYTE g_min, g_max;
74     BYTE b_min, b_max;
75 };
76
77 typedef struct dibdrv_physdev
78 {
79     struct gdi_physdev dev;
80     dib_info dib;
81
82     HRGN clip;
83     DWORD defer;
84
85     /* pen */
86     COLORREF pen_colorref;
87     DWORD pen_color, pen_and, pen_xor;
88     dash_pattern pen_pattern;
89     dash_pos dash_pos;
90     BOOL   (* pen_lines)(struct dibdrv_physdev *pdev, int num, POINT *pts);
91
92     /* brush */
93     UINT brush_style;
94     UINT brush_hatch;
95     INT brush_rop;   /* PatBlt, for example, can override the DC's rop2 */
96     COLORREF brush_colorref;
97     DWORD brush_color, brush_and, brush_xor;
98     dib_info brush_dib;
99     void *brush_and_bits, *brush_xor_bits;
100     const BITMAPINFO *brush_pattern_info;
101     void *brush_pattern_bits;
102     UINT brush_pattern_usage;
103     BOOL   (* brush_rects)(struct dibdrv_physdev *pdev, dib_info *dib, int num, const RECT *rects, HRGN clip);
104
105     /* background */
106     DWORD bkgnd_color, bkgnd_and, bkgnd_xor;
107
108     /* text */
109     DWORD text_color;
110     struct intensity_range glyph_intensities[17];
111 } dibdrv_physdev;
112
113 #define DEFER_FORMAT     1
114 #define DEFER_PEN        2
115 #define DEFER_BRUSH      4
116
117 extern BOOL     dibdrv_AlphaBlend( PHYSDEV dst_dev, struct bitblt_coords *dst,
118                                    PHYSDEV src_dev, struct bitblt_coords *src, BLENDFUNCTION blend ) DECLSPEC_HIDDEN;
119 extern DWORD    dibdrv_BlendImage( PHYSDEV dev, BITMAPINFO *info, const struct gdi_image_bits *bits,
120                                    struct bitblt_coords *src, struct bitblt_coords *dst, BLENDFUNCTION func ) DECLSPEC_HIDDEN;
121 extern BOOL     dibdrv_ExtTextOut( PHYSDEV dev, INT x, INT y, UINT flags,
122                                    const RECT *rect, LPCWSTR str, UINT count, const INT *dx ) DECLSPEC_HIDDEN;
123 extern DWORD    dibdrv_GetImage( PHYSDEV dev, HBITMAP hbitmap, BITMAPINFO *info,
124                                  struct gdi_image_bits *bits, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
125 extern COLORREF dibdrv_GetPixel( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
126 extern BOOL     dibdrv_LineTo( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
127 extern BOOL     dibdrv_PatBlt( PHYSDEV dev, struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
128 extern BOOL     dibdrv_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
129 extern BOOL     dibdrv_PolyPolyline( PHYSDEV dev, const POINT* pt, const DWORD* counts,
130                                      DWORD polylines ) DECLSPEC_HIDDEN;
131 extern BOOL     dibdrv_Polyline( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
132 extern DWORD    dibdrv_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info,
133                                  const struct gdi_image_bits *bits, struct bitblt_coords *src,
134                                  struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
135 extern BOOL     dibdrv_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
136 extern HBRUSH   dibdrv_SelectBrush( PHYSDEV dev, HBRUSH hbrush, HBITMAP bitmap,
137                                     const BITMAPINFO *info, void *bits, UINT usage ) DECLSPEC_HIDDEN;
138 extern HPEN     dibdrv_SelectPen( PHYSDEV dev, HPEN hpen ) DECLSPEC_HIDDEN;
139 extern COLORREF dibdrv_SetDCBrushColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
140 extern COLORREF dibdrv_SetDCPenColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
141 extern COLORREF dibdrv_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color ) DECLSPEC_HIDDEN;
142 extern BOOL     dibdrv_StretchBlt( PHYSDEV dst_dev, struct bitblt_coords *dst,
143                                    PHYSDEV src_dev, struct bitblt_coords *src, DWORD rop ) DECLSPEC_HIDDEN;
144
145 static inline dibdrv_physdev *get_dibdrv_pdev( PHYSDEV dev )
146 {
147     return (dibdrv_physdev *)dev;
148 }
149
150 struct stretch_params
151 {
152     int err_start, err_add_1, err_add_2;
153     unsigned int length;
154     int dst_inc, src_inc;
155 };
156
157 typedef struct primitive_funcs
158 {
159     void            (* solid_rects)(const dib_info *dib, int num, const RECT *rc, DWORD and, DWORD xor);
160     void          (* pattern_rects)(const dib_info *dib, int num, const RECT *rc, const POINT *orign,
161                                     const dib_info *brush, void *and_bits, void *xor_bits);
162     void              (* copy_rect)(const dib_info *dst, const RECT *rc, const dib_info *src,
163                                     const POINT *origin, int rop2, int overlap);
164     void             (* blend_rect)(const dib_info *dst, const RECT *rc, const dib_info *src,
165                                     const POINT *origin, BLENDFUNCTION blend);
166     DWORD             (* get_pixel)(const dib_info *dib, const POINT *pt);
167     DWORD     (* colorref_to_pixel)(const dib_info *dib, COLORREF color);
168     COLORREF  (* pixel_to_colorref)(const dib_info *dib, DWORD pixel);
169     void             (* convert_to)(dib_info *dst, const dib_info *src, const RECT *src_rect);
170     BOOL       (* create_rop_masks)(const dib_info *dib, const dib_info *hatch,
171                                     const rop_mask *fg, const rop_mask *bg, rop_mask_bits *bits);
172     void            (* stretch_row)(const dib_info *dst_dib, const POINT *dst_start,
173                                     const dib_info *src_dib, const POINT *src_start,
174                                     const struct stretch_params *params, int mode, BOOL keep_dst);
175     void             (* shrink_row)(const dib_info *dst_dib, const POINT *dst_start,
176                                     const dib_info *src_dib, const POINT *src_start,
177                                     const struct stretch_params *params, int mode, BOOL keep_dst);
178 } primitive_funcs;
179
180 extern const primitive_funcs funcs_8888 DECLSPEC_HIDDEN;
181 extern const primitive_funcs funcs_32   DECLSPEC_HIDDEN;
182 extern const primitive_funcs funcs_24   DECLSPEC_HIDDEN;
183 extern const primitive_funcs funcs_555  DECLSPEC_HIDDEN;
184 extern const primitive_funcs funcs_16   DECLSPEC_HIDDEN;
185 extern const primitive_funcs funcs_8    DECLSPEC_HIDDEN;
186 extern const primitive_funcs funcs_4    DECLSPEC_HIDDEN;
187 extern const primitive_funcs funcs_1    DECLSPEC_HIDDEN;
188 extern const primitive_funcs funcs_null DECLSPEC_HIDDEN;
189
190 struct rop_codes
191 {
192     DWORD a1, a2, x1, x2;
193 };
194
195 #define OVERLAP_LEFT  0x01  /* dest starts left of source */
196 #define OVERLAP_RIGHT 0x02  /* dest starts right of source */
197 #define OVERLAP_ABOVE 0x04  /* dest starts above source */
198 #define OVERLAP_BELOW 0x08  /* dest starts below source */
199
200 typedef struct
201 {
202     unsigned int dx, dy;
203     int bias;
204     DWORD octant;
205 } bres_params;
206
207 extern void get_rop_codes(INT rop, struct rop_codes *codes) DECLSPEC_HIDDEN;
208 extern void calc_and_xor_masks(INT rop, DWORD color, DWORD *and, DWORD *xor) DECLSPEC_HIDDEN;
209 extern void update_brush_rop( dibdrv_physdev *pdev, INT rop ) DECLSPEC_HIDDEN;
210 extern void reset_dash_origin(dibdrv_physdev *pdev) DECLSPEC_HIDDEN;
211 extern BOOL init_dib_info(dib_info *dib, const BITMAPINFOHEADER *bi, const DWORD *bit_fields,
212                           RGBQUAD *color_table, int color_table_size, void *bits,
213                           enum dib_info_flags flags) DECLSPEC_HIDDEN;
214 extern BOOL init_dib_info_from_brush(dib_info *dib, const BITMAPINFO *bi, void *bits, UINT usage, HPALETTE pal) DECLSPEC_HIDDEN;
215 extern BOOL init_dib_info_from_bitmapinfo(dib_info *dib, const BITMAPINFO *info, void *bits,
216                                           enum dib_info_flags flags) DECLSPEC_HIDDEN;
217 extern BOOL init_dib_info_from_bitmapobj(dib_info *dib, BITMAPOBJ *bmp, enum dib_info_flags flags) DECLSPEC_HIDDEN;
218 extern void free_dib_info(dib_info *dib) DECLSPEC_HIDDEN;
219 extern void free_pattern_brush(dibdrv_physdev *pdev) DECLSPEC_HIDDEN;
220 extern void copy_dib_color_info(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
221 extern BOOL convert_dib(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
222 extern DWORD get_pixel_color(dibdrv_physdev *pdev, COLORREF color, BOOL mono_fixup) DECLSPEC_HIDDEN;
223 extern BOOL brush_rects( dibdrv_physdev *pdev, int num, const RECT *rects ) DECLSPEC_HIDDEN;
224 extern void solid_rects( dib_info *dib, int num, const RECT *rects, const rop_mask *color, HRGN region ) DECLSPEC_HIDDEN;
225 extern HRGN add_extra_clipping_region( dibdrv_physdev *pdev, HRGN rgn ) DECLSPEC_HIDDEN;
226 extern void restore_clipping_region( dibdrv_physdev *pdev, HRGN rgn ) DECLSPEC_HIDDEN;
227 extern int clip_line(const POINT *start, const POINT *end, const RECT *clip,
228                      const bres_params *params, POINT *pt1, POINT *pt2) DECLSPEC_HIDDEN;
229 extern void update_aa_ranges( dibdrv_physdev *pdev ) DECLSPEC_HIDDEN;
230
231 static inline BOOL defer_pen(dibdrv_physdev *pdev)
232 {
233     return pdev->defer & (DEFER_FORMAT | DEFER_PEN);
234 }
235
236 static inline BOOL defer_brush(dibdrv_physdev *pdev)
237 {
238     return pdev->defer & (DEFER_FORMAT | DEFER_BRUSH);
239 }