Font characters are now addressed by full name, not charcode
[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 Matthias Kramm <kramm@quiss.org> 
7
8    This file is distributed under the GPL, see file COPYING for details */
9
10 #ifndef __swfoutput_h__
11 #define __swfoutput_h__
12
13 #include <t1lib.h>
14 extern "C" {
15 #include "../lib/rfxswf.h"
16 }
17
18 typedef long int twip;
19
20 struct swfmatrix {
21     double m11,m12,m21,m22,m13,m23;
22 };
23
24 struct swfcoord {
25     twip x;
26     twip y;
27 };
28
29 class SWFFont
30 {
31     T1_OUTLINE**outline;
32     char**charname;
33     char*name;
34     int charnum;
35
36     public:
37     
38     int t1id;
39     char*fontid;
40
41     SWFFont(char*name, int t1id, char*filename);
42     T1_OUTLINE*getOutline(char*charname);
43     char*getName();
44     char*getCharName(int t);
45 };
46
47 struct swfoutput 
48 {
49     //int t1font;
50     double fontm11,fontm12,fontm21,fontm22;
51     unsigned short int linewidth;
52     SWFFont*font;
53     RGBA strokergb;
54     RGBA fillrgb;
55 };
56
57 #define DRAWMODE_STROKE 1
58 #define DRAWMODE_FILL 2
59 #define DRAWMODE_EOFILL 3
60 #define DRAWMODE_CLIP 4
61 #define DRAWMODE_EOCLIP 5
62
63 void swfoutput_init(struct swfoutput*, char*filename, int sizex, int sizey);
64 void swfoutput_setprotected(); //write PROTECT tag
65
66 void swfoutput_newpage(struct swfoutput*);
67
68 void swfoutput_setfont(struct swfoutput*, char*fontid, int t1font, char*filename);
69 int swfoutput_queryfont(struct swfoutput*, char*fontid);
70 void swfoutput_setdrawmode(struct swfoutput*, int drawmode);
71 void swfoutput_setfillcolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
72 void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
73 void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double);
74 void swfoutput_setlinewidth(struct swfoutput*, double linewidth);
75
76 void swfoutput_drawchar(struct swfoutput*,double x,double y,char*a);
77 void swfoutput_drawpath(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
78 void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
79 void swfoutput_endclip(struct swfoutput*);
80 void swfoutput_drawimagefile(struct swfoutput*, char*filename, int sizex,int sizey, 
81         double x1,double y1,
82         double x2,double y2,
83         double x3,double y3,
84         double x4,double y4);
85
86 void swfoutput_destroy(struct swfoutput*);
87
88 #endif //__swfoutput_h__