started to port to gfxdevice abstraction.
[swftools.git] / pdf2swf / swfoutput.h
1 /* swfoutput.h
2    Header file for swfoutput.cc (and swfoutput_x11.cc).
3
4    Part of the swftools package.
5
6    Copyright (c) 2001,2002,2003 Matthias Kramm <kramm@quiss.org> 
7  
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
21
22 #ifndef __swfoutput_h__
23 #define __swfoutput_h__
24
25 extern "C" {
26 #include "../lib/rfxswf.h"
27 #include "../lib/gfxdevice.h"
28 }
29 typedef long int twip;
30
31 struct swfmatrix {
32     double m11,m12,m21,m22,m13,m23;
33 };
34
35 struct swfcoord {
36     twip x;
37     twip y;
38 };
39
40 struct swfoutput 
41 {
42     MATRIX fontmatrix;
43     double fontm11,fontm12,fontm21,fontm22;
44     SWFFONT *swffont;
45     RGBA strokergb;
46     RGBA fillrgb;
47     int drawmode;
48     int x1,y1,x2,y2;
49     void*internal;
50 };
51
52 #define DRAWMODE_STROKE 1
53 #define DRAWMODE_FILL 2
54 #define DRAWMODE_EOFILL 3
55 #define DRAWMODE_CLIP 4
56 #define DRAWMODE_EOCLIP 5
57
58 void swfoutput_setparameter(char*name, char*value);
59
60 void swfoutput_init(struct swfoutput*);
61 int swfoutput_save(struct swfoutput*, char*filename);
62 SWF* swfoutput_get(struct swfoutput*);
63 void swfoutput_getdimensions(struct swfoutput*, int*x1, int*y1, int*x2, int*y2);
64     
65 void swfoutput_pagefeed(struct swfoutput*obj);
66 void swfoutput_newpage(struct swfoutput*, int pageNum, int movex, int movey, int x1, int y1, int x2, int y2);
67
68 void swfoutput_setfont(struct swfoutput*, char*fontid, char*filename);
69 int swfoutput_queryfont(struct swfoutput*, char*fontid);
70 int getCharID(SWFFONT *font, int charnr, char *charname, int u);
71 void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double);
72 int swfoutput_drawchar(struct swfoutput*,double x,double y,char*a, int charnr, int u, gfxcolor_t* col);
73
74 void swfoutput_drawgfxline(struct swfoutput*, gfxline_t*line, gfxcoord_t width, gfxcolor_t*col, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit);
75 void swfoutput_fillgfxline(struct swfoutput*, gfxline_t*line, gfxcolor_t*col);
76 void swfoutput_startclip(struct swfoutput*, gfxline_t*line);
77 void swfoutput_endclip(struct swfoutput*);
78
79 void swfoutput_drawimagejpeg(struct swfoutput*, RGBA*pic, int sizex,int sizey, 
80         double x1,double y1,
81         double x2,double y2,
82         double x3,double y3,
83         double x4,double y4);
84 void swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int sizey,
85         double x1,double y1,
86         double x2,double y2,
87         double x3,double y3,
88         double x4,double y4);
89
90 void swfoutput_linktopage(struct swfoutput*, int page, swfcoord*points);
91 void swfoutput_linktourl(struct swfoutput*, char*url, swfcoord*points);
92 void swfoutput_namedlink(struct swfoutput*obj, char*name, swfcoord*points);
93
94 void swfoutput_destroy(struct swfoutput*);
95
96 #endif //__swfoutput_h__