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
@@ -3,14 +3,13 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Poppler</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
7
|
-
<link rel="
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Poppler Reference Manual">
|
8
8
|
<link rel="up" href="index.html" title="Poppler Reference Manual">
|
9
9
|
<link rel="prev" href="index.html" title="Poppler Reference Manual">
|
10
10
|
<link rel="next" href="poppler-poppler.html" title="poppler">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="ch01.html" title="Poppler">
|
14
13
|
</head>
|
15
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
16
15
|
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
@@ -20,44 +19,47 @@
|
|
20
19
|
<th width="100%" align="center">Poppler Reference Manual</th>
|
21
20
|
<td><a accesskey="n" href="poppler-poppler.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
21
|
</tr></table>
|
23
|
-
<div class="chapter"
|
24
|
-
<div class="titlepage"><div><div><
|
25
|
-
<a name="
|
26
|
-
<div class="toc"><dl>
|
22
|
+
<div class="chapter">
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="id-1.2"></a>Poppler</h1></div></div></div>
|
25
|
+
<div class="toc"><dl class="toc">
|
27
26
|
<dt>
|
28
27
|
<span class="refentrytitle"><a href="poppler-poppler.html">poppler</a></span><span class="refpurpose"></span>
|
29
28
|
</dt>
|
30
29
|
<dt>
|
31
|
-
<span class="refentrytitle"><a href="
|
30
|
+
<span class="refentrytitle"><a href="PopplerDocument.html">PopplerDocument</a></span><span class="refpurpose"> — Information about a document</span>
|
32
31
|
</dt>
|
33
32
|
<dt>
|
34
|
-
<span class="refentrytitle"><a href="
|
33
|
+
<span class="refentrytitle"><a href="PopplerPage.html">PopplerPage</a></span><span class="refpurpose"> — Information about a page in a document</span>
|
35
34
|
</dt>
|
36
35
|
<dt>
|
37
|
-
<span class="refentrytitle"><a href="poppler-
|
36
|
+
<span class="refentrytitle"><a href="poppler-PopplerAction.html">PopplerAction</a></span><span class="refpurpose"> — Action links</span>
|
38
37
|
</dt>
|
39
38
|
<dt>
|
40
|
-
<span class="refentrytitle"><a href="
|
39
|
+
<span class="refentrytitle"><a href="PopplerAttachment.html">PopplerAttachment</a></span><span class="refpurpose"> — Attachments</span>
|
41
40
|
</dt>
|
42
41
|
<dt>
|
43
|
-
<span class="refentrytitle"><a href="
|
42
|
+
<span class="refentrytitle"><a href="PopplerFormField.html">PoppplerFormField</a></span><span class="refpurpose"> — Form Field</span>
|
44
43
|
</dt>
|
45
44
|
<dt>
|
46
|
-
<span class="refentrytitle"><a href="
|
45
|
+
<span class="refentrytitle"><a href="PopplerAnnot.html">PopplerAnnot</a></span><span class="refpurpose"> — Annotations</span>
|
47
46
|
</dt>
|
48
47
|
<dt>
|
49
|
-
<span class="refentrytitle"><a href="
|
48
|
+
<span class="refentrytitle"><a href="PopplerLayer.html">PopplerLayer</a></span><span class="refpurpose"> — Layers</span>
|
50
49
|
</dt>
|
51
50
|
<dt>
|
52
|
-
<span class="refentrytitle"><a href="
|
51
|
+
<span class="refentrytitle"><a href="PopplerMedia.html">PopplerMedia</a></span><span class="refpurpose"> — Media</span>
|
53
52
|
</dt>
|
54
53
|
<dt>
|
55
|
-
<span class="refentrytitle"><a href="
|
54
|
+
<span class="refentrytitle"><a href="PopplerMovie.html">PopplerMovie</a></span><span class="refpurpose"> — Movies</span>
|
55
|
+
</dt>
|
56
|
+
<dt>
|
57
|
+
<span class="refentrytitle"><a href="poppler-Version-and-Features-Information.html">Version and Features Information</a></span><span class="refpurpose"> — Variables and functions to check the poppler version and features</span>
|
56
58
|
</dt>
|
57
59
|
</dl></div>
|
58
60
|
</div>
|
59
61
|
<div class="footer">
|
60
62
|
<hr>
|
61
|
-
Generated by GTK-Doc V1.
|
63
|
+
Generated by GTK-Doc V1.19</div>
|
62
64
|
</body>
|
63
|
-
</html>
|
65
|
+
</html>
|
Binary file
|
@@ -3,57 +3,74 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Poppler Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
7
|
-
<link rel="
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Poppler Reference Manual">
|
8
8
|
<link rel="next" href="ch01.html" title="Poppler">
|
9
|
-
<meta name="generator" content="GTK-Doc V1.
|
9
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
10
10
|
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
-
<link rel="chapter" href="ch01.html" title="Poppler">
|
12
11
|
</head>
|
13
12
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
14
|
-
<div class="book"
|
13
|
+
<div class="book">
|
15
14
|
<div class="titlepage">
|
16
|
-
<div
|
15
|
+
<div>
|
16
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Poppler Reference Manual</p></th></tr></table></div>
|
17
|
+
<div><p class="releaseinfo">
|
18
|
+
for Poppler 0.24.4
|
19
|
+
|
20
|
+
</p></div>
|
21
|
+
</div>
|
17
22
|
<hr>
|
18
23
|
</div>
|
19
|
-
<div class="toc"><dl>
|
24
|
+
<div class="toc"><dl class="toc">
|
20
25
|
<dt><span class="chapter"><a href="ch01.html">Poppler</a></span></dt>
|
21
26
|
<dd><dl>
|
22
27
|
<dt>
|
23
28
|
<span class="refentrytitle"><a href="poppler-poppler.html">poppler</a></span><span class="refpurpose"></span>
|
24
29
|
</dt>
|
25
30
|
<dt>
|
26
|
-
<span class="refentrytitle"><a href="
|
31
|
+
<span class="refentrytitle"><a href="PopplerDocument.html">PopplerDocument</a></span><span class="refpurpose"> — Information about a document</span>
|
32
|
+
</dt>
|
33
|
+
<dt>
|
34
|
+
<span class="refentrytitle"><a href="PopplerPage.html">PopplerPage</a></span><span class="refpurpose"> — Information about a page in a document</span>
|
27
35
|
</dt>
|
28
36
|
<dt>
|
29
|
-
<span class="refentrytitle"><a href="poppler-
|
37
|
+
<span class="refentrytitle"><a href="poppler-PopplerAction.html">PopplerAction</a></span><span class="refpurpose"> — Action links</span>
|
30
38
|
</dt>
|
31
39
|
<dt>
|
32
|
-
<span class="refentrytitle"><a href="
|
40
|
+
<span class="refentrytitle"><a href="PopplerAttachment.html">PopplerAttachment</a></span><span class="refpurpose"> — Attachments</span>
|
33
41
|
</dt>
|
34
42
|
<dt>
|
35
|
-
<span class="refentrytitle"><a href="
|
43
|
+
<span class="refentrytitle"><a href="PopplerFormField.html">PoppplerFormField</a></span><span class="refpurpose"> — Form Field</span>
|
36
44
|
</dt>
|
37
45
|
<dt>
|
38
|
-
<span class="refentrytitle"><a href="
|
46
|
+
<span class="refentrytitle"><a href="PopplerAnnot.html">PopplerAnnot</a></span><span class="refpurpose"> — Annotations</span>
|
39
47
|
</dt>
|
40
48
|
<dt>
|
41
|
-
<span class="refentrytitle"><a href="
|
49
|
+
<span class="refentrytitle"><a href="PopplerLayer.html">PopplerLayer</a></span><span class="refpurpose"> — Layers</span>
|
42
50
|
</dt>
|
43
51
|
<dt>
|
44
|
-
<span class="refentrytitle"><a href="
|
52
|
+
<span class="refentrytitle"><a href="PopplerMedia.html">PopplerMedia</a></span><span class="refpurpose"> — Media</span>
|
45
53
|
</dt>
|
46
54
|
<dt>
|
47
|
-
<span class="refentrytitle"><a href="
|
55
|
+
<span class="refentrytitle"><a href="PopplerMovie.html">PopplerMovie</a></span><span class="refpurpose"> — Movies</span>
|
48
56
|
</dt>
|
49
57
|
<dt>
|
50
|
-
<span class="refentrytitle"><a href="poppler-
|
58
|
+
<span class="refentrytitle"><a href="poppler-Version-and-Features-Information.html">Version and Features Information</a></span><span class="refpurpose"> — Variables and functions to check the poppler version and features</span>
|
51
59
|
</dt>
|
52
60
|
</dl></dd>
|
61
|
+
<dt><span class="index"><a href="api-index-full.html">Index of all symbols</a></span></dt>
|
62
|
+
<dt><span class="index"><a href="api-index-deprecated.html">Index of deprecated symbols</a></span></dt>
|
63
|
+
<dt><span class="index"><a href="api-index-0-12.html">Index of new symbols in 0.12</a></span></dt>
|
64
|
+
<dt><span class="index"><a href="api-index-0-14.html">Index of new symbols in 0.14</a></span></dt>
|
65
|
+
<dt><span class="index"><a href="api-index-0-16.html">Index of new symbols in 0.16</a></span></dt>
|
66
|
+
<dt><span class="index"><a href="api-index-0-18.html">Index of new symbols in 0.18</a></span></dt>
|
67
|
+
<dt><span class="index"><a href="api-index-0-20.html">Index of new symbols in 0.20</a></span></dt>
|
68
|
+
<dt><span class="index"><a href="api-index-0-22.html">Index of new symbols in 0.22</a></span></dt>
|
69
|
+
<dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
|
53
70
|
</dl></div>
|
54
71
|
</div>
|
55
72
|
<div class="footer">
|
56
73
|
<hr>
|
57
|
-
Generated by GTK-Doc V1.
|
74
|
+
Generated by GTK-Doc V1.19</div>
|
58
75
|
</body>
|
59
|
-
</html>
|
76
|
+
</html>
|
@@ -1,309 +1,557 @@
|
|
1
1
|
<ANCHOR id="poppler-poppler" href="poppler/poppler-poppler.html">
|
2
2
|
<ANCHOR id="poppler-poppler.synopsis" href="poppler/poppler-poppler.html#poppler-poppler.synopsis">
|
3
|
-
<ANCHOR id="PopplerDocument" href="poppler/poppler-poppler.html#PopplerDocument">
|
4
|
-
<ANCHOR id="PopplerPage" href="poppler/poppler-poppler.html#PopplerPage">
|
5
|
-
<ANCHOR id="poppler-poppler.object-hierarchy" href="poppler/poppler-poppler.html#poppler-poppler.object-hierarchy">
|
6
|
-
<ANCHOR id="poppler-poppler.properties" href="poppler/poppler-poppler.html#poppler-poppler.properties">
|
7
3
|
<ANCHOR id="poppler-poppler.description" href="poppler/poppler-poppler.html#poppler-poppler.description">
|
8
4
|
<ANCHOR id="poppler-poppler.details" href="poppler/poppler-poppler.html#poppler-poppler.details">
|
9
|
-
<ANCHOR id="
|
10
|
-
<ANCHOR id="POPPLER-ERROR--CAPS" href="poppler/poppler-poppler.html#POPPLER-ERROR--CAPS">
|
5
|
+
<ANCHOR id="POPPLER-ERROR:CAPS" href="poppler/poppler-poppler.html#POPPLER-ERROR:CAPS">
|
11
6
|
<ANCHOR id="PopplerError" href="poppler/poppler-poppler.html#PopplerError">
|
7
|
+
<ANCHOR id="POPPLER-ERROR-INVALID:CAPS" href="poppler/poppler-poppler.html#POPPLER-ERROR-INVALID:CAPS">
|
8
|
+
<ANCHOR id="POPPLER-ERROR-ENCRYPTED:CAPS" href="poppler/poppler-poppler.html#POPPLER-ERROR-ENCRYPTED:CAPS">
|
9
|
+
<ANCHOR id="POPPLER-ERROR-OPEN-FILE:CAPS" href="poppler/poppler-poppler.html#POPPLER-ERROR-OPEN-FILE:CAPS">
|
10
|
+
<ANCHOR id="POPPLER-ERROR-BAD-CATALOG:CAPS" href="poppler/poppler-poppler.html#POPPLER-ERROR-BAD-CATALOG:CAPS">
|
11
|
+
<ANCHOR id="POPPLER-ERROR-DAMAGED:CAPS" href="poppler/poppler-poppler.html#POPPLER-ERROR-DAMAGED:CAPS">
|
12
12
|
<ANCHOR id="PopplerOrientation" href="poppler/poppler-poppler.html#PopplerOrientation">
|
13
|
-
<ANCHOR id="
|
14
|
-
<ANCHOR id="
|
15
|
-
<ANCHOR id="
|
16
|
-
<ANCHOR id="
|
17
|
-
<ANCHOR id="PopplerSelectionStyle" href="poppler/poppler-poppler.html#PopplerSelectionStyle">
|
18
|
-
<ANCHOR id="PopplerPageTransitionType" href="poppler/poppler-poppler.html#PopplerPageTransitionType">
|
19
|
-
<ANCHOR id="PopplerPageTransitionAlignment" href="poppler/poppler-poppler.html#PopplerPageTransitionAlignment">
|
20
|
-
<ANCHOR id="PopplerPageTransitionDirection" href="poppler/poppler-poppler.html#PopplerPageTransitionDirection">
|
21
|
-
<ANCHOR id="PopplerLinkMapping" href="poppler/poppler-poppler.html#PopplerLinkMapping">
|
22
|
-
<ANCHOR id="PopplerPage-struct" href="poppler/poppler-poppler.html#PopplerPage-struct">
|
23
|
-
<ANCHOR id="PopplerFontInfo" href="poppler/poppler-poppler.html#PopplerFontInfo">
|
24
|
-
<ANCHOR id="PopplerPSFile" href="poppler/poppler-poppler.html#PopplerPSFile">
|
13
|
+
<ANCHOR id="POPPLER-ORIENTATION-PORTRAIT:CAPS" href="poppler/poppler-poppler.html#POPPLER-ORIENTATION-PORTRAIT:CAPS">
|
14
|
+
<ANCHOR id="POPPLER-ORIENTATION-LANDSCAPE:CAPS" href="poppler/poppler-poppler.html#POPPLER-ORIENTATION-LANDSCAPE:CAPS">
|
15
|
+
<ANCHOR id="POPPLER-ORIENTATION-UPSIDEDOWN:CAPS" href="poppler/poppler-poppler.html#POPPLER-ORIENTATION-UPSIDEDOWN:CAPS">
|
16
|
+
<ANCHOR id="POPPLER-ORIENTATION-SEASCAPE:CAPS" href="poppler/poppler-poppler.html#POPPLER-ORIENTATION-SEASCAPE:CAPS">
|
25
17
|
<ANCHOR id="PopplerBackend" href="poppler/poppler-poppler.html#PopplerBackend">
|
18
|
+
<ANCHOR id="POPPLER-BACKEND-UNKNOWN:CAPS" href="poppler/poppler-poppler.html#POPPLER-BACKEND-UNKNOWN:CAPS">
|
19
|
+
<ANCHOR id="POPPLER-BACKEND-SPLASH:CAPS" href="poppler/poppler-poppler.html#POPPLER-BACKEND-SPLASH:CAPS">
|
20
|
+
<ANCHOR id="POPPLER-BACKEND-CAIRO:CAPS" href="poppler/poppler-poppler.html#POPPLER-BACKEND-CAIRO:CAPS">
|
21
|
+
<ANCHOR id="PopplerColor" href="poppler/poppler-poppler.html#PopplerColor">
|
22
|
+
<ANCHOR id="PopplerPrintFlags" href="poppler/poppler-poppler.html#PopplerPrintFlags">
|
23
|
+
<ANCHOR id="POPPLER-PRINT-DOCUMENT:CAPS" href="poppler/poppler-poppler.html#POPPLER-PRINT-DOCUMENT:CAPS">
|
24
|
+
<ANCHOR id="POPPLER-PRINT-MARKUP-ANNOTS:CAPS" href="poppler/poppler-poppler.html#POPPLER-PRINT-MARKUP-ANNOTS:CAPS">
|
25
|
+
<ANCHOR id="POPPLER-PRINT-STAMP-ANNOTS-ONLY:CAPS" href="poppler/poppler-poppler.html#POPPLER-PRINT-STAMP-ANNOTS-ONLY:CAPS">
|
26
|
+
<ANCHOR id="POPPLER-PRINT-ALL:CAPS" href="poppler/poppler-poppler.html#POPPLER-PRINT-ALL:CAPS">
|
27
|
+
<ANCHOR id="PopplerFindFlags" href="poppler/poppler-poppler.html#PopplerFindFlags">
|
28
|
+
<ANCHOR id="POPPLER-FIND-DEFAULT:CAPS" href="poppler/poppler-poppler.html#POPPLER-FIND-DEFAULT:CAPS">
|
29
|
+
<ANCHOR id="POPPLER-FIND-CASE-SENSITIVE:CAPS" href="poppler/poppler-poppler.html#POPPLER-FIND-CASE-SENSITIVE:CAPS">
|
30
|
+
<ANCHOR id="POPPLER-FIND-BACKWARDS:CAPS" href="poppler/poppler-poppler.html#POPPLER-FIND-BACKWARDS:CAPS">
|
31
|
+
<ANCHOR id="POPPLER-FIND-WHOLE-WORDS-ONLY:CAPS" href="poppler/poppler-poppler.html#POPPLER-FIND-WHOLE-WORDS-ONLY:CAPS">
|
26
32
|
<ANCHOR id="poppler-get-backend" href="poppler/poppler-poppler.html#poppler-get-backend">
|
27
33
|
<ANCHOR id="poppler-get-version" href="poppler/poppler-poppler.html#poppler-get-version">
|
28
|
-
<ANCHOR id="poppler-
|
29
|
-
<ANCHOR id="
|
30
|
-
<ANCHOR id="
|
31
|
-
<ANCHOR id="
|
32
|
-
<ANCHOR id="PopplerDocument
|
33
|
-
<ANCHOR id="PopplerDocument
|
34
|
-
<ANCHOR id="PopplerDocument
|
35
|
-
<ANCHOR id="PopplerDocument
|
36
|
-
<ANCHOR id="PopplerDocument
|
37
|
-
<ANCHOR id="PopplerDocument
|
38
|
-
<ANCHOR id="PopplerDocument
|
39
|
-
<ANCHOR id="
|
40
|
-
<ANCHOR id="
|
41
|
-
<ANCHOR id="
|
42
|
-
<ANCHOR id="
|
43
|
-
<ANCHOR id="
|
44
|
-
<ANCHOR id="
|
45
|
-
<ANCHOR id="
|
46
|
-
<ANCHOR id="
|
47
|
-
<ANCHOR id="
|
48
|
-
<ANCHOR id="
|
49
|
-
<ANCHOR id="
|
50
|
-
<ANCHOR id="
|
51
|
-
<ANCHOR id="
|
52
|
-
<ANCHOR id="
|
53
|
-
<ANCHOR id="
|
54
|
-
<ANCHOR id="
|
55
|
-
<ANCHOR id="
|
56
|
-
<ANCHOR id="
|
57
|
-
<ANCHOR id="
|
58
|
-
<ANCHOR id="
|
59
|
-
<ANCHOR id="
|
60
|
-
<ANCHOR id="
|
61
|
-
<ANCHOR id="
|
62
|
-
<ANCHOR id="
|
63
|
-
<ANCHOR id="
|
64
|
-
<ANCHOR id="
|
65
|
-
<ANCHOR id="
|
66
|
-
<ANCHOR id="
|
67
|
-
<ANCHOR id="
|
68
|
-
<ANCHOR id="
|
69
|
-
<ANCHOR id="
|
70
|
-
<ANCHOR id="
|
71
|
-
<ANCHOR id="
|
72
|
-
<ANCHOR id="
|
73
|
-
<ANCHOR id="
|
74
|
-
<ANCHOR id="
|
75
|
-
<ANCHOR id="
|
76
|
-
<ANCHOR id="
|
77
|
-
<ANCHOR id="
|
78
|
-
<ANCHOR id="
|
79
|
-
<ANCHOR id="
|
80
|
-
<ANCHOR id="
|
81
|
-
<ANCHOR id="
|
82
|
-
<ANCHOR id="
|
83
|
-
<ANCHOR id="
|
84
|
-
<ANCHOR id="
|
85
|
-
<ANCHOR id="
|
86
|
-
<ANCHOR id="
|
87
|
-
<ANCHOR id="
|
88
|
-
<ANCHOR id="
|
89
|
-
<ANCHOR id="
|
90
|
-
<ANCHOR id="
|
91
|
-
<ANCHOR id="
|
92
|
-
<ANCHOR id="poppler-
|
93
|
-
<ANCHOR id="poppler-
|
94
|
-
<ANCHOR id="poppler-
|
95
|
-
<ANCHOR id="poppler-
|
96
|
-
<ANCHOR id="poppler-
|
97
|
-
<ANCHOR id="poppler-
|
98
|
-
<ANCHOR id="poppler-
|
99
|
-
<ANCHOR id="poppler-
|
100
|
-
<ANCHOR id="poppler-
|
101
|
-
<ANCHOR id="poppler-
|
102
|
-
<ANCHOR id="poppler-
|
103
|
-
<ANCHOR id="poppler-
|
104
|
-
<ANCHOR id="poppler-
|
105
|
-
<ANCHOR id="poppler-
|
106
|
-
<ANCHOR id="poppler-
|
107
|
-
<ANCHOR id="poppler-
|
108
|
-
<ANCHOR id="poppler-
|
109
|
-
<ANCHOR id="poppler-
|
110
|
-
<ANCHOR id="poppler-
|
111
|
-
<ANCHOR id="poppler-
|
112
|
-
<ANCHOR id="poppler-
|
113
|
-
<ANCHOR id="poppler-
|
114
|
-
<ANCHOR id="
|
115
|
-
<ANCHOR id="
|
116
|
-
<ANCHOR id="poppler-
|
117
|
-
<ANCHOR id="poppler-
|
118
|
-
<ANCHOR id="poppler-
|
119
|
-
<ANCHOR id="poppler-
|
120
|
-
<ANCHOR id="
|
121
|
-
<ANCHOR id="
|
122
|
-
<ANCHOR id="poppler-
|
123
|
-
<ANCHOR id="poppler-
|
124
|
-
<ANCHOR id="poppler-
|
125
|
-
<ANCHOR id="poppler-
|
126
|
-
<ANCHOR id="
|
127
|
-
<ANCHOR id="
|
128
|
-
<ANCHOR id="poppler-
|
129
|
-
<ANCHOR id="poppler-
|
130
|
-
<ANCHOR id="poppler-
|
131
|
-
<ANCHOR id="poppler-
|
132
|
-
<ANCHOR id="
|
133
|
-
<ANCHOR id="
|
134
|
-
<ANCHOR id="poppler-
|
135
|
-
<ANCHOR id="poppler-
|
136
|
-
<ANCHOR id="poppler-
|
137
|
-
<ANCHOR id="poppler-
|
138
|
-
<ANCHOR id="
|
139
|
-
<ANCHOR id="
|
140
|
-
<ANCHOR id="poppler-
|
141
|
-
<ANCHOR id="poppler-
|
142
|
-
<ANCHOR id="poppler-
|
143
|
-
<ANCHOR id="poppler-
|
144
|
-
<ANCHOR id="poppler-
|
145
|
-
<ANCHOR id="poppler-
|
146
|
-
<ANCHOR id="poppler-
|
147
|
-
<ANCHOR id="poppler-
|
148
|
-
<ANCHOR id="
|
149
|
-
<ANCHOR id="
|
150
|
-
<ANCHOR id="
|
151
|
-
<ANCHOR id="
|
152
|
-
<ANCHOR id="
|
153
|
-
<ANCHOR id="
|
154
|
-
<ANCHOR id="
|
155
|
-
<ANCHOR id="
|
156
|
-
<ANCHOR id="
|
157
|
-
<ANCHOR id="
|
158
|
-
<ANCHOR id="
|
159
|
-
<ANCHOR id="
|
160
|
-
<ANCHOR id="
|
161
|
-
<ANCHOR id="
|
162
|
-
<ANCHOR id="
|
163
|
-
<ANCHOR id="
|
164
|
-
<ANCHOR id="
|
165
|
-
<ANCHOR id="
|
166
|
-
<ANCHOR id="
|
167
|
-
<ANCHOR id="
|
168
|
-
<ANCHOR id="
|
169
|
-
<ANCHOR id="
|
170
|
-
<ANCHOR id="
|
171
|
-
<ANCHOR id="
|
172
|
-
<ANCHOR id="
|
173
|
-
<ANCHOR id="
|
174
|
-
<ANCHOR id="
|
175
|
-
<ANCHOR id="
|
176
|
-
<ANCHOR id="
|
177
|
-
<ANCHOR id="
|
178
|
-
<ANCHOR id="
|
179
|
-
<ANCHOR id="
|
180
|
-
<ANCHOR id="
|
181
|
-
<ANCHOR id="
|
182
|
-
<ANCHOR id="
|
183
|
-
<ANCHOR id="
|
184
|
-
<ANCHOR id="
|
185
|
-
<ANCHOR id="
|
186
|
-
<ANCHOR id="
|
187
|
-
<ANCHOR id="
|
188
|
-
<ANCHOR id="
|
189
|
-
<ANCHOR id="
|
190
|
-
<ANCHOR id="
|
191
|
-
<ANCHOR id="
|
192
|
-
<ANCHOR id="
|
193
|
-
<ANCHOR id="
|
194
|
-
<ANCHOR id="
|
195
|
-
<ANCHOR id="
|
196
|
-
<ANCHOR id="
|
197
|
-
<ANCHOR id="
|
198
|
-
<ANCHOR id="
|
199
|
-
<ANCHOR id="
|
200
|
-
<ANCHOR id="
|
201
|
-
<ANCHOR id="
|
202
|
-
<ANCHOR id="
|
203
|
-
<ANCHOR id="
|
204
|
-
<ANCHOR id="
|
205
|
-
<ANCHOR id="
|
206
|
-
<ANCHOR id="
|
207
|
-
<ANCHOR id="
|
208
|
-
<ANCHOR id="
|
209
|
-
<ANCHOR id="poppler-
|
210
|
-
<ANCHOR id="poppler-
|
211
|
-
<ANCHOR id="poppler-
|
212
|
-
<ANCHOR id="poppler-
|
213
|
-
<ANCHOR id="poppler-
|
214
|
-
<ANCHOR id="poppler-
|
215
|
-
<ANCHOR id="poppler-
|
216
|
-
<ANCHOR id="poppler-
|
217
|
-
<ANCHOR id="poppler-
|
218
|
-
<ANCHOR id="poppler-
|
219
|
-
<ANCHOR id="poppler-
|
220
|
-
<ANCHOR id="
|
221
|
-
<ANCHOR id="poppler-
|
222
|
-
<ANCHOR id="
|
223
|
-
<ANCHOR id="poppler-
|
224
|
-
<ANCHOR id="
|
225
|
-
<ANCHOR id="poppler-page-
|
226
|
-
<ANCHOR id="
|
227
|
-
<ANCHOR id="poppler-page-
|
228
|
-
<ANCHOR id="
|
229
|
-
<ANCHOR id="poppler-
|
230
|
-
<ANCHOR id="
|
231
|
-
<ANCHOR id="poppler-
|
232
|
-
<ANCHOR id="
|
233
|
-
<ANCHOR id="poppler-
|
234
|
-
<ANCHOR id="
|
235
|
-
<ANCHOR id="poppler-
|
236
|
-
<ANCHOR id="
|
237
|
-
<ANCHOR id="poppler-page-
|
238
|
-
<ANCHOR id="
|
239
|
-
<ANCHOR id="poppler-page-
|
240
|
-
<ANCHOR id="
|
241
|
-
<ANCHOR id="poppler-page-
|
242
|
-
<ANCHOR id="
|
243
|
-
<ANCHOR id="poppler-
|
244
|
-
<ANCHOR id="
|
245
|
-
<ANCHOR id="poppler-
|
246
|
-
<ANCHOR id="
|
247
|
-
<ANCHOR id="poppler-
|
248
|
-
<ANCHOR id="poppler-
|
249
|
-
<ANCHOR id="poppler-
|
250
|
-
<ANCHOR id="poppler-
|
251
|
-
<ANCHOR id="poppler-
|
252
|
-
<ANCHOR id="
|
253
|
-
<ANCHOR id="poppler-
|
254
|
-
<ANCHOR id="poppler-
|
255
|
-
<ANCHOR id="poppler-
|
256
|
-
<ANCHOR id="poppler-
|
257
|
-
<ANCHOR id="poppler-
|
258
|
-
<ANCHOR id="poppler-annot-
|
259
|
-
<ANCHOR id="poppler-annot-
|
260
|
-
<ANCHOR id="poppler-annot-free
|
261
|
-
<ANCHOR id="poppler-
|
262
|
-
<ANCHOR id="poppler-
|
263
|
-
<ANCHOR id="poppler-
|
264
|
-
<ANCHOR id="
|
265
|
-
<ANCHOR id="
|
266
|
-
<ANCHOR id="poppler-
|
267
|
-
<ANCHOR id="poppler-
|
268
|
-
<ANCHOR id="poppler-
|
269
|
-
<ANCHOR id="poppler-
|
270
|
-
<ANCHOR id="
|
271
|
-
<ANCHOR id="
|
272
|
-
<ANCHOR id="
|
273
|
-
<ANCHOR id="
|
274
|
-
<ANCHOR id="
|
275
|
-
<ANCHOR id="
|
276
|
-
<ANCHOR id="
|
277
|
-
<ANCHOR id="
|
278
|
-
<ANCHOR id="
|
279
|
-
<ANCHOR id="
|
280
|
-
<ANCHOR id="
|
281
|
-
<ANCHOR id="
|
282
|
-
<ANCHOR id="
|
283
|
-
<ANCHOR id="
|
284
|
-
<ANCHOR id="
|
285
|
-
<ANCHOR id="
|
286
|
-
<ANCHOR id="
|
287
|
-
<ANCHOR id="
|
288
|
-
<ANCHOR id="
|
289
|
-
<ANCHOR id="
|
290
|
-
<ANCHOR id="
|
291
|
-
<ANCHOR id="
|
292
|
-
<ANCHOR id="
|
293
|
-
<ANCHOR id="
|
294
|
-
<ANCHOR id="
|
295
|
-
<ANCHOR id="
|
296
|
-
<ANCHOR id="
|
297
|
-
<ANCHOR id="
|
298
|
-
<ANCHOR id="
|
299
|
-
<ANCHOR id="
|
300
|
-
<ANCHOR id="
|
301
|
-
<ANCHOR id="
|
302
|
-
<ANCHOR id="
|
303
|
-
<ANCHOR id="
|
304
|
-
<ANCHOR id="POPPLER-
|
305
|
-
<ANCHOR id="
|
306
|
-
<ANCHOR id="POPPLER-
|
307
|
-
<ANCHOR id="POPPLER-
|
308
|
-
<ANCHOR id="POPPLER-
|
309
|
-
<ANCHOR id="POPPLER-
|
34
|
+
<ANCHOR id="poppler-date-parse" href="poppler/poppler-poppler.html#poppler-date-parse">
|
35
|
+
<ANCHOR id="poppler-color-new" href="poppler/poppler-poppler.html#poppler-color-new">
|
36
|
+
<ANCHOR id="poppler-color-copy" href="poppler/poppler-poppler.html#poppler-color-copy">
|
37
|
+
<ANCHOR id="poppler-color-free" href="poppler/poppler-poppler.html#poppler-color-free">
|
38
|
+
<ANCHOR id="PopplerDocument" href="poppler/PopplerDocument.html">
|
39
|
+
<ANCHOR id="PopplerDocument.synopsis" href="poppler/PopplerDocument.html#PopplerDocument.synopsis">
|
40
|
+
<ANCHOR id="PopplerDocument.object-hierarchy" href="poppler/PopplerDocument.html#PopplerDocument.object-hierarchy">
|
41
|
+
<ANCHOR id="PopplerDocument.properties" href="poppler/PopplerDocument.html#PopplerDocument.properties">
|
42
|
+
<ANCHOR id="PopplerDocument.description" href="poppler/PopplerDocument.html#PopplerDocument.description">
|
43
|
+
<ANCHOR id="PopplerDocument.details" href="poppler/PopplerDocument.html#PopplerDocument.details">
|
44
|
+
<ANCHOR id="PopplerDocument-struct" href="poppler/PopplerDocument.html#PopplerDocument-struct">
|
45
|
+
<ANCHOR id="PopplerIndexIter" href="poppler/PopplerDocument.html#PopplerIndexIter">
|
46
|
+
<ANCHOR id="PopplerFontsIter" href="poppler/PopplerDocument.html#PopplerFontsIter">
|
47
|
+
<ANCHOR id="PopplerLayersIter" href="poppler/PopplerDocument.html#PopplerLayersIter">
|
48
|
+
<ANCHOR id="PopplerPageLayout" href="poppler/PopplerDocument.html#PopplerPageLayout">
|
49
|
+
<ANCHOR id="POPPLER-PAGE-LAYOUT-UNSET:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-LAYOUT-UNSET:CAPS">
|
50
|
+
<ANCHOR id="POPPLER-PAGE-LAYOUT-SINGLE-PAGE:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-LAYOUT-SINGLE-PAGE:CAPS">
|
51
|
+
<ANCHOR id="POPPLER-PAGE-LAYOUT-ONE-COLUMN:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-LAYOUT-ONE-COLUMN:CAPS">
|
52
|
+
<ANCHOR id="POPPLER-PAGE-LAYOUT-TWO-COLUMN-LEFT:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-LAYOUT-TWO-COLUMN-LEFT:CAPS">
|
53
|
+
<ANCHOR id="POPPLER-PAGE-LAYOUT-TWO-COLUMN-RIGHT:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-LAYOUT-TWO-COLUMN-RIGHT:CAPS">
|
54
|
+
<ANCHOR id="POPPLER-PAGE-LAYOUT-TWO-PAGE-LEFT:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-LAYOUT-TWO-PAGE-LEFT:CAPS">
|
55
|
+
<ANCHOR id="POPPLER-PAGE-LAYOUT-TWO-PAGE-RIGHT:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-LAYOUT-TWO-PAGE-RIGHT:CAPS">
|
56
|
+
<ANCHOR id="PopplerPageMode" href="poppler/PopplerDocument.html#PopplerPageMode">
|
57
|
+
<ANCHOR id="POPPLER-PAGE-MODE-UNSET:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-MODE-UNSET:CAPS">
|
58
|
+
<ANCHOR id="POPPLER-PAGE-MODE-NONE:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-MODE-NONE:CAPS">
|
59
|
+
<ANCHOR id="POPPLER-PAGE-MODE-USE-OUTLINES:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-MODE-USE-OUTLINES:CAPS">
|
60
|
+
<ANCHOR id="POPPLER-PAGE-MODE-USE-THUMBS:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-MODE-USE-THUMBS:CAPS">
|
61
|
+
<ANCHOR id="POPPLER-PAGE-MODE-FULL-SCREEN:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-MODE-FULL-SCREEN:CAPS">
|
62
|
+
<ANCHOR id="POPPLER-PAGE-MODE-USE-OC:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-MODE-USE-OC:CAPS">
|
63
|
+
<ANCHOR id="POPPLER-PAGE-MODE-USE-ATTACHMENTS:CAPS" href="poppler/PopplerDocument.html#POPPLER-PAGE-MODE-USE-ATTACHMENTS:CAPS">
|
64
|
+
<ANCHOR id="PopplerFontInfo" href="poppler/PopplerDocument.html#PopplerFontInfo">
|
65
|
+
<ANCHOR id="PopplerFontType" href="poppler/PopplerDocument.html#PopplerFontType">
|
66
|
+
<ANCHOR id="POPPLER-FONT-TYPE-UNKNOWN:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-UNKNOWN:CAPS">
|
67
|
+
<ANCHOR id="POPPLER-FONT-TYPE-TYPE1:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-TYPE1:CAPS">
|
68
|
+
<ANCHOR id="POPPLER-FONT-TYPE-TYPE1C:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-TYPE1C:CAPS">
|
69
|
+
<ANCHOR id="POPPLER-FONT-TYPE-TYPE1COT:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-TYPE1COT:CAPS">
|
70
|
+
<ANCHOR id="POPPLER-FONT-TYPE-TYPE3:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-TYPE3:CAPS">
|
71
|
+
<ANCHOR id="POPPLER-FONT-TYPE-TRUETYPE:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-TRUETYPE:CAPS">
|
72
|
+
<ANCHOR id="POPPLER-FONT-TYPE-TRUETYPEOT:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-TRUETYPEOT:CAPS">
|
73
|
+
<ANCHOR id="POPPLER-FONT-TYPE-CID-TYPE0:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-CID-TYPE0:CAPS">
|
74
|
+
<ANCHOR id="POPPLER-FONT-TYPE-CID-TYPE0C:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-CID-TYPE0C:CAPS">
|
75
|
+
<ANCHOR id="POPPLER-FONT-TYPE-CID-TYPE0COT:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-CID-TYPE0COT:CAPS">
|
76
|
+
<ANCHOR id="POPPLER-FONT-TYPE-CID-TYPE2:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-CID-TYPE2:CAPS">
|
77
|
+
<ANCHOR id="POPPLER-FONT-TYPE-CID-TYPE2OT:CAPS" href="poppler/PopplerDocument.html#POPPLER-FONT-TYPE-CID-TYPE2OT:CAPS">
|
78
|
+
<ANCHOR id="PopplerPSFile" href="poppler/PopplerDocument.html#PopplerPSFile">
|
79
|
+
<ANCHOR id="PopplerViewerPreferences" href="poppler/PopplerDocument.html#PopplerViewerPreferences">
|
80
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-UNSET:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-UNSET:CAPS">
|
81
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-HIDE-TOOLBAR:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-HIDE-TOOLBAR:CAPS">
|
82
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-HIDE-MENUBAR:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-HIDE-MENUBAR:CAPS">
|
83
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-HIDE-WINDOWUI:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-HIDE-WINDOWUI:CAPS">
|
84
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-FIT-WINDOW:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-FIT-WINDOW:CAPS">
|
85
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-CENTER-WINDOW:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-CENTER-WINDOW:CAPS">
|
86
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-DISPLAY-DOC-TITLE:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-DISPLAY-DOC-TITLE:CAPS">
|
87
|
+
<ANCHOR id="POPPLER-VIEWER-PREFERENCES-DIRECTION-RTL:CAPS" href="poppler/PopplerDocument.html#POPPLER-VIEWER-PREFERENCES-DIRECTION-RTL:CAPS">
|
88
|
+
<ANCHOR id="PopplerPermissions" href="poppler/PopplerDocument.html#PopplerPermissions">
|
89
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-PRINT:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-PRINT:CAPS">
|
90
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-MODIFY:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-MODIFY:CAPS">
|
91
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-COPY:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-COPY:CAPS">
|
92
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-ADD-NOTES:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-ADD-NOTES:CAPS">
|
93
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-FILL-FORM:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-FILL-FORM:CAPS">
|
94
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-EXTRACT-CONTENTS:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-EXTRACT-CONTENTS:CAPS">
|
95
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-ASSEMBLE:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-ASSEMBLE:CAPS">
|
96
|
+
<ANCHOR id="POPPLER-PERMISSIONS-OK-TO-PRINT-HIGH-RESOLUTION:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-OK-TO-PRINT-HIGH-RESOLUTION:CAPS">
|
97
|
+
<ANCHOR id="POPPLER-PERMISSIONS-FULL:CAPS" href="poppler/PopplerDocument.html#POPPLER-PERMISSIONS-FULL:CAPS">
|
98
|
+
<ANCHOR id="poppler-document-new-from-file" href="poppler/PopplerDocument.html#poppler-document-new-from-file">
|
99
|
+
<ANCHOR id="poppler-document-new-from-data" href="poppler/PopplerDocument.html#poppler-document-new-from-data">
|
100
|
+
<ANCHOR id="poppler-document-new-from-stream" href="poppler/PopplerDocument.html#poppler-document-new-from-stream">
|
101
|
+
<ANCHOR id="poppler-document-new-from-gfile" href="poppler/PopplerDocument.html#poppler-document-new-from-gfile">
|
102
|
+
<ANCHOR id="poppler-document-save" href="poppler/PopplerDocument.html#poppler-document-save">
|
103
|
+
<ANCHOR id="poppler-document-save-a-copy" href="poppler/PopplerDocument.html#poppler-document-save-a-copy">
|
104
|
+
<ANCHOR id="poppler-document-get-id" href="poppler/PopplerDocument.html#poppler-document-get-id">
|
105
|
+
<ANCHOR id="poppler-document-get-pdf-version-string" href="poppler/PopplerDocument.html#poppler-document-get-pdf-version-string">
|
106
|
+
<ANCHOR id="poppler-document-get-pdf-version" href="poppler/PopplerDocument.html#poppler-document-get-pdf-version">
|
107
|
+
<ANCHOR id="poppler-document-get-title" href="poppler/PopplerDocument.html#poppler-document-get-title">
|
108
|
+
<ANCHOR id="poppler-document-get-author" href="poppler/PopplerDocument.html#poppler-document-get-author">
|
109
|
+
<ANCHOR id="poppler-document-get-subject" href="poppler/PopplerDocument.html#poppler-document-get-subject">
|
110
|
+
<ANCHOR id="poppler-document-get-keywords" href="poppler/PopplerDocument.html#poppler-document-get-keywords">
|
111
|
+
<ANCHOR id="poppler-document-get-creator" href="poppler/PopplerDocument.html#poppler-document-get-creator">
|
112
|
+
<ANCHOR id="poppler-document-get-producer" href="poppler/PopplerDocument.html#poppler-document-get-producer">
|
113
|
+
<ANCHOR id="poppler-document-get-creation-date" href="poppler/PopplerDocument.html#poppler-document-get-creation-date">
|
114
|
+
<ANCHOR id="poppler-document-get-modification-date" href="poppler/PopplerDocument.html#poppler-document-get-modification-date">
|
115
|
+
<ANCHOR id="poppler-document-get-page-layout" href="poppler/PopplerDocument.html#poppler-document-get-page-layout">
|
116
|
+
<ANCHOR id="poppler-document-get-page-mode" href="poppler/PopplerDocument.html#poppler-document-get-page-mode">
|
117
|
+
<ANCHOR id="poppler-document-get-permissions" href="poppler/PopplerDocument.html#poppler-document-get-permissions">
|
118
|
+
<ANCHOR id="poppler-document-get-metadata" href="poppler/PopplerDocument.html#poppler-document-get-metadata">
|
119
|
+
<ANCHOR id="poppler-document-is-linearized" href="poppler/PopplerDocument.html#poppler-document-is-linearized">
|
120
|
+
<ANCHOR id="poppler-document-get-n-pages" href="poppler/PopplerDocument.html#poppler-document-get-n-pages">
|
121
|
+
<ANCHOR id="poppler-document-get-page" href="poppler/PopplerDocument.html#poppler-document-get-page">
|
122
|
+
<ANCHOR id="poppler-document-get-page-by-label" href="poppler/PopplerDocument.html#poppler-document-get-page-by-label">
|
123
|
+
<ANCHOR id="poppler-document-find-dest" href="poppler/PopplerDocument.html#poppler-document-find-dest">
|
124
|
+
<ANCHOR id="poppler-document-get-n-attachments" href="poppler/PopplerDocument.html#poppler-document-get-n-attachments">
|
125
|
+
<ANCHOR id="poppler-document-has-attachments" href="poppler/PopplerDocument.html#poppler-document-has-attachments">
|
126
|
+
<ANCHOR id="poppler-document-get-attachments" href="poppler/PopplerDocument.html#poppler-document-get-attachments">
|
127
|
+
<ANCHOR id="poppler-document-get-form-field" href="poppler/PopplerDocument.html#poppler-document-get-form-field">
|
128
|
+
<ANCHOR id="poppler-index-iter-new" href="poppler/PopplerDocument.html#poppler-index-iter-new">
|
129
|
+
<ANCHOR id="poppler-index-iter-copy" href="poppler/PopplerDocument.html#poppler-index-iter-copy">
|
130
|
+
<ANCHOR id="poppler-index-iter-free" href="poppler/PopplerDocument.html#poppler-index-iter-free">
|
131
|
+
<ANCHOR id="poppler-index-iter-get-child" href="poppler/PopplerDocument.html#poppler-index-iter-get-child">
|
132
|
+
<ANCHOR id="poppler-index-iter-is-open" href="poppler/PopplerDocument.html#poppler-index-iter-is-open">
|
133
|
+
<ANCHOR id="poppler-index-iter-get-action" href="poppler/PopplerDocument.html#poppler-index-iter-get-action">
|
134
|
+
<ANCHOR id="poppler-index-iter-next" href="poppler/PopplerDocument.html#poppler-index-iter-next">
|
135
|
+
<ANCHOR id="poppler-font-info-new" href="poppler/PopplerDocument.html#poppler-font-info-new">
|
136
|
+
<ANCHOR id="poppler-font-info-scan" href="poppler/PopplerDocument.html#poppler-font-info-scan">
|
137
|
+
<ANCHOR id="poppler-font-info-free" href="poppler/PopplerDocument.html#poppler-font-info-free">
|
138
|
+
<ANCHOR id="poppler-fonts-iter-copy" href="poppler/PopplerDocument.html#poppler-fonts-iter-copy">
|
139
|
+
<ANCHOR id="poppler-fonts-iter-free" href="poppler/PopplerDocument.html#poppler-fonts-iter-free">
|
140
|
+
<ANCHOR id="poppler-fonts-iter-get-name" href="poppler/PopplerDocument.html#poppler-fonts-iter-get-name">
|
141
|
+
<ANCHOR id="poppler-fonts-iter-get-full-name" href="poppler/PopplerDocument.html#poppler-fonts-iter-get-full-name">
|
142
|
+
<ANCHOR id="poppler-fonts-iter-get-font-type" href="poppler/PopplerDocument.html#poppler-fonts-iter-get-font-type">
|
143
|
+
<ANCHOR id="poppler-fonts-iter-get-substitute-name" href="poppler/PopplerDocument.html#poppler-fonts-iter-get-substitute-name">
|
144
|
+
<ANCHOR id="poppler-fonts-iter-get-file-name" href="poppler/PopplerDocument.html#poppler-fonts-iter-get-file-name">
|
145
|
+
<ANCHOR id="poppler-fonts-iter-get-encoding" href="poppler/PopplerDocument.html#poppler-fonts-iter-get-encoding">
|
146
|
+
<ANCHOR id="poppler-fonts-iter-is-embedded" href="poppler/PopplerDocument.html#poppler-fonts-iter-is-embedded">
|
147
|
+
<ANCHOR id="poppler-fonts-iter-is-subset" href="poppler/PopplerDocument.html#poppler-fonts-iter-is-subset">
|
148
|
+
<ANCHOR id="poppler-fonts-iter-next" href="poppler/PopplerDocument.html#poppler-fonts-iter-next">
|
149
|
+
<ANCHOR id="poppler-layers-iter-new" href="poppler/PopplerDocument.html#poppler-layers-iter-new">
|
150
|
+
<ANCHOR id="poppler-layers-iter-copy" href="poppler/PopplerDocument.html#poppler-layers-iter-copy">
|
151
|
+
<ANCHOR id="poppler-layers-iter-free" href="poppler/PopplerDocument.html#poppler-layers-iter-free">
|
152
|
+
<ANCHOR id="poppler-layers-iter-get-child" href="poppler/PopplerDocument.html#poppler-layers-iter-get-child">
|
153
|
+
<ANCHOR id="poppler-layers-iter-get-layer" href="poppler/PopplerDocument.html#poppler-layers-iter-get-layer">
|
154
|
+
<ANCHOR id="poppler-layers-iter-get-title" href="poppler/PopplerDocument.html#poppler-layers-iter-get-title">
|
155
|
+
<ANCHOR id="poppler-layers-iter-next" href="poppler/PopplerDocument.html#poppler-layers-iter-next">
|
156
|
+
<ANCHOR id="poppler-ps-file-new" href="poppler/PopplerDocument.html#poppler-ps-file-new">
|
157
|
+
<ANCHOR id="poppler-ps-file-free" href="poppler/PopplerDocument.html#poppler-ps-file-free">
|
158
|
+
<ANCHOR id="poppler-ps-file-set-paper-size" href="poppler/PopplerDocument.html#poppler-ps-file-set-paper-size">
|
159
|
+
<ANCHOR id="poppler-ps-file-set-duplex" href="poppler/PopplerDocument.html#poppler-ps-file-set-duplex">
|
160
|
+
<ANCHOR id="PopplerDocument.property-details" href="poppler/PopplerDocument.html#PopplerDocument.property-details">
|
161
|
+
<ANCHOR id="PopplerDocument--author" href="poppler/PopplerDocument.html#PopplerDocument--author">
|
162
|
+
<ANCHOR id="PopplerDocument--creation-date" href="poppler/PopplerDocument.html#PopplerDocument--creation-date">
|
163
|
+
<ANCHOR id="PopplerDocument--creator" href="poppler/PopplerDocument.html#PopplerDocument--creator">
|
164
|
+
<ANCHOR id="PopplerDocument--format" href="poppler/PopplerDocument.html#PopplerDocument--format">
|
165
|
+
<ANCHOR id="PopplerDocument--format-major" href="poppler/PopplerDocument.html#PopplerDocument--format-major">
|
166
|
+
<ANCHOR id="PopplerDocument--format-minor" href="poppler/PopplerDocument.html#PopplerDocument--format-minor">
|
167
|
+
<ANCHOR id="PopplerDocument--keywords" href="poppler/PopplerDocument.html#PopplerDocument--keywords">
|
168
|
+
<ANCHOR id="PopplerDocument--linearized" href="poppler/PopplerDocument.html#PopplerDocument--linearized">
|
169
|
+
<ANCHOR id="PopplerDocument--metadata" href="poppler/PopplerDocument.html#PopplerDocument--metadata">
|
170
|
+
<ANCHOR id="PopplerDocument--mod-date" href="poppler/PopplerDocument.html#PopplerDocument--mod-date">
|
171
|
+
<ANCHOR id="PopplerDocument--page-layout" href="poppler/PopplerDocument.html#PopplerDocument--page-layout">
|
172
|
+
<ANCHOR id="PopplerDocument--page-mode" href="poppler/PopplerDocument.html#PopplerDocument--page-mode">
|
173
|
+
<ANCHOR id="PopplerDocument--permissions" href="poppler/PopplerDocument.html#PopplerDocument--permissions">
|
174
|
+
<ANCHOR id="PopplerDocument--producer" href="poppler/PopplerDocument.html#PopplerDocument--producer">
|
175
|
+
<ANCHOR id="PopplerDocument--subject" href="poppler/PopplerDocument.html#PopplerDocument--subject">
|
176
|
+
<ANCHOR id="PopplerDocument--title" href="poppler/PopplerDocument.html#PopplerDocument--title">
|
177
|
+
<ANCHOR id="PopplerDocument--viewer-preferences" href="poppler/PopplerDocument.html#PopplerDocument--viewer-preferences">
|
178
|
+
<ANCHOR id="PopplerPage" href="poppler/PopplerPage.html">
|
179
|
+
<ANCHOR id="PopplerPage.synopsis" href="poppler/PopplerPage.html#PopplerPage.synopsis">
|
180
|
+
<ANCHOR id="PopplerPage.object-hierarchy" href="poppler/PopplerPage.html#PopplerPage.object-hierarchy">
|
181
|
+
<ANCHOR id="PopplerPage.properties" href="poppler/PopplerPage.html#PopplerPage.properties">
|
182
|
+
<ANCHOR id="PopplerPage.description" href="poppler/PopplerPage.html#PopplerPage.description">
|
183
|
+
<ANCHOR id="PopplerPage.details" href="poppler/PopplerPage.html#PopplerPage.details">
|
184
|
+
<ANCHOR id="PopplerPage-struct" href="poppler/PopplerPage.html#PopplerPage-struct">
|
185
|
+
<ANCHOR id="PopplerRectangle" href="poppler/PopplerPage.html#PopplerRectangle">
|
186
|
+
<ANCHOR id="PopplerPageTransition" href="poppler/PopplerPage.html#PopplerPageTransition">
|
187
|
+
<ANCHOR id="PopplerLinkMapping" href="poppler/PopplerPage.html#PopplerLinkMapping">
|
188
|
+
<ANCHOR id="PopplerImageMapping" href="poppler/PopplerPage.html#PopplerImageMapping">
|
189
|
+
<ANCHOR id="PopplerFormFieldMapping" href="poppler/PopplerPage.html#PopplerFormFieldMapping">
|
190
|
+
<ANCHOR id="PopplerAnnotMapping" href="poppler/PopplerPage.html#PopplerAnnotMapping">
|
191
|
+
<ANCHOR id="PopplerPageTransitionType" href="poppler/PopplerPage.html#PopplerPageTransitionType">
|
192
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-REPLACE:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-REPLACE:CAPS">
|
193
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-SPLIT:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-SPLIT:CAPS">
|
194
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-BLINDS:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-BLINDS:CAPS">
|
195
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-BOX:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-BOX:CAPS">
|
196
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-WIPE:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-WIPE:CAPS">
|
197
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-DISSOLVE:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-DISSOLVE:CAPS">
|
198
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-GLITTER:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-GLITTER:CAPS">
|
199
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-FLY:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-FLY:CAPS">
|
200
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-PUSH:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-PUSH:CAPS">
|
201
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-COVER:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-COVER:CAPS">
|
202
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-UNCOVER:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-UNCOVER:CAPS">
|
203
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-FADE:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-FADE:CAPS">
|
204
|
+
<ANCHOR id="PopplerPageTransitionAlignment" href="poppler/PopplerPage.html#PopplerPageTransitionAlignment">
|
205
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-HORIZONTAL:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-HORIZONTAL:CAPS">
|
206
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-VERTICAL:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-VERTICAL:CAPS">
|
207
|
+
<ANCHOR id="PopplerPageTransitionDirection" href="poppler/PopplerPage.html#PopplerPageTransitionDirection">
|
208
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-INWARD:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-INWARD:CAPS">
|
209
|
+
<ANCHOR id="POPPLER-PAGE-TRANSITION-OUTWARD:CAPS" href="poppler/PopplerPage.html#POPPLER-PAGE-TRANSITION-OUTWARD:CAPS">
|
210
|
+
<ANCHOR id="PopplerSelectionStyle" href="poppler/PopplerPage.html#PopplerSelectionStyle">
|
211
|
+
<ANCHOR id="POPPLER-SELECTION-GLYPH:CAPS" href="poppler/PopplerPage.html#POPPLER-SELECTION-GLYPH:CAPS">
|
212
|
+
<ANCHOR id="POPPLER-SELECTION-WORD:CAPS" href="poppler/PopplerPage.html#POPPLER-SELECTION-WORD:CAPS">
|
213
|
+
<ANCHOR id="POPPLER-SELECTION-LINE:CAPS" href="poppler/PopplerPage.html#POPPLER-SELECTION-LINE:CAPS">
|
214
|
+
<ANCHOR id="PopplerTextAttributes" href="poppler/PopplerPage.html#PopplerTextAttributes">
|
215
|
+
<ANCHOR id="poppler-page-get-index" href="poppler/PopplerPage.html#poppler-page-get-index">
|
216
|
+
<ANCHOR id="poppler-page-get-label" href="poppler/PopplerPage.html#poppler-page-get-label">
|
217
|
+
<ANCHOR id="poppler-page-get-size" href="poppler/PopplerPage.html#poppler-page-get-size">
|
218
|
+
<ANCHOR id="poppler-page-get-crop-box" href="poppler/PopplerPage.html#poppler-page-get-crop-box">
|
219
|
+
<ANCHOR id="poppler-page-get-duration" href="poppler/PopplerPage.html#poppler-page-get-duration">
|
220
|
+
<ANCHOR id="poppler-page-get-transition" href="poppler/PopplerPage.html#poppler-page-get-transition">
|
221
|
+
<ANCHOR id="poppler-page-get-thumbnail-size" href="poppler/PopplerPage.html#poppler-page-get-thumbnail-size">
|
222
|
+
<ANCHOR id="poppler-page-get-thumbnail" href="poppler/PopplerPage.html#poppler-page-get-thumbnail">
|
223
|
+
<ANCHOR id="poppler-page-render" href="poppler/PopplerPage.html#poppler-page-render">
|
224
|
+
<ANCHOR id="poppler-page-render-for-printing" href="poppler/PopplerPage.html#poppler-page-render-for-printing">
|
225
|
+
<ANCHOR id="poppler-page-render-for-printing-with-options" href="poppler/PopplerPage.html#poppler-page-render-for-printing-with-options">
|
226
|
+
<ANCHOR id="poppler-page-render-to-ps" href="poppler/PopplerPage.html#poppler-page-render-to-ps">
|
227
|
+
<ANCHOR id="poppler-page-render-selection" href="poppler/PopplerPage.html#poppler-page-render-selection">
|
228
|
+
<ANCHOR id="poppler-page-get-selected-region" href="poppler/PopplerPage.html#poppler-page-get-selected-region">
|
229
|
+
<ANCHOR id="poppler-page-get-selection-region" href="poppler/PopplerPage.html#poppler-page-get-selection-region">
|
230
|
+
<ANCHOR id="poppler-page-selection-region-free" href="poppler/PopplerPage.html#poppler-page-selection-region-free">
|
231
|
+
<ANCHOR id="poppler-page-get-selected-text" href="poppler/PopplerPage.html#poppler-page-get-selected-text">
|
232
|
+
<ANCHOR id="poppler-page-find-text" href="poppler/PopplerPage.html#poppler-page-find-text">
|
233
|
+
<ANCHOR id="poppler-page-find-text-with-options" href="poppler/PopplerPage.html#poppler-page-find-text-with-options">
|
234
|
+
<ANCHOR id="poppler-page-get-text" href="poppler/PopplerPage.html#poppler-page-get-text">
|
235
|
+
<ANCHOR id="poppler-page-get-text-layout" href="poppler/PopplerPage.html#poppler-page-get-text-layout">
|
236
|
+
<ANCHOR id="poppler-page-get-text-attributes" href="poppler/PopplerPage.html#poppler-page-get-text-attributes">
|
237
|
+
<ANCHOR id="poppler-page-free-text-attributes" href="poppler/PopplerPage.html#poppler-page-free-text-attributes">
|
238
|
+
<ANCHOR id="poppler-page-get-link-mapping" href="poppler/PopplerPage.html#poppler-page-get-link-mapping">
|
239
|
+
<ANCHOR id="poppler-page-free-link-mapping" href="poppler/PopplerPage.html#poppler-page-free-link-mapping">
|
240
|
+
<ANCHOR id="poppler-page-get-image-mapping" href="poppler/PopplerPage.html#poppler-page-get-image-mapping">
|
241
|
+
<ANCHOR id="poppler-page-get-image" href="poppler/PopplerPage.html#poppler-page-get-image">
|
242
|
+
<ANCHOR id="poppler-page-free-image-mapping" href="poppler/PopplerPage.html#poppler-page-free-image-mapping">
|
243
|
+
<ANCHOR id="poppler-page-get-form-field-mapping" href="poppler/PopplerPage.html#poppler-page-get-form-field-mapping">
|
244
|
+
<ANCHOR id="poppler-page-free-form-field-mapping" href="poppler/PopplerPage.html#poppler-page-free-form-field-mapping">
|
245
|
+
<ANCHOR id="poppler-page-get-annot-mapping" href="poppler/PopplerPage.html#poppler-page-get-annot-mapping">
|
246
|
+
<ANCHOR id="poppler-page-free-annot-mapping" href="poppler/PopplerPage.html#poppler-page-free-annot-mapping">
|
247
|
+
<ANCHOR id="poppler-page-add-annot" href="poppler/PopplerPage.html#poppler-page-add-annot">
|
248
|
+
<ANCHOR id="poppler-page-remove-annot" href="poppler/PopplerPage.html#poppler-page-remove-annot">
|
249
|
+
<ANCHOR id="poppler-rectangle-new" href="poppler/PopplerPage.html#poppler-rectangle-new">
|
250
|
+
<ANCHOR id="poppler-rectangle-copy" href="poppler/PopplerPage.html#poppler-rectangle-copy">
|
251
|
+
<ANCHOR id="poppler-rectangle-free" href="poppler/PopplerPage.html#poppler-rectangle-free">
|
252
|
+
<ANCHOR id="poppler-page-transition-new" href="poppler/PopplerPage.html#poppler-page-transition-new">
|
253
|
+
<ANCHOR id="poppler-page-transition-copy" href="poppler/PopplerPage.html#poppler-page-transition-copy">
|
254
|
+
<ANCHOR id="poppler-page-transition-free" href="poppler/PopplerPage.html#poppler-page-transition-free">
|
255
|
+
<ANCHOR id="poppler-link-mapping-new" href="poppler/PopplerPage.html#poppler-link-mapping-new">
|
256
|
+
<ANCHOR id="poppler-link-mapping-copy" href="poppler/PopplerPage.html#poppler-link-mapping-copy">
|
257
|
+
<ANCHOR id="poppler-link-mapping-free" href="poppler/PopplerPage.html#poppler-link-mapping-free">
|
258
|
+
<ANCHOR id="poppler-image-mapping-new" href="poppler/PopplerPage.html#poppler-image-mapping-new">
|
259
|
+
<ANCHOR id="poppler-image-mapping-copy" href="poppler/PopplerPage.html#poppler-image-mapping-copy">
|
260
|
+
<ANCHOR id="poppler-image-mapping-free" href="poppler/PopplerPage.html#poppler-image-mapping-free">
|
261
|
+
<ANCHOR id="poppler-form-field-mapping-new" href="poppler/PopplerPage.html#poppler-form-field-mapping-new">
|
262
|
+
<ANCHOR id="poppler-form-field-mapping-copy" href="poppler/PopplerPage.html#poppler-form-field-mapping-copy">
|
263
|
+
<ANCHOR id="poppler-form-field-mapping-free" href="poppler/PopplerPage.html#poppler-form-field-mapping-free">
|
264
|
+
<ANCHOR id="poppler-annot-mapping-new" href="poppler/PopplerPage.html#poppler-annot-mapping-new">
|
265
|
+
<ANCHOR id="poppler-annot-mapping-copy" href="poppler/PopplerPage.html#poppler-annot-mapping-copy">
|
266
|
+
<ANCHOR id="poppler-annot-mapping-free" href="poppler/PopplerPage.html#poppler-annot-mapping-free">
|
267
|
+
<ANCHOR id="poppler-text-attributes-new" href="poppler/PopplerPage.html#poppler-text-attributes-new">
|
268
|
+
<ANCHOR id="poppler-text-attributes-copy" href="poppler/PopplerPage.html#poppler-text-attributes-copy">
|
269
|
+
<ANCHOR id="poppler-text-attributes-free" href="poppler/PopplerPage.html#poppler-text-attributes-free">
|
270
|
+
<ANCHOR id="PopplerPage.property-details" href="poppler/PopplerPage.html#PopplerPage.property-details">
|
271
|
+
<ANCHOR id="PopplerPage--label" href="poppler/PopplerPage.html#PopplerPage--label">
|
272
|
+
<ANCHOR id="poppler-PopplerAction" href="poppler/poppler-PopplerAction.html">
|
273
|
+
<ANCHOR id="poppler-PopplerAction.synopsis" href="poppler/poppler-PopplerAction.html#poppler-PopplerAction.synopsis">
|
274
|
+
<ANCHOR id="poppler-PopplerAction.description" href="poppler/poppler-PopplerAction.html#poppler-PopplerAction.description">
|
275
|
+
<ANCHOR id="poppler-PopplerAction.details" href="poppler/poppler-PopplerAction.html#poppler-PopplerAction.details">
|
276
|
+
<ANCHOR id="PopplerAction" href="poppler/poppler-PopplerAction.html#PopplerAction">
|
277
|
+
<ANCHOR id="PopplerDest" href="poppler/poppler-PopplerAction.html#PopplerDest">
|
278
|
+
<ANCHOR id="PopplerActionAny" href="poppler/poppler-PopplerAction.html#PopplerActionAny">
|
279
|
+
<ANCHOR id="PopplerActionGotoDest" href="poppler/poppler-PopplerAction.html#PopplerActionGotoDest">
|
280
|
+
<ANCHOR id="PopplerActionGotoRemote" href="poppler/poppler-PopplerAction.html#PopplerActionGotoRemote">
|
281
|
+
<ANCHOR id="PopplerActionLaunch" href="poppler/poppler-PopplerAction.html#PopplerActionLaunch">
|
282
|
+
<ANCHOR id="PopplerActionUri" href="poppler/poppler-PopplerAction.html#PopplerActionUri">
|
283
|
+
<ANCHOR id="PopplerActionNamed" href="poppler/poppler-PopplerAction.html#PopplerActionNamed">
|
284
|
+
<ANCHOR id="PopplerActionMovie" href="poppler/poppler-PopplerAction.html#PopplerActionMovie">
|
285
|
+
<ANCHOR id="PopplerActionRendition" href="poppler/poppler-PopplerAction.html#PopplerActionRendition">
|
286
|
+
<ANCHOR id="PopplerActionOCGState" href="poppler/poppler-PopplerAction.html#PopplerActionOCGState">
|
287
|
+
<ANCHOR id="PopplerActionJavascript" href="poppler/poppler-PopplerAction.html#PopplerActionJavascript">
|
288
|
+
<ANCHOR id="PopplerActionType" href="poppler/poppler-PopplerAction.html#PopplerActionType">
|
289
|
+
<ANCHOR id="POPPLER-ACTION-UNKNOWN:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-UNKNOWN:CAPS">
|
290
|
+
<ANCHOR id="POPPLER-ACTION-NONE:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-NONE:CAPS">
|
291
|
+
<ANCHOR id="POPPLER-ACTION-GOTO-DEST:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-GOTO-DEST:CAPS">
|
292
|
+
<ANCHOR id="POPPLER-ACTION-GOTO-REMOTE:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-GOTO-REMOTE:CAPS">
|
293
|
+
<ANCHOR id="POPPLER-ACTION-LAUNCH:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-LAUNCH:CAPS">
|
294
|
+
<ANCHOR id="POPPLER-ACTION-URI:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-URI:CAPS">
|
295
|
+
<ANCHOR id="POPPLER-ACTION-NAMED:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-NAMED:CAPS">
|
296
|
+
<ANCHOR id="POPPLER-ACTION-MOVIE:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-MOVIE:CAPS">
|
297
|
+
<ANCHOR id="POPPLER-ACTION-RENDITION:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-RENDITION:CAPS">
|
298
|
+
<ANCHOR id="POPPLER-ACTION-OCG-STATE:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-OCG-STATE:CAPS">
|
299
|
+
<ANCHOR id="POPPLER-ACTION-JAVASCRIPT:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-JAVASCRIPT:CAPS">
|
300
|
+
<ANCHOR id="PopplerDestType" href="poppler/poppler-PopplerAction.html#PopplerDestType">
|
301
|
+
<ANCHOR id="POPPLER-DEST-UNKNOWN:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-UNKNOWN:CAPS">
|
302
|
+
<ANCHOR id="POPPLER-DEST-XYZ:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-XYZ:CAPS">
|
303
|
+
<ANCHOR id="POPPLER-DEST-FIT:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-FIT:CAPS">
|
304
|
+
<ANCHOR id="POPPLER-DEST-FITH:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-FITH:CAPS">
|
305
|
+
<ANCHOR id="POPPLER-DEST-FITV:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-FITV:CAPS">
|
306
|
+
<ANCHOR id="POPPLER-DEST-FITR:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-FITR:CAPS">
|
307
|
+
<ANCHOR id="POPPLER-DEST-FITB:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-FITB:CAPS">
|
308
|
+
<ANCHOR id="POPPLER-DEST-FITBH:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-FITBH:CAPS">
|
309
|
+
<ANCHOR id="POPPLER-DEST-FITBV:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-FITBV:CAPS">
|
310
|
+
<ANCHOR id="POPPLER-DEST-NAMED:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-DEST-NAMED:CAPS">
|
311
|
+
<ANCHOR id="PopplerActionMovieOperation" href="poppler/poppler-PopplerAction.html#PopplerActionMovieOperation">
|
312
|
+
<ANCHOR id="POPPLER-ACTION-MOVIE-PLAY:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-MOVIE-PLAY:CAPS">
|
313
|
+
<ANCHOR id="POPPLER-ACTION-MOVIE-PAUSE:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-MOVIE-PAUSE:CAPS">
|
314
|
+
<ANCHOR id="POPPLER-ACTION-MOVIE-RESUME:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-MOVIE-RESUME:CAPS">
|
315
|
+
<ANCHOR id="POPPLER-ACTION-MOVIE-STOP:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-MOVIE-STOP:CAPS">
|
316
|
+
<ANCHOR id="PopplerActionLayer" href="poppler/poppler-PopplerAction.html#PopplerActionLayer">
|
317
|
+
<ANCHOR id="PopplerActionLayerAction" href="poppler/poppler-PopplerAction.html#PopplerActionLayerAction">
|
318
|
+
<ANCHOR id="POPPLER-ACTION-LAYER-ON:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-LAYER-ON:CAPS">
|
319
|
+
<ANCHOR id="POPPLER-ACTION-LAYER-OFF:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-LAYER-OFF:CAPS">
|
320
|
+
<ANCHOR id="POPPLER-ACTION-LAYER-TOGGLE:CAPS" href="poppler/poppler-PopplerAction.html#POPPLER-ACTION-LAYER-TOGGLE:CAPS">
|
321
|
+
<ANCHOR id="poppler-action-copy" href="poppler/poppler-PopplerAction.html#poppler-action-copy">
|
322
|
+
<ANCHOR id="poppler-action-free" href="poppler/poppler-PopplerAction.html#poppler-action-free">
|
323
|
+
<ANCHOR id="poppler-dest-copy" href="poppler/poppler-PopplerAction.html#poppler-dest-copy">
|
324
|
+
<ANCHOR id="poppler-dest-free" href="poppler/poppler-PopplerAction.html#poppler-dest-free">
|
325
|
+
<ANCHOR id="PopplerAttachment" href="poppler/PopplerAttachment.html">
|
326
|
+
<ANCHOR id="PopplerAttachment.synopsis" href="poppler/PopplerAttachment.html#PopplerAttachment.synopsis">
|
327
|
+
<ANCHOR id="PopplerAttachment.object-hierarchy" href="poppler/PopplerAttachment.html#PopplerAttachment.object-hierarchy">
|
328
|
+
<ANCHOR id="PopplerAttachment.description" href="poppler/PopplerAttachment.html#PopplerAttachment.description">
|
329
|
+
<ANCHOR id="PopplerAttachment.details" href="poppler/PopplerAttachment.html#PopplerAttachment.details">
|
330
|
+
<ANCHOR id="PopplerAttachment-struct" href="poppler/PopplerAttachment.html#PopplerAttachment-struct">
|
331
|
+
<ANCHOR id="PopplerAttachmentSaveFunc" href="poppler/PopplerAttachment.html#PopplerAttachmentSaveFunc">
|
332
|
+
<ANCHOR id="poppler-attachment-save" href="poppler/PopplerAttachment.html#poppler-attachment-save">
|
333
|
+
<ANCHOR id="poppler-attachment-save-to-callback" href="poppler/PopplerAttachment.html#poppler-attachment-save-to-callback">
|
334
|
+
<ANCHOR id="PopplerFormField" href="poppler/PopplerFormField.html">
|
335
|
+
<ANCHOR id="PopplerFormField.synopsis" href="poppler/PopplerFormField.html#PopplerFormField.synopsis">
|
336
|
+
<ANCHOR id="PopplerFormField.object-hierarchy" href="poppler/PopplerFormField.html#PopplerFormField.object-hierarchy">
|
337
|
+
<ANCHOR id="PopplerFormField.description" href="poppler/PopplerFormField.html#PopplerFormField.description">
|
338
|
+
<ANCHOR id="PopplerFormField.details" href="poppler/PopplerFormField.html#PopplerFormField.details">
|
339
|
+
<ANCHOR id="PopplerFormField-struct" href="poppler/PopplerFormField.html#PopplerFormField-struct">
|
340
|
+
<ANCHOR id="PopplerFormFieldType" href="poppler/PopplerFormField.html#PopplerFormFieldType">
|
341
|
+
<ANCHOR id="POPPLER-FORM-FIELD-UNKNOWN:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-FIELD-UNKNOWN:CAPS">
|
342
|
+
<ANCHOR id="POPPLER-FORM-FIELD-BUTTON:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-FIELD-BUTTON:CAPS">
|
343
|
+
<ANCHOR id="POPPLER-FORM-FIELD-TEXT:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-FIELD-TEXT:CAPS">
|
344
|
+
<ANCHOR id="POPPLER-FORM-FIELD-CHOICE:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-FIELD-CHOICE:CAPS">
|
345
|
+
<ANCHOR id="POPPLER-FORM-FIELD-SIGNATURE:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-FIELD-SIGNATURE:CAPS">
|
346
|
+
<ANCHOR id="PopplerFormButtonType" href="poppler/PopplerFormField.html#PopplerFormButtonType">
|
347
|
+
<ANCHOR id="POPPLER-FORM-BUTTON-PUSH:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-BUTTON-PUSH:CAPS">
|
348
|
+
<ANCHOR id="POPPLER-FORM-BUTTON-CHECK:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-BUTTON-CHECK:CAPS">
|
349
|
+
<ANCHOR id="POPPLER-FORM-BUTTON-RADIO:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-BUTTON-RADIO:CAPS">
|
350
|
+
<ANCHOR id="PopplerFormChoiceType" href="poppler/PopplerFormField.html#PopplerFormChoiceType">
|
351
|
+
<ANCHOR id="POPPLER-FORM-CHOICE-COMBO:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-CHOICE-COMBO:CAPS">
|
352
|
+
<ANCHOR id="POPPLER-FORM-CHOICE-LIST:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-CHOICE-LIST:CAPS">
|
353
|
+
<ANCHOR id="PopplerFormTextType" href="poppler/PopplerFormField.html#PopplerFormTextType">
|
354
|
+
<ANCHOR id="POPPLER-FORM-TEXT-NORMAL:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-TEXT-NORMAL:CAPS">
|
355
|
+
<ANCHOR id="POPPLER-FORM-TEXT-MULTILINE:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-TEXT-MULTILINE:CAPS">
|
356
|
+
<ANCHOR id="POPPLER-FORM-TEXT-FILE-SELECT:CAPS" href="poppler/PopplerFormField.html#POPPLER-FORM-TEXT-FILE-SELECT:CAPS">
|
357
|
+
<ANCHOR id="poppler-form-field-get-field-type" href="poppler/PopplerFormField.html#poppler-form-field-get-field-type">
|
358
|
+
<ANCHOR id="poppler-form-field-get-id" href="poppler/PopplerFormField.html#poppler-form-field-get-id">
|
359
|
+
<ANCHOR id="poppler-form-field-is-read-only" href="poppler/PopplerFormField.html#poppler-form-field-is-read-only">
|
360
|
+
<ANCHOR id="poppler-form-field-get-font-size" href="poppler/PopplerFormField.html#poppler-form-field-get-font-size">
|
361
|
+
<ANCHOR id="poppler-form-field-get-partial-name" href="poppler/PopplerFormField.html#poppler-form-field-get-partial-name">
|
362
|
+
<ANCHOR id="poppler-form-field-get-mapping-name" href="poppler/PopplerFormField.html#poppler-form-field-get-mapping-name">
|
363
|
+
<ANCHOR id="poppler-form-field-get-name" href="poppler/PopplerFormField.html#poppler-form-field-get-name">
|
364
|
+
<ANCHOR id="poppler-form-field-get-action" href="poppler/PopplerFormField.html#poppler-form-field-get-action">
|
365
|
+
<ANCHOR id="poppler-form-field-button-get-button-type" href="poppler/PopplerFormField.html#poppler-form-field-button-get-button-type">
|
366
|
+
<ANCHOR id="poppler-form-field-button-get-state" href="poppler/PopplerFormField.html#poppler-form-field-button-get-state">
|
367
|
+
<ANCHOR id="poppler-form-field-button-set-state" href="poppler/PopplerFormField.html#poppler-form-field-button-set-state">
|
368
|
+
<ANCHOR id="poppler-form-field-choice-get-choice-type" href="poppler/PopplerFormField.html#poppler-form-field-choice-get-choice-type">
|
369
|
+
<ANCHOR id="poppler-form-field-choice-can-select-multiple" href="poppler/PopplerFormField.html#poppler-form-field-choice-can-select-multiple">
|
370
|
+
<ANCHOR id="poppler-form-field-choice-commit-on-change" href="poppler/PopplerFormField.html#poppler-form-field-choice-commit-on-change">
|
371
|
+
<ANCHOR id="poppler-form-field-choice-do-spell-check" href="poppler/PopplerFormField.html#poppler-form-field-choice-do-spell-check">
|
372
|
+
<ANCHOR id="poppler-form-field-choice-get-item" href="poppler/PopplerFormField.html#poppler-form-field-choice-get-item">
|
373
|
+
<ANCHOR id="poppler-form-field-choice-get-n-items" href="poppler/PopplerFormField.html#poppler-form-field-choice-get-n-items">
|
374
|
+
<ANCHOR id="poppler-form-field-choice-get-text" href="poppler/PopplerFormField.html#poppler-form-field-choice-get-text">
|
375
|
+
<ANCHOR id="poppler-form-field-choice-set-text" href="poppler/PopplerFormField.html#poppler-form-field-choice-set-text">
|
376
|
+
<ANCHOR id="poppler-form-field-choice-is-editable" href="poppler/PopplerFormField.html#poppler-form-field-choice-is-editable">
|
377
|
+
<ANCHOR id="poppler-form-field-choice-is-item-selected" href="poppler/PopplerFormField.html#poppler-form-field-choice-is-item-selected">
|
378
|
+
<ANCHOR id="poppler-form-field-choice-select-item" href="poppler/PopplerFormField.html#poppler-form-field-choice-select-item">
|
379
|
+
<ANCHOR id="poppler-form-field-choice-toggle-item" href="poppler/PopplerFormField.html#poppler-form-field-choice-toggle-item">
|
380
|
+
<ANCHOR id="poppler-form-field-choice-unselect-all" href="poppler/PopplerFormField.html#poppler-form-field-choice-unselect-all">
|
381
|
+
<ANCHOR id="poppler-form-field-text-get-text-type" href="poppler/PopplerFormField.html#poppler-form-field-text-get-text-type">
|
382
|
+
<ANCHOR id="poppler-form-field-text-get-text" href="poppler/PopplerFormField.html#poppler-form-field-text-get-text">
|
383
|
+
<ANCHOR id="poppler-form-field-text-set-text" href="poppler/PopplerFormField.html#poppler-form-field-text-set-text">
|
384
|
+
<ANCHOR id="poppler-form-field-text-get-max-len" href="poppler/PopplerFormField.html#poppler-form-field-text-get-max-len">
|
385
|
+
<ANCHOR id="poppler-form-field-text-do-scroll" href="poppler/PopplerFormField.html#poppler-form-field-text-do-scroll">
|
386
|
+
<ANCHOR id="poppler-form-field-text-do-spell-check" href="poppler/PopplerFormField.html#poppler-form-field-text-do-spell-check">
|
387
|
+
<ANCHOR id="poppler-form-field-text-is-password" href="poppler/PopplerFormField.html#poppler-form-field-text-is-password">
|
388
|
+
<ANCHOR id="poppler-form-field-text-is-rich-text" href="poppler/PopplerFormField.html#poppler-form-field-text-is-rich-text">
|
389
|
+
<ANCHOR id="PopplerAnnot" href="poppler/PopplerAnnot.html">
|
390
|
+
<ANCHOR id="PopplerAnnot.synopsis" href="poppler/PopplerAnnot.html#PopplerAnnot.synopsis">
|
391
|
+
<ANCHOR id="PopplerAnnot.object-hierarchy" href="poppler/PopplerAnnot.html#PopplerAnnot.object-hierarchy">
|
392
|
+
<ANCHOR id="PopplerAnnot.description" href="poppler/PopplerAnnot.html#PopplerAnnot.description">
|
393
|
+
<ANCHOR id="PopplerAnnot.details" href="poppler/PopplerAnnot.html#PopplerAnnot.details">
|
394
|
+
<ANCHOR id="PopplerAnnot-struct" href="poppler/PopplerAnnot.html#PopplerAnnot-struct">
|
395
|
+
<ANCHOR id="PopplerAnnotMarkup" href="poppler/PopplerAnnot.html#PopplerAnnotMarkup">
|
396
|
+
<ANCHOR id="PopplerAnnotText" href="poppler/PopplerAnnot.html#PopplerAnnotText">
|
397
|
+
<ANCHOR id="PopplerAnnotFreeText" href="poppler/PopplerAnnot.html#PopplerAnnotFreeText">
|
398
|
+
<ANCHOR id="PopplerAnnotFileAttachment" href="poppler/PopplerAnnot.html#PopplerAnnotFileAttachment">
|
399
|
+
<ANCHOR id="PopplerAnnotMovie" href="poppler/PopplerAnnot.html#PopplerAnnotMovie">
|
400
|
+
<ANCHOR id="PopplerAnnotScreen" href="poppler/PopplerAnnot.html#PopplerAnnotScreen">
|
401
|
+
<ANCHOR id="PopplerAnnotType" href="poppler/PopplerAnnot.html#PopplerAnnotType">
|
402
|
+
<ANCHOR id="POPPLER-ANNOT-UNKNOWN:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-UNKNOWN:CAPS">
|
403
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT:CAPS">
|
404
|
+
<ANCHOR id="POPPLER-ANNOT-LINK:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-LINK:CAPS">
|
405
|
+
<ANCHOR id="POPPLER-ANNOT-FREE-TEXT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FREE-TEXT:CAPS">
|
406
|
+
<ANCHOR id="POPPLER-ANNOT-LINE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-LINE:CAPS">
|
407
|
+
<ANCHOR id="POPPLER-ANNOT-SQUARE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-SQUARE:CAPS">
|
408
|
+
<ANCHOR id="POPPLER-ANNOT-CIRCLE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-CIRCLE:CAPS">
|
409
|
+
<ANCHOR id="POPPLER-ANNOT-POLYGON:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-POLYGON:CAPS">
|
410
|
+
<ANCHOR id="POPPLER-ANNOT-POLY-LINE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-POLY-LINE:CAPS">
|
411
|
+
<ANCHOR id="POPPLER-ANNOT-HIGHLIGHT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-HIGHLIGHT:CAPS">
|
412
|
+
<ANCHOR id="POPPLER-ANNOT-UNDERLINE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-UNDERLINE:CAPS">
|
413
|
+
<ANCHOR id="POPPLER-ANNOT-SQUIGGLY:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-SQUIGGLY:CAPS">
|
414
|
+
<ANCHOR id="POPPLER-ANNOT-STRIKE-OUT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-STRIKE-OUT:CAPS">
|
415
|
+
<ANCHOR id="POPPLER-ANNOT-STAMP:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-STAMP:CAPS">
|
416
|
+
<ANCHOR id="POPPLER-ANNOT-CARET:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-CARET:CAPS">
|
417
|
+
<ANCHOR id="POPPLER-ANNOT-INK:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-INK:CAPS">
|
418
|
+
<ANCHOR id="POPPLER-ANNOT-POPUP:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-POPUP:CAPS">
|
419
|
+
<ANCHOR id="POPPLER-ANNOT-FILE-ATTACHMENT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FILE-ATTACHMENT:CAPS">
|
420
|
+
<ANCHOR id="POPPLER-ANNOT-SOUND:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-SOUND:CAPS">
|
421
|
+
<ANCHOR id="POPPLER-ANNOT-MOVIE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-MOVIE:CAPS">
|
422
|
+
<ANCHOR id="POPPLER-ANNOT-WIDGET:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-WIDGET:CAPS">
|
423
|
+
<ANCHOR id="POPPLER-ANNOT-SCREEN:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-SCREEN:CAPS">
|
424
|
+
<ANCHOR id="POPPLER-ANNOT-PRINTER-MARK:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-PRINTER-MARK:CAPS">
|
425
|
+
<ANCHOR id="POPPLER-ANNOT-TRAP-NET:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TRAP-NET:CAPS">
|
426
|
+
<ANCHOR id="POPPLER-ANNOT-WATERMARK:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-WATERMARK:CAPS">
|
427
|
+
<ANCHOR id="POPPLER-ANNOT-3D:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-3D:CAPS">
|
428
|
+
<ANCHOR id="PopplerAnnotFlag" href="poppler/PopplerAnnot.html#PopplerAnnotFlag">
|
429
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-UNKNOWN:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-UNKNOWN:CAPS">
|
430
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-INVISIBLE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-INVISIBLE:CAPS">
|
431
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-HIDDEN:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-HIDDEN:CAPS">
|
432
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-PRINT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-PRINT:CAPS">
|
433
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-NO-ZOOM:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-NO-ZOOM:CAPS">
|
434
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-NO-ROTATE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-NO-ROTATE:CAPS">
|
435
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-NO-VIEW:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-NO-VIEW:CAPS">
|
436
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-READ-ONLY:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-READ-ONLY:CAPS">
|
437
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-LOCKED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-LOCKED:CAPS">
|
438
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-TOGGLE-NO-VIEW:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-TOGGLE-NO-VIEW:CAPS">
|
439
|
+
<ANCHOR id="POPPLER-ANNOT-FLAG-LOCKED-CONTENTS:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FLAG-LOCKED-CONTENTS:CAPS">
|
440
|
+
<ANCHOR id="PopplerAnnotExternalDataType" href="poppler/PopplerAnnot.html#PopplerAnnotExternalDataType">
|
441
|
+
<ANCHOR id="POPPLER-ANNOT-EXTERNAL-DATA-MARKUP-3D:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-EXTERNAL-DATA-MARKUP-3D:CAPS">
|
442
|
+
<ANCHOR id="POPPLER-ANNOT-EXTERNAL-DATA-MARKUP-UNKNOWN:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-EXTERNAL-DATA-MARKUP-UNKNOWN:CAPS">
|
443
|
+
<ANCHOR id="PopplerAnnotMarkupReplyType" href="poppler/PopplerAnnot.html#PopplerAnnotMarkupReplyType">
|
444
|
+
<ANCHOR id="POPPLER-ANNOT-MARKUP-REPLY-TYPE-R:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-MARKUP-REPLY-TYPE-R:CAPS">
|
445
|
+
<ANCHOR id="POPPLER-ANNOT-MARKUP-REPLY-TYPE-GROUP:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-MARKUP-REPLY-TYPE-GROUP:CAPS">
|
446
|
+
<ANCHOR id="PopplerAnnotTextState" href="poppler/PopplerAnnot.html#PopplerAnnotTextState">
|
447
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-MARKED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-MARKED:CAPS">
|
448
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-UNMARKED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-UNMARKED:CAPS">
|
449
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-ACCEPTED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-ACCEPTED:CAPS">
|
450
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-REJECTED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-REJECTED:CAPS">
|
451
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-CANCELLED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-CANCELLED:CAPS">
|
452
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-COMPLETED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-COMPLETED:CAPS">
|
453
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-NONE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-NONE:CAPS">
|
454
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-STATE-UNKNOWN:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-STATE-UNKNOWN:CAPS">
|
455
|
+
<ANCHOR id="PopplerAnnotCalloutLine" href="poppler/PopplerAnnot.html#PopplerAnnotCalloutLine">
|
456
|
+
<ANCHOR id="PopplerAnnotFreeTextQuadding" href="poppler/PopplerAnnot.html#PopplerAnnotFreeTextQuadding">
|
457
|
+
<ANCHOR id="POPPLER-ANNOT-FREE-TEXT-QUADDING-LEFT-JUSTIFIED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FREE-TEXT-QUADDING-LEFT-JUSTIFIED:CAPS">
|
458
|
+
<ANCHOR id="POPPLER-ANNOT-FREE-TEXT-QUADDING-CENTERED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FREE-TEXT-QUADDING-CENTERED:CAPS">
|
459
|
+
<ANCHOR id="POPPLER-ANNOT-FREE-TEXT-QUADDING-RIGHT-JUSTIFIED:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-FREE-TEXT-QUADDING-RIGHT-JUSTIFIED:CAPS">
|
460
|
+
<ANCHOR id="poppler-annot-get-annot-type" href="poppler/PopplerAnnot.html#poppler-annot-get-annot-type">
|
461
|
+
<ANCHOR id="poppler-annot-get-flags" href="poppler/PopplerAnnot.html#poppler-annot-get-flags">
|
462
|
+
<ANCHOR id="poppler-annot-get-name" href="poppler/PopplerAnnot.html#poppler-annot-get-name">
|
463
|
+
<ANCHOR id="poppler-annot-get-page-index" href="poppler/PopplerAnnot.html#poppler-annot-get-page-index">
|
464
|
+
<ANCHOR id="poppler-annot-get-color" href="poppler/PopplerAnnot.html#poppler-annot-get-color">
|
465
|
+
<ANCHOR id="poppler-annot-set-color" href="poppler/PopplerAnnot.html#poppler-annot-set-color">
|
466
|
+
<ANCHOR id="poppler-annot-get-contents" href="poppler/PopplerAnnot.html#poppler-annot-get-contents">
|
467
|
+
<ANCHOR id="poppler-annot-set-contents" href="poppler/PopplerAnnot.html#poppler-annot-set-contents">
|
468
|
+
<ANCHOR id="poppler-annot-get-modified" href="poppler/PopplerAnnot.html#poppler-annot-get-modified">
|
469
|
+
<ANCHOR id="poppler-annot-markup-get-label" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-label">
|
470
|
+
<ANCHOR id="poppler-annot-markup-set-label" href="poppler/PopplerAnnot.html#poppler-annot-markup-set-label">
|
471
|
+
<ANCHOR id="poppler-annot-markup-get-subject" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-subject">
|
472
|
+
<ANCHOR id="poppler-annot-markup-get-opacity" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-opacity">
|
473
|
+
<ANCHOR id="poppler-annot-markup-set-opacity" href="poppler/PopplerAnnot.html#poppler-annot-markup-set-opacity">
|
474
|
+
<ANCHOR id="poppler-annot-markup-has-popup" href="poppler/PopplerAnnot.html#poppler-annot-markup-has-popup">
|
475
|
+
<ANCHOR id="poppler-annot-markup-set-popup" href="poppler/PopplerAnnot.html#poppler-annot-markup-set-popup">
|
476
|
+
<ANCHOR id="poppler-annot-markup-get-popup-is-open" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-popup-is-open">
|
477
|
+
<ANCHOR id="poppler-annot-markup-set-popup-is-open" href="poppler/PopplerAnnot.html#poppler-annot-markup-set-popup-is-open">
|
478
|
+
<ANCHOR id="poppler-annot-markup-get-popup-rectangle" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-popup-rectangle">
|
479
|
+
<ANCHOR id="poppler-annot-markup-get-date" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-date">
|
480
|
+
<ANCHOR id="poppler-annot-markup-get-external-data" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-external-data">
|
481
|
+
<ANCHOR id="poppler-annot-markup-get-reply-to" href="poppler/PopplerAnnot.html#poppler-annot-markup-get-reply-to">
|
482
|
+
<ANCHOR id="poppler-annot-text-new" href="poppler/PopplerAnnot.html#poppler-annot-text-new">
|
483
|
+
<ANCHOR id="poppler-annot-text-get-icon" href="poppler/PopplerAnnot.html#poppler-annot-text-get-icon">
|
484
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-NOTE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-NOTE:CAPS">
|
485
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-COMMENT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-COMMENT:CAPS">
|
486
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-KEY:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-KEY:CAPS">
|
487
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-HELP:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-HELP:CAPS">
|
488
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-NEW-PARAGRAPH:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-NEW-PARAGRAPH:CAPS">
|
489
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-PARAGRAPH:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-PARAGRAPH:CAPS">
|
490
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-INSERT:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-INSERT:CAPS">
|
491
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-CROSS:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-CROSS:CAPS">
|
492
|
+
<ANCHOR id="POPPLER-ANNOT-TEXT-ICON-CIRCLE:CAPS" href="poppler/PopplerAnnot.html#POPPLER-ANNOT-TEXT-ICON-CIRCLE:CAPS">
|
493
|
+
<ANCHOR id="poppler-annot-text-set-icon" href="poppler/PopplerAnnot.html#poppler-annot-text-set-icon">
|
494
|
+
<ANCHOR id="poppler-annot-text-get-is-open" href="poppler/PopplerAnnot.html#poppler-annot-text-get-is-open">
|
495
|
+
<ANCHOR id="poppler-annot-text-set-is-open" href="poppler/PopplerAnnot.html#poppler-annot-text-set-is-open">
|
496
|
+
<ANCHOR id="poppler-annot-text-get-state" href="poppler/PopplerAnnot.html#poppler-annot-text-get-state">
|
497
|
+
<ANCHOR id="poppler-annot-free-text-get-callout-line" href="poppler/PopplerAnnot.html#poppler-annot-free-text-get-callout-line">
|
498
|
+
<ANCHOR id="poppler-annot-free-text-get-quadding" href="poppler/PopplerAnnot.html#poppler-annot-free-text-get-quadding">
|
499
|
+
<ANCHOR id="poppler-annot-file-attachment-get-attachment" href="poppler/PopplerAnnot.html#poppler-annot-file-attachment-get-attachment">
|
500
|
+
<ANCHOR id="poppler-annot-file-attachment-get-name" href="poppler/PopplerAnnot.html#poppler-annot-file-attachment-get-name">
|
501
|
+
<ANCHOR id="poppler-annot-screen-get-action" href="poppler/PopplerAnnot.html#poppler-annot-screen-get-action">
|
502
|
+
<ANCHOR id="poppler-annot-movie-get-movie" href="poppler/PopplerAnnot.html#poppler-annot-movie-get-movie">
|
503
|
+
<ANCHOR id="poppler-annot-movie-get-title" href="poppler/PopplerAnnot.html#poppler-annot-movie-get-title">
|
504
|
+
<ANCHOR id="poppler-annot-callout-line-new" href="poppler/PopplerAnnot.html#poppler-annot-callout-line-new">
|
505
|
+
<ANCHOR id="poppler-annot-callout-line-copy" href="poppler/PopplerAnnot.html#poppler-annot-callout-line-copy">
|
506
|
+
<ANCHOR id="poppler-annot-callout-line-free" href="poppler/PopplerAnnot.html#poppler-annot-callout-line-free">
|
507
|
+
<ANCHOR id="PopplerLayer" href="poppler/PopplerLayer.html">
|
508
|
+
<ANCHOR id="PopplerLayer.synopsis" href="poppler/PopplerLayer.html#PopplerLayer.synopsis">
|
509
|
+
<ANCHOR id="PopplerLayer.object-hierarchy" href="poppler/PopplerLayer.html#PopplerLayer.object-hierarchy">
|
510
|
+
<ANCHOR id="PopplerLayer.description" href="poppler/PopplerLayer.html#PopplerLayer.description">
|
511
|
+
<ANCHOR id="PopplerLayer.details" href="poppler/PopplerLayer.html#PopplerLayer.details">
|
512
|
+
<ANCHOR id="PopplerLayer-struct" href="poppler/PopplerLayer.html#PopplerLayer-struct">
|
513
|
+
<ANCHOR id="poppler-layer-get-title" href="poppler/PopplerLayer.html#poppler-layer-get-title">
|
514
|
+
<ANCHOR id="poppler-layer-is-visible" href="poppler/PopplerLayer.html#poppler-layer-is-visible">
|
515
|
+
<ANCHOR id="poppler-layer-show" href="poppler/PopplerLayer.html#poppler-layer-show">
|
516
|
+
<ANCHOR id="poppler-layer-hide" href="poppler/PopplerLayer.html#poppler-layer-hide">
|
517
|
+
<ANCHOR id="poppler-layer-is-parent" href="poppler/PopplerLayer.html#poppler-layer-is-parent">
|
518
|
+
<ANCHOR id="poppler-layer-get-radio-button-group-id" href="poppler/PopplerLayer.html#poppler-layer-get-radio-button-group-id">
|
519
|
+
<ANCHOR id="PopplerMedia" href="poppler/PopplerMedia.html">
|
520
|
+
<ANCHOR id="PopplerMedia.synopsis" href="poppler/PopplerMedia.html#PopplerMedia.synopsis">
|
521
|
+
<ANCHOR id="PopplerMedia.object-hierarchy" href="poppler/PopplerMedia.html#PopplerMedia.object-hierarchy">
|
522
|
+
<ANCHOR id="PopplerMedia.description" href="poppler/PopplerMedia.html#PopplerMedia.description">
|
523
|
+
<ANCHOR id="PopplerMedia.details" href="poppler/PopplerMedia.html#PopplerMedia.details">
|
524
|
+
<ANCHOR id="PopplerMedia-struct" href="poppler/PopplerMedia.html#PopplerMedia-struct">
|
525
|
+
<ANCHOR id="PopplerMediaSaveFunc" href="poppler/PopplerMedia.html#PopplerMediaSaveFunc">
|
526
|
+
<ANCHOR id="poppler-media-get-filename" href="poppler/PopplerMedia.html#poppler-media-get-filename">
|
527
|
+
<ANCHOR id="poppler-media-get-mime-type" href="poppler/PopplerMedia.html#poppler-media-get-mime-type">
|
528
|
+
<ANCHOR id="poppler-media-is-embedded" href="poppler/PopplerMedia.html#poppler-media-is-embedded">
|
529
|
+
<ANCHOR id="poppler-media-save" href="poppler/PopplerMedia.html#poppler-media-save">
|
530
|
+
<ANCHOR id="poppler-media-save-to-callback" href="poppler/PopplerMedia.html#poppler-media-save-to-callback">
|
531
|
+
<ANCHOR id="PopplerMovie" href="poppler/PopplerMovie.html">
|
532
|
+
<ANCHOR id="PopplerMovie.synopsis" href="poppler/PopplerMovie.html#PopplerMovie.synopsis">
|
533
|
+
<ANCHOR id="PopplerMovie.object-hierarchy" href="poppler/PopplerMovie.html#PopplerMovie.object-hierarchy">
|
534
|
+
<ANCHOR id="PopplerMovie.description" href="poppler/PopplerMovie.html#PopplerMovie.description">
|
535
|
+
<ANCHOR id="PopplerMovie.details" href="poppler/PopplerMovie.html#PopplerMovie.details">
|
536
|
+
<ANCHOR id="PopplerMovie-struct" href="poppler/PopplerMovie.html#PopplerMovie-struct">
|
537
|
+
<ANCHOR id="poppler-movie-get-filename" href="poppler/PopplerMovie.html#poppler-movie-get-filename">
|
538
|
+
<ANCHOR id="poppler-movie-need-poster" href="poppler/PopplerMovie.html#poppler-movie-need-poster">
|
539
|
+
<ANCHOR id="poppler-movie-show-controls" href="poppler/PopplerMovie.html#poppler-movie-show-controls">
|
540
|
+
<ANCHOR id="poppler-Version-and-Features-Information" href="poppler/poppler-Version-and-Features-Information.html">
|
541
|
+
<ANCHOR id="poppler-Version-and-Features-Information.synopsis" href="poppler/poppler-Version-and-Features-Information.html#poppler-Version-and-Features-Information.synopsis">
|
542
|
+
<ANCHOR id="poppler-Version-and-Features-Information.description" href="poppler/poppler-Version-and-Features-Information.html#poppler-Version-and-Features-Information.description">
|
543
|
+
<ANCHOR id="poppler-Version-and-Features-Information.details" href="poppler/poppler-Version-and-Features-Information.html#poppler-Version-and-Features-Information.details">
|
544
|
+
<ANCHOR id="POPPLER-HAS-CAIRO:CAPS" href="poppler/poppler-Version-and-Features-Information.html#POPPLER-HAS-CAIRO:CAPS">
|
545
|
+
<ANCHOR id="POPPLER-MAJOR-VERSION:CAPS" href="poppler/poppler-Version-and-Features-Information.html#POPPLER-MAJOR-VERSION:CAPS">
|
546
|
+
<ANCHOR id="POPPLER-MINOR-VERSION:CAPS" href="poppler/poppler-Version-and-Features-Information.html#POPPLER-MINOR-VERSION:CAPS">
|
547
|
+
<ANCHOR id="POPPLER-MICRO-VERSION:CAPS" href="poppler/poppler-Version-and-Features-Information.html#POPPLER-MICRO-VERSION:CAPS">
|
548
|
+
<ANCHOR id="POPPLER-CHECK-VERSION:CAPS" href="poppler/poppler-Version-and-Features-Information.html#POPPLER-CHECK-VERSION:CAPS">
|
549
|
+
<ANCHOR id="annotation-glossterm-scope call" href="poppler/annotation-glossary.html#annotation-glossterm-scope call">
|
550
|
+
<ANCHOR id="annotation-glossterm-closure" href="poppler/annotation-glossary.html#annotation-glossterm-closure">
|
551
|
+
<ANCHOR id="annotation-glossterm-transfer none" href="poppler/annotation-glossary.html#annotation-glossterm-transfer none">
|
552
|
+
<ANCHOR id="annotation-glossterm-transfer full" href="poppler/annotation-glossary.html#annotation-glossterm-transfer full">
|
553
|
+
<ANCHOR id="annotation-glossterm-allow-none" href="poppler/annotation-glossary.html#annotation-glossterm-allow-none">
|
554
|
+
<ANCHOR id="annotation-glossterm-array" href="poppler/annotation-glossary.html#annotation-glossterm-array">
|
555
|
+
<ANCHOR id="annotation-glossterm-out" href="poppler/annotation-glossary.html#annotation-glossterm-out">
|
556
|
+
<ANCHOR id="annotation-glossterm-element-type" href="poppler/annotation-glossary.html#annotation-glossterm-element-type">
|
557
|
+
<ANCHOR id="annotation-glossterm-transfer container" href="poppler/annotation-glossary.html#annotation-glossterm-transfer container">
|