Check the --ignore option in the "cloud bug" workaround.
[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 extern int opennewwindow; //default:0
19 extern int ignoredraworder; //default:0
20 extern int drawonlyshapes; //default:0
21 extern int jpegquality; //default:100;
22 extern int storeallcharacters; // default:0
23
24 typedef long int twip;
25
26 struct swfmatrix {
27     double m11,m12,m21,m22,m13,m23;
28 };
29
30 struct swfcoord {
31     twip x;
32     twip y;
33 };
34
35 class SWFFont
36 {
37     T1_OUTLINE**outline;
38     char**charname;
39     int*width;
40     char*used;
41
42     char*name;
43     int charnum;
44
45     U16*char2swfcharid;
46     U16*swfcharid2char;
47     int swfcharpos;
48
49     char**standardtable;
50     int standardtablesize;
51
52     public:
53     
54     int t1id;
55     char*fontid;
56     unsigned int swfid;
57
58     SWFFont(char*name, int t1id, char*filename);
59     SWFFont::~SWFFont();
60     T1_OUTLINE*getOutline(char*charname);
61     int getSWFCharID(char*name, int charnr);
62     int getWidth(char*name);
63     char*getName();
64     char*getCharName(int t);
65     int getCharWidth(int t) {return width[t];}
66 };
67
68 struct swfoutput 
69 {
70     //int t1font;
71     double fontm11,fontm12,fontm21,fontm22;
72     unsigned short int linewidth;
73     SWFFont*font;
74     RGBA strokergb;
75     RGBA fillrgb;
76 };
77
78 #define DRAWMODE_STROKE 1
79 #define DRAWMODE_FILL 2
80 #define DRAWMODE_EOFILL 3
81 #define DRAWMODE_CLIP 4
82 #define DRAWMODE_EOCLIP 5
83
84 void swfoutput_init(struct swfoutput*, char*filename, int sizex, int sizey);
85 void swfoutput_setprotected(); //write PROTECT tag
86
87 void swfoutput_newpage(struct swfoutput*);
88
89 void swfoutput_setfont(struct swfoutput*, char*fontid, int t1font, char*filename);
90 int swfoutput_queryfont(struct swfoutput*, char*fontid);
91 void swfoutput_setdrawmode(struct swfoutput*, int drawmode);
92 void swfoutput_setfillcolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
93 void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
94 void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double);
95 void swfoutput_setlinewidth(struct swfoutput*, double linewidth);
96
97 void swfoutput_drawchar(struct swfoutput*,double x,double y,char*a, int charnr);
98 void swfoutput_drawpath(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
99 void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
100 void swfoutput_endclip(struct swfoutput*);
101 int swfoutput_drawimagejpeg(struct swfoutput*, char*filename, int sizex,int sizey, 
102         double x1,double y1,
103         double x2,double y2,
104         double x3,double y3,
105         double x4,double y4);
106 int swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int sizey,
107         double x1,double y1,
108         double x2,double y2,
109         double x3,double y3,
110         double x4,double y4);
111 int swfoutput_drawimagelossless256(struct swfoutput*, U8*pic,RGBA*pal, int sizex, int sizey,
112         double x1,double y1,
113         double x2,double y2,
114         double x3,double y3,
115         double x4,double y4);
116 void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey,
117         double x1,double y1,
118         double x2,double y2,
119         double x3,double y3,
120         double x4,double y4);
121
122 void swfoutput_linktopage(struct swfoutput*, int page, swfcoord*points);
123 void swfoutput_linktourl(struct swfoutput*, char*url, swfcoord*points);
124 void swfoutput_namedlink(struct swfoutput*obj, char*name, swfcoord*points);
125
126 void swfoutput_destroy(struct swfoutput*);
127
128 #endif //__swfoutput_h__