forked from frescobaldi/python-poppler-qt5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpoppler-media.sip
More file actions
35 lines (25 loc) · 710 Bytes
/
poppler-media.sip
File metadata and controls
35 lines (25 loc) · 710 Bytes
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
%If(POPPLER_V0_22_0 -)
namespace Poppler {
class MediaRendition {
%TypeHeaderCode
#include <qt5/poppler-qt5.h>
#include <qt5/poppler-media.h>
%End
public:
~MediaRendition();
bool isValid() const;
QString contentType() const;
QString fileName() const;
bool isEmbedded() const;
QByteArray data() const;
bool autoPlay() const;
bool showControls() const;
float repeatCount() const;
QSize size() const;
private:
MediaRendition(Poppler::MediaRendition *rendition);
MediaRendition(const Poppler::MediaRendition&);
}; // class MediaRendition
}; // namespace Poppler
%End
/* kate: indent-width 4; space-indent on; hl c++; indent-mode cstyle; */