poppler 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +1 -1
- data/Rakefile +69 -9
- data/ext/poppler/extconf.rb +5 -2
- data/ext/poppler/rbpoppler-action.c +242 -86
- data/ext/poppler/{rbpoppler-annotationcalloutline.c → rbpoppler-annotation-callout-line.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationfreetext.c → rbpoppler-annotation-free-text.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationmapping.c → rbpoppler-annotation-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationmarkup.c → rbpoppler-annotation-markup.c} +5 -4
- data/ext/poppler/{rbpoppler-annotationtext.c → rbpoppler-annotation-text.c} +2 -7
- data/ext/poppler/{rbpoppler-buttonfield.c → rbpoppler-button-field.c} +0 -0
- data/ext/poppler/{rbpoppler-choicefield.c → rbpoppler-choice-field.c} +0 -0
- data/ext/poppler/{rbpoppler-fontinfo.c → rbpoppler-font-info.c} +2 -8
- data/ext/poppler/{rbpoppler-fontsiter.c → rbpoppler-fonts-iter.c} +5 -6
- data/ext/poppler/{rbpoppler-formfieldmapping.c → rbpoppler-form-field-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-imagemapping.c → rbpoppler-image-mapping.c} +2 -7
- data/ext/poppler/{rbpoppler-indexiter.c → rbpoppler-index-iter.c} +2 -3
- data/ext/poppler/{rbpoppler-linkmapping.c → rbpoppler-link-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-pagetransition.c → rbpoppler-page-transition.c} +2 -3
- data/ext/poppler/rbpoppler-page.c +0 -29
- data/ext/poppler/rbpoppler-private.h +13 -13
- data/ext/poppler/{rbpoppler-psfile.c → rbpoppler-ps-file.c} +2 -3
- data/ext/poppler/{rbpoppler-textfield.c → rbpoppler-text-field.c} +0 -0
- data/ext/poppler/rbpoppler.c +14 -22
- data/ext/poppler/rbpoppler.h +3 -6
- data/ext/poppler/rbpopplerconversions.h +1 -1
- data/lib/1.9/poppler.so +0 -0
- data/lib/2.0/poppler.so +0 -0
- data/sample/pdf2.rb +46 -10
- data/test/fixtures/image.png +0 -0
- data/test/run-test.rb +7 -4
- data/test/test_page.rb +1 -0
- data/vendor/local/bin/cjpeg.exe +0 -0
- data/vendor/local/bin/djpeg.exe +0 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libjpeg-9.dll +0 -0
- data/vendor/local/bin/libpoppler-44.dll +0 -0
- data/vendor/local/bin/libpoppler-glib-8.dll +0 -0
- data/vendor/local/bin/libsqlite3-0.dll +0 -0
- data/vendor/local/bin/pdfdetach.exe +0 -0
- data/vendor/local/bin/pdffonts.exe +0 -0
- data/vendor/local/bin/pdfimages.exe +0 -0
- data/vendor/local/bin/pdfinfo.exe +0 -0
- data/vendor/local/bin/pdfseparate.exe +0 -0
- data/vendor/local/bin/pdftocairo.exe +0 -0
- data/vendor/local/bin/pdftohtml.exe +0 -0
- data/vendor/local/bin/pdftoppm.exe +0 -0
- data/vendor/local/bin/pdftops.exe +0 -0
- data/vendor/local/bin/pdftotext.exe +0 -0
- data/vendor/local/bin/pdfunite.exe +0 -0
- data/vendor/local/bin/rdjpgcom.exe +0 -0
- data/vendor/local/bin/sqlite3.exe +0 -0
- data/vendor/local/bin/wrjpgcom.exe +0 -0
- data/vendor/local/include/jconfig.h +8 -0
- data/vendor/local/include/jerror.h +2 -2
- data/vendor/local/include/jmorecfg.h +28 -7
- data/vendor/local/include/jpeglib.h +46 -8
- data/vendor/local/include/poppler/glib/poppler-action.h +156 -2
- data/vendor/local/include/poppler/glib/poppler-annot.h +57 -1
- data/vendor/local/include/poppler/glib/poppler-attachment.h +17 -0
- data/vendor/local/include/poppler/glib/poppler-document.h +133 -26
- data/vendor/local/include/poppler/glib/poppler-enums.h +8 -0
- data/vendor/local/include/poppler/glib/poppler-features.h +58 -4
- data/vendor/local/include/poppler/glib/poppler-form-field.h +4 -0
- data/vendor/local/include/poppler/glib/poppler-media.h +73 -0
- data/vendor/local/include/poppler/glib/poppler-movie.h +42 -0
- data/vendor/local/include/poppler/glib/poppler-page.h +133 -44
- data/vendor/local/include/poppler/glib/poppler.h +125 -24
- data/vendor/local/include/sqlite3.h +7338 -0
- data/vendor/local/include/sqlite3ext.h +487 -0
- data/vendor/local/lib/girepository-1.0/Poppler-0.18.typelib +0 -0
- data/vendor/local/lib/libjpeg.a +0 -0
- data/vendor/local/lib/libjpeg.dll.a +0 -0
- data/vendor/local/lib/libjpeg.la +41 -0
- data/vendor/local/lib/libpoppler-glib.a +0 -0
- data/vendor/local/lib/libpoppler-glib.dll.a +0 -0
- data/vendor/local/lib/libpoppler-glib.la +41 -0
- data/vendor/local/lib/libpoppler.a +0 -0
- data/vendor/local/lib/libpoppler.dll.a +0 -0
- data/vendor/local/lib/libpoppler.la +41 -0
- data/vendor/local/lib/libsqlite3.a +0 -0
- data/vendor/local/lib/libsqlite3.dll.a +0 -0
- data/vendor/local/lib/libsqlite3.la +41 -0
- data/vendor/local/lib/pkgconfig/poppler-cairo.pc +9 -0
- data/vendor/local/lib/pkgconfig/poppler-glib.pc +3 -3
- data/vendor/local/lib/pkgconfig/poppler-splash.pc +2 -2
- data/vendor/local/lib/pkgconfig/poppler.pc +1 -1
- data/vendor/local/lib/pkgconfig/sqlite3.pc +13 -0
- data/vendor/local/share/gir-1.0/Poppler-0.18.gir +5452 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAnnot.html +1671 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAttachment.html +214 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerDocument.html +2587 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerFormField.html +1070 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerLayer.html +228 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMedia.html +306 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMovie.html +156 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerPage.html +2132 -0
- data/vendor/local/share/gtk-doc/html/poppler/annotation-glossary.html +71 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-12.html +128 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-14.html +107 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-16.html +185 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-18.html +77 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-20.html +42 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-22.html +62 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-deprecated.html +42 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-full.html +1352 -0
- data/vendor/local/share/gtk-doc/html/poppler/ch01.html +21 -19
- data/vendor/local/share/gtk-doc/html/poppler/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/index.html +35 -18
- data/vendor/local/share/gtk-doc/html/poppler/index.sgml +548 -300
- data/vendor/local/share/gtk-doc/html/poppler/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerAction.html +662 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-Version-and-Features-Information.html +145 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler.html +319 -364
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp2 +506 -265
- data/vendor/local/share/gtk-doc/html/poppler/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/style.css +153 -54
- data/vendor/local/share/gtk-doc/html/poppler/up.png +0 -0
- data/vendor/local/share/license/poppler/AUTHORS +5 -0
- data/vendor/local/share/license/poppler/COPYING +339 -0
- data/vendor/local/share/man/man1/cjpeg.1 +51 -10
- data/vendor/local/share/man/man1/djpeg.1 +5 -4
- data/vendor/local/share/man/man1/jpegtran.1 +15 -2
- data/vendor/local/share/man/man1/pdfdetach.1 +86 -0
- data/vendor/local/share/man/man1/pdffonts.1 +16 -7
- data/vendor/local/share/man/man1/pdfimages.1 +114 -7
- data/vendor/local/share/man/man1/pdfinfo.1 +16 -7
- data/vendor/local/share/man/man1/pdfseparate.1 +49 -0
- data/vendor/local/share/man/man1/pdftocairo.1 +266 -0
- data/vendor/local/share/man/man1/pdftohtml.1 +30 -8
- data/vendor/local/share/man/man1/pdftoppm.1 +42 -12
- data/vendor/local/share/man/man1/pdftops.1 +26 -10
- data/vendor/local/share/man/man1/pdftotext.1 +18 -7
- data/vendor/local/share/man/man1/pdfunite.1 +33 -0
- data/vendor/local/share/man/man1/sqlite3.1 +229 -0
- metadata +107 -64
- data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
- data/vendor/local/bin/libjpeg-7.dll +0 -0
- data/vendor/local/bin/libpng12-0.dll +0 -0
- data/vendor/local/bin/libpoppler-5.dll +0 -0
- data/vendor/local/bin/libpoppler-glib-4.dll +0 -0
- data/vendor/local/include/libpng12/png.h +0 -3726
- data/vendor/local/include/libpng12/pngconf.h +0 -1508
- data/vendor/local/include/png.h +0 -3726
- data/vendor/local/include/pngconf.h +0 -1508
- data/vendor/local/lib/libpng.def +0 -366
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng12.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
- data/vendor/local/lib/pkgconfig/libpng12.pc +0 -11
- data/vendor/local/manifest/jpeg-dev_7-1_win32.mft +0 -18
- data/vendor/local/manifest/jpeg_7-1_win32.mft +0 -2
- data/vendor/local/manifest/libpng-dev_1.2.40-1_win32.mft +0 -15
- data/vendor/local/manifest/libpng_1.2.40-1_win32.mft +0 -2
- data/vendor/local/manifest/poppler-dev_0.12.0-1_win32.mft +0 -49
- data/vendor/local/manifest/poppler_0.12.0-1_win32.mft +0 -4
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-action.html +0 -386
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-annot.html +0 -854
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-attachment.html +0 -205
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-document.html +0 -1122
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-enums.html +0 -412
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-features.html +0 -143
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-form-field.html +0 -871
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-layer.html +0 -214
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-page.html +0 -1258
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp +0 -281
- data/vendor/local/share/man/man3/libpng.3 +0 -4349
- data/vendor/local/share/man/man3/libpngpf.3 +0 -790
- data/vendor/local/share/man/man5/png.5 +0 -74
- data/vendor/local/src/tml/packaging/jpeg_7-1_win32.log +0 -249
- data/vendor/local/src/tml/packaging/jpeg_7-1_win32.sh +0 -44
- data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.log +0 -269
- data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.sh +0 -63
Binary file
|
@@ -0,0 +1,662 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>PopplerAction</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Poppler Reference Manual">
|
8
|
+
<link rel="up" href="ch01.html" title="Poppler">
|
9
|
+
<link rel="prev" href="PopplerPage.html" title="PopplerPage">
|
10
|
+
<link rel="next" href="PopplerAttachment.html" title="PopplerAttachment">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="PopplerPage.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">Poppler Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="PopplerAttachment.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#poppler-PopplerAction.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#poppler-PopplerAction.description" class="shortcut">Description</a>
|
27
|
+
</td></tr>
|
28
|
+
</table>
|
29
|
+
<div class="refentry">
|
30
|
+
<a name="poppler-PopplerAction"></a><div class="titlepage"></div>
|
31
|
+
<div class="refnamediv"><table width="100%"><tr>
|
32
|
+
<td valign="top">
|
33
|
+
<h2><span class="refentrytitle"><a name="poppler-PopplerAction.top_of_page"></a>PopplerAction</span></h2>
|
34
|
+
<p>PopplerAction — Action links</p>
|
35
|
+
</td>
|
36
|
+
<td valign="top" align="right"></td>
|
37
|
+
</tr></table></div>
|
38
|
+
<div class="refsynopsisdiv">
|
39
|
+
<a name="poppler-PopplerAction.synopsis"></a><h2>Synopsis</h2>
|
40
|
+
<pre class="synopsis">
|
41
|
+
#include <poppler.h>
|
42
|
+
|
43
|
+
union <a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction">PopplerAction</a>;
|
44
|
+
<a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest">PopplerDest</a>;
|
45
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionAny" title="struct PopplerActionAny">PopplerActionAny</a>;
|
46
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionGotoDest" title="struct PopplerActionGotoDest">PopplerActionGotoDest</a>;
|
47
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionGotoRemote" title="struct PopplerActionGotoRemote">PopplerActionGotoRemote</a>;
|
48
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionLaunch" title="struct PopplerActionLaunch">PopplerActionLaunch</a>;
|
49
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionUri" title="struct PopplerActionUri">PopplerActionUri</a>;
|
50
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionNamed" title="struct PopplerActionNamed">PopplerActionNamed</a>;
|
51
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionMovie" title="struct PopplerActionMovie">PopplerActionMovie</a>;
|
52
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionRendition" title="struct PopplerActionRendition">PopplerActionRendition</a>;
|
53
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionOCGState" title="struct PopplerActionOCGState">PopplerActionOCGState</a>;
|
54
|
+
struct <a class="link" href="poppler-PopplerAction.html#PopplerActionJavascript" title="struct PopplerActionJavascript">PopplerActionJavascript</a>;
|
55
|
+
enum <a class="link" href="poppler-PopplerAction.html#PopplerActionType" title="enum PopplerActionType">PopplerActionType</a>;
|
56
|
+
enum <a class="link" href="poppler-PopplerAction.html#PopplerDestType" title="enum PopplerDestType">PopplerDestType</a>;
|
57
|
+
enum <a class="link" href="poppler-PopplerAction.html#PopplerActionMovieOperation" title="enum PopplerActionMovieOperation">PopplerActionMovieOperation</a>;
|
58
|
+
<a class="link" href="poppler-PopplerAction.html#PopplerActionLayer" title="PopplerActionLayer">PopplerActionLayer</a>;
|
59
|
+
enum <a class="link" href="poppler-PopplerAction.html#PopplerActionLayerAction" title="enum PopplerActionLayerAction">PopplerActionLayerAction</a>;
|
60
|
+
<a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="returnvalue">PopplerAction</span></a> * <a class="link" href="poppler-PopplerAction.html#poppler-action-copy" title="poppler_action_copy ()">poppler_action_copy</a> (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a> *action</code></em>);
|
61
|
+
<span class="returnvalue">void</span> <a class="link" href="poppler-PopplerAction.html#poppler-action-free" title="poppler_action_free ()">poppler_action_free</a> (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a> *action</code></em>);
|
62
|
+
<a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="returnvalue">PopplerDest</span></a> * <a class="link" href="poppler-PopplerAction.html#poppler-dest-copy" title="poppler_dest_copy ()">poppler_dest_copy</a> (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a> *dest</code></em>);
|
63
|
+
<span class="returnvalue">void</span> <a class="link" href="poppler-PopplerAction.html#poppler-dest-free" title="poppler_dest_free ()">poppler_dest_free</a> (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a> *dest</code></em>);
|
64
|
+
</pre>
|
65
|
+
</div>
|
66
|
+
<div class="refsect1">
|
67
|
+
<a name="poppler-PopplerAction.description"></a><h2>Description</h2>
|
68
|
+
</div>
|
69
|
+
<div class="refsect1">
|
70
|
+
<a name="poppler-PopplerAction.details"></a><h2>Details</h2>
|
71
|
+
<div class="refsect2">
|
72
|
+
<a name="PopplerAction"></a><h3>union PopplerAction</h3>
|
73
|
+
<pre class="programlisting">union _PopplerAction
|
74
|
+
{
|
75
|
+
PopplerActionType type;
|
76
|
+
PopplerActionAny any;
|
77
|
+
PopplerActionGotoDest goto_dest;
|
78
|
+
PopplerActionGotoRemote goto_remote;
|
79
|
+
PopplerActionLaunch launch;
|
80
|
+
PopplerActionUri uri;
|
81
|
+
PopplerActionNamed named;
|
82
|
+
PopplerActionMovie movie;
|
83
|
+
PopplerActionRendition rendition;
|
84
|
+
PopplerActionOCGState ocg_state;
|
85
|
+
PopplerActionJavascript javascript;
|
86
|
+
};
|
87
|
+
</pre>
|
88
|
+
<p>
|
89
|
+
A data structure for holding actions
|
90
|
+
</p>
|
91
|
+
</div>
|
92
|
+
<hr>
|
93
|
+
<div class="refsect2">
|
94
|
+
<a name="PopplerDest"></a><h3>PopplerDest</h3>
|
95
|
+
<pre class="programlisting">typedef struct {
|
96
|
+
PopplerDestType type;
|
97
|
+
|
98
|
+
int page_num;
|
99
|
+
double left;
|
100
|
+
double bottom;
|
101
|
+
double right;
|
102
|
+
double top;
|
103
|
+
double zoom;
|
104
|
+
gchar *named_dest;
|
105
|
+
guint change_left : 1;
|
106
|
+
guint change_top : 1;
|
107
|
+
guint change_zoom : 1;
|
108
|
+
} PopplerDest;
|
109
|
+
</pre>
|
110
|
+
<p>
|
111
|
+
Data structure for holding a destination
|
112
|
+
</p>
|
113
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
114
|
+
<colgroup>
|
115
|
+
<col align="left" valign="top">
|
116
|
+
<col>
|
117
|
+
</colgroup>
|
118
|
+
<tbody>
|
119
|
+
<tr>
|
120
|
+
<td><p><span class="term"><a class="link" href="poppler-PopplerAction.html#PopplerDestType" title="enum PopplerDestType"><span class="type">PopplerDestType</span></a> <em class="structfield"><code><a name="PopplerDest.type"></a>type</code></em>;</span></p></td>
|
121
|
+
<td>type of destination</td>
|
122
|
+
</tr>
|
123
|
+
<tr>
|
124
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PopplerDest.page-num"></a>page_num</code></em>;</span></p></td>
|
125
|
+
<td>page number</td>
|
126
|
+
</tr>
|
127
|
+
<tr>
|
128
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PopplerDest.left"></a>left</code></em>;</span></p></td>
|
129
|
+
<td>left coordinate</td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PopplerDest.bottom"></a>bottom</code></em>;</span></p></td>
|
133
|
+
<td>bottom coordinate</td>
|
134
|
+
</tr>
|
135
|
+
<tr>
|
136
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PopplerDest.right"></a>right</code></em>;</span></p></td>
|
137
|
+
<td>right coordinate</td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PopplerDest.top"></a>top</code></em>;</span></p></td>
|
141
|
+
<td>top coordinate</td>
|
142
|
+
</tr>
|
143
|
+
<tr>
|
144
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PopplerDest.zoom"></a>zoom</code></em>;</span></p></td>
|
145
|
+
<td>scale factor</td>
|
146
|
+
</tr>
|
147
|
+
<tr>
|
148
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="PopplerDest.named-dest"></a>named_dest</code></em>;</span></p></td>
|
149
|
+
<td>name of the destination (<a class="link" href="poppler-PopplerAction.html#POPPLER-DEST-NAMED:CAPS"><span class="type">POPPLER_DEST_NAMED</span></a> only)</td>
|
150
|
+
</tr>
|
151
|
+
<tr>
|
152
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PopplerDest.change-left"></a>change_left</code></em> : 1;</span></p></td>
|
153
|
+
<td>whether left coordinate should be changed</td>
|
154
|
+
</tr>
|
155
|
+
<tr>
|
156
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PopplerDest.change-top"></a>change_top</code></em> : 1;</span></p></td>
|
157
|
+
<td>whether top coordinate should be changed</td>
|
158
|
+
</tr>
|
159
|
+
<tr>
|
160
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PopplerDest.change-zoom"></a>change_zoom</code></em> : 1;</span></p></td>
|
161
|
+
<td>whether scale factor should be changed</td>
|
162
|
+
</tr>
|
163
|
+
</tbody>
|
164
|
+
</table></div>
|
165
|
+
</div>
|
166
|
+
<hr>
|
167
|
+
<div class="refsect2">
|
168
|
+
<a name="PopplerActionAny"></a><h3>struct PopplerActionAny</h3>
|
169
|
+
<pre class="programlisting">struct PopplerActionAny {
|
170
|
+
PopplerActionType type;
|
171
|
+
gchar *title;
|
172
|
+
};
|
173
|
+
</pre>
|
174
|
+
</div>
|
175
|
+
<hr>
|
176
|
+
<div class="refsect2">
|
177
|
+
<a name="PopplerActionGotoDest"></a><h3>struct PopplerActionGotoDest</h3>
|
178
|
+
<pre class="programlisting">struct PopplerActionGotoDest {
|
179
|
+
PopplerActionType type;
|
180
|
+
gchar *title;
|
181
|
+
|
182
|
+
PopplerDest *dest;
|
183
|
+
};
|
184
|
+
</pre>
|
185
|
+
</div>
|
186
|
+
<hr>
|
187
|
+
<div class="refsect2">
|
188
|
+
<a name="PopplerActionGotoRemote"></a><h3>struct PopplerActionGotoRemote</h3>
|
189
|
+
<pre class="programlisting">struct PopplerActionGotoRemote {
|
190
|
+
PopplerActionType type;
|
191
|
+
gchar *title;
|
192
|
+
|
193
|
+
gchar *file_name;
|
194
|
+
PopplerDest *dest;
|
195
|
+
};
|
196
|
+
</pre>
|
197
|
+
</div>
|
198
|
+
<hr>
|
199
|
+
<div class="refsect2">
|
200
|
+
<a name="PopplerActionLaunch"></a><h3>struct PopplerActionLaunch</h3>
|
201
|
+
<pre class="programlisting">struct PopplerActionLaunch {
|
202
|
+
PopplerActionType type;
|
203
|
+
gchar *title;
|
204
|
+
|
205
|
+
gchar *file_name;
|
206
|
+
gchar *params;
|
207
|
+
};
|
208
|
+
</pre>
|
209
|
+
</div>
|
210
|
+
<hr>
|
211
|
+
<div class="refsect2">
|
212
|
+
<a name="PopplerActionUri"></a><h3>struct PopplerActionUri</h3>
|
213
|
+
<pre class="programlisting">struct PopplerActionUri {
|
214
|
+
PopplerActionType type;
|
215
|
+
gchar *title;
|
216
|
+
|
217
|
+
char *uri;
|
218
|
+
};
|
219
|
+
</pre>
|
220
|
+
</div>
|
221
|
+
<hr>
|
222
|
+
<div class="refsect2">
|
223
|
+
<a name="PopplerActionNamed"></a><h3>struct PopplerActionNamed</h3>
|
224
|
+
<pre class="programlisting">struct PopplerActionNamed {
|
225
|
+
PopplerActionType type;
|
226
|
+
gchar *title;
|
227
|
+
|
228
|
+
gchar *named_dest;
|
229
|
+
};
|
230
|
+
</pre>
|
231
|
+
</div>
|
232
|
+
<hr>
|
233
|
+
<div class="refsect2">
|
234
|
+
<a name="PopplerActionMovie"></a><h3>struct PopplerActionMovie</h3>
|
235
|
+
<pre class="programlisting">struct PopplerActionMovie {
|
236
|
+
PopplerActionType type;
|
237
|
+
gchar *title;
|
238
|
+
|
239
|
+
PopplerActionMovieOperation operation;
|
240
|
+
PopplerMovie *movie;
|
241
|
+
};
|
242
|
+
</pre>
|
243
|
+
</div>
|
244
|
+
<hr>
|
245
|
+
<div class="refsect2">
|
246
|
+
<a name="PopplerActionRendition"></a><h3>struct PopplerActionRendition</h3>
|
247
|
+
<pre class="programlisting">struct PopplerActionRendition {
|
248
|
+
PopplerActionType type;
|
249
|
+
gchar *title;
|
250
|
+
|
251
|
+
gint op;
|
252
|
+
PopplerMedia *media;
|
253
|
+
};
|
254
|
+
</pre>
|
255
|
+
</div>
|
256
|
+
<hr>
|
257
|
+
<div class="refsect2">
|
258
|
+
<a name="PopplerActionOCGState"></a><h3>struct PopplerActionOCGState</h3>
|
259
|
+
<pre class="programlisting">struct PopplerActionOCGState {
|
260
|
+
PopplerActionType type;
|
261
|
+
gchar *title;
|
262
|
+
|
263
|
+
GList *state_list;
|
264
|
+
};
|
265
|
+
</pre>
|
266
|
+
</div>
|
267
|
+
<hr>
|
268
|
+
<div class="refsect2">
|
269
|
+
<a name="PopplerActionJavascript"></a><h3>struct PopplerActionJavascript</h3>
|
270
|
+
<pre class="programlisting">struct PopplerActionJavascript {
|
271
|
+
PopplerActionType type;
|
272
|
+
gchar *title;
|
273
|
+
|
274
|
+
gchar *script;
|
275
|
+
};
|
276
|
+
</pre>
|
277
|
+
</div>
|
278
|
+
<hr>
|
279
|
+
<div class="refsect2">
|
280
|
+
<a name="PopplerActionType"></a><h3>enum PopplerActionType</h3>
|
281
|
+
<pre class="programlisting">typedef enum {
|
282
|
+
POPPLER_ACTION_UNKNOWN, /* unknown action */
|
283
|
+
POPPLER_ACTION_NONE, /* no action specified */
|
284
|
+
POPPLER_ACTION_GOTO_DEST, /* go to destination */
|
285
|
+
POPPLER_ACTION_GOTO_REMOTE, /* go to destination in new file */
|
286
|
+
POPPLER_ACTION_LAUNCH, /* launch app (or open document) */
|
287
|
+
POPPLER_ACTION_URI, /* URI */
|
288
|
+
POPPLER_ACTION_NAMED, /* named action*/
|
289
|
+
POPPLER_ACTION_MOVIE, /* movie action */
|
290
|
+
POPPLER_ACTION_RENDITION, /* rendition action */
|
291
|
+
POPPLER_ACTION_OCG_STATE, /* Set-OCG-State action */
|
292
|
+
POPPLER_ACTION_JAVASCRIPT /* Javascript action */
|
293
|
+
} PopplerActionType;
|
294
|
+
</pre>
|
295
|
+
<p>
|
296
|
+
Action types
|
297
|
+
</p>
|
298
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
299
|
+
<colgroup>
|
300
|
+
<col align="left" valign="top">
|
301
|
+
<col>
|
302
|
+
</colgroup>
|
303
|
+
<tbody>
|
304
|
+
<tr>
|
305
|
+
<td><p><a name="POPPLER-ACTION-UNKNOWN:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_UNKNOWN</code></span></p></td>
|
306
|
+
<td>unknown action
|
307
|
+
</td>
|
308
|
+
</tr>
|
309
|
+
<tr>
|
310
|
+
<td><p><a name="POPPLER-ACTION-NONE:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_NONE</code></span></p></td>
|
311
|
+
<td>no action specified
|
312
|
+
</td>
|
313
|
+
</tr>
|
314
|
+
<tr>
|
315
|
+
<td><p><a name="POPPLER-ACTION-GOTO-DEST:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_GOTO_DEST</code></span></p></td>
|
316
|
+
<td>go to destination
|
317
|
+
</td>
|
318
|
+
</tr>
|
319
|
+
<tr>
|
320
|
+
<td><p><a name="POPPLER-ACTION-GOTO-REMOTE:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_GOTO_REMOTE</code></span></p></td>
|
321
|
+
<td>go to destination in another document
|
322
|
+
</td>
|
323
|
+
</tr>
|
324
|
+
<tr>
|
325
|
+
<td><p><a name="POPPLER-ACTION-LAUNCH:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_LAUNCH</code></span></p></td>
|
326
|
+
<td>launch app (or open document
|
327
|
+
</td>
|
328
|
+
</tr>
|
329
|
+
<tr>
|
330
|
+
<td><p><a name="POPPLER-ACTION-URI:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_URI</code></span></p></td>
|
331
|
+
<td>URI
|
332
|
+
</td>
|
333
|
+
</tr>
|
334
|
+
<tr>
|
335
|
+
<td><p><a name="POPPLER-ACTION-NAMED:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_NAMED</code></span></p></td>
|
336
|
+
<td>predefined action
|
337
|
+
</td>
|
338
|
+
</tr>
|
339
|
+
<tr>
|
340
|
+
<td><p><a name="POPPLER-ACTION-MOVIE:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_MOVIE</code></span></p></td>
|
341
|
+
<td>play movies. Since 0.14
|
342
|
+
</td>
|
343
|
+
</tr>
|
344
|
+
<tr>
|
345
|
+
<td><p><a name="POPPLER-ACTION-RENDITION:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_RENDITION</code></span></p></td>
|
346
|
+
<td>play multimedia content. Since 0.14
|
347
|
+
</td>
|
348
|
+
</tr>
|
349
|
+
<tr>
|
350
|
+
<td><p><a name="POPPLER-ACTION-OCG-STATE:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_OCG_STATE</code></span></p></td>
|
351
|
+
<td>state of layer. Since 0.14
|
352
|
+
</td>
|
353
|
+
</tr>
|
354
|
+
<tr>
|
355
|
+
<td><p><a name="POPPLER-ACTION-JAVASCRIPT:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_JAVASCRIPT</code></span></p></td>
|
356
|
+
<td>Javascript. Since 0.18
|
357
|
+
</td>
|
358
|
+
</tr>
|
359
|
+
</tbody>
|
360
|
+
</table></div>
|
361
|
+
</div>
|
362
|
+
<hr>
|
363
|
+
<div class="refsect2">
|
364
|
+
<a name="PopplerDestType"></a><h3>enum PopplerDestType</h3>
|
365
|
+
<pre class="programlisting">typedef enum {
|
366
|
+
POPPLER_DEST_UNKNOWN,
|
367
|
+
POPPLER_DEST_XYZ,
|
368
|
+
POPPLER_DEST_FIT,
|
369
|
+
POPPLER_DEST_FITH,
|
370
|
+
POPPLER_DEST_FITV,
|
371
|
+
POPPLER_DEST_FITR,
|
372
|
+
POPPLER_DEST_FITB,
|
373
|
+
POPPLER_DEST_FITBH,
|
374
|
+
POPPLER_DEST_FITBV,
|
375
|
+
POPPLER_DEST_NAMED
|
376
|
+
} PopplerDestType;
|
377
|
+
</pre>
|
378
|
+
<p>
|
379
|
+
Destination types
|
380
|
+
</p>
|
381
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
382
|
+
<colgroup>
|
383
|
+
<col align="left" valign="top">
|
384
|
+
<col>
|
385
|
+
</colgroup>
|
386
|
+
<tbody>
|
387
|
+
<tr>
|
388
|
+
<td><p><a name="POPPLER-DEST-UNKNOWN:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_UNKNOWN</code></span></p></td>
|
389
|
+
<td>unknown destination
|
390
|
+
</td>
|
391
|
+
</tr>
|
392
|
+
<tr>
|
393
|
+
<td><p><a name="POPPLER-DEST-XYZ:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_XYZ</code></span></p></td>
|
394
|
+
<td>go to page with coordinates (left, top)
|
395
|
+
positioned at the upper-left corner of the window and the contents of
|
396
|
+
the page magnified by the factor zoom
|
397
|
+
</td>
|
398
|
+
</tr>
|
399
|
+
<tr>
|
400
|
+
<td><p><a name="POPPLER-DEST-FIT:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_FIT</code></span></p></td>
|
401
|
+
<td>go to page with its contents magnified just
|
402
|
+
enough to fit the entire page within the window both horizontally and
|
403
|
+
vertically
|
404
|
+
</td>
|
405
|
+
</tr>
|
406
|
+
<tr>
|
407
|
+
<td><p><a name="POPPLER-DEST-FITH:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_FITH</code></span></p></td>
|
408
|
+
<td>go to page with the vertical coordinate top
|
409
|
+
positioned at the top edge of the window and the contents of the page
|
410
|
+
magnified just enough to fit the entire width of the page within the window
|
411
|
+
</td>
|
412
|
+
</tr>
|
413
|
+
<tr>
|
414
|
+
<td><p><a name="POPPLER-DEST-FITV:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_FITV</code></span></p></td>
|
415
|
+
<td>go to page with the horizontal coordinate
|
416
|
+
left positioned at the left edge of the window and the contents of the
|
417
|
+
page magnified just enough to fit the entire height of the page within the window
|
418
|
+
</td>
|
419
|
+
</tr>
|
420
|
+
<tr>
|
421
|
+
<td><p><a name="POPPLER-DEST-FITR:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_FITR</code></span></p></td>
|
422
|
+
<td>go to page with its contents magnified just
|
423
|
+
enough to fit the rectangle specified by the coordinates left, bottom,
|
424
|
+
right, and top entirely within the window both horizontally and vertically
|
425
|
+
</td>
|
426
|
+
</tr>
|
427
|
+
<tr>
|
428
|
+
<td><p><a name="POPPLER-DEST-FITB:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_FITB</code></span></p></td>
|
429
|
+
<td>go to page with its contents magnified just enough to fit
|
430
|
+
its bounding box entirely within the window both horizontally and vertically
|
431
|
+
</td>
|
432
|
+
</tr>
|
433
|
+
<tr>
|
434
|
+
<td><p><a name="POPPLER-DEST-FITBH:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_FITBH</code></span></p></td>
|
435
|
+
<td>go to page with the vertical
|
436
|
+
coordinate top positioned at the top edge of the window and the
|
437
|
+
contents of the page magnified just enough to fit the entire width of its
|
438
|
+
bounding box within the window
|
439
|
+
</td>
|
440
|
+
</tr>
|
441
|
+
<tr>
|
442
|
+
<td><p><a name="POPPLER-DEST-FITBV:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_FITBV</code></span></p></td>
|
443
|
+
<td>go to page with the horizontal
|
444
|
+
coordinate left positioned at the left edge of the window and the
|
445
|
+
contents of the page magnified just enough to fit the entire height of its
|
446
|
+
bounding box within the window
|
447
|
+
</td>
|
448
|
+
</tr>
|
449
|
+
<tr>
|
450
|
+
<td><p><a name="POPPLER-DEST-NAMED:CAPS"></a><span class="term"><code class="literal">POPPLER_DEST_NAMED</code></span></p></td>
|
451
|
+
<td>got to page specified by a name. See <a class="link" href="PopplerDocument.html#poppler-document-find-dest" title="poppler_document_find_dest ()"><code class="function">poppler_document_find_dest()</code></a>
|
452
|
+
</td>
|
453
|
+
</tr>
|
454
|
+
</tbody>
|
455
|
+
</table></div>
|
456
|
+
</div>
|
457
|
+
<hr>
|
458
|
+
<div class="refsect2">
|
459
|
+
<a name="PopplerActionMovieOperation"></a><h3>enum PopplerActionMovieOperation</h3>
|
460
|
+
<pre class="programlisting">typedef enum {
|
461
|
+
POPPLER_ACTION_MOVIE_PLAY,
|
462
|
+
POPPLER_ACTION_MOVIE_PAUSE,
|
463
|
+
POPPLER_ACTION_MOVIE_RESUME,
|
464
|
+
POPPLER_ACTION_MOVIE_STOP
|
465
|
+
} PopplerActionMovieOperation;
|
466
|
+
</pre>
|
467
|
+
<p>
|
468
|
+
Movie operations
|
469
|
+
</p>
|
470
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
471
|
+
<colgroup>
|
472
|
+
<col align="left" valign="top">
|
473
|
+
<col>
|
474
|
+
</colgroup>
|
475
|
+
<tbody>
|
476
|
+
<tr>
|
477
|
+
<td><p><a name="POPPLER-ACTION-MOVIE-PLAY:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_MOVIE_PLAY</code></span></p></td>
|
478
|
+
<td>play movie
|
479
|
+
</td>
|
480
|
+
</tr>
|
481
|
+
<tr>
|
482
|
+
<td><p><a name="POPPLER-ACTION-MOVIE-PAUSE:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_MOVIE_PAUSE</code></span></p></td>
|
483
|
+
<td>pause playing movie
|
484
|
+
</td>
|
485
|
+
</tr>
|
486
|
+
<tr>
|
487
|
+
<td><p><a name="POPPLER-ACTION-MOVIE-RESUME:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_MOVIE_RESUME</code></span></p></td>
|
488
|
+
<td>resume paused movie
|
489
|
+
</td>
|
490
|
+
</tr>
|
491
|
+
<tr>
|
492
|
+
<td><p><a name="POPPLER-ACTION-MOVIE-STOP:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_MOVIE_STOP</code></span></p></td>
|
493
|
+
<td>stop playing movie
|
494
|
+
</td>
|
495
|
+
</tr>
|
496
|
+
</tbody>
|
497
|
+
</table></div>
|
498
|
+
<p class="since">Since 0.14</p>
|
499
|
+
</div>
|
500
|
+
<hr>
|
501
|
+
<div class="refsect2">
|
502
|
+
<a name="PopplerActionLayer"></a><h3>PopplerActionLayer</h3>
|
503
|
+
<pre class="programlisting">typedef struct {
|
504
|
+
PopplerActionLayerAction action;
|
505
|
+
GList *layers;
|
506
|
+
} PopplerActionLayer;
|
507
|
+
</pre>
|
508
|
+
<p>
|
509
|
+
Action to perform over a list of layers
|
510
|
+
</p>
|
511
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
512
|
+
<colgroup>
|
513
|
+
<col align="left" valign="top">
|
514
|
+
<col>
|
515
|
+
</colgroup>
|
516
|
+
<tbody>
|
517
|
+
<tr>
|
518
|
+
<td><p><span class="term"><a class="link" href="poppler-PopplerAction.html#PopplerActionLayerAction" title="enum PopplerActionLayerAction"><span class="type">PopplerActionLayerAction</span></a> <em class="structfield"><code><a name="PopplerActionLayer.action"></a>action</code></em>;</span></p></td>
|
519
|
+
<td>a <a class="link" href="poppler-PopplerAction.html#PopplerActionLayerAction" title="enum PopplerActionLayerAction"><span class="type">PopplerActionLayerAction</span></a>
|
520
|
+
</td>
|
521
|
+
</tr>
|
522
|
+
<tr>
|
523
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *<em class="structfield"><code><a name="PopplerActionLayer.layers"></a>layers</code></em>;</span></p></td>
|
524
|
+
<td>list of <a class="link" href="PopplerLayer.html" title="PopplerLayer"><span class="type">PopplerLayer</span></a>s</td>
|
525
|
+
</tr>
|
526
|
+
</tbody>
|
527
|
+
</table></div>
|
528
|
+
</div>
|
529
|
+
<hr>
|
530
|
+
<div class="refsect2">
|
531
|
+
<a name="PopplerActionLayerAction"></a><h3>enum PopplerActionLayerAction</h3>
|
532
|
+
<pre class="programlisting">typedef enum {
|
533
|
+
POPPLER_ACTION_LAYER_ON,
|
534
|
+
POPPLER_ACTION_LAYER_OFF,
|
535
|
+
POPPLER_ACTION_LAYER_TOGGLE
|
536
|
+
} PopplerActionLayerAction;
|
537
|
+
</pre>
|
538
|
+
<p>
|
539
|
+
Layer actions
|
540
|
+
</p>
|
541
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
542
|
+
<colgroup>
|
543
|
+
<col align="left" valign="top">
|
544
|
+
<col>
|
545
|
+
</colgroup>
|
546
|
+
<tbody>
|
547
|
+
<tr>
|
548
|
+
<td><p><a name="POPPLER-ACTION-LAYER-ON:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_LAYER_ON</code></span></p></td>
|
549
|
+
<td>set layer visibility on
|
550
|
+
</td>
|
551
|
+
</tr>
|
552
|
+
<tr>
|
553
|
+
<td><p><a name="POPPLER-ACTION-LAYER-OFF:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_LAYER_OFF</code></span></p></td>
|
554
|
+
<td>set layer visibility off
|
555
|
+
</td>
|
556
|
+
</tr>
|
557
|
+
<tr>
|
558
|
+
<td><p><a name="POPPLER-ACTION-LAYER-TOGGLE:CAPS"></a><span class="term"><code class="literal">POPPLER_ACTION_LAYER_TOGGLE</code></span></p></td>
|
559
|
+
<td>reverse the layer visibility state
|
560
|
+
</td>
|
561
|
+
</tr>
|
562
|
+
</tbody>
|
563
|
+
</table></div>
|
564
|
+
<p class="since">Since 0.14</p>
|
565
|
+
</div>
|
566
|
+
<hr>
|
567
|
+
<div class="refsect2">
|
568
|
+
<a name="poppler-action-copy"></a><h3>poppler_action_copy ()</h3>
|
569
|
+
<pre class="programlisting"><a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="returnvalue">PopplerAction</span></a> * poppler_action_copy (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a> *action</code></em>);</pre>
|
570
|
+
<p>
|
571
|
+
Copies <em class="parameter"><code>action</code></em>, creating an identical <a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a>.
|
572
|
+
</p>
|
573
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
574
|
+
<colgroup>
|
575
|
+
<col align="left" valign="top">
|
576
|
+
<col>
|
577
|
+
</colgroup>
|
578
|
+
<tbody>
|
579
|
+
<tr>
|
580
|
+
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
|
581
|
+
<td>a <a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a>
|
582
|
+
</td>
|
583
|
+
</tr>
|
584
|
+
<tr>
|
585
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
586
|
+
<td>a new action identical to <em class="parameter"><code>action</code></em>
|
587
|
+
</td>
|
588
|
+
</tr>
|
589
|
+
</tbody>
|
590
|
+
</table></div>
|
591
|
+
</div>
|
592
|
+
<hr>
|
593
|
+
<div class="refsect2">
|
594
|
+
<a name="poppler-action-free"></a><h3>poppler_action_free ()</h3>
|
595
|
+
<pre class="programlisting"><span class="returnvalue">void</span> poppler_action_free (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a> *action</code></em>);</pre>
|
596
|
+
<p>
|
597
|
+
Frees <em class="parameter"><code>action</code></em>
|
598
|
+
</p>
|
599
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
600
|
+
<colgroup>
|
601
|
+
<col align="left" valign="top">
|
602
|
+
<col>
|
603
|
+
</colgroup>
|
604
|
+
<tbody><tr>
|
605
|
+
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
|
606
|
+
<td>a <a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a>
|
607
|
+
</td>
|
608
|
+
</tr></tbody>
|
609
|
+
</table></div>
|
610
|
+
</div>
|
611
|
+
<hr>
|
612
|
+
<div class="refsect2">
|
613
|
+
<a name="poppler-dest-copy"></a><h3>poppler_dest_copy ()</h3>
|
614
|
+
<pre class="programlisting"><a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="returnvalue">PopplerDest</span></a> * poppler_dest_copy (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a> *dest</code></em>);</pre>
|
615
|
+
<p>
|
616
|
+
Copies <em class="parameter"><code>dest</code></em>, creating an identical <a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a>.
|
617
|
+
</p>
|
618
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
619
|
+
<colgroup>
|
620
|
+
<col align="left" valign="top">
|
621
|
+
<col>
|
622
|
+
</colgroup>
|
623
|
+
<tbody>
|
624
|
+
<tr>
|
625
|
+
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
626
|
+
<td>a <a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a>
|
627
|
+
</td>
|
628
|
+
</tr>
|
629
|
+
<tr>
|
630
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
631
|
+
<td>a new destination identical to <em class="parameter"><code>dest</code></em>
|
632
|
+
</td>
|
633
|
+
</tr>
|
634
|
+
</tbody>
|
635
|
+
</table></div>
|
636
|
+
</div>
|
637
|
+
<hr>
|
638
|
+
<div class="refsect2">
|
639
|
+
<a name="poppler-dest-free"></a><h3>poppler_dest_free ()</h3>
|
640
|
+
<pre class="programlisting"><span class="returnvalue">void</span> poppler_dest_free (<em class="parameter"><code><a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a> *dest</code></em>);</pre>
|
641
|
+
<p>
|
642
|
+
Frees <em class="parameter"><code>dest</code></em>
|
643
|
+
</p>
|
644
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
645
|
+
<colgroup>
|
646
|
+
<col align="left" valign="top">
|
647
|
+
<col>
|
648
|
+
</colgroup>
|
649
|
+
<tbody><tr>
|
650
|
+
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
651
|
+
<td>a <a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a>
|
652
|
+
</td>
|
653
|
+
</tr></tbody>
|
654
|
+
</table></div>
|
655
|
+
</div>
|
656
|
+
</div>
|
657
|
+
</div>
|
658
|
+
<div class="footer">
|
659
|
+
<hr>
|
660
|
+
Generated by GTK-Doc V1.19</div>
|
661
|
+
</body>
|
662
|
+
</html>
|