2011-04-01 14:27:48 +00:00
|
|
|
/*
|
|
|
|
* DIB driver include file.
|
|
|
|
*
|
|
|
|
* Copyright 2011 Huw Davies
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-07 21:48:24 +00:00
|
|
|
enum dib_info_flags
|
|
|
|
{
|
|
|
|
private_color_table = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int bit_count, width, height;
|
|
|
|
int stride; /* stride in bytes. Will be -ve for bottom-up dibs (see bits). */
|
|
|
|
struct gdi_image_bits bits; /* bits.ptr points to the top-left corner of the dib. */
|
|
|
|
|
|
|
|
DWORD red_mask, green_mask, blue_mask;
|
|
|
|
int red_shift, green_shift, blue_shift;
|
|
|
|
int red_len, green_len, blue_len;
|
|
|
|
|
|
|
|
RGBQUAD *color_table;
|
|
|
|
DWORD color_table_size;
|
|
|
|
|
|
|
|
enum dib_info_flags flags;
|
|
|
|
|
|
|
|
const struct primitive_funcs *funcs;
|
|
|
|
} dib_info;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD count;
|
|
|
|
DWORD dashes[16]; /* 16 is the maximum number for a PS_USERSTYLE pen */
|
|
|
|
DWORD total_len; /* total length of the dashes, should be multiplied by 2 if there are an odd number of dash lengths */
|
|
|
|
} dash_pattern;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int left_in_dash;
|
|
|
|
int cur_dash;
|
|
|
|
BOOL mark;
|
|
|
|
} dash_pos;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD and;
|
|
|
|
DWORD xor;
|
|
|
|
} rop_mask;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
void *and;
|
|
|
|
void *xor;
|
|
|
|
} rop_mask_bits;
|
|
|
|
|
|
|
|
typedef struct dibdrv_physdev
|
|
|
|
{
|
|
|
|
struct gdi_physdev dev;
|
|
|
|
dib_info dib;
|
|
|
|
|
|
|
|
HRGN clip;
|
|
|
|
DWORD defer;
|
|
|
|
|
|
|
|
/* pen */
|
|
|
|
COLORREF pen_colorref;
|
|
|
|
DWORD pen_color, pen_and, pen_xor;
|
|
|
|
dash_pattern pen_pattern;
|
|
|
|
dash_pos dash_pos;
|
|
|
|
BOOL (* pen_lines)(struct dibdrv_physdev *pdev, int num, POINT *pts);
|
|
|
|
|
|
|
|
/* brush */
|
|
|
|
UINT brush_style;
|
|
|
|
UINT brush_hatch;
|
|
|
|
INT brush_rop; /* PatBlt, for example, can override the DC's rop2 */
|
|
|
|
COLORREF brush_colorref;
|
|
|
|
DWORD brush_color, brush_and, brush_xor;
|
|
|
|
dib_info brush_dib;
|
|
|
|
void *brush_and_bits, *brush_xor_bits;
|
|
|
|
BOOL (* brush_rects)(struct dibdrv_physdev *pdev, dib_info *dib, int num, const RECT *rects, HRGN clip);
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
DWORD bkgnd_color, bkgnd_and, bkgnd_xor;
|
|
|
|
} dibdrv_physdev;
|
|
|
|
|
|
|
|
#define DEFER_FORMAT 1
|
|
|
|
#define DEFER_PEN 2
|
|
|
|
#define DEFER_BRUSH 4
|
|
|
|
|
2011-08-23 10:16:30 +00:00
|
|
|
extern DWORD dibdrv_GetImage( PHYSDEV dev, HBITMAP hbitmap, BITMAPINFO *info,
|
|
|
|
struct gdi_image_bits *bits, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
|
2011-07-13 12:56:12 +00:00
|
|
|
extern BOOL dibdrv_LineTo( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL dibdrv_PatBlt( PHYSDEV dev, struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL dibdrv_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
|
2011-08-19 15:26:19 +00:00
|
|
|
extern BOOL dibdrv_PolyPolyline( PHYSDEV dev, const POINT* pt, const DWORD* counts,
|
|
|
|
DWORD polylines ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL dibdrv_Polyline( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
|
2011-08-23 10:16:30 +00:00
|
|
|
extern DWORD dibdrv_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info,
|
|
|
|
const struct gdi_image_bits *bits, struct bitblt_coords *src,
|
|
|
|
struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
|
2011-07-13 12:56:12 +00:00
|
|
|
extern BOOL dibdrv_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
|
|
|
|
extern HBRUSH dibdrv_SelectBrush( PHYSDEV dev, HBRUSH hbrush ) DECLSPEC_HIDDEN;
|
|
|
|
extern HPEN dibdrv_SelectPen( PHYSDEV dev, HPEN hpen ) DECLSPEC_HIDDEN;
|
|
|
|
extern COLORREF dibdrv_SetDCBrushColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
|
|
|
|
extern COLORREF dibdrv_SetDCPenColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
|
2011-04-07 12:46:33 +00:00
|
|
|
|
2011-04-01 14:27:48 +00:00
|
|
|
static inline dibdrv_physdev *get_dibdrv_pdev( PHYSDEV dev )
|
|
|
|
{
|
|
|
|
return (dibdrv_physdev *)dev;
|
|
|
|
}
|
2011-04-05 12:23:20 +00:00
|
|
|
|
|
|
|
typedef struct primitive_funcs
|
|
|
|
{
|
2011-05-11 14:16:45 +00:00
|
|
|
void (* solid_rects)(const dib_info *dib, int num, const RECT *rc, DWORD and, DWORD xor);
|
2011-05-12 11:46:50 +00:00
|
|
|
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);
|
2011-09-22 07:57:58 +00:00
|
|
|
void (* copy_rect)(const dib_info *dst, const RECT *rc, const dib_info *src, const POINT *origin, int rop2, int overlap);
|
2011-04-05 12:23:20 +00:00
|
|
|
DWORD (* colorref_to_pixel)(const dib_info *dib, COLORREF color);
|
2011-05-27 12:41:32 +00:00
|
|
|
BOOL (* convert_to)(dib_info *dst, const dib_info *src, const RECT *src_rect);
|
2011-06-17 11:45:36 +00:00
|
|
|
BOOL (* create_rop_masks)(const dib_info *dib, const dib_info *hatch, const rop_mask *fg, const rop_mask *bg, rop_mask_bits *bits);
|
2011-04-05 12:23:20 +00:00
|
|
|
} primitive_funcs;
|
|
|
|
|
|
|
|
extern const primitive_funcs funcs_8888 DECLSPEC_HIDDEN;
|
2011-04-05 12:26:08 +00:00
|
|
|
extern const primitive_funcs funcs_32 DECLSPEC_HIDDEN;
|
2011-06-01 08:41:39 +00:00
|
|
|
extern const primitive_funcs funcs_24 DECLSPEC_HIDDEN;
|
2011-05-27 12:10:29 +00:00
|
|
|
extern const primitive_funcs funcs_555 DECLSPEC_HIDDEN;
|
|
|
|
extern const primitive_funcs funcs_16 DECLSPEC_HIDDEN;
|
2011-05-27 13:26:02 +00:00
|
|
|
extern const primitive_funcs funcs_8 DECLSPEC_HIDDEN;
|
2011-05-31 09:02:03 +00:00
|
|
|
extern const primitive_funcs funcs_4 DECLSPEC_HIDDEN;
|
2011-06-15 12:43:49 +00:00
|
|
|
extern const primitive_funcs funcs_1 DECLSPEC_HIDDEN;
|
2011-04-05 12:23:20 +00:00
|
|
|
extern const primitive_funcs funcs_null DECLSPEC_HIDDEN;
|
2011-04-07 12:48:39 +00:00
|
|
|
|
2011-08-02 13:11:07 +00:00
|
|
|
struct rop_codes
|
|
|
|
{
|
|
|
|
DWORD a1, a2, x1, x2;
|
|
|
|
};
|
|
|
|
|
2011-09-22 08:11:27 +00:00
|
|
|
#define OVERLAP_LEFT 0x01 /* dest starts left of source */
|
|
|
|
#define OVERLAP_RIGHT 0x02 /* dest starts right of source */
|
|
|
|
#define OVERLAP_ABOVE 0x04 /* dest starts above source */
|
|
|
|
#define OVERLAP_BELOW 0x08 /* dest starts below source */
|
|
|
|
|
2011-08-02 13:11:07 +00:00
|
|
|
extern void get_rop_codes(INT rop, struct rop_codes *codes);
|
2011-04-07 12:48:39 +00:00
|
|
|
extern void calc_and_xor_masks(INT rop, DWORD color, DWORD *and, DWORD *xor) DECLSPEC_HIDDEN;
|
2011-04-11 09:00:28 +00:00
|
|
|
extern void update_brush_rop( dibdrv_physdev *pdev, INT rop ) DECLSPEC_HIDDEN;
|
2011-05-06 10:48:34 +00:00
|
|
|
extern void reset_dash_origin(dibdrv_physdev *pdev) DECLSPEC_HIDDEN;
|
2011-08-23 10:16:30 +00:00
|
|
|
extern BOOL init_dib_info(dib_info *dib, const BITMAPINFOHEADER *bi, const DWORD *bit_fields,
|
|
|
|
RGBQUAD *color_table, int color_table_size, void *bits,
|
|
|
|
enum dib_info_flags flags) DECLSPEC_HIDDEN;
|
2011-05-27 13:17:20 +00:00
|
|
|
extern BOOL init_dib_info_from_packed(dib_info *dib, const BITMAPINFOHEADER *bi, WORD usage, HPALETTE pal) DECLSPEC_HIDDEN;
|
2011-08-23 10:16:30 +00:00
|
|
|
extern BOOL init_dib_info_from_bitmapinfo(dib_info *dib, const BITMAPINFO *info, void *bits,
|
|
|
|
enum dib_info_flags flags) DECLSPEC_HIDDEN;
|
2011-08-29 13:26:50 +00:00
|
|
|
extern BOOL init_dib_info_from_bitmapobj(dib_info *dib, BITMAPOBJ *bmp, enum dib_info_flags flags) DECLSPEC_HIDDEN;
|
2011-07-12 15:12:04 +00:00
|
|
|
extern void free_dib_info(dib_info *dib) DECLSPEC_HIDDEN;
|
2011-05-12 11:05:37 +00:00
|
|
|
extern void free_pattern_brush(dibdrv_physdev *pdev) DECLSPEC_HIDDEN;
|
|
|
|
extern void copy_dib_color_info(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL convert_dib(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
|
2011-06-15 12:43:48 +00:00
|
|
|
extern DWORD get_fg_color(dibdrv_physdev *pdev, COLORREF color) DECLSPEC_HIDDEN;
|
2011-08-19 15:26:20 +00:00
|
|
|
extern BOOL brush_rects( dibdrv_physdev *pdev, int num, const RECT *rects ) DECLSPEC_HIDDEN;
|
2011-08-23 10:16:30 +00:00
|
|
|
extern HRGN add_extra_clipping_region( dibdrv_physdev *pdev, HRGN rgn ) DECLSPEC_HIDDEN;
|
|
|
|
extern void restore_clipping_region( dibdrv_physdev *pdev, HRGN rgn ) DECLSPEC_HIDDEN;
|
2011-04-11 09:00:28 +00:00
|
|
|
|
|
|
|
static inline BOOL defer_pen(dibdrv_physdev *pdev)
|
|
|
|
{
|
|
|
|
return pdev->defer & (DEFER_FORMAT | DEFER_PEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline BOOL defer_brush(dibdrv_physdev *pdev)
|
|
|
|
{
|
|
|
|
return pdev->defer & (DEFER_FORMAT | DEFER_BRUSH);
|
|
|
|
}
|