2 * PostScript brush handling
4 * Copyright 1998 Huw D M Davies
10 #include "debugtools.h"
14 DEFAULT_DEBUG_CHANNEL(psdrv
)
16 /***********************************************************************
17 * PSDRV_BRUSH_SelectObject
19 HBRUSH
PSDRV_BRUSH_SelectObject( DC
* dc
, HBRUSH hbrush
, BRUSHOBJ
* brush
)
21 HBRUSH prevbrush
= dc
->w
.hBrush
;
22 PSDRV_PDEVICE
*physDev
= (PSDRV_PDEVICE
*)dc
->physDev
;
24 TRACE("hbrush = %08x\n", hbrush
);
25 dc
->w
.hBrush
= hbrush
;
27 switch(brush
->logbrush
.lbStyle
) {
30 PSDRV_CreateColor(physDev
, &physDev
->brush
.color
,
31 brush
->logbrush
.lbColor
);
38 PSDRV_CreateColor(physDev
, &physDev
->brush
.color
,
39 brush
->logbrush
.lbColor
);
43 FIXME("Unsupported brush style %d\n", brush
->logbrush
.lbStyle
);
47 FIXME("Unrecognized brush style %d\n", brush
->logbrush
.lbStyle
);
51 physDev
->brush
.set
= FALSE
;
56 /**********************************************************************
61 static BOOL
PSDRV_SetBrush(DC
*dc
)
63 PSDRV_PDEVICE
*physDev
= (PSDRV_PDEVICE
*)dc
->physDev
;
64 BRUSHOBJ
*brush
= (BRUSHOBJ
*)GDI_GetObjPtr( dc
->w
.hBrush
, BRUSH_MAGIC
);
67 ERR("Can't get BRUSHOBJ\n");
71 switch (brush
->logbrush
.lbStyle
) {
74 PSDRV_WriteSetColor(dc
, &physDev
->brush
.color
);
85 physDev
->brush
.set
= TRUE
;
90 /**********************************************************************
95 static BOOL
PSDRV_Fill(DC
*dc
, BOOL EO
)
98 return PSDRV_WriteFill(dc
);
100 return PSDRV_WriteEOFill(dc
);
104 /**********************************************************************
109 static BOOL
PSDRV_Clip(DC
*dc
, BOOL EO
)
112 return PSDRV_WriteClip(dc
);
114 return PSDRV_WriteEOClip(dc
);
117 /**********************************************************************
122 BOOL
PSDRV_Brush(DC
*dc
, BOOL EO
)
124 BRUSHOBJ
*brush
= (BRUSHOBJ
*)GDI_GetObjPtr( dc
->w
.hBrush
, BRUSH_MAGIC
);
127 ERR("Can't get BRUSHOBJ\n");
131 switch (brush
->logbrush
.lbStyle
) {
134 PSDRV_WriteGSave(dc
);
136 PSDRV_WriteGRestore(dc
);
143 switch(brush
->logbrush
.lbHatch
) {
146 PSDRV_WriteGSave(dc
);
148 PSDRV_WriteHatch(dc
);
149 PSDRV_WriteStroke(dc
);
150 PSDRV_WriteGRestore(dc
);
151 if(brush
->logbrush
.lbHatch
== HS_VERTICAL
)
153 /* else fallthrough for HS_CROSS */
156 PSDRV_WriteGSave(dc
);
158 PSDRV_WriteRotate(dc
, 90.0);
159 PSDRV_WriteHatch(dc
);
160 PSDRV_WriteStroke(dc
);
161 PSDRV_WriteGRestore(dc
);
166 PSDRV_WriteGSave(dc
);
168 PSDRV_WriteRotate(dc
, -45.0);
169 PSDRV_WriteHatch(dc
);
170 PSDRV_WriteStroke(dc
);
171 PSDRV_WriteGRestore(dc
);
172 if(brush
->logbrush
.lbHatch
== HS_FDIAGONAL
)
174 /* else fallthrough for HS_DIAGCROSS */
177 PSDRV_WriteGSave(dc
);
179 PSDRV_WriteRotate(dc
, 45.0);
180 PSDRV_WriteHatch(dc
);
181 PSDRV_WriteStroke(dc
);
182 PSDRV_WriteGRestore(dc
);
186 ERR("Unknown hatch style\n");
200 GetObjectA(brush
->logbrush
.lbHatch
, sizeof(BITMAP
), &bm
);
201 TRACE("BS_PATTERN %dx%d %d bpp\n", bm
.bmWidth
, bm
.bmHeight
,
203 bits
= HeapAlloc(PSDRV_Heap
, 0, bm
.bmWidthBytes
* bm
.bmHeight
);
204 GetBitmapBits(brush
->logbrush
.lbHatch
,
205 bm
.bmWidthBytes
* bm
.bmHeight
, bits
);
207 PSDRV_WriteGSave(dc
);
208 PSDRV_WritePatternDict(dc
, &bm
, bits
);
209 HeapFree(PSDRV_Heap
, 0, bits
);
211 PSDRV_WriteGRestore(dc
);