1 /* libwmf ("ipa/eps.h"): library for wmf conversion
2    Copyright (C) 2000 - various; see CREDITS, ChangeLog, and sources
3 
4    The libwmf Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8 
9    The libwmf Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13 
14    You should have received a copy of the GNU Library General Public
15    License along with the libwmf Library; see the file COPYING.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
18 
19 
20 #ifndef WMFIPA_EPS_H
21 #define WMFIPA_EPS_H
22 
23 typedef enum
24 {	eps_arc_ellipse = 0,
25 	eps_arc_open,
26 	eps_arc_pie,
27 	eps_arc_chord
28 } eps_arc_t;
29 
30 static void eps_draw_arc (wmfAPI*,wmfDrawArc_t*,eps_arc_t);
31 
32 static void eps_path_fill (wmfAPI*,wmfDC*,wmfD_Rect*);
33 static void eps_path_stroke (wmfAPI*,wmfDC*,float);
34 
35 static char* WMF_PS_DEFS = "";
36 
37 static char* WMF_PS_HEAD = "\
38 save\n\
39 ";
40 
41 static char* WMF_PS_TAIL = "\
42 restore\n\
43 ";
44 
45 #endif /* ! WMFIPA_EPS_H */
46