2 * PostScript driver graphics functions
4 * Copyright 1998 Huw D M Davies
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.
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.
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
27 #if defined(HAVE_FLOAT_H)
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(psdrv
);
41 /***********************************************************************
44 * Performs a world-to-viewport transformation on the specified width.
46 INT
PSDRV_XWStoDS( PHYSDEV dev
, INT width
)
54 LPtoDP( dev
->hdc
, pt
, 2 );
55 return pt
[1].x
- pt
[0].x
;
58 /***********************************************************************
61 static void PSDRV_DrawLine( PHYSDEV dev
)
63 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
65 if(physDev
->pathdepth
)
68 if (physDev
->pen
.style
== PS_NULL
)
69 PSDRV_WriteNewPath(dev
);
71 PSDRV_WriteStroke(dev
);
74 /***********************************************************************
77 BOOL
PSDRV_LineTo(PHYSDEV dev
, INT x
, INT y
)
81 TRACE("%d %d\n", x
, y
);
83 GetCurrentPositionEx( dev
->hdc
, pt
);
86 LPtoDP( dev
->hdc
, pt
, 2 );
91 PSDRV_WriteMoveTo(dev
, pt
[0].x
, pt
[0].y
);
92 PSDRV_WriteLineTo(dev
, pt
[1].x
, pt
[1].y
);
100 /***********************************************************************
103 BOOL
PSDRV_Rectangle( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
)
105 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
108 TRACE("%d %d - %d %d\n", left
, top
, right
, bottom
);
110 SetRect(&rect
, left
, top
, right
, bottom
);
111 LPtoDP( dev
->hdc
, (POINT
*)&rect
, 2 );
113 /* Windows does something truly hacky here. If we're in passthrough mode
114 and our rop is R2_NOP, then we output the string below. This is used in
115 Office 2k when inserting eps files */
116 if(physDev
->job
.in_passthrough
&& !physDev
->job
.had_passthrough_rect
&& GetROP2(dev
->hdc
) == R2_NOP
) {
118 sprintf(buf
, "N %d %d %d %d B\n", rect
.right
- rect
.left
, rect
.bottom
- rect
.top
, rect
.left
, rect
.top
);
119 write_spool(dev
, buf
, strlen(buf
));
120 physDev
->job
.had_passthrough_rect
= TRUE
;
127 PSDRV_WriteRectangle(dev
, rect
.left
, rect
.top
, rect
.right
- rect
.left
,
128 rect
.bottom
- rect
.top
);
131 PSDRV_ResetClip(dev
);
136 /***********************************************************************
139 BOOL
PSDRV_RoundRect( PHYSDEV dev
, INT left
, INT top
, INT right
,
140 INT bottom
, INT ell_width
, INT ell_height
)
144 SetRect(&rect
[0], left
, top
, right
, bottom
);
145 SetRect(&rect
[1], 0, 0, ell_width
, ell_height
);
146 LPtoDP( dev
->hdc
, (POINT
*)rect
, 4 );
150 right
= rect
[0].right
;
151 bottom
= rect
[0].bottom
;
152 if (left
> right
) { INT tmp
= left
; left
= right
; right
= tmp
; }
153 if (top
> bottom
) { INT tmp
= top
; top
= bottom
; bottom
= tmp
; }
155 ell_width
= rect
[1].right
- rect
[1].left
;
156 ell_height
= rect
[1].bottom
- rect
[1].top
;
157 if (ell_width
> right
- left
) ell_width
= right
- left
;
158 if (ell_height
> bottom
- top
) ell_height
= bottom
- top
;
160 PSDRV_WriteSpool(dev
, "%RoundRect\n",11);
164 PSDRV_WriteMoveTo( dev
, left
, top
+ ell_height
/2 );
165 PSDRV_WriteArc( dev
, left
+ ell_width
/2, top
+ ell_height
/2, ell_width
,
166 ell_height
, 90.0, 180.0);
167 PSDRV_WriteLineTo( dev
, right
- ell_width
/2, top
);
168 PSDRV_WriteArc( dev
, right
- ell_width
/2, top
+ ell_height
/2, ell_width
,
169 ell_height
, 0.0, 90.0);
170 PSDRV_WriteLineTo( dev
, right
, bottom
- ell_height
/2 );
171 PSDRV_WriteArc( dev
, right
- ell_width
/2, bottom
- ell_height
/2, ell_width
,
172 ell_height
, -90.0, 0.0);
173 PSDRV_WriteLineTo( dev
, right
- ell_width
/2, bottom
);
174 PSDRV_WriteArc( dev
, left
+ ell_width
/2, bottom
- ell_height
/2, ell_width
,
175 ell_height
, 180.0, -90.0);
176 PSDRV_WriteClosePath( dev
);
180 PSDRV_ResetClip(dev
);
184 /***********************************************************************
187 * Does the work of Arc, Chord and Pie. lines is 0, 1 or 2 respectively.
189 static BOOL
PSDRV_DrawArc( PHYSDEV dev
, INT left
, INT top
,
190 INT right
, INT bottom
, INT xstart
, INT ystart
,
191 INT xend
, INT yend
, int lines
)
194 double start_angle
, end_angle
, ratio
;
198 SetRect(&rect
, left
, top
, right
, bottom
);
199 LPtoDP( dev
->hdc
, (POINT
*)&rect
, 2 );
204 LPtoDP( dev
->hdc
, &start
, 1 );
205 LPtoDP( dev
->hdc
, &end
, 1 );
207 x
= (rect
.left
+ rect
.right
) / 2;
208 y
= (rect
.top
+ rect
.bottom
) / 2;
209 w
= rect
.right
- rect
.left
;
210 h
= rect
.bottom
- rect
.top
;
214 ratio
= ((double)w
)/h
;
216 /* angle is the angle after the rectangle is transformed to a square and is
217 measured anticlockwise from the +ve x-axis */
219 start_angle
= atan2((double)(y
- start
.y
) * ratio
, (double)(start
.x
- x
));
220 end_angle
= atan2((double)(y
- end
.y
) * ratio
, (double)(end
.x
- x
));
222 start_angle
*= 180.0 / PI
;
223 end_angle
*= 180.0 / PI
;
225 PSDRV_WriteSpool(dev
,"%DrawArc\n", 9);
229 if(lines
== 2) /* pie */
230 PSDRV_WriteMoveTo(dev
, x
, y
);
232 PSDRV_WriteNewPath( dev
);
234 PSDRV_WriteArc(dev
, x
, y
, w
, h
, start_angle
, end_angle
);
235 if(lines
== 1 || lines
== 2) { /* chord or pie */
236 PSDRV_WriteClosePath(dev
);
240 PSDRV_ResetClip(dev
);
246 /***********************************************************************
249 BOOL
PSDRV_Arc( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
,
250 INT xstart
, INT ystart
, INT xend
, INT yend
)
252 return PSDRV_DrawArc( dev
, left
, top
, right
, bottom
, xstart
, ystart
, xend
, yend
, 0 );
255 /***********************************************************************
258 BOOL
PSDRV_Chord( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
,
259 INT xstart
, INT ystart
, INT xend
, INT yend
)
261 return PSDRV_DrawArc( dev
, left
, top
, right
, bottom
, xstart
, ystart
, xend
, yend
, 1 );
265 /***********************************************************************
268 BOOL
PSDRV_Pie( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
,
269 INT xstart
, INT ystart
, INT xend
, INT yend
)
271 return PSDRV_DrawArc( dev
, left
, top
, right
, bottom
, xstart
, ystart
, xend
, yend
, 2 );
275 /***********************************************************************
278 BOOL
PSDRV_Ellipse( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
)
283 TRACE("%d %d - %d %d\n", left
, top
, right
, bottom
);
285 SetRect(&rect
, left
, top
, right
, bottom
);
286 LPtoDP( dev
->hdc
, (POINT
*)&rect
, 2 );
288 x
= (rect
.left
+ rect
.right
) / 2;
289 y
= (rect
.top
+ rect
.bottom
) / 2;
290 w
= rect
.right
- rect
.left
;
291 h
= rect
.bottom
- rect
.top
;
293 PSDRV_WriteSpool(dev
, "%Ellipse\n", 9);
297 PSDRV_WriteNewPath(dev
);
298 PSDRV_WriteArc(dev
, x
, y
, w
, h
, 0.0, 360.0);
299 PSDRV_WriteClosePath(dev
);
302 PSDRV_ResetClip(dev
);
307 /***********************************************************************
310 BOOL
PSDRV_PolyPolyline( PHYSDEV dev
, const POINT
* pts
, const DWORD
* counts
, DWORD polylines
)
312 DWORD polyline
, line
, total
;
317 for (polyline
= total
= 0; polyline
< polylines
; polyline
++) total
+= counts
[polyline
];
318 if (!(dev_pts
= HeapAlloc( GetProcessHeap(), 0, total
* sizeof(*dev_pts
) ))) return FALSE
;
319 memcpy( dev_pts
, pts
, total
* sizeof(*dev_pts
) );
320 LPtoDP( dev
->hdc
, dev_pts
, total
);
324 PSDRV_WriteSpool(dev
, "%PolyPolyline\n",14);
328 for(polyline
= 0; polyline
< polylines
; polyline
++) {
329 PSDRV_WriteMoveTo(dev
, pt
->x
, pt
->y
);
331 for(line
= 1; line
< counts
[polyline
]; line
++, pt
++)
332 PSDRV_WriteLineTo(dev
, pt
->x
, pt
->y
);
334 HeapFree( GetProcessHeap(), 0, dev_pts
);
337 PSDRV_ResetClip(dev
);
342 /***********************************************************************
345 BOOL
PSDRV_PolyPolygon( PHYSDEV dev
, const POINT
* pts
, const INT
* counts
, UINT polygons
)
347 DWORD polygon
, total
;
353 for (polygon
= total
= 0; polygon
< polygons
; polygon
++) total
+= counts
[polygon
];
354 if (!(dev_pts
= HeapAlloc( GetProcessHeap(), 0, total
* sizeof(*dev_pts
) ))) return FALSE
;
355 memcpy( dev_pts
, pts
, total
* sizeof(*dev_pts
) );
356 LPtoDP( dev
->hdc
, dev_pts
, total
);
360 PSDRV_WriteSpool(dev
, "%PolyPolygon\n",13);
364 for(polygon
= 0; polygon
< polygons
; polygon
++) {
365 PSDRV_WriteMoveTo(dev
, pt
->x
, pt
->y
);
367 for(line
= 1; line
< counts
[polygon
]; line
++, pt
++)
368 PSDRV_WriteLineTo(dev
, pt
->x
, pt
->y
);
369 PSDRV_WriteClosePath(dev
);
371 HeapFree( GetProcessHeap(), 0, dev_pts
);
373 if(GetPolyFillMode( dev
->hdc
) == ALTERNATE
)
379 PSDRV_ResetClip(dev
);
384 /***********************************************************************
387 BOOL
PSDRV_PolyBezier( PHYSDEV dev
, const POINT
*pts
, DWORD count
)
394 if (!(dev_pts
= HeapAlloc( GetProcessHeap(), 0, count
* sizeof(*dev_pts
) ))) return FALSE
;
395 memcpy( dev_pts
, pts
, count
* sizeof(*dev_pts
) );
396 LPtoDP( dev
->hdc
, dev_pts
, count
);
398 PSDRV_WriteSpool(dev
, "%PolyBezier\n",12);
401 PSDRV_WriteMoveTo(dev
, dev_pts
[0].x
, dev_pts
[0].y
);
402 for (i
= 1; i
< count
; i
+= 3) PSDRV_WriteCurveTo( dev
, dev_pts
+ i
);
404 PSDRV_ResetClip(dev
);
405 HeapFree( GetProcessHeap(), 0, dev_pts
);
410 /***********************************************************************
413 BOOL
PSDRV_PolyBezierTo( PHYSDEV dev
, const POINT
*pts
, DWORD count
)
420 count
++; /* add initial position */
421 if (!(dev_pts
= HeapAlloc( GetProcessHeap(), 0, count
* sizeof(*dev_pts
) ))) return FALSE
;
422 GetCurrentPositionEx( dev
->hdc
, dev_pts
);
423 memcpy( dev_pts
+ 1, pts
, (count
- 1) * sizeof(*dev_pts
) );
424 LPtoDP( dev
->hdc
, dev_pts
, count
);
426 PSDRV_WriteSpool(dev
, "%PolyBezier\n",12);
429 PSDRV_WriteMoveTo(dev
, dev_pts
[0].x
, dev_pts
[0].y
);
430 for (i
= 1; i
< count
; i
+= 3) PSDRV_WriteCurveTo( dev
, dev_pts
+ i
);
432 PSDRV_ResetClip(dev
);
433 HeapFree( GetProcessHeap(), 0, dev_pts
);
438 /***********************************************************************
441 COLORREF
PSDRV_SetPixel( PHYSDEV dev
, INT x
, INT y
, COLORREF color
)
448 LPtoDP( dev
->hdc
, &pt
, 1 );
451 /* we bracket the setcolor in gsave/grestore so that we don't trash
452 the current pen colour */
453 PSDRV_WriteGSave(dev
);
454 PSDRV_WriteRectangle( dev
, pt
.x
, pt
.y
, 0, 0 );
455 PSDRV_CreateColor( dev
, &pscolor
, color
);
456 PSDRV_WriteSetColor( dev
, &pscolor
);
457 PSDRV_WriteFill( dev
);
458 PSDRV_WriteGRestore(dev
);
459 PSDRV_ResetClip(dev
);
463 /***********************************************************************
466 BOOL
PSDRV_PaintRgn( PHYSDEV dev
, HRGN hrgn
)
468 RGNDATA
*rgndata
= NULL
;
472 TRACE("hdc=%p\n", dev
->hdc
);
474 size
= GetRegionData(hrgn
, 0, NULL
);
475 rgndata
= HeapAlloc( GetProcessHeap(), 0, size
);
477 ERR("Can't allocate buffer\n");
481 GetRegionData(hrgn
, size
, rgndata
);
482 if (rgndata
->rdh
.nCount
== 0)
485 LPtoDP(dev
->hdc
, (POINT
*)rgndata
->Buffer
, rgndata
->rdh
.nCount
* 2);
488 for(i
= 0, pRect
= (RECT
*)rgndata
->Buffer
; i
< rgndata
->rdh
.nCount
; i
++, pRect
++)
489 PSDRV_WriteRectangle(dev
, pRect
->left
, pRect
->top
, pRect
->right
- pRect
->left
, pRect
->bottom
- pRect
->top
);
492 PSDRV_WriteNewPath(dev
);
493 PSDRV_ResetClip(dev
);
496 HeapFree(GetProcessHeap(), 0, rgndata
);
500 static BOOL
paint_path( PHYSDEV dev
, BOOL stroke
, BOOL fill
)
505 int i
, size
= GetPath( dev
->hdc
, NULL
, NULL
, 0 );
507 if (size
== -1) return FALSE
;
510 AbortPath( dev
->hdc
);
513 points
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(*points
) );
514 types
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(*types
) );
515 if (!points
|| !types
) goto done
;
516 if (GetPath( dev
->hdc
, points
, types
, size
) == -1) goto done
;
517 LPtoDP( dev
->hdc
, points
, size
);
519 if (stroke
) PSDRV_SetPen(dev
);
521 for (i
= 0; i
< size
; i
++)
526 PSDRV_WriteMoveTo( dev
, points
[i
].x
, points
[i
].y
);
529 case PT_LINETO
| PT_CLOSEFIGURE
:
530 PSDRV_WriteLineTo( dev
, points
[i
].x
, points
[i
].y
);
531 if (types
[i
] & PT_CLOSEFIGURE
) PSDRV_WriteClosePath( dev
);
534 case PT_BEZIERTO
| PT_CLOSEFIGURE
:
535 PSDRV_WriteCurveTo( dev
, points
+ i
);
536 if (types
[i
] & PT_CLOSEFIGURE
) PSDRV_WriteClosePath( dev
);
541 if (fill
) PSDRV_Brush( dev
, GetPolyFillMode(dev
->hdc
) == ALTERNATE
);
542 if (stroke
) PSDRV_DrawLine(dev
);
543 else PSDRV_WriteNewPath(dev
);
544 PSDRV_ResetClip(dev
);
545 AbortPath( dev
->hdc
);
548 HeapFree( GetProcessHeap(), 0, points
);
549 HeapFree( GetProcessHeap(), 0, types
);
553 /***********************************************************************
556 BOOL
PSDRV_FillPath( PHYSDEV dev
)
558 return paint_path( dev
, FALSE
, TRUE
);
561 /***********************************************************************
562 * PSDRV_StrokeAndFillPath
564 BOOL
PSDRV_StrokeAndFillPath( PHYSDEV dev
)
566 return paint_path( dev
, TRUE
, TRUE
);
569 /***********************************************************************
572 BOOL
PSDRV_StrokePath( PHYSDEV dev
)
574 return paint_path( dev
, TRUE
, FALSE
);