forked from frescobaldi/python-poppler-qt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poppler-link.sip
287 lines (243 loc) · 6.58 KB
/
poppler-link.sip
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
namespace Poppler {
class Link {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
Link( const QRectF &linkArea );
enum LinkType
{
None,
Goto,
Execute,
Browse,
Action,
Sound,
Movie,
Rendition,
JavaScript,
%If(POPPLER_V0_50_0 -)
OCGState,
%End
};
virtual LinkType linkType() const;
virtual ~Link();
QRectF linkArea() const;
private:
Link(const Poppler::Link&);
%ConvertToSubClassCode
switch (sipCpp->linkType()) {
case Poppler::Link::Goto:
sipType = sipType_Poppler_LinkGoto;
break;
case Poppler::Link::Execute:
sipType = sipType_Poppler_LinkExecute;
break;
case Poppler::Link::Browse:
sipType = sipType_Poppler_LinkBrowse;
break;
case Poppler::Link::Action:
sipType = sipType_Poppler_LinkAction;
break;
case Poppler::Link::Sound:
sipType = sipType_Poppler_LinkSound;
break;
case Poppler::Link::Movie:
sipType = sipType_Poppler_LinkMovie;
break;
case Poppler::Link::Rendition:
sipType = sipType_Poppler_LinkRendition;
break;
case Poppler::Link::JavaScript:
sipType = sipType_Poppler_LinkJavaScript;
break;
default:
sipType = sipType_Poppler_Link;
}
%End
}; // class Link
class LinkGoto : Poppler::Link {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
LinkGoto( const QRectF &linkArea, QString extFileName, const Poppler::LinkDestination & destination );
~LinkGoto();
bool isExternal() const;
QString fileName() const;
Poppler::LinkDestination destination() const;
LinkType linkType() const;
private:
LinkGoto(const Poppler::LinkGoto&);
}; // class LinkGoto
class LinkExecute : Poppler::Link {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
QString fileName() const;
QString parameters() const;
LinkExecute( const QRectF &linkArea, const QString & file, const QString & params );
~LinkExecute();
LinkType linkType() const;
private:
LinkExecute(const Poppler::LinkExecute&);
}; // class LinkExecute
class LinkBrowse : Poppler::Link {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
QString url() const;
LinkBrowse( const QRectF &linkArea, const QString &url );
~LinkBrowse();
LinkType linkType() const;
private:
LinkBrowse(const Poppler::LinkBrowse&);
}; // class LinkBrowse
class LinkAction : Poppler::Link {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
enum ActionType {
PageFirst = 1,
PagePrev = 2,
PageNext = 3,
PageLast = 4,
HistoryBack = 5,
HistoryForward = 6,
Quit = 7,
Presentation = 8,
EndPresentation = 9,
Find = 10,
GoToPage = 11,
Close = 12,
Print = 13,
};
ActionType actionType() const;
LinkAction( const QRectF &linkArea, ActionType actionType );
~LinkAction();
LinkType linkType() const;
private:
LinkAction(const Poppler::LinkAction&);
}; // class LinkAction
class LinkSound : Poppler::Link {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
LinkSound( const QRectF &linkArea, double volume, bool sync, bool repeat, bool mix, Poppler::SoundObject *sound );
virtual ~LinkSound();
LinkType linkType() const;
double volume() const;
bool synchronous() const;
bool repeat() const;
bool mix() const;
Poppler::SoundObject *sound() const;
private:
LinkSound(const Poppler::LinkSound&);
}; // class LinkSound
%If(POPPLER_V0_22_0 -)
class LinkRendition : Poppler::Link
{
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
enum RenditionAction
{
NoRendition,
PlayRendition,
StopRendition,
PauseRendition,
ResumeRendition
};
//LinkRendition( const QRectF &linkArea, Poppler::MediaRendition *rendition, int operation, const QString &script, const Ref &annotationReference );
virtual ~LinkRendition();
LinkType linkType() const;
MediaRendition *rendition() const;
RenditionAction action() const;
QString script() const;
bool isReferencedAnnotation( const Poppler::ScreenAnnotation *annotation ) const;
private:
LinkRendition(const Poppler::LinkRendition&);
}; // class LinkRendition
%End
class LinkJavaScript : Poppler::Link {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
LinkJavaScript( const QRectF &linkArea, const QString &js );
virtual ~LinkJavaScript();
LinkType linkType() const;
QString script() const;
private:
LinkJavaScript(const Poppler::LinkJavaScript&);
}; // class LinkJavaScript
class LinkMovie : Poppler::Link
{
%Docstring
Movie: a movie to be played.
%End
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-link.h>
%End
public:
/**
* Describes the operation to be performed on the movie.
*/
enum Operation
{
Play,
Stop,
Pause,
Resume
};
/**
* Create a new Movie link.
*
* \param linkArea the active area of the link
* \param operation the operation to be performed on the movie
* \param annotationTitle the title of the movie annotation identifying the movie to be played
* \param annotationReference the object reference of the movie annotation identifying the movie to be played
*
* Note: This constructor is supposed to be used by Poppler::Page only.
*/
//LinkMovie( const QRectF &linkArea, Operation operation, const QString &annotationTitle, const Ref &annotationReference );
/**
* Destructor.
*/
~LinkMovie();
LinkType linkType() const;
/**
* Returns the operation to be performed on the movie.
*/
Operation operation() const;
/**
* Returns whether the given @p annotation is the referenced movie annotation for this movie @p link.
*/
bool isReferencedAnnotation( const Poppler::MovieAnnotation *annotation ) const;
private:
LinkMovie(const Poppler::LinkMovie&);
}; // class LinkMovie
%If(POPPLER_V0_50_0 -)
class LinkOCGState : Poppler::Link
{
LinkType linkType() const;
private:
LinkOCGState(const Poppler::LinkOCGState&);
}; // class LinkOCGState
%End
}; // namespace Poppler
/* kate: indent-width 4; space-indent on; hl c++; indent-mode cstyle; */