comctl32: Fix a logical operator typo.
[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 extern DWORD    dibdrv_GetImage( PHYSDEV dev, HBITMAP hbitmap, BITMAPINFO *info,
22                                  struct gdi_image_bits *bits, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
23 extern BOOL     dibdrv_LineTo( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
24 extern BOOL     dibdrv_PatBlt( PHYSDEV dev, struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
25 extern BOOL     dibdrv_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
26 extern BOOL     dibdrv_PolyPolyline( PHYSDEV dev, const POINT* pt, const DWORD* counts,
27                                      DWORD polylines ) DECLSPEC_HIDDEN;
28 extern BOOL     dibdrv_Polyline( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
29 extern DWORD    dibdrv_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info,
30                                  const struct gdi_image_bits *bits, struct bitblt_coords *src,
31                                  struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
32 extern BOOL     dibdrv_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
33 extern HBRUSH   dibdrv_SelectBrush( PHYSDEV dev, HBRUSH hbrush ) DECLSPEC_HIDDEN;
34 extern HPEN     dibdrv_SelectPen( PHYSDEV dev, HPEN hpen ) DECLSPEC_HIDDEN;
35 extern COLORREF dibdrv_SetDCBrushColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
36 extern COLORREF dibdrv_SetDCPenColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
37
38 static inline dibdrv_physdev *get_dibdrv_pdev( PHYSDEV dev )
39 {
40     return (dibdrv_physdev *)dev;
41 }
42
43 static inline DC *get_dibdrv_dc( PHYSDEV dev )
44 {
45     return CONTAINING_RECORD( dev, DC, dibdrv );
46 }
47
48 typedef struct primitive_funcs
49 {
50     void        (* solid_rects)(const dib_info *dib, int num, const RECT *rc, DWORD and, DWORD xor);
51     void      (* pattern_rects)(const dib_info *dib, int num, const RECT *rc, const POINT *orign, const dib_info *brush, void *and_bits, void *xor_bits);
52     void          (* copy_rect)(const dib_info *dst, const RECT *rc, const dib_info *src, const POINT *origin, int rop2);
53     DWORD (* colorref_to_pixel)(const dib_info *dib, COLORREF color);
54     BOOL         (* convert_to)(dib_info *dst, const dib_info *src, const RECT *src_rect);
55     BOOL   (* create_rop_masks)(const dib_info *dib, const dib_info *hatch, const rop_mask *fg, const rop_mask *bg, rop_mask_bits *bits);
56 } primitive_funcs;
57
58 extern const primitive_funcs funcs_8888 DECLSPEC_HIDDEN;
59 extern const primitive_funcs funcs_32   DECLSPEC_HIDDEN;
60 extern const primitive_funcs funcs_24   DECLSPEC_HIDDEN;
61 extern const primitive_funcs funcs_555  DECLSPEC_HIDDEN;
62 extern const primitive_funcs funcs_16   DECLSPEC_HIDDEN;
63 extern const primitive_funcs funcs_8    DECLSPEC_HIDDEN;
64 extern const primitive_funcs funcs_4    DECLSPEC_HIDDEN;
65 extern const primitive_funcs funcs_1    DECLSPEC_HIDDEN;
66 extern const primitive_funcs funcs_null DECLSPEC_HIDDEN;
67
68 struct rop_codes
69 {
70     DWORD a1, a2, x1, x2;
71 };
72
73 extern void get_rop_codes(INT rop, struct rop_codes *codes);
74 extern void calc_and_xor_masks(INT rop, DWORD color, DWORD *and, DWORD *xor) DECLSPEC_HIDDEN;
75 extern void update_brush_rop( dibdrv_physdev *pdev, INT rop ) DECLSPEC_HIDDEN;
76 extern void reset_dash_origin(dibdrv_physdev *pdev) DECLSPEC_HIDDEN;
77 extern BOOL init_dib_info(dib_info *dib, const BITMAPINFOHEADER *bi, const DWORD *bit_fields,
78                           RGBQUAD *color_table, int color_table_size, void *bits,
79                           enum dib_info_flags flags) DECLSPEC_HIDDEN;
80 extern BOOL init_dib_info_from_packed(dib_info *dib, const BITMAPINFOHEADER *bi, WORD usage, HPALETTE pal) DECLSPEC_HIDDEN;
81 extern BOOL init_dib_info_from_bitmapinfo(dib_info *dib, const BITMAPINFO *info, void *bits,
82                                           enum dib_info_flags flags) DECLSPEC_HIDDEN;
83 extern void free_dib_info(dib_info *dib) DECLSPEC_HIDDEN;
84 extern void free_pattern_brush(dibdrv_physdev *pdev) DECLSPEC_HIDDEN;
85 extern void copy_dib_color_info(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
86 extern BOOL convert_dib(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
87 extern DWORD get_fg_color(dibdrv_physdev *pdev, COLORREF color) DECLSPEC_HIDDEN;
88 extern BOOL brush_rects( dibdrv_physdev *pdev, int num, const RECT *rects ) DECLSPEC_HIDDEN;
89 extern HRGN add_extra_clipping_region( dibdrv_physdev *pdev, HRGN rgn ) DECLSPEC_HIDDEN;
90 extern void restore_clipping_region( dibdrv_physdev *pdev, HRGN rgn ) DECLSPEC_HIDDEN;
91
92 static inline BOOL defer_pen(dibdrv_physdev *pdev)
93 {
94     return pdev->defer & (DEFER_FORMAT | DEFER_PEN);
95 }
96
97 static inline BOOL defer_brush(dibdrv_physdev *pdev)
98 {
99     return pdev->defer & (DEFER_FORMAT | DEFER_BRUSH);
100 }