implemented two levels of font cache
[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[256]);
32     char*(charname[256]);
33     char*name;
34
35     public:
36     
37     int id;
38
39     SWFFont(int t1id);
40     T1_OUTLINE*getOutline(unsigned char nr);
41     char*getName();
42     char*getCharName(int t);
43 };
44
45 struct swfoutput 
46 {
47     //int t1font;
48     double fontm11,fontm12,fontm21,fontm22;
49     unsigned short int linewidth;
50     SWFFont*font;
51     RGBA strokergb;
52     RGBA fillrgb;
53 };
54
55 #define DRAWMODE_STROKE 1
56 #define DRAWMODE_FILL 2
57 #define DRAWMODE_EOFILL 3
58 #define DRAWMODE_CLIP 4
59 #define DRAWMODE_EOCLIP 5
60
61 void swfoutput_init(struct swfoutput*, char*filename, int sizex, int sizey);
62 void swfoutput_setprotected(); //write PROTECT tag
63
64 void swfoutput_newpage(struct swfoutput*);
65
66 void swfoutput_setfont(struct swfoutput*, int fontid, int t1font);
67 int swfoutput_queryfont(struct swfoutput*, int fontid);
68 void swfoutput_setdrawmode(struct swfoutput*, int drawmode);
69 void swfoutput_setfillcolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
70 void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
71 void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double);
72 void swfoutput_setlinewidth(struct swfoutput*, double linewidth);
73
74 void swfoutput_drawchar(struct swfoutput*,double x,double y,char a);
75 void swfoutput_drawpath(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
76 void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
77 void swfoutput_endclip(struct swfoutput*);
78 void swfoutput_drawimagefile(struct swfoutput*, char*filename, int sizex,int sizey, 
79         double x1,double y1,
80         double x2,double y2,
81         double x3,double y3,
82         double x4,double y4);
83
84 void swfoutput_destroy(struct swfoutput*);
85
86 #endif //__swfoutput_h__