-
Notifications
You must be signed in to change notification settings - Fork 32
/
poppler-qt5.sip
58 lines (44 loc) · 1.23 KB
/
poppler-qt5.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
%Module(name=PyQt5.Qt5.lib._popplerqt5)
/*
* Bindings for Poppler-Qt5 to Python
* Maintained by Wilbert Berendsen <[email protected]>
*/
%Feature QTXML_AVAILABLE
%Import QtCore/QtCoremod.sip
%Import QtGui/QtGuimod.sip
%If(QTXML_AVAILABLE)
%Import QtXml/QtXmlmod.sip
%End
%Include timeline.sip
%ModuleHeaderCode
#include <qt5/poppler-qt5.h>
%End
%Include version.sip // auto-generated by the project.py script
%Include types.sip
%Include poppler-annotation.sip
%Include poppler-convert.sip
%Include poppler-document.sip
%Include poppler-embedded-file.sip
%Include poppler-font-info.sip
%Include poppler-font-iterator.sip
%Include poppler-form.sip
%Include poppler-link.sip
%Include poppler-link-destination.sip
%Include poppler-media.sip
%Include poppler-movie-object.sip
%Include poppler-opt-content-model.sip
%Include poppler-page.sip
%Include poppler-page-transition.sip
%Include poppler-sound-object.sip
%Include poppler-text-box.sip
namespace Poppler {
// Functions in Poppler
bool isCmsAvailable();
%If(POPPLER_V0_22_0 -)
bool isOverprintPreviewAvailable();
%End
%If(POPPLER_V0_64_0 -)
QDateTime convertDate (const char *dateString);
%End
}; // namespace Poppler
/* kate: indent-width 4; space-indent on; hl c++; indent-mode cstyle; */