poppler 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +35 -0
- data/Rakefile +75 -0
- data/ext/poppler/depend +6 -0
- data/ext/poppler/extconf.rb +70 -0
- data/ext/poppler/poppler.def +2 -0
- data/ext/poppler/rbpoppler-action.c +372 -0
- data/ext/poppler/rbpoppler-annotation-callout-line.c +127 -0
- data/ext/poppler/rbpoppler-annotation-free-text.c +46 -0
- data/ext/poppler/rbpoppler-annotation-mapping.c +72 -0
- data/ext/poppler/rbpoppler-annotation-markup.c +98 -0
- data/ext/poppler/rbpoppler-annotation-text.c +53 -0
- data/ext/poppler/rbpoppler-annotation.c +74 -0
- data/ext/poppler/rbpoppler-attachment.c +124 -0
- data/ext/poppler/rbpoppler-button-field.c +56 -0
- data/ext/poppler/rbpoppler-choice-field.c +131 -0
- data/ext/poppler/rbpoppler-color.c +107 -0
- data/ext/poppler/rbpoppler-document.c +224 -0
- data/ext/poppler/rbpoppler-font-info.c +59 -0
- data/ext/poppler/rbpoppler-fonts-iter.c +127 -0
- data/ext/poppler/rbpoppler-form-field-mapping.c +44 -0
- data/ext/poppler/rbpoppler-form-field.c +98 -0
- data/ext/poppler/rbpoppler-image-mapping.c +48 -0
- data/ext/poppler/rbpoppler-index-iter.c +128 -0
- data/ext/poppler/rbpoppler-link-mapping.c +47 -0
- data/ext/poppler/rbpoppler-page-transition.c +59 -0
- data/ext/poppler/rbpoppler-page.c +322 -0
- data/ext/poppler/rbpoppler-private.h +77 -0
- data/ext/poppler/rbpoppler-ps-file.c +66 -0
- data/ext/poppler/rbpoppler-rectangle.c +92 -0
- data/ext/poppler/rbpoppler-text-field.c +91 -0
- data/ext/poppler/rbpoppler.c +111 -0
- data/ext/poppler/rbpoppler.h +61 -0
- data/ext/poppler/rbpopplerconversions.h +105 -0
- data/extconf.rb +49 -0
- data/lib/2.0/poppler.so +0 -0
- data/lib/2.1/poppler.so +0 -0
- data/lib/2.2/poppler.so +0 -0
- data/lib/poppler.rb +105 -0
- data/sample/number-pdf.rb +32 -0
- data/sample/pdf2.rb +132 -0
- data/sample/pdf2svg.rb +26 -0
- data/sample/pdf2text.rb +16 -0
- data/sample/pdfcrop.rb +32 -0
- data/sample/pdfdiv.rb +36 -0
- data/test/fixtures/image.pdf +0 -0
- data/test/fixtures/image.png +0 -0
- data/test/poppler-test-utils.rb +58 -0
- data/test/run-test.rb +32 -0
- data/test/test_annotation.rb +86 -0
- data/test/test_color.rb +26 -0
- data/test/test_constants.rb +30 -0
- data/test/test_document.rb +41 -0
- data/test/test_page.rb +42 -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-48.dll +0 -0
- data/vendor/local/bin/libpoppler-cpp-0.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 +60 -0
- data/vendor/local/include/jerror.h +304 -0
- data/vendor/local/include/jmorecfg.h +446 -0
- data/vendor/local/include/jpeglib.h +1180 -0
- data/vendor/local/include/poppler/cpp/poppler-document.h +104 -0
- data/vendor/local/include/poppler/cpp/poppler-embedded-file.h +55 -0
- data/vendor/local/include/poppler/cpp/poppler-font.h +91 -0
- data/vendor/local/include/poppler/cpp/poppler-global.h +111 -0
- data/vendor/local/include/poppler/cpp/poppler-image.h +71 -0
- data/vendor/local/include/poppler/cpp/poppler-page-renderer.h +66 -0
- data/vendor/local/include/poppler/cpp/poppler-page-transition.h +82 -0
- data/vendor/local/include/poppler/cpp/poppler-page.h +76 -0
- data/vendor/local/include/poppler/cpp/poppler-rectangle.h +84 -0
- data/vendor/local/include/poppler/cpp/poppler-toc.h +74 -0
- data/vendor/local/include/poppler/cpp/poppler-version.h +39 -0
- data/vendor/local/include/poppler/glib/poppler-action.h +316 -0
- data/vendor/local/include/poppler/glib/poppler-annot.h +296 -0
- data/vendor/local/include/poppler/glib/poppler-attachment.h +87 -0
- data/vendor/local/include/poppler/glib/poppler-date.h +30 -0
- data/vendor/local/include/poppler/glib/poppler-document.h +299 -0
- data/vendor/local/include/poppler/glib/poppler-enums.h +116 -0
- data/vendor/local/include/poppler/glib/poppler-features.h +88 -0
- data/vendor/local/include/poppler/glib/poppler-form-field.h +111 -0
- data/vendor/local/include/poppler/glib/poppler-layer.h +43 -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 +377 -0
- data/vendor/local/include/poppler/glib/poppler-structure-element.h +357 -0
- data/vendor/local/include/poppler/glib/poppler.h +250 -0
- data/vendor/local/include/sqlite3.h +7494 -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-cpp.a +0 -0
- data/vendor/local/lib/libpoppler-cpp.dll.a +0 -0
- data/vendor/local/lib/libpoppler-cpp.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-cpp.pc +13 -0
- data/vendor/local/lib/pkgconfig/poppler-glib.pc +13 -0
- data/vendor/local/lib/pkgconfig/poppler-splash.pc +9 -0
- data/vendor/local/lib/pkgconfig/poppler.pc +11 -0
- data/vendor/local/lib/pkgconfig/sqlite3.pc +13 -0
- data/vendor/local/share/gir-1.0/Poppler-0.18.gir +8281 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAnnot.html +3221 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAttachment.html +267 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerDocument.html +3328 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerFormField.html +1403 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerLayer.html +307 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMedia.html +381 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMovie.html +197 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerPage.html +3002 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerStructureElement.html +3781 -0
- data/vendor/local/share/gtk-doc/html/poppler/annotation-glossary.html +63 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-12.html +123 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-14.html +102 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-16.html +180 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-18.html +72 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-20.html +39 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-22.html +64 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-deprecated.html +39 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-full.html +1830 -0
- data/vendor/local/share/gtk-doc/html/poppler/ch01.html +74 -0
- data/vendor/local/share/gtk-doc/html/poppler/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/index.html +85 -0
- data/vendor/local/share/gtk-doc/html/poppler/index.sgml +557 -0
- data/vendor/local/share/gtk-doc/html/poppler/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PDF-Utility-functions.html +107 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerAction.html +796 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerColor.html +201 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-Version-and-Features-Information.html +254 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler.html +169 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp2 +470 -0
- data/vendor/local/share/gtk-doc/html/poppler/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/poppler/up-insensitive.png +0 -0
- 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 +387 -0
- data/vendor/local/share/man/man1/djpeg.1 +252 -0
- data/vendor/local/share/man/man1/jpegtran.1 +293 -0
- data/vendor/local/share/man/man1/pdfdetach.1 +86 -0
- data/vendor/local/share/man/man1/pdffonts.1 +119 -0
- data/vendor/local/share/man/man1/pdfimages.1 +260 -0
- data/vendor/local/share/man/man1/pdfinfo.1 +152 -0
- data/vendor/local/share/man/man1/pdfseparate.1 +49 -0
- data/vendor/local/share/man/man1/pdftocairo.1 +295 -0
- data/vendor/local/share/man/man1/pdftohtml.1 +107 -0
- data/vendor/local/share/man/man1/pdftoppm.1 +170 -0
- data/vendor/local/share/man/man1/pdftops.1 +217 -0
- data/vendor/local/share/man/man1/pdftotext.1 +137 -0
- data/vendor/local/share/man/man1/pdfunite.1 +33 -0
- data/vendor/local/share/man/man1/rdjpgcom.1 +63 -0
- data/vendor/local/share/man/man1/sqlite3.1 +279 -0
- data/vendor/local/share/man/man1/wrjpgcom.1 +103 -0
- metadata +254 -0
@@ -0,0 +1,267 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Poppler Reference Manual: PopplerAttachment</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Poppler Reference Manual">
|
8
|
+
<link rel="up" href="ch01.html" title="Poppler">
|
9
|
+
<link rel="prev" href="poppler-PopplerAction.html" title="PopplerAction">
|
10
|
+
<link rel="next" href="PopplerFormField.html" title="PoppplerFormField">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#PopplerAttachment.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#PopplerAttachment.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
20
|
+
</td>
|
21
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
|
+
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
23
|
+
<td><a accesskey="p" href="poppler-PopplerAction.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
+
<td><a accesskey="n" href="PopplerFormField.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
25
|
+
</tr></table>
|
26
|
+
<div class="refentry">
|
27
|
+
<a name="PopplerAttachment"></a><div class="titlepage"></div>
|
28
|
+
<div class="refnamediv"><table width="100%"><tr>
|
29
|
+
<td valign="top">
|
30
|
+
<h2><span class="refentrytitle"><a name="PopplerAttachment.top_of_page"></a>PopplerAttachment</span></h2>
|
31
|
+
<p>PopplerAttachment — Attachments</p>
|
32
|
+
</td>
|
33
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
34
|
+
</tr></table></div>
|
35
|
+
<div class="refsect1">
|
36
|
+
<a name="PopplerAttachment.functions"></a><h2>Functions</h2>
|
37
|
+
<div class="informaltable"><table width="100%" border="0">
|
38
|
+
<colgroup>
|
39
|
+
<col width="150px" class="functions_return">
|
40
|
+
<col class="functions_name">
|
41
|
+
</colgroup>
|
42
|
+
<tbody>
|
43
|
+
<tr>
|
44
|
+
<td class="function_type">
|
45
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
46
|
+
</td>
|
47
|
+
<td class="function_name">
|
48
|
+
<span class="c_punctuation">(</span><a class="link" href="PopplerAttachment.html#PopplerAttachmentSaveFunc" title="PopplerAttachmentSaveFunc ()">*PopplerAttachmentSaveFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
49
|
+
</td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td class="function_type">
|
53
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
54
|
+
</td>
|
55
|
+
<td class="function_name">
|
56
|
+
<a class="link" href="PopplerAttachment.html#poppler-attachment-save" title="poppler_attachment_save ()">poppler_attachment_save</a> <span class="c_punctuation">()</span>
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
<tr>
|
60
|
+
<td class="function_type">
|
61
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
62
|
+
</td>
|
63
|
+
<td class="function_name">
|
64
|
+
<a class="link" href="PopplerAttachment.html#poppler-attachment-save-to-callback" title="poppler_attachment_save_to_callback ()">poppler_attachment_save_to_callback</a> <span class="c_punctuation">()</span>
|
65
|
+
</td>
|
66
|
+
</tr>
|
67
|
+
</tbody>
|
68
|
+
</table></div>
|
69
|
+
</div>
|
70
|
+
<div class="refsect1">
|
71
|
+
<a name="PopplerAttachment.other"></a><h2>Types and Values</h2>
|
72
|
+
<div class="informaltable"><table width="100%" border="0">
|
73
|
+
<colgroup>
|
74
|
+
<col width="150px" class="name">
|
75
|
+
<col class="description">
|
76
|
+
</colgroup>
|
77
|
+
<tbody><tr>
|
78
|
+
<td class="datatype_keyword"> </td>
|
79
|
+
<td class="function_name"><a class="link" href="PopplerAttachment.html#PopplerAttachment-struct" title="PopplerAttachment">PopplerAttachment</a></td>
|
80
|
+
</tr></tbody>
|
81
|
+
</table></div>
|
82
|
+
</div>
|
83
|
+
<div class="refsect1">
|
84
|
+
<a name="PopplerAttachment.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
85
|
+
<pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
86
|
+
<span class="lineart">╰──</span> PopplerAttachment
|
87
|
+
</pre>
|
88
|
+
</div>
|
89
|
+
<div class="refsect1">
|
90
|
+
<a name="PopplerAttachment.includes"></a><h2>Includes</h2>
|
91
|
+
<pre class="synopsis">#include <poppler.h>
|
92
|
+
</pre>
|
93
|
+
</div>
|
94
|
+
<div class="refsect1">
|
95
|
+
<a name="PopplerAttachment.description"></a><h2>Description</h2>
|
96
|
+
</div>
|
97
|
+
<div class="refsect1">
|
98
|
+
<a name="PopplerAttachment.functions_details"></a><h2>Functions</h2>
|
99
|
+
<div class="refsect2">
|
100
|
+
<a name="PopplerAttachmentSaveFunc"></a><h3>PopplerAttachmentSaveFunc ()</h3>
|
101
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
102
|
+
<span class="c_punctuation">(</span>*PopplerAttachmentSaveFunc<span class="c_punctuation">)</span> (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buf</code></em>,
|
103
|
+
<em class="parameter"><code><span class="type">gsize</span> count</code></em>,
|
104
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
105
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
106
|
+
<p>Specifies the type of the function passed to
|
107
|
+
<a class="link" href="PopplerAttachment.html#poppler-attachment-save-to-callback" title="poppler_attachment_save_to_callback ()"><code class="function">poppler_attachment_save_to_callback()</code></a>. It is called once for each block of
|
108
|
+
bytes that is "written" by <a class="link" href="PopplerAttachment.html#poppler-attachment-save-to-callback" title="poppler_attachment_save_to_callback ()"><code class="function">poppler_attachment_save_to_callback()</code></a>. If
|
109
|
+
successful it should return <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. If an error occurs it should set
|
110
|
+
<em class="parameter"><code>error</code></em>
|
111
|
+
and return <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, in which case <a class="link" href="PopplerAttachment.html#poppler-attachment-save-to-callback" title="poppler_attachment_save_to_callback ()"><code class="function">poppler_attachment_save_to_callback()</code></a>
|
112
|
+
will fail with the same error.</p>
|
113
|
+
<div class="refsect3">
|
114
|
+
<a name="id-1.2.6.8.2.5"></a><h4>Parameters</h4>
|
115
|
+
<div class="informaltable"><table width="100%" border="0">
|
116
|
+
<colgroup>
|
117
|
+
<col width="150px" class="parameters_name">
|
118
|
+
<col class="parameters_description">
|
119
|
+
<col width="200px" class="parameters_annotations">
|
120
|
+
</colgroup>
|
121
|
+
<tbody>
|
122
|
+
<tr>
|
123
|
+
<td class="parameter_name"><p>buf</p></td>
|
124
|
+
<td class="parameter_description"><p> buffer containing
|
125
|
+
bytes to be written. </p></td>
|
126
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=count][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> guint8]</span></td>
|
127
|
+
</tr>
|
128
|
+
<tr>
|
129
|
+
<td class="parameter_name"><p>count</p></td>
|
130
|
+
<td class="parameter_description"><p>number of bytes in <em class="parameter"><code>buf</code></em>
|
131
|
+
.</p></td>
|
132
|
+
<td class="parameter_annotations"> </td>
|
133
|
+
</tr>
|
134
|
+
<tr>
|
135
|
+
<td class="parameter_name"><p>data</p></td>
|
136
|
+
<td class="parameter_description"><p> user data passed to <a class="link" href="PopplerAttachment.html#poppler-attachment-save-to-callback" title="poppler_attachment_save_to_callback ()"><code class="function">poppler_attachment_save_to_callback()</code></a>. </p></td>
|
137
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td class="parameter_name"><p>error</p></td>
|
141
|
+
<td class="parameter_description"><p>GError to set on error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
142
|
+
<td class="parameter_annotations"> </td>
|
143
|
+
</tr>
|
144
|
+
</tbody>
|
145
|
+
</table></div>
|
146
|
+
</div>
|
147
|
+
<div class="refsect3">
|
148
|
+
<a name="id-1.2.6.8.2.6"></a><h4>Returns</h4>
|
149
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if successful, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> (with <em class="parameter"><code>error</code></em>
|
150
|
+
set) if failed.</p>
|
151
|
+
<p></p>
|
152
|
+
</div>
|
153
|
+
</div>
|
154
|
+
<hr>
|
155
|
+
<div class="refsect2">
|
156
|
+
<a name="poppler-attachment-save"></a><h3>poppler_attachment_save ()</h3>
|
157
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
158
|
+
poppler_attachment_save (<em class="parameter"><code><a class="link" href="PopplerAttachment.html" title="PopplerAttachment"><span class="type">PopplerAttachment</span></a> *attachment</code></em>,
|
159
|
+
<em class="parameter"><code>const <span class="type">char</span> *filename</code></em>,
|
160
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
161
|
+
<p>Saves <em class="parameter"><code>attachment</code></em>
|
162
|
+
to a file indicated by <em class="parameter"><code>filename</code></em>
|
163
|
+
. If <em class="parameter"><code>error</code></em>
|
164
|
+
is set, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
|
165
|
+
will be returned. Possible errors include those in the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a> domain
|
166
|
+
and whatever the save function generates.</p>
|
167
|
+
<div class="refsect3">
|
168
|
+
<a name="id-1.2.6.8.3.5"></a><h4>Parameters</h4>
|
169
|
+
<div class="informaltable"><table width="100%" border="0">
|
170
|
+
<colgroup>
|
171
|
+
<col width="150px" class="parameters_name">
|
172
|
+
<col class="parameters_description">
|
173
|
+
<col width="200px" class="parameters_annotations">
|
174
|
+
</colgroup>
|
175
|
+
<tbody>
|
176
|
+
<tr>
|
177
|
+
<td class="parameter_name"><p>attachment</p></td>
|
178
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerAttachment.html" title="PopplerAttachment"><span class="type">PopplerAttachment</span></a>.</p></td>
|
179
|
+
<td class="parameter_annotations"> </td>
|
180
|
+
</tr>
|
181
|
+
<tr>
|
182
|
+
<td class="parameter_name"><p>filename</p></td>
|
183
|
+
<td class="parameter_description"><p>name of file to save</p></td>
|
184
|
+
<td class="parameter_annotations"> </td>
|
185
|
+
</tr>
|
186
|
+
<tr>
|
187
|
+
<td class="parameter_name"><p>error</p></td>
|
188
|
+
<td class="parameter_description"><p> return location for error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
189
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
190
|
+
</tr>
|
191
|
+
</tbody>
|
192
|
+
</table></div>
|
193
|
+
</div>
|
194
|
+
<div class="refsect3">
|
195
|
+
<a name="id-1.2.6.8.3.6"></a><h4>Returns</h4>
|
196
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the file successfully saved</p>
|
197
|
+
<p></p>
|
198
|
+
</div>
|
199
|
+
</div>
|
200
|
+
<hr>
|
201
|
+
<div class="refsect2">
|
202
|
+
<a name="poppler-attachment-save-to-callback"></a><h3>poppler_attachment_save_to_callback ()</h3>
|
203
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
204
|
+
poppler_attachment_save_to_callback (<em class="parameter"><code><a class="link" href="PopplerAttachment.html" title="PopplerAttachment"><span class="type">PopplerAttachment</span></a> *attachment</code></em>,
|
205
|
+
<em class="parameter"><code><a class="link" href="PopplerAttachment.html#PopplerAttachmentSaveFunc" title="PopplerAttachmentSaveFunc ()"><span class="type">PopplerAttachmentSaveFunc</span></a> save_func</code></em>,
|
206
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
|
207
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
208
|
+
<p>Saves <em class="parameter"><code>attachment</code></em>
|
209
|
+
by feeding the produced data to <em class="parameter"><code>save_func</code></em>
|
210
|
+
. Can be used
|
211
|
+
when you want to store the attachment to something other than a file, such as
|
212
|
+
an in-memory buffer or a socket. If <em class="parameter"><code>error</code></em>
|
213
|
+
is set, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> will be
|
214
|
+
returned. Possible errors include those in the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a> domain and
|
215
|
+
whatever the save function generates.</p>
|
216
|
+
<div class="refsect3">
|
217
|
+
<a name="id-1.2.6.8.4.5"></a><h4>Parameters</h4>
|
218
|
+
<div class="informaltable"><table width="100%" border="0">
|
219
|
+
<colgroup>
|
220
|
+
<col width="150px" class="parameters_name">
|
221
|
+
<col class="parameters_description">
|
222
|
+
<col width="200px" class="parameters_annotations">
|
223
|
+
</colgroup>
|
224
|
+
<tbody>
|
225
|
+
<tr>
|
226
|
+
<td class="parameter_name"><p>attachment</p></td>
|
227
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerAttachment.html" title="PopplerAttachment"><span class="type">PopplerAttachment</span></a>.</p></td>
|
228
|
+
<td class="parameter_annotations"> </td>
|
229
|
+
</tr>
|
230
|
+
<tr>
|
231
|
+
<td class="parameter_name"><p>save_func</p></td>
|
232
|
+
<td class="parameter_description"><p> a function that is called to save each block of data that the save routine generates. </p></td>
|
233
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span></td>
|
234
|
+
</tr>
|
235
|
+
<tr>
|
236
|
+
<td class="parameter_name"><p>user_data</p></td>
|
237
|
+
<td class="parameter_description"><p>user data to pass to the save function.</p></td>
|
238
|
+
<td class="parameter_annotations"> </td>
|
239
|
+
</tr>
|
240
|
+
<tr>
|
241
|
+
<td class="parameter_name"><p>error</p></td>
|
242
|
+
<td class="parameter_description"><p> return location for error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
243
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
244
|
+
</tr>
|
245
|
+
</tbody>
|
246
|
+
</table></div>
|
247
|
+
</div>
|
248
|
+
<div class="refsect3">
|
249
|
+
<a name="id-1.2.6.8.4.6"></a><h4>Returns</h4>
|
250
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the save successfully completed</p>
|
251
|
+
<p></p>
|
252
|
+
</div>
|
253
|
+
</div>
|
254
|
+
</div>
|
255
|
+
<div class="refsect1">
|
256
|
+
<a name="PopplerAttachment.other_details"></a><h2>Types and Values</h2>
|
257
|
+
<div class="refsect2">
|
258
|
+
<a name="PopplerAttachment-struct"></a><h3>PopplerAttachment</h3>
|
259
|
+
<pre class="programlisting">typedef struct _PopplerAttachment PopplerAttachment;</pre>
|
260
|
+
</div>
|
261
|
+
</div>
|
262
|
+
</div>
|
263
|
+
<div class="footer">
|
264
|
+
<hr>
|
265
|
+
Generated by GTK-Doc V1.21</div>
|
266
|
+
</body>
|
267
|
+
</html>
|
@@ -0,0 +1,3328 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Poppler Reference Manual: PopplerDocument</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Poppler Reference Manual">
|
8
|
+
<link rel="up" href="ch01.html" title="Poppler">
|
9
|
+
<link rel="prev" href="poppler-poppler.html" title="poppler">
|
10
|
+
<link rel="next" href="PopplerPage.html" title="PopplerPage">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#PopplerDocument.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#PopplerDocument.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span>
|
20
|
+
<a href="#PopplerDocument.properties" class="shortcut">Properties</a></span>
|
21
|
+
</td>
|
22
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
23
|
+
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
24
|
+
<td><a accesskey="p" href="poppler-poppler.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
25
|
+
<td><a accesskey="n" href="PopplerPage.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
26
|
+
</tr></table>
|
27
|
+
<div class="refentry">
|
28
|
+
<a name="PopplerDocument"></a><div class="titlepage"></div>
|
29
|
+
<div class="refnamediv"><table width="100%"><tr>
|
30
|
+
<td valign="top">
|
31
|
+
<h2><span class="refentrytitle"><a name="PopplerDocument.top_of_page"></a>PopplerDocument</span></h2>
|
32
|
+
<p>PopplerDocument — Information about a document</p>
|
33
|
+
</td>
|
34
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
35
|
+
</tr></table></div>
|
36
|
+
<div class="refsect1">
|
37
|
+
<a name="PopplerDocument.functions"></a><h2>Functions</h2>
|
38
|
+
<div class="informaltable"><table width="100%" border="0">
|
39
|
+
<colgroup>
|
40
|
+
<col width="150px" class="functions_return">
|
41
|
+
<col class="functions_name">
|
42
|
+
</colgroup>
|
43
|
+
<tbody>
|
44
|
+
<tr>
|
45
|
+
<td class="function_type">
|
46
|
+
<a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
47
|
+
</td>
|
48
|
+
<td class="function_name">
|
49
|
+
<a class="link" href="PopplerDocument.html#poppler-document-new-from-file" title="poppler_document_new_from_file ()">poppler_document_new_from_file</a> <span class="c_punctuation">()</span>
|
50
|
+
</td>
|
51
|
+
</tr>
|
52
|
+
<tr>
|
53
|
+
<td class="function_type">
|
54
|
+
<a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
55
|
+
</td>
|
56
|
+
<td class="function_name">
|
57
|
+
<a class="link" href="PopplerDocument.html#poppler-document-new-from-data" title="poppler_document_new_from_data ()">poppler_document_new_from_data</a> <span class="c_punctuation">()</span>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
<tr>
|
61
|
+
<td class="function_type">
|
62
|
+
<a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
63
|
+
</td>
|
64
|
+
<td class="function_name">
|
65
|
+
<a class="link" href="PopplerDocument.html#poppler-document-new-from-stream" title="poppler_document_new_from_stream ()">poppler_document_new_from_stream</a> <span class="c_punctuation">()</span>
|
66
|
+
</td>
|
67
|
+
</tr>
|
68
|
+
<tr>
|
69
|
+
<td class="function_type">
|
70
|
+
<a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
71
|
+
</td>
|
72
|
+
<td class="function_name">
|
73
|
+
<a class="link" href="PopplerDocument.html#poppler-document-new-from-gfile" title="poppler_document_new_from_gfile ()">poppler_document_new_from_gfile</a> <span class="c_punctuation">()</span>
|
74
|
+
</td>
|
75
|
+
</tr>
|
76
|
+
<tr>
|
77
|
+
<td class="function_type">
|
78
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
79
|
+
</td>
|
80
|
+
<td class="function_name">
|
81
|
+
<a class="link" href="PopplerDocument.html#poppler-document-save" title="poppler_document_save ()">poppler_document_save</a> <span class="c_punctuation">()</span>
|
82
|
+
</td>
|
83
|
+
</tr>
|
84
|
+
<tr>
|
85
|
+
<td class="function_type">
|
86
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
87
|
+
</td>
|
88
|
+
<td class="function_name">
|
89
|
+
<a class="link" href="PopplerDocument.html#poppler-document-save-a-copy" title="poppler_document_save_a_copy ()">poppler_document_save_a_copy</a> <span class="c_punctuation">()</span>
|
90
|
+
</td>
|
91
|
+
</tr>
|
92
|
+
<tr>
|
93
|
+
<td class="function_type">
|
94
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
95
|
+
</td>
|
96
|
+
<td class="function_name">
|
97
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-id" title="poppler_document_get_id ()">poppler_document_get_id</a> <span class="c_punctuation">()</span>
|
98
|
+
</td>
|
99
|
+
</tr>
|
100
|
+
<tr>
|
101
|
+
<td class="function_type">
|
102
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
103
|
+
</td>
|
104
|
+
<td class="function_name">
|
105
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-pdf-version-string" title="poppler_document_get_pdf_version_string ()">poppler_document_get_pdf_version_string</a> <span class="c_punctuation">()</span>
|
106
|
+
</td>
|
107
|
+
</tr>
|
108
|
+
<tr>
|
109
|
+
<td class="function_type">
|
110
|
+
<span class="returnvalue">void</span>
|
111
|
+
</td>
|
112
|
+
<td class="function_name">
|
113
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-pdf-version" title="poppler_document_get_pdf_version ()">poppler_document_get_pdf_version</a> <span class="c_punctuation">()</span>
|
114
|
+
</td>
|
115
|
+
</tr>
|
116
|
+
<tr>
|
117
|
+
<td class="function_type">
|
118
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
119
|
+
</td>
|
120
|
+
<td class="function_name">
|
121
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-title" title="poppler_document_get_title ()">poppler_document_get_title</a> <span class="c_punctuation">()</span>
|
122
|
+
</td>
|
123
|
+
</tr>
|
124
|
+
<tr>
|
125
|
+
<td class="function_type">
|
126
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
127
|
+
</td>
|
128
|
+
<td class="function_name">
|
129
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-author" title="poppler_document_get_author ()">poppler_document_get_author</a> <span class="c_punctuation">()</span>
|
130
|
+
</td>
|
131
|
+
</tr>
|
132
|
+
<tr>
|
133
|
+
<td class="function_type">
|
134
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
135
|
+
</td>
|
136
|
+
<td class="function_name">
|
137
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-subject" title="poppler_document_get_subject ()">poppler_document_get_subject</a> <span class="c_punctuation">()</span>
|
138
|
+
</td>
|
139
|
+
</tr>
|
140
|
+
<tr>
|
141
|
+
<td class="function_type">
|
142
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
143
|
+
</td>
|
144
|
+
<td class="function_name">
|
145
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-keywords" title="poppler_document_get_keywords ()">poppler_document_get_keywords</a> <span class="c_punctuation">()</span>
|
146
|
+
</td>
|
147
|
+
</tr>
|
148
|
+
<tr>
|
149
|
+
<td class="function_type">
|
150
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
151
|
+
</td>
|
152
|
+
<td class="function_name">
|
153
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-creator" title="poppler_document_get_creator ()">poppler_document_get_creator</a> <span class="c_punctuation">()</span>
|
154
|
+
</td>
|
155
|
+
</tr>
|
156
|
+
<tr>
|
157
|
+
<td class="function_type">
|
158
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
159
|
+
</td>
|
160
|
+
<td class="function_name">
|
161
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-producer" title="poppler_document_get_producer ()">poppler_document_get_producer</a> <span class="c_punctuation">()</span>
|
162
|
+
</td>
|
163
|
+
</tr>
|
164
|
+
<tr>
|
165
|
+
<td class="function_type">
|
166
|
+
<span class="returnvalue">time_t</span>
|
167
|
+
</td>
|
168
|
+
<td class="function_name">
|
169
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-creation-date" title="poppler_document_get_creation_date ()">poppler_document_get_creation_date</a> <span class="c_punctuation">()</span>
|
170
|
+
</td>
|
171
|
+
</tr>
|
172
|
+
<tr>
|
173
|
+
<td class="function_type">
|
174
|
+
<span class="returnvalue">time_t</span>
|
175
|
+
</td>
|
176
|
+
<td class="function_name">
|
177
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-modification-date" title="poppler_document_get_modification_date ()">poppler_document_get_modification_date</a> <span class="c_punctuation">()</span>
|
178
|
+
</td>
|
179
|
+
</tr>
|
180
|
+
<tr>
|
181
|
+
<td class="function_type">
|
182
|
+
<a class="link" href="PopplerDocument.html#PopplerPageLayout" title="enum PopplerPageLayout"><span class="returnvalue">PopplerPageLayout</span></a>
|
183
|
+
</td>
|
184
|
+
<td class="function_name">
|
185
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-page-layout" title="poppler_document_get_page_layout ()">poppler_document_get_page_layout</a> <span class="c_punctuation">()</span>
|
186
|
+
</td>
|
187
|
+
</tr>
|
188
|
+
<tr>
|
189
|
+
<td class="function_type">
|
190
|
+
<a class="link" href="PopplerDocument.html#PopplerPageMode" title="enum PopplerPageMode"><span class="returnvalue">PopplerPageMode</span></a>
|
191
|
+
</td>
|
192
|
+
<td class="function_name">
|
193
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-page-mode" title="poppler_document_get_page_mode ()">poppler_document_get_page_mode</a> <span class="c_punctuation">()</span>
|
194
|
+
</td>
|
195
|
+
</tr>
|
196
|
+
<tr>
|
197
|
+
<td class="function_type">
|
198
|
+
<a class="link" href="PopplerDocument.html#PopplerPermissions" title="enum PopplerPermissions"><span class="returnvalue">PopplerPermissions</span></a>
|
199
|
+
</td>
|
200
|
+
<td class="function_name">
|
201
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-permissions" title="poppler_document_get_permissions ()">poppler_document_get_permissions</a> <span class="c_punctuation">()</span>
|
202
|
+
</td>
|
203
|
+
</tr>
|
204
|
+
<tr>
|
205
|
+
<td class="function_type">
|
206
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
207
|
+
</td>
|
208
|
+
<td class="function_name">
|
209
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-metadata" title="poppler_document_get_metadata ()">poppler_document_get_metadata</a> <span class="c_punctuation">()</span>
|
210
|
+
</td>
|
211
|
+
</tr>
|
212
|
+
<tr>
|
213
|
+
<td class="function_type">
|
214
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
215
|
+
</td>
|
216
|
+
<td class="function_name">
|
217
|
+
<a class="link" href="PopplerDocument.html#poppler-document-is-linearized" title="poppler_document_is_linearized ()">poppler_document_is_linearized</a> <span class="c_punctuation">()</span>
|
218
|
+
</td>
|
219
|
+
</tr>
|
220
|
+
<tr>
|
221
|
+
<td class="function_type">
|
222
|
+
<span class="returnvalue">int</span>
|
223
|
+
</td>
|
224
|
+
<td class="function_name">
|
225
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-n-pages" title="poppler_document_get_n_pages ()">poppler_document_get_n_pages</a> <span class="c_punctuation">()</span>
|
226
|
+
</td>
|
227
|
+
</tr>
|
228
|
+
<tr>
|
229
|
+
<td class="function_type">
|
230
|
+
<a class="link" href="PopplerPage.html" title="PopplerPage"><span class="returnvalue">PopplerPage</span></a> *
|
231
|
+
</td>
|
232
|
+
<td class="function_name">
|
233
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-page" title="poppler_document_get_page ()">poppler_document_get_page</a> <span class="c_punctuation">()</span>
|
234
|
+
</td>
|
235
|
+
</tr>
|
236
|
+
<tr>
|
237
|
+
<td class="function_type">
|
238
|
+
<a class="link" href="PopplerPage.html" title="PopplerPage"><span class="returnvalue">PopplerPage</span></a> *
|
239
|
+
</td>
|
240
|
+
<td class="function_name">
|
241
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-page-by-label" title="poppler_document_get_page_by_label ()">poppler_document_get_page_by_label</a> <span class="c_punctuation">()</span>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
<tr>
|
245
|
+
<td class="function_type">
|
246
|
+
<a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="returnvalue">PopplerDest</span></a> *
|
247
|
+
</td>
|
248
|
+
<td class="function_name">
|
249
|
+
<a class="link" href="PopplerDocument.html#poppler-document-find-dest" title="poppler_document_find_dest ()">poppler_document_find_dest</a> <span class="c_punctuation">()</span>
|
250
|
+
</td>
|
251
|
+
</tr>
|
252
|
+
<tr>
|
253
|
+
<td class="function_type">
|
254
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
255
|
+
</td>
|
256
|
+
<td class="function_name">
|
257
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-n-attachments" title="poppler_document_get_n_attachments ()">poppler_document_get_n_attachments</a> <span class="c_punctuation">()</span>
|
258
|
+
</td>
|
259
|
+
</tr>
|
260
|
+
<tr>
|
261
|
+
<td class="function_type">
|
262
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
263
|
+
</td>
|
264
|
+
<td class="function_name">
|
265
|
+
<a class="link" href="PopplerDocument.html#poppler-document-has-attachments" title="poppler_document_has_attachments ()">poppler_document_has_attachments</a> <span class="c_punctuation">()</span>
|
266
|
+
</td>
|
267
|
+
</tr>
|
268
|
+
<tr>
|
269
|
+
<td class="function_type">
|
270
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
|
271
|
+
</td>
|
272
|
+
<td class="function_name">
|
273
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-attachments" title="poppler_document_get_attachments ()">poppler_document_get_attachments</a> <span class="c_punctuation">()</span>
|
274
|
+
</td>
|
275
|
+
</tr>
|
276
|
+
<tr>
|
277
|
+
<td class="function_type">
|
278
|
+
<a class="link" href="PopplerFormField.html" title="PoppplerFormField"><span class="returnvalue">PopplerFormField</span></a> *
|
279
|
+
</td>
|
280
|
+
<td class="function_name">
|
281
|
+
<a class="link" href="PopplerDocument.html#poppler-document-get-form-field" title="poppler_document_get_form_field ()">poppler_document_get_form_field</a> <span class="c_punctuation">()</span>
|
282
|
+
</td>
|
283
|
+
</tr>
|
284
|
+
<tr>
|
285
|
+
<td class="function_type">
|
286
|
+
<a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="returnvalue">PopplerIndexIter</span></a> *
|
287
|
+
</td>
|
288
|
+
<td class="function_name">
|
289
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-new" title="poppler_index_iter_new ()">poppler_index_iter_new</a> <span class="c_punctuation">()</span>
|
290
|
+
</td>
|
291
|
+
</tr>
|
292
|
+
<tr>
|
293
|
+
<td class="function_type">
|
294
|
+
<a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="returnvalue">PopplerIndexIter</span></a> *
|
295
|
+
</td>
|
296
|
+
<td class="function_name">
|
297
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-copy" title="poppler_index_iter_copy ()">poppler_index_iter_copy</a> <span class="c_punctuation">()</span>
|
298
|
+
</td>
|
299
|
+
</tr>
|
300
|
+
<tr>
|
301
|
+
<td class="function_type">
|
302
|
+
<span class="returnvalue">void</span>
|
303
|
+
</td>
|
304
|
+
<td class="function_name">
|
305
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-free" title="poppler_index_iter_free ()">poppler_index_iter_free</a> <span class="c_punctuation">()</span>
|
306
|
+
</td>
|
307
|
+
</tr>
|
308
|
+
<tr>
|
309
|
+
<td class="function_type">
|
310
|
+
<a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="returnvalue">PopplerIndexIter</span></a> *
|
311
|
+
</td>
|
312
|
+
<td class="function_name">
|
313
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-get-child" title="poppler_index_iter_get_child ()">poppler_index_iter_get_child</a> <span class="c_punctuation">()</span>
|
314
|
+
</td>
|
315
|
+
</tr>
|
316
|
+
<tr>
|
317
|
+
<td class="function_type">
|
318
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
319
|
+
</td>
|
320
|
+
<td class="function_name">
|
321
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-is-open" title="poppler_index_iter_is_open ()">poppler_index_iter_is_open</a> <span class="c_punctuation">()</span>
|
322
|
+
</td>
|
323
|
+
</tr>
|
324
|
+
<tr>
|
325
|
+
<td class="function_type">
|
326
|
+
<a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="returnvalue">PopplerAction</span></a> *
|
327
|
+
</td>
|
328
|
+
<td class="function_name">
|
329
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-get-action" title="poppler_index_iter_get_action ()">poppler_index_iter_get_action</a> <span class="c_punctuation">()</span>
|
330
|
+
</td>
|
331
|
+
</tr>
|
332
|
+
<tr>
|
333
|
+
<td class="function_type">
|
334
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
335
|
+
</td>
|
336
|
+
<td class="function_name">
|
337
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-next" title="poppler_index_iter_next ()">poppler_index_iter_next</a> <span class="c_punctuation">()</span>
|
338
|
+
</td>
|
339
|
+
</tr>
|
340
|
+
<tr>
|
341
|
+
<td class="function_type">
|
342
|
+
<a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo"><span class="returnvalue">PopplerFontInfo</span></a> *
|
343
|
+
</td>
|
344
|
+
<td class="function_name">
|
345
|
+
<a class="link" href="PopplerDocument.html#poppler-font-info-new" title="poppler_font_info_new ()">poppler_font_info_new</a> <span class="c_punctuation">()</span>
|
346
|
+
</td>
|
347
|
+
</tr>
|
348
|
+
<tr>
|
349
|
+
<td class="function_type">
|
350
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
351
|
+
</td>
|
352
|
+
<td class="function_name">
|
353
|
+
<a class="link" href="PopplerDocument.html#poppler-font-info-scan" title="poppler_font_info_scan ()">poppler_font_info_scan</a> <span class="c_punctuation">()</span>
|
354
|
+
</td>
|
355
|
+
</tr>
|
356
|
+
<tr>
|
357
|
+
<td class="function_type">
|
358
|
+
<span class="returnvalue">void</span>
|
359
|
+
</td>
|
360
|
+
<td class="function_name">
|
361
|
+
<a class="link" href="PopplerDocument.html#poppler-font-info-free" title="poppler_font_info_free ()">poppler_font_info_free</a> <span class="c_punctuation">()</span>
|
362
|
+
</td>
|
363
|
+
</tr>
|
364
|
+
<tr>
|
365
|
+
<td class="function_type">
|
366
|
+
<a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="returnvalue">PopplerFontsIter</span></a> *
|
367
|
+
</td>
|
368
|
+
<td class="function_name">
|
369
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-copy" title="poppler_fonts_iter_copy ()">poppler_fonts_iter_copy</a> <span class="c_punctuation">()</span>
|
370
|
+
</td>
|
371
|
+
</tr>
|
372
|
+
<tr>
|
373
|
+
<td class="function_type">
|
374
|
+
<span class="returnvalue">void</span>
|
375
|
+
</td>
|
376
|
+
<td class="function_name">
|
377
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-free" title="poppler_fonts_iter_free ()">poppler_fonts_iter_free</a> <span class="c_punctuation">()</span>
|
378
|
+
</td>
|
379
|
+
</tr>
|
380
|
+
<tr>
|
381
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
382
|
+
</td>
|
383
|
+
<td class="function_name">
|
384
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-get-name" title="poppler_fonts_iter_get_name ()">poppler_fonts_iter_get_name</a> <span class="c_punctuation">()</span>
|
385
|
+
</td>
|
386
|
+
</tr>
|
387
|
+
<tr>
|
388
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
389
|
+
</td>
|
390
|
+
<td class="function_name">
|
391
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-get-full-name" title="poppler_fonts_iter_get_full_name ()">poppler_fonts_iter_get_full_name</a> <span class="c_punctuation">()</span>
|
392
|
+
</td>
|
393
|
+
</tr>
|
394
|
+
<tr>
|
395
|
+
<td class="function_type">
|
396
|
+
<a class="link" href="PopplerDocument.html#PopplerFontType" title="enum PopplerFontType"><span class="returnvalue">PopplerFontType</span></a>
|
397
|
+
</td>
|
398
|
+
<td class="function_name">
|
399
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-get-font-type" title="poppler_fonts_iter_get_font_type ()">poppler_fonts_iter_get_font_type</a> <span class="c_punctuation">()</span>
|
400
|
+
</td>
|
401
|
+
</tr>
|
402
|
+
<tr>
|
403
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
404
|
+
</td>
|
405
|
+
<td class="function_name">
|
406
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-get-substitute-name" title="poppler_fonts_iter_get_substitute_name ()">poppler_fonts_iter_get_substitute_name</a> <span class="c_punctuation">()</span>
|
407
|
+
</td>
|
408
|
+
</tr>
|
409
|
+
<tr>
|
410
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
411
|
+
</td>
|
412
|
+
<td class="function_name">
|
413
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-get-file-name" title="poppler_fonts_iter_get_file_name ()">poppler_fonts_iter_get_file_name</a> <span class="c_punctuation">()</span>
|
414
|
+
</td>
|
415
|
+
</tr>
|
416
|
+
<tr>
|
417
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
418
|
+
</td>
|
419
|
+
<td class="function_name">
|
420
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-get-encoding" title="poppler_fonts_iter_get_encoding ()">poppler_fonts_iter_get_encoding</a> <span class="c_punctuation">()</span>
|
421
|
+
</td>
|
422
|
+
</tr>
|
423
|
+
<tr>
|
424
|
+
<td class="function_type">
|
425
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
426
|
+
</td>
|
427
|
+
<td class="function_name">
|
428
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-is-embedded" title="poppler_fonts_iter_is_embedded ()">poppler_fonts_iter_is_embedded</a> <span class="c_punctuation">()</span>
|
429
|
+
</td>
|
430
|
+
</tr>
|
431
|
+
<tr>
|
432
|
+
<td class="function_type">
|
433
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
434
|
+
</td>
|
435
|
+
<td class="function_name">
|
436
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-is-subset" title="poppler_fonts_iter_is_subset ()">poppler_fonts_iter_is_subset</a> <span class="c_punctuation">()</span>
|
437
|
+
</td>
|
438
|
+
</tr>
|
439
|
+
<tr>
|
440
|
+
<td class="function_type">
|
441
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
442
|
+
</td>
|
443
|
+
<td class="function_name">
|
444
|
+
<a class="link" href="PopplerDocument.html#poppler-fonts-iter-next" title="poppler_fonts_iter_next ()">poppler_fonts_iter_next</a> <span class="c_punctuation">()</span>
|
445
|
+
</td>
|
446
|
+
</tr>
|
447
|
+
<tr>
|
448
|
+
<td class="function_type">
|
449
|
+
<a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="returnvalue">PopplerLayersIter</span></a> *
|
450
|
+
</td>
|
451
|
+
<td class="function_name">
|
452
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-new" title="poppler_layers_iter_new ()">poppler_layers_iter_new</a> <span class="c_punctuation">()</span>
|
453
|
+
</td>
|
454
|
+
</tr>
|
455
|
+
<tr>
|
456
|
+
<td class="function_type">
|
457
|
+
<a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="returnvalue">PopplerLayersIter</span></a> *
|
458
|
+
</td>
|
459
|
+
<td class="function_name">
|
460
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-copy" title="poppler_layers_iter_copy ()">poppler_layers_iter_copy</a> <span class="c_punctuation">()</span>
|
461
|
+
</td>
|
462
|
+
</tr>
|
463
|
+
<tr>
|
464
|
+
<td class="function_type">
|
465
|
+
<span class="returnvalue">void</span>
|
466
|
+
</td>
|
467
|
+
<td class="function_name">
|
468
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-free" title="poppler_layers_iter_free ()">poppler_layers_iter_free</a> <span class="c_punctuation">()</span>
|
469
|
+
</td>
|
470
|
+
</tr>
|
471
|
+
<tr>
|
472
|
+
<td class="function_type">
|
473
|
+
<a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="returnvalue">PopplerLayersIter</span></a> *
|
474
|
+
</td>
|
475
|
+
<td class="function_name">
|
476
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-get-child" title="poppler_layers_iter_get_child ()">poppler_layers_iter_get_child</a> <span class="c_punctuation">()</span>
|
477
|
+
</td>
|
478
|
+
</tr>
|
479
|
+
<tr>
|
480
|
+
<td class="function_type">
|
481
|
+
<a class="link" href="PopplerLayer.html" title="PopplerLayer"><span class="returnvalue">PopplerLayer</span></a> *
|
482
|
+
</td>
|
483
|
+
<td class="function_name">
|
484
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-get-layer" title="poppler_layers_iter_get_layer ()">poppler_layers_iter_get_layer</a> <span class="c_punctuation">()</span>
|
485
|
+
</td>
|
486
|
+
</tr>
|
487
|
+
<tr>
|
488
|
+
<td class="function_type">
|
489
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
490
|
+
</td>
|
491
|
+
<td class="function_name">
|
492
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-get-title" title="poppler_layers_iter_get_title ()">poppler_layers_iter_get_title</a> <span class="c_punctuation">()</span>
|
493
|
+
</td>
|
494
|
+
</tr>
|
495
|
+
<tr>
|
496
|
+
<td class="function_type">
|
497
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
498
|
+
</td>
|
499
|
+
<td class="function_name">
|
500
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-next" title="poppler_layers_iter_next ()">poppler_layers_iter_next</a> <span class="c_punctuation">()</span>
|
501
|
+
</td>
|
502
|
+
</tr>
|
503
|
+
<tr>
|
504
|
+
<td class="function_type">
|
505
|
+
<a class="link" href="PopplerDocument.html#PopplerPSFile" title="PopplerPSFile"><span class="returnvalue">PopplerPSFile</span></a> *
|
506
|
+
</td>
|
507
|
+
<td class="function_name">
|
508
|
+
<a class="link" href="PopplerDocument.html#poppler-ps-file-new" title="poppler_ps_file_new ()">poppler_ps_file_new</a> <span class="c_punctuation">()</span>
|
509
|
+
</td>
|
510
|
+
</tr>
|
511
|
+
<tr>
|
512
|
+
<td class="function_type">
|
513
|
+
<span class="returnvalue">void</span>
|
514
|
+
</td>
|
515
|
+
<td class="function_name">
|
516
|
+
<a class="link" href="PopplerDocument.html#poppler-ps-file-free" title="poppler_ps_file_free ()">poppler_ps_file_free</a> <span class="c_punctuation">()</span>
|
517
|
+
</td>
|
518
|
+
</tr>
|
519
|
+
<tr>
|
520
|
+
<td class="function_type">
|
521
|
+
<span class="returnvalue">void</span>
|
522
|
+
</td>
|
523
|
+
<td class="function_name">
|
524
|
+
<a class="link" href="PopplerDocument.html#poppler-ps-file-set-paper-size" title="poppler_ps_file_set_paper_size ()">poppler_ps_file_set_paper_size</a> <span class="c_punctuation">()</span>
|
525
|
+
</td>
|
526
|
+
</tr>
|
527
|
+
<tr>
|
528
|
+
<td class="function_type">
|
529
|
+
<span class="returnvalue">void</span>
|
530
|
+
</td>
|
531
|
+
<td class="function_name">
|
532
|
+
<a class="link" href="PopplerDocument.html#poppler-ps-file-set-duplex" title="poppler_ps_file_set_duplex ()">poppler_ps_file_set_duplex</a> <span class="c_punctuation">()</span>
|
533
|
+
</td>
|
534
|
+
</tr>
|
535
|
+
</tbody>
|
536
|
+
</table></div>
|
537
|
+
</div>
|
538
|
+
<div class="refsect1">
|
539
|
+
<a name="PopplerDocument.properties"></a><h2>Properties</h2>
|
540
|
+
<div class="informaltable"><table border="0">
|
541
|
+
<colgroup>
|
542
|
+
<col width="150px" class="properties_type">
|
543
|
+
<col width="300px" class="properties_name">
|
544
|
+
<col width="200px" class="properties_flags">
|
545
|
+
</colgroup>
|
546
|
+
<tbody>
|
547
|
+
<tr>
|
548
|
+
<td class="property_type">
|
549
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
550
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--author" title="The “author” property">author</a></td>
|
551
|
+
<td class="property_flags">Read</td>
|
552
|
+
</tr>
|
553
|
+
<tr>
|
554
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
555
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--creation-date" title="The “creation-date” property">creation-date</a></td>
|
556
|
+
<td class="property_flags">Read</td>
|
557
|
+
</tr>
|
558
|
+
<tr>
|
559
|
+
<td class="property_type">
|
560
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
561
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--creator" title="The “creator” property">creator</a></td>
|
562
|
+
<td class="property_flags">Read</td>
|
563
|
+
</tr>
|
564
|
+
<tr>
|
565
|
+
<td class="property_type">
|
566
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
567
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--format" title="The “format” property">format</a></td>
|
568
|
+
<td class="property_flags">Read</td>
|
569
|
+
</tr>
|
570
|
+
<tr>
|
571
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
|
572
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--format-major" title="The “format-major” property">format-major</a></td>
|
573
|
+
<td class="property_flags">Read</td>
|
574
|
+
</tr>
|
575
|
+
<tr>
|
576
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
|
577
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--format-minor" title="The “format-minor” property">format-minor</a></td>
|
578
|
+
<td class="property_flags">Read</td>
|
579
|
+
</tr>
|
580
|
+
<tr>
|
581
|
+
<td class="property_type">
|
582
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
583
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--keywords" title="The “keywords” property">keywords</a></td>
|
584
|
+
<td class="property_flags">Read</td>
|
585
|
+
</tr>
|
586
|
+
<tr>
|
587
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
588
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--linearized" title="The “linearized” property">linearized</a></td>
|
589
|
+
<td class="property_flags">Read</td>
|
590
|
+
</tr>
|
591
|
+
<tr>
|
592
|
+
<td class="property_type">
|
593
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
594
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--metadata" title="The “metadata” property">metadata</a></td>
|
595
|
+
<td class="property_flags">Read</td>
|
596
|
+
</tr>
|
597
|
+
<tr>
|
598
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
599
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--mod-date" title="The “mod-date” property">mod-date</a></td>
|
600
|
+
<td class="property_flags">Read</td>
|
601
|
+
</tr>
|
602
|
+
<tr>
|
603
|
+
<td class="property_type"><a class="link" href="PopplerDocument.html#PopplerPageLayout" title="enum PopplerPageLayout"><span class="type">PopplerPageLayout</span></a></td>
|
604
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--page-layout" title="The “page-layout” property">page-layout</a></td>
|
605
|
+
<td class="property_flags">Read</td>
|
606
|
+
</tr>
|
607
|
+
<tr>
|
608
|
+
<td class="property_type"><a class="link" href="PopplerDocument.html#PopplerPageMode" title="enum PopplerPageMode"><span class="type">PopplerPageMode</span></a></td>
|
609
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--page-mode" title="The “page-mode” property">page-mode</a></td>
|
610
|
+
<td class="property_flags">Read</td>
|
611
|
+
</tr>
|
612
|
+
<tr>
|
613
|
+
<td class="property_type"><a class="link" href="PopplerDocument.html#PopplerPermissions" title="enum PopplerPermissions"><span class="type">PopplerPermissions</span></a></td>
|
614
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--permissions" title="The “permissions” property">permissions</a></td>
|
615
|
+
<td class="property_flags">Read</td>
|
616
|
+
</tr>
|
617
|
+
<tr>
|
618
|
+
<td class="property_type">
|
619
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
620
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--producer" title="The “producer” property">producer</a></td>
|
621
|
+
<td class="property_flags">Read</td>
|
622
|
+
</tr>
|
623
|
+
<tr>
|
624
|
+
<td class="property_type">
|
625
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
626
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--subject" title="The “subject” property">subject</a></td>
|
627
|
+
<td class="property_flags">Read</td>
|
628
|
+
</tr>
|
629
|
+
<tr>
|
630
|
+
<td class="property_type">
|
631
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
632
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--title" title="The “title” property">title</a></td>
|
633
|
+
<td class="property_flags">Read</td>
|
634
|
+
</tr>
|
635
|
+
<tr>
|
636
|
+
<td class="property_type"><a class="link" href="PopplerDocument.html#PopplerViewerPreferences" title="enum PopplerViewerPreferences"><span class="type">PopplerViewerPreferences</span></a></td>
|
637
|
+
<td class="property_name"><a class="link" href="PopplerDocument.html#PopplerDocument--viewer-preferences" title="The “viewer-preferences” property">viewer-preferences</a></td>
|
638
|
+
<td class="property_flags">Read</td>
|
639
|
+
</tr>
|
640
|
+
</tbody>
|
641
|
+
</table></div>
|
642
|
+
</div>
|
643
|
+
<div class="refsect1">
|
644
|
+
<a name="PopplerDocument.other"></a><h2>Types and Values</h2>
|
645
|
+
<div class="informaltable"><table width="100%" border="0">
|
646
|
+
<colgroup>
|
647
|
+
<col width="150px" class="name">
|
648
|
+
<col class="description">
|
649
|
+
</colgroup>
|
650
|
+
<tbody>
|
651
|
+
<tr>
|
652
|
+
<td class="datatype_keyword"> </td>
|
653
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerDocument-struct" title="PopplerDocument">PopplerDocument</a></td>
|
654
|
+
</tr>
|
655
|
+
<tr>
|
656
|
+
<td class="datatype_keyword"> </td>
|
657
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter">PopplerIndexIter</a></td>
|
658
|
+
</tr>
|
659
|
+
<tr>
|
660
|
+
<td class="datatype_keyword"> </td>
|
661
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter">PopplerFontsIter</a></td>
|
662
|
+
</tr>
|
663
|
+
<tr>
|
664
|
+
<td class="datatype_keyword"> </td>
|
665
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter">PopplerLayersIter</a></td>
|
666
|
+
</tr>
|
667
|
+
<tr>
|
668
|
+
<td class="datatype_keyword">enum</td>
|
669
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerPageLayout" title="enum PopplerPageLayout">PopplerPageLayout</a></td>
|
670
|
+
</tr>
|
671
|
+
<tr>
|
672
|
+
<td class="datatype_keyword">enum</td>
|
673
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerPageMode" title="enum PopplerPageMode">PopplerPageMode</a></td>
|
674
|
+
</tr>
|
675
|
+
<tr>
|
676
|
+
<td class="datatype_keyword"> </td>
|
677
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo">PopplerFontInfo</a></td>
|
678
|
+
</tr>
|
679
|
+
<tr>
|
680
|
+
<td class="datatype_keyword">enum</td>
|
681
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerFontType" title="enum PopplerFontType">PopplerFontType</a></td>
|
682
|
+
</tr>
|
683
|
+
<tr>
|
684
|
+
<td class="datatype_keyword"> </td>
|
685
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerPSFile" title="PopplerPSFile">PopplerPSFile</a></td>
|
686
|
+
</tr>
|
687
|
+
<tr>
|
688
|
+
<td class="datatype_keyword">enum</td>
|
689
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerViewerPreferences" title="enum PopplerViewerPreferences">PopplerViewerPreferences</a></td>
|
690
|
+
</tr>
|
691
|
+
<tr>
|
692
|
+
<td class="datatype_keyword">enum</td>
|
693
|
+
<td class="function_name"><a class="link" href="PopplerDocument.html#PopplerPermissions" title="enum PopplerPermissions">PopplerPermissions</a></td>
|
694
|
+
</tr>
|
695
|
+
</tbody>
|
696
|
+
</table></div>
|
697
|
+
</div>
|
698
|
+
<div class="refsect1">
|
699
|
+
<a name="PopplerDocument.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
700
|
+
<pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
701
|
+
<span class="lineart">╰──</span> PopplerDocument
|
702
|
+
</pre>
|
703
|
+
</div>
|
704
|
+
<div class="refsect1">
|
705
|
+
<a name="PopplerDocument.includes"></a><h2>Includes</h2>
|
706
|
+
<pre class="synopsis">#include <poppler.h>
|
707
|
+
</pre>
|
708
|
+
</div>
|
709
|
+
<div class="refsect1">
|
710
|
+
<a name="PopplerDocument.description"></a><h2>Description</h2>
|
711
|
+
<p>The <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> is an object used to refer to a main document.</p>
|
712
|
+
</div>
|
713
|
+
<div class="refsect1">
|
714
|
+
<a name="PopplerDocument.functions_details"></a><h2>Functions</h2>
|
715
|
+
<div class="refsect2">
|
716
|
+
<a name="poppler-document-new-from-file"></a><h3>poppler_document_new_from_file ()</h3>
|
717
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
718
|
+
poppler_document_new_from_file (<em class="parameter"><code>const <span class="type">char</span> *uri</code></em>,
|
719
|
+
<em class="parameter"><code>const <span class="type">char</span> *password</code></em>,
|
720
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
721
|
+
<p>Creates a new <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>. If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned, then <em class="parameter"><code>error</code></em>
|
722
|
+
will be
|
723
|
+
set. Possible errors include those in the <a class="link" href="poppler-poppler.html#POPPLER-ERROR:CAPS" title="POPPLER_ERROR"><span class="type">POPPLER_ERROR</span></a> and <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a>
|
724
|
+
domains.</p>
|
725
|
+
<div class="refsect3">
|
726
|
+
<a name="id-1.2.3.9.2.5"></a><h4>Parameters</h4>
|
727
|
+
<div class="informaltable"><table width="100%" border="0">
|
728
|
+
<colgroup>
|
729
|
+
<col width="150px" class="parameters_name">
|
730
|
+
<col class="parameters_description">
|
731
|
+
<col width="200px" class="parameters_annotations">
|
732
|
+
</colgroup>
|
733
|
+
<tbody>
|
734
|
+
<tr>
|
735
|
+
<td class="parameter_name"><p>uri</p></td>
|
736
|
+
<td class="parameter_description"><p>uri of the file to load</p></td>
|
737
|
+
<td class="parameter_annotations"> </td>
|
738
|
+
</tr>
|
739
|
+
<tr>
|
740
|
+
<td class="parameter_name"><p>password</p></td>
|
741
|
+
<td class="parameter_description"><p> password to unlock the file with, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
742
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
743
|
+
</tr>
|
744
|
+
<tr>
|
745
|
+
<td class="parameter_name"><p>error</p></td>
|
746
|
+
<td class="parameter_description"><p> Return location for an error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
747
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
748
|
+
</tr>
|
749
|
+
</tbody>
|
750
|
+
</table></div>
|
751
|
+
</div>
|
752
|
+
<div class="refsect3">
|
753
|
+
<a name="id-1.2.3.9.2.6"></a><h4>Returns</h4>
|
754
|
+
<p> A newly created <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
755
|
+
<p></p>
|
756
|
+
</div>
|
757
|
+
</div>
|
758
|
+
<hr>
|
759
|
+
<div class="refsect2">
|
760
|
+
<a name="poppler-document-new-from-data"></a><h3>poppler_document_new_from_data ()</h3>
|
761
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
762
|
+
poppler_document_new_from_data (<em class="parameter"><code><span class="type">char</span> *data</code></em>,
|
763
|
+
<em class="parameter"><code><span class="type">int</span> length</code></em>,
|
764
|
+
<em class="parameter"><code>const <span class="type">char</span> *password</code></em>,
|
765
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
766
|
+
<p>Creates a new <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>. If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned, then <em class="parameter"><code>error</code></em>
|
767
|
+
will be
|
768
|
+
set. Possible errors include those in the <a class="link" href="poppler-poppler.html#POPPLER-ERROR:CAPS" title="POPPLER_ERROR"><span class="type">POPPLER_ERROR</span></a> and <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a>
|
769
|
+
domains.</p>
|
770
|
+
<div class="refsect3">
|
771
|
+
<a name="id-1.2.3.9.3.5"></a><h4>Parameters</h4>
|
772
|
+
<div class="informaltable"><table width="100%" border="0">
|
773
|
+
<colgroup>
|
774
|
+
<col width="150px" class="parameters_name">
|
775
|
+
<col class="parameters_description">
|
776
|
+
<col width="200px" class="parameters_annotations">
|
777
|
+
</colgroup>
|
778
|
+
<tbody>
|
779
|
+
<tr>
|
780
|
+
<td class="parameter_name"><p>data</p></td>
|
781
|
+
<td class="parameter_description"><p>the pdf data contained in a char array</p></td>
|
782
|
+
<td class="parameter_annotations"> </td>
|
783
|
+
</tr>
|
784
|
+
<tr>
|
785
|
+
<td class="parameter_name"><p>length</p></td>
|
786
|
+
<td class="parameter_description"><p>the length of <span class="type">data</span></p></td>
|
787
|
+
<td class="parameter_annotations"> </td>
|
788
|
+
</tr>
|
789
|
+
<tr>
|
790
|
+
<td class="parameter_name"><p>password</p></td>
|
791
|
+
<td class="parameter_description"><p> password to unlock the file with, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
792
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
793
|
+
</tr>
|
794
|
+
<tr>
|
795
|
+
<td class="parameter_name"><p>error</p></td>
|
796
|
+
<td class="parameter_description"><p> Return location for an error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
797
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
798
|
+
</tr>
|
799
|
+
</tbody>
|
800
|
+
</table></div>
|
801
|
+
</div>
|
802
|
+
<div class="refsect3">
|
803
|
+
<a name="id-1.2.3.9.3.6"></a><h4>Returns</h4>
|
804
|
+
<p> A newly created <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
805
|
+
<p></p>
|
806
|
+
</div>
|
807
|
+
</div>
|
808
|
+
<hr>
|
809
|
+
<div class="refsect2">
|
810
|
+
<a name="poppler-document-new-from-stream"></a><h3>poppler_document_new_from_stream ()</h3>
|
811
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
812
|
+
poppler_document_new_from_stream (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GInputStream.html"><span class="type">GInputStream</span></a> *stream</code></em>,
|
813
|
+
<em class="parameter"><code><span class="type">goffset</span> length</code></em>,
|
814
|
+
<em class="parameter"><code>const <span class="type">char</span> *password</code></em>,
|
815
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
|
816
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
817
|
+
<p>Creates a new <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> reading the PDF contents from <em class="parameter"><code>stream</code></em>
|
818
|
+
.
|
819
|
+
Note that the given <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GInputStream.html"><span class="type">GInputStream</span></a> must be seekable or <code class="literal">G_IO_ERROR_NOT_SUPPORTED</code>
|
820
|
+
will be returned.
|
821
|
+
Possible errors include those in the <a class="link" href="poppler-poppler.html#POPPLER-ERROR:CAPS" title="POPPLER_ERROR"><span class="type">POPPLER_ERROR</span></a> and <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a>
|
822
|
+
domains.</p>
|
823
|
+
<div class="refsect3">
|
824
|
+
<a name="id-1.2.3.9.4.5"></a><h4>Parameters</h4>
|
825
|
+
<div class="informaltable"><table width="100%" border="0">
|
826
|
+
<colgroup>
|
827
|
+
<col width="150px" class="parameters_name">
|
828
|
+
<col class="parameters_description">
|
829
|
+
<col width="200px" class="parameters_annotations">
|
830
|
+
</colgroup>
|
831
|
+
<tbody>
|
832
|
+
<tr>
|
833
|
+
<td class="parameter_name"><p>stream</p></td>
|
834
|
+
<td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GInputStream.html"><span class="type">GInputStream</span></a> to read from</p></td>
|
835
|
+
<td class="parameter_annotations"> </td>
|
836
|
+
</tr>
|
837
|
+
<tr>
|
838
|
+
<td class="parameter_name"><p>length</p></td>
|
839
|
+
<td class="parameter_description"><p>the stream length, or -1 if not known</p></td>
|
840
|
+
<td class="parameter_annotations"> </td>
|
841
|
+
</tr>
|
842
|
+
<tr>
|
843
|
+
<td class="parameter_name"><p>password</p></td>
|
844
|
+
<td class="parameter_description"><p> password to unlock the file with, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
845
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
846
|
+
</tr>
|
847
|
+
<tr>
|
848
|
+
<td class="parameter_name"><p>cancellable</p></td>
|
849
|
+
<td class="parameter_description"><p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
850
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
851
|
+
</tr>
|
852
|
+
<tr>
|
853
|
+
<td class="parameter_name"><p>error</p></td>
|
854
|
+
<td class="parameter_description"><p> Return location for an error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
855
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
856
|
+
</tr>
|
857
|
+
</tbody>
|
858
|
+
</table></div>
|
859
|
+
</div>
|
860
|
+
<div class="refsect3">
|
861
|
+
<a name="id-1.2.3.9.4.6"></a><h4>Returns</h4>
|
862
|
+
<p> a new <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
863
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
864
|
+
</div>
|
865
|
+
<p class="since">Since 0.22</p>
|
866
|
+
</div>
|
867
|
+
<hr>
|
868
|
+
<div class="refsect2">
|
869
|
+
<a name="poppler-document-new-from-gfile"></a><h3>poppler_document_new_from_gfile ()</h3>
|
870
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="returnvalue">PopplerDocument</span></a> *
|
871
|
+
poppler_document_new_from_gfile (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="type">GFile</span></a> *file</code></em>,
|
872
|
+
<em class="parameter"><code>const <span class="type">char</span> *password</code></em>,
|
873
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
|
874
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
875
|
+
<p>Creates a new <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> reading the PDF contents from <em class="parameter"><code>file</code></em>
|
876
|
+
.
|
877
|
+
Possible errors include those in the <a class="link" href="poppler-poppler.html#POPPLER-ERROR:CAPS" title="POPPLER_ERROR"><span class="type">POPPLER_ERROR</span></a> and <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a>
|
878
|
+
domains.</p>
|
879
|
+
<div class="refsect3">
|
880
|
+
<a name="id-1.2.3.9.5.5"></a><h4>Parameters</h4>
|
881
|
+
<div class="informaltable"><table width="100%" border="0">
|
882
|
+
<colgroup>
|
883
|
+
<col width="150px" class="parameters_name">
|
884
|
+
<col class="parameters_description">
|
885
|
+
<col width="200px" class="parameters_annotations">
|
886
|
+
</colgroup>
|
887
|
+
<tbody>
|
888
|
+
<tr>
|
889
|
+
<td class="parameter_name"><p>file</p></td>
|
890
|
+
<td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="type">GFile</span></a> to load</p></td>
|
891
|
+
<td class="parameter_annotations"> </td>
|
892
|
+
</tr>
|
893
|
+
<tr>
|
894
|
+
<td class="parameter_name"><p>password</p></td>
|
895
|
+
<td class="parameter_description"><p> password to unlock the file with, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
896
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
897
|
+
</tr>
|
898
|
+
<tr>
|
899
|
+
<td class="parameter_name"><p>cancellable</p></td>
|
900
|
+
<td class="parameter_description"><p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
901
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
902
|
+
</tr>
|
903
|
+
<tr>
|
904
|
+
<td class="parameter_name"><p>error</p></td>
|
905
|
+
<td class="parameter_description"><p> Return location for an error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
906
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
907
|
+
</tr>
|
908
|
+
</tbody>
|
909
|
+
</table></div>
|
910
|
+
</div>
|
911
|
+
<div class="refsect3">
|
912
|
+
<a name="id-1.2.3.9.5.6"></a><h4>Returns</h4>
|
913
|
+
<p> a new <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
914
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
915
|
+
</div>
|
916
|
+
<p class="since">Since 0.22</p>
|
917
|
+
</div>
|
918
|
+
<hr>
|
919
|
+
<div class="refsect2">
|
920
|
+
<a name="poppler-document-save"></a><h3>poppler_document_save ()</h3>
|
921
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
922
|
+
poppler_document_save (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
923
|
+
<em class="parameter"><code>const <span class="type">char</span> *uri</code></em>,
|
924
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
925
|
+
<p>Saves <em class="parameter"><code>document</code></em>
|
926
|
+
. Any change made in the document such as
|
927
|
+
form fields filled, annotations added or modified
|
928
|
+
will be saved.
|
929
|
+
If <em class="parameter"><code>error</code></em>
|
930
|
+
is set, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> will be returned. Possible errors
|
931
|
+
include those in the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a> domain.</p>
|
932
|
+
<div class="refsect3">
|
933
|
+
<a name="id-1.2.3.9.6.5"></a><h4>Parameters</h4>
|
934
|
+
<div class="informaltable"><table width="100%" border="0">
|
935
|
+
<colgroup>
|
936
|
+
<col width="150px" class="parameters_name">
|
937
|
+
<col class="parameters_description">
|
938
|
+
<col width="200px" class="parameters_annotations">
|
939
|
+
</colgroup>
|
940
|
+
<tbody>
|
941
|
+
<tr>
|
942
|
+
<td class="parameter_name"><p>document</p></td>
|
943
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
944
|
+
<td class="parameter_annotations"> </td>
|
945
|
+
</tr>
|
946
|
+
<tr>
|
947
|
+
<td class="parameter_name"><p>uri</p></td>
|
948
|
+
<td class="parameter_description"><p>uri of file to save</p></td>
|
949
|
+
<td class="parameter_annotations"> </td>
|
950
|
+
</tr>
|
951
|
+
<tr>
|
952
|
+
<td class="parameter_name"><p>error</p></td>
|
953
|
+
<td class="parameter_description"><p> return location for an error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
954
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
955
|
+
</tr>
|
956
|
+
</tbody>
|
957
|
+
</table></div>
|
958
|
+
</div>
|
959
|
+
<div class="refsect3">
|
960
|
+
<a name="id-1.2.3.9.6.6"></a><h4>Returns</h4>
|
961
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the document was successfully saved</p>
|
962
|
+
<p></p>
|
963
|
+
</div>
|
964
|
+
</div>
|
965
|
+
<hr>
|
966
|
+
<div class="refsect2">
|
967
|
+
<a name="poppler-document-save-a-copy"></a><h3>poppler_document_save_a_copy ()</h3>
|
968
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
969
|
+
poppler_document_save_a_copy (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
970
|
+
<em class="parameter"><code>const <span class="type">char</span> *uri</code></em>,
|
971
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
972
|
+
<p>Saves a copy of the original <em class="parameter"><code>document</code></em>
|
973
|
+
.
|
974
|
+
Any change made in the document such as
|
975
|
+
form fields filled by the user will not be saved.
|
976
|
+
If <em class="parameter"><code>error</code></em>
|
977
|
+
is set, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> will be returned. Possible errors
|
978
|
+
include those in the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS"><span class="type">G_FILE_ERROR</span></a> domain.</p>
|
979
|
+
<div class="refsect3">
|
980
|
+
<a name="id-1.2.3.9.7.5"></a><h4>Parameters</h4>
|
981
|
+
<div class="informaltable"><table width="100%" border="0">
|
982
|
+
<colgroup>
|
983
|
+
<col width="150px" class="parameters_name">
|
984
|
+
<col class="parameters_description">
|
985
|
+
<col width="200px" class="parameters_annotations">
|
986
|
+
</colgroup>
|
987
|
+
<tbody>
|
988
|
+
<tr>
|
989
|
+
<td class="parameter_name"><p>document</p></td>
|
990
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
991
|
+
<td class="parameter_annotations"> </td>
|
992
|
+
</tr>
|
993
|
+
<tr>
|
994
|
+
<td class="parameter_name"><p>uri</p></td>
|
995
|
+
<td class="parameter_description"><p>uri of file to save</p></td>
|
996
|
+
<td class="parameter_annotations"> </td>
|
997
|
+
</tr>
|
998
|
+
<tr>
|
999
|
+
<td class="parameter_name"><p>error</p></td>
|
1000
|
+
<td class="parameter_description"><p> return location for an error, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1001
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1002
|
+
</tr>
|
1003
|
+
</tbody>
|
1004
|
+
</table></div>
|
1005
|
+
</div>
|
1006
|
+
<div class="refsect3">
|
1007
|
+
<a name="id-1.2.3.9.7.6"></a><h4>Returns</h4>
|
1008
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the document was successfully saved</p>
|
1009
|
+
<p></p>
|
1010
|
+
</div>
|
1011
|
+
</div>
|
1012
|
+
<hr>
|
1013
|
+
<div class="refsect2">
|
1014
|
+
<a name="poppler-document-get-id"></a><h3>poppler_document_get_id ()</h3>
|
1015
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1016
|
+
poppler_document_get_id (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
1017
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **permanent_id</code></em>,
|
1018
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **update_id</code></em>);</pre>
|
1019
|
+
<p>Returns the PDF file identifier represented as two byte string arrays of size 32.
|
1020
|
+
<em class="parameter"><code>permanent_id</code></em>
|
1021
|
+
is the permanent identifier that is built based on the file
|
1022
|
+
contents at the time it was originally created, so that this identifer
|
1023
|
+
never changes. <em class="parameter"><code>update_id</code></em>
|
1024
|
+
is the update identifier that is built based on
|
1025
|
+
the file contents at the time it was last updated.</p>
|
1026
|
+
<p>Note that returned strings are not null-terminated, they have a fixed
|
1027
|
+
size of 32 bytes.</p>
|
1028
|
+
<div class="refsect3">
|
1029
|
+
<a name="id-1.2.3.9.8.6"></a><h4>Parameters</h4>
|
1030
|
+
<div class="informaltable"><table width="100%" border="0">
|
1031
|
+
<colgroup>
|
1032
|
+
<col width="150px" class="parameters_name">
|
1033
|
+
<col class="parameters_description">
|
1034
|
+
<col width="200px" class="parameters_annotations">
|
1035
|
+
</colgroup>
|
1036
|
+
<tbody>
|
1037
|
+
<tr>
|
1038
|
+
<td class="parameter_name"><p>document</p></td>
|
1039
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1040
|
+
<td class="parameter_annotations"> </td>
|
1041
|
+
</tr>
|
1042
|
+
<tr>
|
1043
|
+
<td class="parameter_name"><p>permanent_id</p></td>
|
1044
|
+
<td class="parameter_description"><p> location to store an allocated string, use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> to free the returned string. </p></td>
|
1045
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1046
|
+
</tr>
|
1047
|
+
<tr>
|
1048
|
+
<td class="parameter_name"><p>update_id</p></td>
|
1049
|
+
<td class="parameter_description"><p> location to store an allocated string, use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> to free the returned string. </p></td>
|
1050
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1051
|
+
</tr>
|
1052
|
+
</tbody>
|
1053
|
+
</table></div>
|
1054
|
+
</div>
|
1055
|
+
<div class="refsect3">
|
1056
|
+
<a name="id-1.2.3.9.8.7"></a><h4>Returns</h4>
|
1057
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the <em class="parameter"><code>document</code></em>
|
1058
|
+
contains an id, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
|
1059
|
+
<p></p>
|
1060
|
+
</div>
|
1061
|
+
<p class="since">Since 0.16</p>
|
1062
|
+
</div>
|
1063
|
+
<hr>
|
1064
|
+
<div class="refsect2">
|
1065
|
+
<a name="poppler-document-get-pdf-version-string"></a><h3>poppler_document_get_pdf_version_string ()</h3>
|
1066
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1067
|
+
poppler_document_get_pdf_version_string
|
1068
|
+
(<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1069
|
+
<p>Returns the PDF version of <em class="parameter"><code>document</code></em>
|
1070
|
+
as a string (e.g. PDF-1.6)</p>
|
1071
|
+
<div class="refsect3">
|
1072
|
+
<a name="id-1.2.3.9.9.5"></a><h4>Parameters</h4>
|
1073
|
+
<div class="informaltable"><table width="100%" border="0">
|
1074
|
+
<colgroup>
|
1075
|
+
<col width="150px" class="parameters_name">
|
1076
|
+
<col class="parameters_description">
|
1077
|
+
<col width="200px" class="parameters_annotations">
|
1078
|
+
</colgroup>
|
1079
|
+
<tbody><tr>
|
1080
|
+
<td class="parameter_name"><p>document</p></td>
|
1081
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1082
|
+
<td class="parameter_annotations"> </td>
|
1083
|
+
</tr></tbody>
|
1084
|
+
</table></div>
|
1085
|
+
</div>
|
1086
|
+
<div class="refsect3">
|
1087
|
+
<a name="id-1.2.3.9.9.6"></a><h4>Returns</h4>
|
1088
|
+
<p> a new allocated string containing the PDF version
|
1089
|
+
of <em class="parameter"><code>document</code></em>
|
1090
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1091
|
+
<p></p>
|
1092
|
+
</div>
|
1093
|
+
<p class="since">Since 0.16</p>
|
1094
|
+
</div>
|
1095
|
+
<hr>
|
1096
|
+
<div class="refsect2">
|
1097
|
+
<a name="poppler-document-get-pdf-version"></a><h3>poppler_document_get_pdf_version ()</h3>
|
1098
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1099
|
+
poppler_document_get_pdf_version (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
1100
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *major_version</code></em>,
|
1101
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *minor_version</code></em>);</pre>
|
1102
|
+
<div class="refsect3">
|
1103
|
+
<a name="id-1.2.3.9.10.4"></a><h4>Parameters</h4>
|
1104
|
+
<div class="informaltable"><table width="100%" border="0">
|
1105
|
+
<colgroup>
|
1106
|
+
<col width="150px" class="parameters_name">
|
1107
|
+
<col class="parameters_description">
|
1108
|
+
<col width="200px" class="parameters_annotations">
|
1109
|
+
</colgroup>
|
1110
|
+
<tbody>
|
1111
|
+
<tr>
|
1112
|
+
<td class="parameter_name"><p>document</p></td>
|
1113
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1114
|
+
<td class="parameter_annotations"> </td>
|
1115
|
+
</tr>
|
1116
|
+
<tr>
|
1117
|
+
<td class="parameter_name"><p>major_version</p></td>
|
1118
|
+
<td class="parameter_description"><p> return location for the PDF major version number. </p></td>
|
1119
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1120
|
+
</tr>
|
1121
|
+
<tr>
|
1122
|
+
<td class="parameter_name"><p>minor_version</p></td>
|
1123
|
+
<td class="parameter_description"><p> return location for the PDF minor version number. </p></td>
|
1124
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1125
|
+
</tr>
|
1126
|
+
</tbody>
|
1127
|
+
</table></div>
|
1128
|
+
</div>
|
1129
|
+
<div class="refsect3">
|
1130
|
+
<a name="id-1.2.3.9.10.5"></a><h4>Returns</h4>
|
1131
|
+
<p> the major and minor PDF version numbers</p>
|
1132
|
+
<p></p>
|
1133
|
+
</div>
|
1134
|
+
<p class="since">Since 0.16</p>
|
1135
|
+
</div>
|
1136
|
+
<hr>
|
1137
|
+
<div class="refsect2">
|
1138
|
+
<a name="poppler-document-get-title"></a><h3>poppler_document_get_title ()</h3>
|
1139
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1140
|
+
poppler_document_get_title (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1141
|
+
<p>Returns the document's title</p>
|
1142
|
+
<div class="refsect3">
|
1143
|
+
<a name="id-1.2.3.9.11.5"></a><h4>Parameters</h4>
|
1144
|
+
<div class="informaltable"><table width="100%" border="0">
|
1145
|
+
<colgroup>
|
1146
|
+
<col width="150px" class="parameters_name">
|
1147
|
+
<col class="parameters_description">
|
1148
|
+
<col width="200px" class="parameters_annotations">
|
1149
|
+
</colgroup>
|
1150
|
+
<tbody><tr>
|
1151
|
+
<td class="parameter_name"><p>document</p></td>
|
1152
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1153
|
+
<td class="parameter_annotations"> </td>
|
1154
|
+
</tr></tbody>
|
1155
|
+
</table></div>
|
1156
|
+
</div>
|
1157
|
+
<div class="refsect3">
|
1158
|
+
<a name="id-1.2.3.9.11.6"></a><h4>Returns</h4>
|
1159
|
+
<p> a new allocated string containing the title
|
1160
|
+
of <em class="parameter"><code>document</code></em>
|
1161
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1162
|
+
<p></p>
|
1163
|
+
</div>
|
1164
|
+
<p class="since">Since 0.16</p>
|
1165
|
+
</div>
|
1166
|
+
<hr>
|
1167
|
+
<div class="refsect2">
|
1168
|
+
<a name="poppler-document-get-author"></a><h3>poppler_document_get_author ()</h3>
|
1169
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1170
|
+
poppler_document_get_author (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1171
|
+
<p>Returns the author of the document</p>
|
1172
|
+
<div class="refsect3">
|
1173
|
+
<a name="id-1.2.3.9.12.5"></a><h4>Parameters</h4>
|
1174
|
+
<div class="informaltable"><table width="100%" border="0">
|
1175
|
+
<colgroup>
|
1176
|
+
<col width="150px" class="parameters_name">
|
1177
|
+
<col class="parameters_description">
|
1178
|
+
<col width="200px" class="parameters_annotations">
|
1179
|
+
</colgroup>
|
1180
|
+
<tbody><tr>
|
1181
|
+
<td class="parameter_name"><p>document</p></td>
|
1182
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1183
|
+
<td class="parameter_annotations"> </td>
|
1184
|
+
</tr></tbody>
|
1185
|
+
</table></div>
|
1186
|
+
</div>
|
1187
|
+
<div class="refsect3">
|
1188
|
+
<a name="id-1.2.3.9.12.6"></a><h4>Returns</h4>
|
1189
|
+
<p> a new allocated string containing the author
|
1190
|
+
of <em class="parameter"><code>document</code></em>
|
1191
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1192
|
+
<p></p>
|
1193
|
+
</div>
|
1194
|
+
<p class="since">Since 0.16</p>
|
1195
|
+
</div>
|
1196
|
+
<hr>
|
1197
|
+
<div class="refsect2">
|
1198
|
+
<a name="poppler-document-get-subject"></a><h3>poppler_document_get_subject ()</h3>
|
1199
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1200
|
+
poppler_document_get_subject (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1201
|
+
<p>Returns the subject of the document</p>
|
1202
|
+
<div class="refsect3">
|
1203
|
+
<a name="id-1.2.3.9.13.5"></a><h4>Parameters</h4>
|
1204
|
+
<div class="informaltable"><table width="100%" border="0">
|
1205
|
+
<colgroup>
|
1206
|
+
<col width="150px" class="parameters_name">
|
1207
|
+
<col class="parameters_description">
|
1208
|
+
<col width="200px" class="parameters_annotations">
|
1209
|
+
</colgroup>
|
1210
|
+
<tbody><tr>
|
1211
|
+
<td class="parameter_name"><p>document</p></td>
|
1212
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1213
|
+
<td class="parameter_annotations"> </td>
|
1214
|
+
</tr></tbody>
|
1215
|
+
</table></div>
|
1216
|
+
</div>
|
1217
|
+
<div class="refsect3">
|
1218
|
+
<a name="id-1.2.3.9.13.6"></a><h4>Returns</h4>
|
1219
|
+
<p> a new allocated string containing the subject
|
1220
|
+
of <em class="parameter"><code>document</code></em>
|
1221
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1222
|
+
<p></p>
|
1223
|
+
</div>
|
1224
|
+
<p class="since">Since 0.16</p>
|
1225
|
+
</div>
|
1226
|
+
<hr>
|
1227
|
+
<div class="refsect2">
|
1228
|
+
<a name="poppler-document-get-keywords"></a><h3>poppler_document_get_keywords ()</h3>
|
1229
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1230
|
+
poppler_document_get_keywords (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1231
|
+
<p>Returns the keywords associated to the document</p>
|
1232
|
+
<div class="refsect3">
|
1233
|
+
<a name="id-1.2.3.9.14.5"></a><h4>Parameters</h4>
|
1234
|
+
<div class="informaltable"><table width="100%" border="0">
|
1235
|
+
<colgroup>
|
1236
|
+
<col width="150px" class="parameters_name">
|
1237
|
+
<col class="parameters_description">
|
1238
|
+
<col width="200px" class="parameters_annotations">
|
1239
|
+
</colgroup>
|
1240
|
+
<tbody><tr>
|
1241
|
+
<td class="parameter_name"><p>document</p></td>
|
1242
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1243
|
+
<td class="parameter_annotations"> </td>
|
1244
|
+
</tr></tbody>
|
1245
|
+
</table></div>
|
1246
|
+
</div>
|
1247
|
+
<div class="refsect3">
|
1248
|
+
<a name="id-1.2.3.9.14.6"></a><h4>Returns</h4>
|
1249
|
+
<p> a new allocated string containing keywords associated
|
1250
|
+
to <em class="parameter"><code>document</code></em>
|
1251
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1252
|
+
<p></p>
|
1253
|
+
</div>
|
1254
|
+
<p class="since">Since 0.16</p>
|
1255
|
+
</div>
|
1256
|
+
<hr>
|
1257
|
+
<div class="refsect2">
|
1258
|
+
<a name="poppler-document-get-creator"></a><h3>poppler_document_get_creator ()</h3>
|
1259
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1260
|
+
poppler_document_get_creator (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1261
|
+
<p>Returns the creator of the document. If the document was converted
|
1262
|
+
from another format, the creator is the name of the product
|
1263
|
+
that created the original document from which it was converted.</p>
|
1264
|
+
<div class="refsect3">
|
1265
|
+
<a name="id-1.2.3.9.15.5"></a><h4>Parameters</h4>
|
1266
|
+
<div class="informaltable"><table width="100%" border="0">
|
1267
|
+
<colgroup>
|
1268
|
+
<col width="150px" class="parameters_name">
|
1269
|
+
<col class="parameters_description">
|
1270
|
+
<col width="200px" class="parameters_annotations">
|
1271
|
+
</colgroup>
|
1272
|
+
<tbody><tr>
|
1273
|
+
<td class="parameter_name"><p>document</p></td>
|
1274
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1275
|
+
<td class="parameter_annotations"> </td>
|
1276
|
+
</tr></tbody>
|
1277
|
+
</table></div>
|
1278
|
+
</div>
|
1279
|
+
<div class="refsect3">
|
1280
|
+
<a name="id-1.2.3.9.15.6"></a><h4>Returns</h4>
|
1281
|
+
<p> a new allocated string containing the creator
|
1282
|
+
of <em class="parameter"><code>document</code></em>
|
1283
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1284
|
+
<p></p>
|
1285
|
+
</div>
|
1286
|
+
<p class="since">Since 0.16</p>
|
1287
|
+
</div>
|
1288
|
+
<hr>
|
1289
|
+
<div class="refsect2">
|
1290
|
+
<a name="poppler-document-get-producer"></a><h3>poppler_document_get_producer ()</h3>
|
1291
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1292
|
+
poppler_document_get_producer (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1293
|
+
<p>Returns the producer of the document. If the document was converted
|
1294
|
+
from another format, the producer is the name of the product
|
1295
|
+
that converted it to PDF</p>
|
1296
|
+
<div class="refsect3">
|
1297
|
+
<a name="id-1.2.3.9.16.5"></a><h4>Parameters</h4>
|
1298
|
+
<div class="informaltable"><table width="100%" border="0">
|
1299
|
+
<colgroup>
|
1300
|
+
<col width="150px" class="parameters_name">
|
1301
|
+
<col class="parameters_description">
|
1302
|
+
<col width="200px" class="parameters_annotations">
|
1303
|
+
</colgroup>
|
1304
|
+
<tbody><tr>
|
1305
|
+
<td class="parameter_name"><p>document</p></td>
|
1306
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1307
|
+
<td class="parameter_annotations"> </td>
|
1308
|
+
</tr></tbody>
|
1309
|
+
</table></div>
|
1310
|
+
</div>
|
1311
|
+
<div class="refsect3">
|
1312
|
+
<a name="id-1.2.3.9.16.6"></a><h4>Returns</h4>
|
1313
|
+
<p> a new allocated string containing the producer
|
1314
|
+
of <em class="parameter"><code>document</code></em>
|
1315
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1316
|
+
<p></p>
|
1317
|
+
</div>
|
1318
|
+
<p class="since">Since 0.16</p>
|
1319
|
+
</div>
|
1320
|
+
<hr>
|
1321
|
+
<div class="refsect2">
|
1322
|
+
<a name="poppler-document-get-creation-date"></a><h3>poppler_document_get_creation_date ()</h3>
|
1323
|
+
<pre class="programlisting"><span class="returnvalue">time_t</span>
|
1324
|
+
poppler_document_get_creation_date (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1325
|
+
<p>Returns the date the document was created as seconds since the Epoch</p>
|
1326
|
+
<div class="refsect3">
|
1327
|
+
<a name="id-1.2.3.9.17.5"></a><h4>Parameters</h4>
|
1328
|
+
<div class="informaltable"><table width="100%" border="0">
|
1329
|
+
<colgroup>
|
1330
|
+
<col width="150px" class="parameters_name">
|
1331
|
+
<col class="parameters_description">
|
1332
|
+
<col width="200px" class="parameters_annotations">
|
1333
|
+
</colgroup>
|
1334
|
+
<tbody><tr>
|
1335
|
+
<td class="parameter_name"><p>document</p></td>
|
1336
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1337
|
+
<td class="parameter_annotations"> </td>
|
1338
|
+
</tr></tbody>
|
1339
|
+
</table></div>
|
1340
|
+
</div>
|
1341
|
+
<div class="refsect3">
|
1342
|
+
<a name="id-1.2.3.9.17.6"></a><h4>Returns</h4>
|
1343
|
+
<p> the date the document was created, or -1</p>
|
1344
|
+
<p></p>
|
1345
|
+
</div>
|
1346
|
+
<p class="since">Since 0.16</p>
|
1347
|
+
</div>
|
1348
|
+
<hr>
|
1349
|
+
<div class="refsect2">
|
1350
|
+
<a name="poppler-document-get-modification-date"></a><h3>poppler_document_get_modification_date ()</h3>
|
1351
|
+
<pre class="programlisting"><span class="returnvalue">time_t</span>
|
1352
|
+
poppler_document_get_modification_date
|
1353
|
+
(<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1354
|
+
<p>Returns the date the document was most recently modified as seconds since the Epoch</p>
|
1355
|
+
<div class="refsect3">
|
1356
|
+
<a name="id-1.2.3.9.18.5"></a><h4>Parameters</h4>
|
1357
|
+
<div class="informaltable"><table width="100%" border="0">
|
1358
|
+
<colgroup>
|
1359
|
+
<col width="150px" class="parameters_name">
|
1360
|
+
<col class="parameters_description">
|
1361
|
+
<col width="200px" class="parameters_annotations">
|
1362
|
+
</colgroup>
|
1363
|
+
<tbody><tr>
|
1364
|
+
<td class="parameter_name"><p>document</p></td>
|
1365
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1366
|
+
<td class="parameter_annotations"> </td>
|
1367
|
+
</tr></tbody>
|
1368
|
+
</table></div>
|
1369
|
+
</div>
|
1370
|
+
<div class="refsect3">
|
1371
|
+
<a name="id-1.2.3.9.18.6"></a><h4>Returns</h4>
|
1372
|
+
<p> the date the document was most recently modified, or -1</p>
|
1373
|
+
<p></p>
|
1374
|
+
</div>
|
1375
|
+
<p class="since">Since 0.16</p>
|
1376
|
+
</div>
|
1377
|
+
<hr>
|
1378
|
+
<div class="refsect2">
|
1379
|
+
<a name="poppler-document-get-page-layout"></a><h3>poppler_document_get_page_layout ()</h3>
|
1380
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerPageLayout" title="enum PopplerPageLayout"><span class="returnvalue">PopplerPageLayout</span></a>
|
1381
|
+
poppler_document_get_page_layout (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1382
|
+
<p>Returns the page layout that should be used when the document is opened</p>
|
1383
|
+
<div class="refsect3">
|
1384
|
+
<a name="id-1.2.3.9.19.5"></a><h4>Parameters</h4>
|
1385
|
+
<div class="informaltable"><table width="100%" border="0">
|
1386
|
+
<colgroup>
|
1387
|
+
<col width="150px" class="parameters_name">
|
1388
|
+
<col class="parameters_description">
|
1389
|
+
<col width="200px" class="parameters_annotations">
|
1390
|
+
</colgroup>
|
1391
|
+
<tbody><tr>
|
1392
|
+
<td class="parameter_name"><p>document</p></td>
|
1393
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1394
|
+
<td class="parameter_annotations"> </td>
|
1395
|
+
</tr></tbody>
|
1396
|
+
</table></div>
|
1397
|
+
</div>
|
1398
|
+
<div class="refsect3">
|
1399
|
+
<a name="id-1.2.3.9.19.6"></a><h4>Returns</h4>
|
1400
|
+
<p> a <a class="link" href="PopplerDocument.html#PopplerPageLayout" title="enum PopplerPageLayout"><span class="type">PopplerPageLayout</span></a> that should be used when the document is opened</p>
|
1401
|
+
<p></p>
|
1402
|
+
</div>
|
1403
|
+
<p class="since">Since 0.16</p>
|
1404
|
+
</div>
|
1405
|
+
<hr>
|
1406
|
+
<div class="refsect2">
|
1407
|
+
<a name="poppler-document-get-page-mode"></a><h3>poppler_document_get_page_mode ()</h3>
|
1408
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerPageMode" title="enum PopplerPageMode"><span class="returnvalue">PopplerPageMode</span></a>
|
1409
|
+
poppler_document_get_page_mode (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1410
|
+
<p>Returns a <a class="link" href="PopplerDocument.html#PopplerPageMode" title="enum PopplerPageMode"><span class="type">PopplerPageMode</span></a> representing how the document should
|
1411
|
+
be initially displayed when opened.</p>
|
1412
|
+
<div class="refsect3">
|
1413
|
+
<a name="id-1.2.3.9.20.5"></a><h4>Parameters</h4>
|
1414
|
+
<div class="informaltable"><table width="100%" border="0">
|
1415
|
+
<colgroup>
|
1416
|
+
<col width="150px" class="parameters_name">
|
1417
|
+
<col class="parameters_description">
|
1418
|
+
<col width="200px" class="parameters_annotations">
|
1419
|
+
</colgroup>
|
1420
|
+
<tbody><tr>
|
1421
|
+
<td class="parameter_name"><p>document</p></td>
|
1422
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1423
|
+
<td class="parameter_annotations"> </td>
|
1424
|
+
</tr></tbody>
|
1425
|
+
</table></div>
|
1426
|
+
</div>
|
1427
|
+
<div class="refsect3">
|
1428
|
+
<a name="id-1.2.3.9.20.6"></a><h4>Returns</h4>
|
1429
|
+
<p> a <a class="link" href="PopplerDocument.html#PopplerPageMode" title="enum PopplerPageMode"><span class="type">PopplerPageMode</span></a> that should be used when document is opened</p>
|
1430
|
+
<p></p>
|
1431
|
+
</div>
|
1432
|
+
<p class="since">Since 0.16</p>
|
1433
|
+
</div>
|
1434
|
+
<hr>
|
1435
|
+
<div class="refsect2">
|
1436
|
+
<a name="poppler-document-get-permissions"></a><h3>poppler_document_get_permissions ()</h3>
|
1437
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerPermissions" title="enum PopplerPermissions"><span class="returnvalue">PopplerPermissions</span></a>
|
1438
|
+
poppler_document_get_permissions (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1439
|
+
<p>Returns the flags specifying which operations are permitted when the document is opened.</p>
|
1440
|
+
<div class="refsect3">
|
1441
|
+
<a name="id-1.2.3.9.21.5"></a><h4>Parameters</h4>
|
1442
|
+
<div class="informaltable"><table width="100%" border="0">
|
1443
|
+
<colgroup>
|
1444
|
+
<col width="150px" class="parameters_name">
|
1445
|
+
<col class="parameters_description">
|
1446
|
+
<col width="200px" class="parameters_annotations">
|
1447
|
+
</colgroup>
|
1448
|
+
<tbody><tr>
|
1449
|
+
<td class="parameter_name"><p>document</p></td>
|
1450
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1451
|
+
<td class="parameter_annotations"> </td>
|
1452
|
+
</tr></tbody>
|
1453
|
+
</table></div>
|
1454
|
+
</div>
|
1455
|
+
<div class="refsect3">
|
1456
|
+
<a name="id-1.2.3.9.21.6"></a><h4>Returns</h4>
|
1457
|
+
<p> a set of falgs from <a class="link" href="PopplerDocument.html#PopplerPermissions" title="enum PopplerPermissions"><span class="type">PopplerPermissions</span></a> enumeration</p>
|
1458
|
+
<p></p>
|
1459
|
+
</div>
|
1460
|
+
<p class="since">Since 0.16</p>
|
1461
|
+
</div>
|
1462
|
+
<hr>
|
1463
|
+
<div class="refsect2">
|
1464
|
+
<a name="poppler-document-get-metadata"></a><h3>poppler_document_get_metadata ()</h3>
|
1465
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1466
|
+
poppler_document_get_metadata (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1467
|
+
<p>Returns the XML metadata string of the document</p>
|
1468
|
+
<div class="refsect3">
|
1469
|
+
<a name="id-1.2.3.9.22.5"></a><h4>Parameters</h4>
|
1470
|
+
<div class="informaltable"><table width="100%" border="0">
|
1471
|
+
<colgroup>
|
1472
|
+
<col width="150px" class="parameters_name">
|
1473
|
+
<col class="parameters_description">
|
1474
|
+
<col width="200px" class="parameters_annotations">
|
1475
|
+
</colgroup>
|
1476
|
+
<tbody><tr>
|
1477
|
+
<td class="parameter_name"><p>document</p></td>
|
1478
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1479
|
+
<td class="parameter_annotations"> </td>
|
1480
|
+
</tr></tbody>
|
1481
|
+
</table></div>
|
1482
|
+
</div>
|
1483
|
+
<div class="refsect3">
|
1484
|
+
<a name="id-1.2.3.9.22.6"></a><h4>Returns</h4>
|
1485
|
+
<p> a new allocated string containing the XML
|
1486
|
+
metadata, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1487
|
+
<p></p>
|
1488
|
+
</div>
|
1489
|
+
<p class="since">Since 0.16</p>
|
1490
|
+
</div>
|
1491
|
+
<hr>
|
1492
|
+
<div class="refsect2">
|
1493
|
+
<a name="poppler-document-is-linearized"></a><h3>poppler_document_is_linearized ()</h3>
|
1494
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1495
|
+
poppler_document_is_linearized (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1496
|
+
<p>Returns whether <em class="parameter"><code>document</code></em>
|
1497
|
+
is linearized or not. Linearization of PDF
|
1498
|
+
enables efficient incremental access of the PDF file in a network environment.</p>
|
1499
|
+
<div class="refsect3">
|
1500
|
+
<a name="id-1.2.3.9.23.5"></a><h4>Parameters</h4>
|
1501
|
+
<div class="informaltable"><table width="100%" border="0">
|
1502
|
+
<colgroup>
|
1503
|
+
<col width="150px" class="parameters_name">
|
1504
|
+
<col class="parameters_description">
|
1505
|
+
<col width="200px" class="parameters_annotations">
|
1506
|
+
</colgroup>
|
1507
|
+
<tbody><tr>
|
1508
|
+
<td class="parameter_name"><p>document</p></td>
|
1509
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1510
|
+
<td class="parameter_annotations"> </td>
|
1511
|
+
</tr></tbody>
|
1512
|
+
</table></div>
|
1513
|
+
</div>
|
1514
|
+
<div class="refsect3">
|
1515
|
+
<a name="id-1.2.3.9.23.6"></a><h4>Returns</h4>
|
1516
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>document</code></em>
|
1517
|
+
is linearized, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwhise</p>
|
1518
|
+
<p></p>
|
1519
|
+
</div>
|
1520
|
+
<p class="since">Since 0.16</p>
|
1521
|
+
</div>
|
1522
|
+
<hr>
|
1523
|
+
<div class="refsect2">
|
1524
|
+
<a name="poppler-document-get-n-pages"></a><h3>poppler_document_get_n_pages ()</h3>
|
1525
|
+
<pre class="programlisting"><span class="returnvalue">int</span>
|
1526
|
+
poppler_document_get_n_pages (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1527
|
+
<p>Returns the number of pages in a loaded document.</p>
|
1528
|
+
<div class="refsect3">
|
1529
|
+
<a name="id-1.2.3.9.24.5"></a><h4>Parameters</h4>
|
1530
|
+
<div class="informaltable"><table width="100%" border="0">
|
1531
|
+
<colgroup>
|
1532
|
+
<col width="150px" class="parameters_name">
|
1533
|
+
<col class="parameters_description">
|
1534
|
+
<col width="200px" class="parameters_annotations">
|
1535
|
+
</colgroup>
|
1536
|
+
<tbody><tr>
|
1537
|
+
<td class="parameter_name"><p>document</p></td>
|
1538
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1539
|
+
<td class="parameter_annotations"> </td>
|
1540
|
+
</tr></tbody>
|
1541
|
+
</table></div>
|
1542
|
+
</div>
|
1543
|
+
<div class="refsect3">
|
1544
|
+
<a name="id-1.2.3.9.24.6"></a><h4>Returns</h4>
|
1545
|
+
<p> Number of pages</p>
|
1546
|
+
<p></p>
|
1547
|
+
</div>
|
1548
|
+
</div>
|
1549
|
+
<hr>
|
1550
|
+
<div class="refsect2">
|
1551
|
+
<a name="poppler-document-get-page"></a><h3>poppler_document_get_page ()</h3>
|
1552
|
+
<pre class="programlisting"><a class="link" href="PopplerPage.html" title="PopplerPage"><span class="returnvalue">PopplerPage</span></a> *
|
1553
|
+
poppler_document_get_page (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
1554
|
+
<em class="parameter"><code><span class="type">int</span> index</code></em>);</pre>
|
1555
|
+
<p>Returns the <a class="link" href="PopplerPage.html" title="PopplerPage"><span class="type">PopplerPage</span></a> indexed at <em class="parameter"><code>index</code></em>
|
1556
|
+
. This object is owned by the
|
1557
|
+
caller.</p>
|
1558
|
+
<div class="refsect3">
|
1559
|
+
<a name="id-1.2.3.9.25.5"></a><h4>Parameters</h4>
|
1560
|
+
<div class="informaltable"><table width="100%" border="0">
|
1561
|
+
<colgroup>
|
1562
|
+
<col width="150px" class="parameters_name">
|
1563
|
+
<col class="parameters_description">
|
1564
|
+
<col width="200px" class="parameters_annotations">
|
1565
|
+
</colgroup>
|
1566
|
+
<tbody>
|
1567
|
+
<tr>
|
1568
|
+
<td class="parameter_name"><p>document</p></td>
|
1569
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1570
|
+
<td class="parameter_annotations"> </td>
|
1571
|
+
</tr>
|
1572
|
+
<tr>
|
1573
|
+
<td class="parameter_name"><p>index</p></td>
|
1574
|
+
<td class="parameter_description"><p>a page index </p></td>
|
1575
|
+
<td class="parameter_annotations"> </td>
|
1576
|
+
</tr>
|
1577
|
+
</tbody>
|
1578
|
+
</table></div>
|
1579
|
+
</div>
|
1580
|
+
<div class="refsect3">
|
1581
|
+
<a name="id-1.2.3.9.25.6"></a><h4>Returns</h4>
|
1582
|
+
<p> (transfer full) : The <a class="link" href="PopplerPage.html" title="PopplerPage"><span class="type">PopplerPage</span></a> at <em class="parameter"><code>index</code></em>
|
1583
|
+
</p>
|
1584
|
+
<p></p>
|
1585
|
+
</div>
|
1586
|
+
</div>
|
1587
|
+
<hr>
|
1588
|
+
<div class="refsect2">
|
1589
|
+
<a name="poppler-document-get-page-by-label"></a><h3>poppler_document_get_page_by_label ()</h3>
|
1590
|
+
<pre class="programlisting"><a class="link" href="PopplerPage.html" title="PopplerPage"><span class="returnvalue">PopplerPage</span></a> *
|
1591
|
+
poppler_document_get_page_by_label (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
1592
|
+
<em class="parameter"><code>const <span class="type">char</span> *label</code></em>);</pre>
|
1593
|
+
<p>Returns the <a class="link" href="PopplerPage.html" title="PopplerPage"><span class="type">PopplerPage</span></a> reference by <em class="parameter"><code>label</code></em>
|
1594
|
+
. This object is owned by the
|
1595
|
+
caller. <em class="parameter"><code>label</code></em>
|
1596
|
+
is a human-readable string representation of the page number,
|
1597
|
+
and can be document specific. Typically, it is a value such as "iii" or "3".</p>
|
1598
|
+
<p>By default, "1" refers to the first page.</p>
|
1599
|
+
<div class="refsect3">
|
1600
|
+
<a name="id-1.2.3.9.26.6"></a><h4>Parameters</h4>
|
1601
|
+
<div class="informaltable"><table width="100%" border="0">
|
1602
|
+
<colgroup>
|
1603
|
+
<col width="150px" class="parameters_name">
|
1604
|
+
<col class="parameters_description">
|
1605
|
+
<col width="200px" class="parameters_annotations">
|
1606
|
+
</colgroup>
|
1607
|
+
<tbody>
|
1608
|
+
<tr>
|
1609
|
+
<td class="parameter_name"><p>document</p></td>
|
1610
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1611
|
+
<td class="parameter_annotations"> </td>
|
1612
|
+
</tr>
|
1613
|
+
<tr>
|
1614
|
+
<td class="parameter_name"><p>label</p></td>
|
1615
|
+
<td class="parameter_description"><p>a page label</p></td>
|
1616
|
+
<td class="parameter_annotations"> </td>
|
1617
|
+
</tr>
|
1618
|
+
</tbody>
|
1619
|
+
</table></div>
|
1620
|
+
</div>
|
1621
|
+
<div class="refsect3">
|
1622
|
+
<a name="id-1.2.3.9.26.7"></a><h4>Returns</h4>
|
1623
|
+
<p> (transfer full) :The <a class="link" href="PopplerPage.html" title="PopplerPage"><span class="type">PopplerPage</span></a> referenced by <em class="parameter"><code>label</code></em>
|
1624
|
+
</p>
|
1625
|
+
<p></p>
|
1626
|
+
</div>
|
1627
|
+
</div>
|
1628
|
+
<hr>
|
1629
|
+
<div class="refsect2">
|
1630
|
+
<a name="poppler-document-find-dest"></a><h3>poppler_document_find_dest ()</h3>
|
1631
|
+
<pre class="programlisting"><a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="returnvalue">PopplerDest</span></a> *
|
1632
|
+
poppler_document_find_dest (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
1633
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *link_name</code></em>);</pre>
|
1634
|
+
<p>Finds named destination <em class="parameter"><code>link_name</code></em>
|
1635
|
+
in <em class="parameter"><code>document</code></em>
|
1636
|
+
</p>
|
1637
|
+
<div class="refsect3">
|
1638
|
+
<a name="id-1.2.3.9.27.5"></a><h4>Parameters</h4>
|
1639
|
+
<div class="informaltable"><table width="100%" border="0">
|
1640
|
+
<colgroup>
|
1641
|
+
<col width="150px" class="parameters_name">
|
1642
|
+
<col class="parameters_description">
|
1643
|
+
<col width="200px" class="parameters_annotations">
|
1644
|
+
</colgroup>
|
1645
|
+
<tbody>
|
1646
|
+
<tr>
|
1647
|
+
<td class="parameter_name"><p>document</p></td>
|
1648
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1649
|
+
<td class="parameter_annotations"> </td>
|
1650
|
+
</tr>
|
1651
|
+
<tr>
|
1652
|
+
<td class="parameter_name"><p>link_name</p></td>
|
1653
|
+
<td class="parameter_description"><p>a named destination</p></td>
|
1654
|
+
<td class="parameter_annotations"> </td>
|
1655
|
+
</tr>
|
1656
|
+
</tbody>
|
1657
|
+
</table></div>
|
1658
|
+
</div>
|
1659
|
+
<div class="refsect3">
|
1660
|
+
<a name="id-1.2.3.9.27.6"></a><h4>Returns</h4>
|
1661
|
+
<p> The <a class="link" href="poppler-PopplerAction.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a> destination or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
1662
|
+
<em class="parameter"><code>link_name</code></em>
|
1663
|
+
is not a destination. Returned value must
|
1664
|
+
be freed with <a class="link" href="poppler-PopplerAction.html#poppler-dest-free" title="poppler_dest_free ()"><span class="type">poppler_dest_free</span></a></p>
|
1665
|
+
<p></p>
|
1666
|
+
</div>
|
1667
|
+
</div>
|
1668
|
+
<hr>
|
1669
|
+
<div class="refsect2">
|
1670
|
+
<a name="poppler-document-get-n-attachments"></a><h3>poppler_document_get_n_attachments ()</h3>
|
1671
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1672
|
+
poppler_document_get_n_attachments (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1673
|
+
<p>Returns the number of attachments in a loaded document.
|
1674
|
+
See also <a class="link" href="PopplerDocument.html#poppler-document-get-attachments" title="poppler_document_get_attachments ()"><code class="function">poppler_document_get_attachments()</code></a></p>
|
1675
|
+
<div class="refsect3">
|
1676
|
+
<a name="id-1.2.3.9.28.5"></a><h4>Parameters</h4>
|
1677
|
+
<div class="informaltable"><table width="100%" border="0">
|
1678
|
+
<colgroup>
|
1679
|
+
<col width="150px" class="parameters_name">
|
1680
|
+
<col class="parameters_description">
|
1681
|
+
<col width="200px" class="parameters_annotations">
|
1682
|
+
</colgroup>
|
1683
|
+
<tbody><tr>
|
1684
|
+
<td class="parameter_name"><p>document</p></td>
|
1685
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1686
|
+
<td class="parameter_annotations"> </td>
|
1687
|
+
</tr></tbody>
|
1688
|
+
</table></div>
|
1689
|
+
</div>
|
1690
|
+
<div class="refsect3">
|
1691
|
+
<a name="id-1.2.3.9.28.6"></a><h4>Returns</h4>
|
1692
|
+
<p> Number of attachments</p>
|
1693
|
+
<p></p>
|
1694
|
+
</div>
|
1695
|
+
<p class="since">Since 0.18</p>
|
1696
|
+
</div>
|
1697
|
+
<hr>
|
1698
|
+
<div class="refsect2">
|
1699
|
+
<a name="poppler-document-has-attachments"></a><h3>poppler_document_has_attachments ()</h3>
|
1700
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1701
|
+
poppler_document_has_attachments (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1702
|
+
<p>Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> of <em class="parameter"><code>document</code></em>
|
1703
|
+
has any attachments.</p>
|
1704
|
+
<div class="refsect3">
|
1705
|
+
<a name="id-1.2.3.9.29.5"></a><h4>Parameters</h4>
|
1706
|
+
<div class="informaltable"><table width="100%" border="0">
|
1707
|
+
<colgroup>
|
1708
|
+
<col width="150px" class="parameters_name">
|
1709
|
+
<col class="parameters_description">
|
1710
|
+
<col width="200px" class="parameters_annotations">
|
1711
|
+
</colgroup>
|
1712
|
+
<tbody><tr>
|
1713
|
+
<td class="parameter_name"><p>document</p></td>
|
1714
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1715
|
+
<td class="parameter_annotations"> </td>
|
1716
|
+
</tr></tbody>
|
1717
|
+
</table></div>
|
1718
|
+
</div>
|
1719
|
+
<div class="refsect3">
|
1720
|
+
<a name="id-1.2.3.9.29.6"></a><h4>Returns</h4>
|
1721
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>document</code></em>
|
1722
|
+
has attachments.</p>
|
1723
|
+
<p></p>
|
1724
|
+
</div>
|
1725
|
+
</div>
|
1726
|
+
<hr>
|
1727
|
+
<div class="refsect2">
|
1728
|
+
<a name="poppler-document-get-attachments"></a><h3>poppler_document_get_attachments ()</h3>
|
1729
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
|
1730
|
+
poppler_document_get_attachments (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1731
|
+
<p>Returns a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> containing <a class="link" href="PopplerAttachment.html" title="PopplerAttachment"><span class="type">PopplerAttachment</span></a>s. These attachments
|
1732
|
+
are unowned, and must be unreffed, and the list must be freed with
|
1733
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>.</p>
|
1734
|
+
<div class="refsect3">
|
1735
|
+
<a name="id-1.2.3.9.30.5"></a><h4>Parameters</h4>
|
1736
|
+
<div class="informaltable"><table width="100%" border="0">
|
1737
|
+
<colgroup>
|
1738
|
+
<col width="150px" class="parameters_name">
|
1739
|
+
<col class="parameters_description">
|
1740
|
+
<col width="200px" class="parameters_annotations">
|
1741
|
+
</colgroup>
|
1742
|
+
<tbody><tr>
|
1743
|
+
<td class="parameter_name"><p>document</p></td>
|
1744
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1745
|
+
<td class="parameter_annotations"> </td>
|
1746
|
+
</tr></tbody>
|
1747
|
+
</table></div>
|
1748
|
+
</div>
|
1749
|
+
<div class="refsect3">
|
1750
|
+
<a name="id-1.2.3.9.30.6"></a><h4>Returns</h4>
|
1751
|
+
<p> a list of available attachments. </p>
|
1752
|
+
<p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerAttachment][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1753
|
+
</div>
|
1754
|
+
</div>
|
1755
|
+
<hr>
|
1756
|
+
<div class="refsect2">
|
1757
|
+
<a name="poppler-document-get-form-field"></a><h3>poppler_document_get_form_field ()</h3>
|
1758
|
+
<pre class="programlisting"><a class="link" href="PopplerFormField.html" title="PoppplerFormField"><span class="returnvalue">PopplerFormField</span></a> *
|
1759
|
+
poppler_document_get_form_field (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
1760
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
|
1761
|
+
<p>Returns the <a class="link" href="PopplerFormField.html" title="PoppplerFormField"><span class="type">PopplerFormField</span></a> for the given <em class="parameter"><code>id</code></em>
|
1762
|
+
. It must be freed with
|
1763
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a></p>
|
1764
|
+
<div class="refsect3">
|
1765
|
+
<a name="id-1.2.3.9.31.5"></a><h4>Parameters</h4>
|
1766
|
+
<div class="informaltable"><table width="100%" border="0">
|
1767
|
+
<colgroup>
|
1768
|
+
<col width="150px" class="parameters_name">
|
1769
|
+
<col class="parameters_description">
|
1770
|
+
<col width="200px" class="parameters_annotations">
|
1771
|
+
</colgroup>
|
1772
|
+
<tbody>
|
1773
|
+
<tr>
|
1774
|
+
<td class="parameter_name"><p>document</p></td>
|
1775
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1776
|
+
<td class="parameter_annotations"> </td>
|
1777
|
+
</tr>
|
1778
|
+
<tr>
|
1779
|
+
<td class="parameter_name"><p>id</p></td>
|
1780
|
+
<td class="parameter_description"><p>an id of a <a class="link" href="PopplerFormField.html" title="PoppplerFormField"><span class="type">PopplerFormField</span></a></p></td>
|
1781
|
+
<td class="parameter_annotations"> </td>
|
1782
|
+
</tr>
|
1783
|
+
</tbody>
|
1784
|
+
</table></div>
|
1785
|
+
</div>
|
1786
|
+
<div class="refsect3">
|
1787
|
+
<a name="id-1.2.3.9.31.6"></a><h4>Returns</h4>
|
1788
|
+
<p> a new <a class="link" href="PopplerFormField.html" title="PoppplerFormField"><span class="type">PopplerFormField</span></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
1789
|
+
not found. </p>
|
1790
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1791
|
+
</div>
|
1792
|
+
</div>
|
1793
|
+
<hr>
|
1794
|
+
<div class="refsect2">
|
1795
|
+
<a name="poppler-index-iter-new"></a><h3>poppler_index_iter_new ()</h3>
|
1796
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="returnvalue">PopplerIndexIter</span></a> *
|
1797
|
+
poppler_index_iter_new (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
1798
|
+
<p>Returns the root <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> for <em class="parameter"><code>document</code></em>
|
1799
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. This must be
|
1800
|
+
freed with <a class="link" href="PopplerDocument.html#poppler-index-iter-free" title="poppler_index_iter_free ()"><code class="function">poppler_index_iter_free()</code></a>.</p>
|
1801
|
+
<p>Certain documents have an index associated with them. This index can be used
|
1802
|
+
to help the user navigate the document, and is similar to a table of
|
1803
|
+
contents. Each node in the index will contain a <a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a> that can be
|
1804
|
+
displayed to the user — typically a <a class="link" href="poppler-PopplerAction.html#POPPLER-ACTION-GOTO-DEST:CAPS"><span class="type">POPPLER_ACTION_GOTO_DEST</span></a> or a
|
1805
|
+
<a class="link" href="poppler-PopplerAction.html#POPPLER-ACTION-URI:CAPS"><span class="type">POPPLER_ACTION_URI</span></a>.</p>
|
1806
|
+
<p>Here is a simple example of some code that walks the full index:</p>
|
1807
|
+
<div class="informalexample"><pre class="programlisting">
|
1808
|
+
static void
|
1809
|
+
walk_index (PopplerIndexIter *iter)
|
1810
|
+
{
|
1811
|
+
do
|
1812
|
+
{
|
1813
|
+
/* Get the the action and do something with it */
|
1814
|
+
PopplerIndexIter *child = poppler_index_iter_get_child (iter);
|
1815
|
+
if (child)
|
1816
|
+
walk_index (child);
|
1817
|
+
poppler_index_iter_free (child);
|
1818
|
+
}
|
1819
|
+
while (poppler_index_iter_next (iter));
|
1820
|
+
}
|
1821
|
+
...
|
1822
|
+
{
|
1823
|
+
iter = poppler_index_iter_new (document);
|
1824
|
+
walk_index (iter);
|
1825
|
+
poppler_index_iter_free (iter);
|
1826
|
+
}
|
1827
|
+
</pre></div>
|
1828
|
+
<div class="refsect3">
|
1829
|
+
<a name="id-1.2.3.9.32.8"></a><h4>Parameters</h4>
|
1830
|
+
<div class="informaltable"><table width="100%" border="0">
|
1831
|
+
<colgroup>
|
1832
|
+
<col width="150px" class="parameters_name">
|
1833
|
+
<col class="parameters_description">
|
1834
|
+
<col width="200px" class="parameters_annotations">
|
1835
|
+
</colgroup>
|
1836
|
+
<tbody><tr>
|
1837
|
+
<td class="parameter_name"><p>document</p></td>
|
1838
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
1839
|
+
<td class="parameter_annotations"> </td>
|
1840
|
+
</tr></tbody>
|
1841
|
+
</table></div>
|
1842
|
+
</div>
|
1843
|
+
<div class="refsect3">
|
1844
|
+
<a name="id-1.2.3.9.32.9"></a><h4>Returns</h4>
|
1845
|
+
<p> a new <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p>
|
1846
|
+
<p></p>
|
1847
|
+
</div>
|
1848
|
+
</div>
|
1849
|
+
<hr>
|
1850
|
+
<div class="refsect2">
|
1851
|
+
<a name="poppler-index-iter-copy"></a><h3>poppler_index_iter_copy ()</h3>
|
1852
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="returnvalue">PopplerIndexIter</span></a> *
|
1853
|
+
poppler_index_iter_copy (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> *iter</code></em>);</pre>
|
1854
|
+
<p>Creates a new <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> as a copy of <em class="parameter"><code>iter</code></em>
|
1855
|
+
. This must be freed with
|
1856
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-free" title="poppler_index_iter_free ()"><code class="function">poppler_index_iter_free()</code></a>.</p>
|
1857
|
+
<div class="refsect3">
|
1858
|
+
<a name="id-1.2.3.9.33.5"></a><h4>Parameters</h4>
|
1859
|
+
<div class="informaltable"><table width="100%" border="0">
|
1860
|
+
<colgroup>
|
1861
|
+
<col width="150px" class="parameters_name">
|
1862
|
+
<col class="parameters_description">
|
1863
|
+
<col width="200px" class="parameters_annotations">
|
1864
|
+
</colgroup>
|
1865
|
+
<tbody><tr>
|
1866
|
+
<td class="parameter_name"><p>iter</p></td>
|
1867
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p></td>
|
1868
|
+
<td class="parameter_annotations"> </td>
|
1869
|
+
</tr></tbody>
|
1870
|
+
</table></div>
|
1871
|
+
</div>
|
1872
|
+
<div class="refsect3">
|
1873
|
+
<a name="id-1.2.3.9.33.6"></a><h4>Returns</h4>
|
1874
|
+
<p> a new <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p>
|
1875
|
+
<p></p>
|
1876
|
+
</div>
|
1877
|
+
</div>
|
1878
|
+
<hr>
|
1879
|
+
<div class="refsect2">
|
1880
|
+
<a name="poppler-index-iter-free"></a><h3>poppler_index_iter_free ()</h3>
|
1881
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1882
|
+
poppler_index_iter_free (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> *iter</code></em>);</pre>
|
1883
|
+
<p>Frees <em class="parameter"><code>iter</code></em>
|
1884
|
+
.</p>
|
1885
|
+
<div class="refsect3">
|
1886
|
+
<a name="id-1.2.3.9.34.5"></a><h4>Parameters</h4>
|
1887
|
+
<div class="informaltable"><table width="100%" border="0">
|
1888
|
+
<colgroup>
|
1889
|
+
<col width="150px" class="parameters_name">
|
1890
|
+
<col class="parameters_description">
|
1891
|
+
<col width="200px" class="parameters_annotations">
|
1892
|
+
</colgroup>
|
1893
|
+
<tbody><tr>
|
1894
|
+
<td class="parameter_name"><p>iter</p></td>
|
1895
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p></td>
|
1896
|
+
<td class="parameter_annotations"> </td>
|
1897
|
+
</tr></tbody>
|
1898
|
+
</table></div>
|
1899
|
+
</div>
|
1900
|
+
</div>
|
1901
|
+
<hr>
|
1902
|
+
<div class="refsect2">
|
1903
|
+
<a name="poppler-index-iter-get-child"></a><h3>poppler_index_iter_get_child ()</h3>
|
1904
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="returnvalue">PopplerIndexIter</span></a> *
|
1905
|
+
poppler_index_iter_get_child (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> *parent</code></em>);</pre>
|
1906
|
+
<p>Returns a newly created child of <em class="parameter"><code>parent</code></em>
|
1907
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the iter has no child.
|
1908
|
+
See <a class="link" href="PopplerDocument.html#poppler-index-iter-new" title="poppler_index_iter_new ()"><code class="function">poppler_index_iter_new()</code></a> for more information on this function.</p>
|
1909
|
+
<div class="refsect3">
|
1910
|
+
<a name="id-1.2.3.9.35.5"></a><h4>Parameters</h4>
|
1911
|
+
<div class="informaltable"><table width="100%" border="0">
|
1912
|
+
<colgroup>
|
1913
|
+
<col width="150px" class="parameters_name">
|
1914
|
+
<col class="parameters_description">
|
1915
|
+
<col width="200px" class="parameters_annotations">
|
1916
|
+
</colgroup>
|
1917
|
+
<tbody><tr>
|
1918
|
+
<td class="parameter_name"><p>parent</p></td>
|
1919
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p></td>
|
1920
|
+
<td class="parameter_annotations"> </td>
|
1921
|
+
</tr></tbody>
|
1922
|
+
</table></div>
|
1923
|
+
</div>
|
1924
|
+
<div class="refsect3">
|
1925
|
+
<a name="id-1.2.3.9.35.6"></a><h4>Returns</h4>
|
1926
|
+
<p> a new <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p>
|
1927
|
+
<p></p>
|
1928
|
+
</div>
|
1929
|
+
</div>
|
1930
|
+
<hr>
|
1931
|
+
<div class="refsect2">
|
1932
|
+
<a name="poppler-index-iter-is-open"></a><h3>poppler_index_iter_is_open ()</h3>
|
1933
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1934
|
+
poppler_index_iter_is_open (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> *iter</code></em>);</pre>
|
1935
|
+
<p>Returns whether this node should be expanded by default to the user. The
|
1936
|
+
document can provide a hint as to how the document's index should be expanded
|
1937
|
+
initially.</p>
|
1938
|
+
<div class="refsect3">
|
1939
|
+
<a name="id-1.2.3.9.36.5"></a><h4>Parameters</h4>
|
1940
|
+
<div class="informaltable"><table width="100%" border="0">
|
1941
|
+
<colgroup>
|
1942
|
+
<col width="150px" class="parameters_name">
|
1943
|
+
<col class="parameters_description">
|
1944
|
+
<col width="200px" class="parameters_annotations">
|
1945
|
+
</colgroup>
|
1946
|
+
<tbody><tr>
|
1947
|
+
<td class="parameter_name"><p>iter</p></td>
|
1948
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p></td>
|
1949
|
+
<td class="parameter_annotations"> </td>
|
1950
|
+
</tr></tbody>
|
1951
|
+
</table></div>
|
1952
|
+
</div>
|
1953
|
+
<div class="refsect3">
|
1954
|
+
<a name="id-1.2.3.9.36.6"></a><h4>Returns</h4>
|
1955
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the document wants <em class="parameter"><code>iter</code></em>
|
1956
|
+
to be expanded</p>
|
1957
|
+
<p></p>
|
1958
|
+
</div>
|
1959
|
+
</div>
|
1960
|
+
<hr>
|
1961
|
+
<div class="refsect2">
|
1962
|
+
<a name="poppler-index-iter-get-action"></a><h3>poppler_index_iter_get_action ()</h3>
|
1963
|
+
<pre class="programlisting"><a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="returnvalue">PopplerAction</span></a> *
|
1964
|
+
poppler_index_iter_get_action (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> *iter</code></em>);</pre>
|
1965
|
+
<p>Returns the <a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a> associated with <em class="parameter"><code>iter</code></em>
|
1966
|
+
. It must be freed with
|
1967
|
+
<a class="link" href="poppler-PopplerAction.html#poppler-action-free" title="poppler_action_free ()"><code class="function">poppler_action_free()</code></a>.</p>
|
1968
|
+
<div class="refsect3">
|
1969
|
+
<a name="id-1.2.3.9.37.5"></a><h4>Parameters</h4>
|
1970
|
+
<div class="informaltable"><table width="100%" border="0">
|
1971
|
+
<colgroup>
|
1972
|
+
<col width="150px" class="parameters_name">
|
1973
|
+
<col class="parameters_description">
|
1974
|
+
<col width="200px" class="parameters_annotations">
|
1975
|
+
</colgroup>
|
1976
|
+
<tbody><tr>
|
1977
|
+
<td class="parameter_name"><p>iter</p></td>
|
1978
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p></td>
|
1979
|
+
<td class="parameter_annotations"> </td>
|
1980
|
+
</tr></tbody>
|
1981
|
+
</table></div>
|
1982
|
+
</div>
|
1983
|
+
<div class="refsect3">
|
1984
|
+
<a name="id-1.2.3.9.37.6"></a><h4>Returns</h4>
|
1985
|
+
<p> a new <a class="link" href="poppler-PopplerAction.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a></p>
|
1986
|
+
<p></p>
|
1987
|
+
</div>
|
1988
|
+
</div>
|
1989
|
+
<hr>
|
1990
|
+
<div class="refsect2">
|
1991
|
+
<a name="poppler-index-iter-next"></a><h3>poppler_index_iter_next ()</h3>
|
1992
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1993
|
+
poppler_index_iter_next (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a> *iter</code></em>);</pre>
|
1994
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
1995
|
+
to point to the next action at the current level, if valid. See
|
1996
|
+
<a class="link" href="PopplerDocument.html#poppler-index-iter-new" title="poppler_index_iter_new ()"><code class="function">poppler_index_iter_new()</code></a> for more information.</p>
|
1997
|
+
<div class="refsect3">
|
1998
|
+
<a name="id-1.2.3.9.38.5"></a><h4>Parameters</h4>
|
1999
|
+
<div class="informaltable"><table width="100%" border="0">
|
2000
|
+
<colgroup>
|
2001
|
+
<col width="150px" class="parameters_name">
|
2002
|
+
<col class="parameters_description">
|
2003
|
+
<col width="200px" class="parameters_annotations">
|
2004
|
+
</colgroup>
|
2005
|
+
<tbody><tr>
|
2006
|
+
<td class="parameter_name"><p>iter</p></td>
|
2007
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerIndexIter" title="PopplerIndexIter"><span class="type">PopplerIndexIter</span></a></p></td>
|
2008
|
+
<td class="parameter_annotations"> </td>
|
2009
|
+
</tr></tbody>
|
2010
|
+
</table></div>
|
2011
|
+
</div>
|
2012
|
+
<div class="refsect3">
|
2013
|
+
<a name="id-1.2.3.9.38.6"></a><h4>Returns</h4>
|
2014
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2015
|
+
was set to the next action</p>
|
2016
|
+
<p></p>
|
2017
|
+
</div>
|
2018
|
+
</div>
|
2019
|
+
<hr>
|
2020
|
+
<div class="refsect2">
|
2021
|
+
<a name="poppler-font-info-new"></a><h3>poppler_font_info_new ()</h3>
|
2022
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo"><span class="returnvalue">PopplerFontInfo</span></a> *
|
2023
|
+
poppler_font_info_new (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
2024
|
+
<p>Creates a new <a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo"><span class="type">PopplerFontInfo</span></a> object</p>
|
2025
|
+
<div class="refsect3">
|
2026
|
+
<a name="id-1.2.3.9.39.5"></a><h4>Parameters</h4>
|
2027
|
+
<div class="informaltable"><table width="100%" border="0">
|
2028
|
+
<colgroup>
|
2029
|
+
<col width="150px" class="parameters_name">
|
2030
|
+
<col class="parameters_description">
|
2031
|
+
<col width="200px" class="parameters_annotations">
|
2032
|
+
</colgroup>
|
2033
|
+
<tbody><tr>
|
2034
|
+
<td class="parameter_name"><p>document</p></td>
|
2035
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
2036
|
+
<td class="parameter_annotations"> </td>
|
2037
|
+
</tr></tbody>
|
2038
|
+
</table></div>
|
2039
|
+
</div>
|
2040
|
+
<div class="refsect3">
|
2041
|
+
<a name="id-1.2.3.9.39.6"></a><h4>Returns</h4>
|
2042
|
+
<p> a new <a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo"><span class="type">PopplerFontInfo</span></a> instance</p>
|
2043
|
+
<p></p>
|
2044
|
+
</div>
|
2045
|
+
</div>
|
2046
|
+
<hr>
|
2047
|
+
<div class="refsect2">
|
2048
|
+
<a name="poppler-font-info-scan"></a><h3>poppler_font_info_scan ()</h3>
|
2049
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2050
|
+
poppler_font_info_scan (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo"><span class="type">PopplerFontInfo</span></a> *font_info</code></em>,
|
2051
|
+
<em class="parameter"><code><span class="type">int</span> n_pages</code></em>,
|
2052
|
+
<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> **iter</code></em>);</pre>
|
2053
|
+
<p>Scans the document associated with <em class="parameter"><code>font_info</code></em>
|
2054
|
+
for fonts. At most
|
2055
|
+
<em class="parameter"><code>n_pages</code></em>
|
2056
|
+
will be scanned starting from the current iterator. <em class="parameter"><code>iter</code></em>
|
2057
|
+
will
|
2058
|
+
point to the first font scanned.</p>
|
2059
|
+
<p>Here is a simple example of code to scan fonts in a document</p>
|
2060
|
+
<div class="informalexample"><pre class="programlisting">
|
2061
|
+
font_info = poppler_font_info_new (document);
|
2062
|
+
while (poppler_font_info_scan (font_info, 20, &fonts_iter)) {
|
2063
|
+
if (!fonts_iter)
|
2064
|
+
continue; /* No fonts found in these 20 pages */
|
2065
|
+
do {
|
2066
|
+
/* Do something with font iter */
|
2067
|
+
g_print ("Font Name: %s\n", poppler_fonts_iter_get_name (fonts_iter));
|
2068
|
+
} while (poppler_fonts_iter_next (fonts_iter));
|
2069
|
+
poppler_fonts_iter_free (fonts_iter);
|
2070
|
+
}
|
2071
|
+
</pre></div>
|
2072
|
+
<div class="refsect3">
|
2073
|
+
<a name="id-1.2.3.9.40.7"></a><h4>Parameters</h4>
|
2074
|
+
<div class="informaltable"><table width="100%" border="0">
|
2075
|
+
<colgroup>
|
2076
|
+
<col width="150px" class="parameters_name">
|
2077
|
+
<col class="parameters_description">
|
2078
|
+
<col width="200px" class="parameters_annotations">
|
2079
|
+
</colgroup>
|
2080
|
+
<tbody>
|
2081
|
+
<tr>
|
2082
|
+
<td class="parameter_name"><p>font_info</p></td>
|
2083
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo"><span class="type">PopplerFontInfo</span></a></p></td>
|
2084
|
+
<td class="parameter_annotations"> </td>
|
2085
|
+
</tr>
|
2086
|
+
<tr>
|
2087
|
+
<td class="parameter_name"><p>n_pages</p></td>
|
2088
|
+
<td class="parameter_description"><p>number of pages to scan</p></td>
|
2089
|
+
<td class="parameter_annotations"> </td>
|
2090
|
+
</tr>
|
2091
|
+
<tr>
|
2092
|
+
<td class="parameter_name"><p>iter</p></td>
|
2093
|
+
<td class="parameter_description"><p> return location for a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a>. </p></td>
|
2094
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2095
|
+
</tr>
|
2096
|
+
</tbody>
|
2097
|
+
</table></div>
|
2098
|
+
</div>
|
2099
|
+
<div class="refsect3">
|
2100
|
+
<a name="id-1.2.3.9.40.8"></a><h4>Returns</h4>
|
2101
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if there are more fonts left to scan</p>
|
2102
|
+
<p></p>
|
2103
|
+
</div>
|
2104
|
+
</div>
|
2105
|
+
<hr>
|
2106
|
+
<div class="refsect2">
|
2107
|
+
<a name="poppler-font-info-free"></a><h3>poppler_font_info_free ()</h3>
|
2108
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2109
|
+
poppler_font_info_free (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontInfo" title="PopplerFontInfo"><span class="type">PopplerFontInfo</span></a> *font_info</code></em>);</pre>
|
2110
|
+
</div>
|
2111
|
+
<hr>
|
2112
|
+
<div class="refsect2">
|
2113
|
+
<a name="poppler-fonts-iter-copy"></a><h3>poppler_fonts_iter_copy ()</h3>
|
2114
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="returnvalue">PopplerFontsIter</span></a> *
|
2115
|
+
poppler_fonts_iter_copy (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2116
|
+
<p>Creates a copy of <em class="parameter"><code>iter</code></em>
|
2117
|
+
</p>
|
2118
|
+
<div class="refsect3">
|
2119
|
+
<a name="id-1.2.3.9.42.5"></a><h4>Parameters</h4>
|
2120
|
+
<div class="informaltable"><table width="100%" border="0">
|
2121
|
+
<colgroup>
|
2122
|
+
<col width="150px" class="parameters_name">
|
2123
|
+
<col class="parameters_description">
|
2124
|
+
<col width="200px" class="parameters_annotations">
|
2125
|
+
</colgroup>
|
2126
|
+
<tbody><tr>
|
2127
|
+
<td class="parameter_name"><p>iter</p></td>
|
2128
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> to copy</p></td>
|
2129
|
+
<td class="parameter_annotations"> </td>
|
2130
|
+
</tr></tbody>
|
2131
|
+
</table></div>
|
2132
|
+
</div>
|
2133
|
+
<div class="refsect3">
|
2134
|
+
<a name="id-1.2.3.9.42.6"></a><h4>Returns</h4>
|
2135
|
+
<p> a new allocated copy of <em class="parameter"><code>iter</code></em>
|
2136
|
+
</p>
|
2137
|
+
<p></p>
|
2138
|
+
</div>
|
2139
|
+
</div>
|
2140
|
+
<hr>
|
2141
|
+
<div class="refsect2">
|
2142
|
+
<a name="poppler-fonts-iter-free"></a><h3>poppler_fonts_iter_free ()</h3>
|
2143
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2144
|
+
poppler_fonts_iter_free (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2145
|
+
<p>Frees the given <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p>
|
2146
|
+
<div class="refsect3">
|
2147
|
+
<a name="id-1.2.3.9.43.5"></a><h4>Parameters</h4>
|
2148
|
+
<div class="informaltable"><table width="100%" border="0">
|
2149
|
+
<colgroup>
|
2150
|
+
<col width="150px" class="parameters_name">
|
2151
|
+
<col class="parameters_description">
|
2152
|
+
<col width="200px" class="parameters_annotations">
|
2153
|
+
</colgroup>
|
2154
|
+
<tbody><tr>
|
2155
|
+
<td class="parameter_name"><p>iter</p></td>
|
2156
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2157
|
+
<td class="parameter_annotations"> </td>
|
2158
|
+
</tr></tbody>
|
2159
|
+
</table></div>
|
2160
|
+
</div>
|
2161
|
+
</div>
|
2162
|
+
<hr>
|
2163
|
+
<div class="refsect2">
|
2164
|
+
<a name="poppler-fonts-iter-get-name"></a><h3>poppler_fonts_iter_get_name ()</h3>
|
2165
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2166
|
+
poppler_fonts_iter_get_name (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2167
|
+
<p>Returns the name of the font associated with <em class="parameter"><code>iter</code></em>
|
2168
|
+
</p>
|
2169
|
+
<div class="refsect3">
|
2170
|
+
<a name="id-1.2.3.9.44.5"></a><h4>Parameters</h4>
|
2171
|
+
<div class="informaltable"><table width="100%" border="0">
|
2172
|
+
<colgroup>
|
2173
|
+
<col width="150px" class="parameters_name">
|
2174
|
+
<col class="parameters_description">
|
2175
|
+
<col width="200px" class="parameters_annotations">
|
2176
|
+
</colgroup>
|
2177
|
+
<tbody><tr>
|
2178
|
+
<td class="parameter_name"><p>iter</p></td>
|
2179
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2180
|
+
<td class="parameter_annotations"> </td>
|
2181
|
+
</tr></tbody>
|
2182
|
+
</table></div>
|
2183
|
+
</div>
|
2184
|
+
<div class="refsect3">
|
2185
|
+
<a name="id-1.2.3.9.44.6"></a><h4>Returns</h4>
|
2186
|
+
<p> the font name</p>
|
2187
|
+
<p></p>
|
2188
|
+
</div>
|
2189
|
+
</div>
|
2190
|
+
<hr>
|
2191
|
+
<div class="refsect2">
|
2192
|
+
<a name="poppler-fonts-iter-get-full-name"></a><h3>poppler_fonts_iter_get_full_name ()</h3>
|
2193
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2194
|
+
poppler_fonts_iter_get_full_name (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2195
|
+
<p>Returns the full name of the font associated with <em class="parameter"><code>iter</code></em>
|
2196
|
+
</p>
|
2197
|
+
<div class="refsect3">
|
2198
|
+
<a name="id-1.2.3.9.45.5"></a><h4>Parameters</h4>
|
2199
|
+
<div class="informaltable"><table width="100%" border="0">
|
2200
|
+
<colgroup>
|
2201
|
+
<col width="150px" class="parameters_name">
|
2202
|
+
<col class="parameters_description">
|
2203
|
+
<col width="200px" class="parameters_annotations">
|
2204
|
+
</colgroup>
|
2205
|
+
<tbody><tr>
|
2206
|
+
<td class="parameter_name"><p>iter</p></td>
|
2207
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2208
|
+
<td class="parameter_annotations"> </td>
|
2209
|
+
</tr></tbody>
|
2210
|
+
</table></div>
|
2211
|
+
</div>
|
2212
|
+
<div class="refsect3">
|
2213
|
+
<a name="id-1.2.3.9.45.6"></a><h4>Returns</h4>
|
2214
|
+
<p> the font full name</p>
|
2215
|
+
<p></p>
|
2216
|
+
</div>
|
2217
|
+
</div>
|
2218
|
+
<hr>
|
2219
|
+
<div class="refsect2">
|
2220
|
+
<a name="poppler-fonts-iter-get-font-type"></a><h3>poppler_fonts_iter_get_font_type ()</h3>
|
2221
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerFontType" title="enum PopplerFontType"><span class="returnvalue">PopplerFontType</span></a>
|
2222
|
+
poppler_fonts_iter_get_font_type (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2223
|
+
<p>Returns the type of the font associated with <em class="parameter"><code>iter</code></em>
|
2224
|
+
</p>
|
2225
|
+
<div class="refsect3">
|
2226
|
+
<a name="id-1.2.3.9.46.5"></a><h4>Parameters</h4>
|
2227
|
+
<div class="informaltable"><table width="100%" border="0">
|
2228
|
+
<colgroup>
|
2229
|
+
<col width="150px" class="parameters_name">
|
2230
|
+
<col class="parameters_description">
|
2231
|
+
<col width="200px" class="parameters_annotations">
|
2232
|
+
</colgroup>
|
2233
|
+
<tbody><tr>
|
2234
|
+
<td class="parameter_name"><p>iter</p></td>
|
2235
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2236
|
+
<td class="parameter_annotations"> </td>
|
2237
|
+
</tr></tbody>
|
2238
|
+
</table></div>
|
2239
|
+
</div>
|
2240
|
+
<div class="refsect3">
|
2241
|
+
<a name="id-1.2.3.9.46.6"></a><h4>Returns</h4>
|
2242
|
+
<p> the font type</p>
|
2243
|
+
<p></p>
|
2244
|
+
</div>
|
2245
|
+
</div>
|
2246
|
+
<hr>
|
2247
|
+
<div class="refsect2">
|
2248
|
+
<a name="poppler-fonts-iter-get-substitute-name"></a><h3>poppler_fonts_iter_get_substitute_name ()</h3>
|
2249
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2250
|
+
poppler_fonts_iter_get_substitute_name
|
2251
|
+
(<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2252
|
+
<p>The name of the substitute font of the font associated with <em class="parameter"><code>iter</code></em>
|
2253
|
+
or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
2254
|
+
the font is embedded</p>
|
2255
|
+
<div class="refsect3">
|
2256
|
+
<a name="id-1.2.3.9.47.5"></a><h4>Parameters</h4>
|
2257
|
+
<div class="informaltable"><table width="100%" border="0">
|
2258
|
+
<colgroup>
|
2259
|
+
<col width="150px" class="parameters_name">
|
2260
|
+
<col class="parameters_description">
|
2261
|
+
<col width="200px" class="parameters_annotations">
|
2262
|
+
</colgroup>
|
2263
|
+
<tbody><tr>
|
2264
|
+
<td class="parameter_name"><p>iter</p></td>
|
2265
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2266
|
+
<td class="parameter_annotations"> </td>
|
2267
|
+
</tr></tbody>
|
2268
|
+
</table></div>
|
2269
|
+
</div>
|
2270
|
+
<div class="refsect3">
|
2271
|
+
<a name="id-1.2.3.9.47.6"></a><h4>Returns</h4>
|
2272
|
+
<p> the name of the substitute font or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if font is embedded</p>
|
2273
|
+
<p></p>
|
2274
|
+
</div>
|
2275
|
+
<p class="since">Since 0.20</p>
|
2276
|
+
</div>
|
2277
|
+
<hr>
|
2278
|
+
<div class="refsect2">
|
2279
|
+
<a name="poppler-fonts-iter-get-file-name"></a><h3>poppler_fonts_iter_get_file_name ()</h3>
|
2280
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2281
|
+
poppler_fonts_iter_get_file_name (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2282
|
+
<p>The filename of the font associated with <em class="parameter"><code>iter</code></em>
|
2283
|
+
or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
2284
|
+
the font is embedded</p>
|
2285
|
+
<div class="refsect3">
|
2286
|
+
<a name="id-1.2.3.9.48.5"></a><h4>Parameters</h4>
|
2287
|
+
<div class="informaltable"><table width="100%" border="0">
|
2288
|
+
<colgroup>
|
2289
|
+
<col width="150px" class="parameters_name">
|
2290
|
+
<col class="parameters_description">
|
2291
|
+
<col width="200px" class="parameters_annotations">
|
2292
|
+
</colgroup>
|
2293
|
+
<tbody><tr>
|
2294
|
+
<td class="parameter_name"><p>iter</p></td>
|
2295
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2296
|
+
<td class="parameter_annotations"> </td>
|
2297
|
+
</tr></tbody>
|
2298
|
+
</table></div>
|
2299
|
+
</div>
|
2300
|
+
<div class="refsect3">
|
2301
|
+
<a name="id-1.2.3.9.48.6"></a><h4>Returns</h4>
|
2302
|
+
<p> the filename of the font or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if font is embedded</p>
|
2303
|
+
<p></p>
|
2304
|
+
</div>
|
2305
|
+
</div>
|
2306
|
+
<hr>
|
2307
|
+
<div class="refsect2">
|
2308
|
+
<a name="poppler-fonts-iter-get-encoding"></a><h3>poppler_fonts_iter_get_encoding ()</h3>
|
2309
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2310
|
+
poppler_fonts_iter_get_encoding (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2311
|
+
<p>Returns the encoding of the font associated with <em class="parameter"><code>iter</code></em>
|
2312
|
+
</p>
|
2313
|
+
<div class="refsect3">
|
2314
|
+
<a name="id-1.2.3.9.49.5"></a><h4>Parameters</h4>
|
2315
|
+
<div class="informaltable"><table width="100%" border="0">
|
2316
|
+
<colgroup>
|
2317
|
+
<col width="150px" class="parameters_name">
|
2318
|
+
<col class="parameters_description">
|
2319
|
+
<col width="200px" class="parameters_annotations">
|
2320
|
+
</colgroup>
|
2321
|
+
<tbody><tr>
|
2322
|
+
<td class="parameter_name"><p>iter</p></td>
|
2323
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2324
|
+
<td class="parameter_annotations"> </td>
|
2325
|
+
</tr></tbody>
|
2326
|
+
</table></div>
|
2327
|
+
</div>
|
2328
|
+
<div class="refsect3">
|
2329
|
+
<a name="id-1.2.3.9.49.6"></a><h4>Returns</h4>
|
2330
|
+
<p> the font encoding</p>
|
2331
|
+
<p></p>
|
2332
|
+
</div>
|
2333
|
+
<p class="since">Since 0.20</p>
|
2334
|
+
</div>
|
2335
|
+
<hr>
|
2336
|
+
<div class="refsect2">
|
2337
|
+
<a name="poppler-fonts-iter-is-embedded"></a><h3>poppler_fonts_iter_is_embedded ()</h3>
|
2338
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2339
|
+
poppler_fonts_iter_is_embedded (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2340
|
+
<p>Returns whether the font associated with <em class="parameter"><code>iter</code></em>
|
2341
|
+
is embedded in the document</p>
|
2342
|
+
<div class="refsect3">
|
2343
|
+
<a name="id-1.2.3.9.50.5"></a><h4>Parameters</h4>
|
2344
|
+
<div class="informaltable"><table width="100%" border="0">
|
2345
|
+
<colgroup>
|
2346
|
+
<col width="150px" class="parameters_name">
|
2347
|
+
<col class="parameters_description">
|
2348
|
+
<col width="200px" class="parameters_annotations">
|
2349
|
+
</colgroup>
|
2350
|
+
<tbody><tr>
|
2351
|
+
<td class="parameter_name"><p>iter</p></td>
|
2352
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2353
|
+
<td class="parameter_annotations"> </td>
|
2354
|
+
</tr></tbody>
|
2355
|
+
</table></div>
|
2356
|
+
</div>
|
2357
|
+
<div class="refsect3">
|
2358
|
+
<a name="id-1.2.3.9.50.6"></a><h4>Returns</h4>
|
2359
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if font is emebdded, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
|
2360
|
+
<p></p>
|
2361
|
+
</div>
|
2362
|
+
</div>
|
2363
|
+
<hr>
|
2364
|
+
<div class="refsect2">
|
2365
|
+
<a name="poppler-fonts-iter-is-subset"></a><h3>poppler_fonts_iter_is_subset ()</h3>
|
2366
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2367
|
+
poppler_fonts_iter_is_subset (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2368
|
+
<p>Returns whether the font associated with <em class="parameter"><code>iter</code></em>
|
2369
|
+
is a subset of another font</p>
|
2370
|
+
<div class="refsect3">
|
2371
|
+
<a name="id-1.2.3.9.51.5"></a><h4>Parameters</h4>
|
2372
|
+
<div class="informaltable"><table width="100%" border="0">
|
2373
|
+
<colgroup>
|
2374
|
+
<col width="150px" class="parameters_name">
|
2375
|
+
<col class="parameters_description">
|
2376
|
+
<col width="200px" class="parameters_annotations">
|
2377
|
+
</colgroup>
|
2378
|
+
<tbody><tr>
|
2379
|
+
<td class="parameter_name"><p>iter</p></td>
|
2380
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2381
|
+
<td class="parameter_annotations"> </td>
|
2382
|
+
</tr></tbody>
|
2383
|
+
</table></div>
|
2384
|
+
</div>
|
2385
|
+
<div class="refsect3">
|
2386
|
+
<a name="id-1.2.3.9.51.6"></a><h4>Returns</h4>
|
2387
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if font is a subset, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
|
2388
|
+
<p></p>
|
2389
|
+
</div>
|
2390
|
+
</div>
|
2391
|
+
<hr>
|
2392
|
+
<div class="refsect2">
|
2393
|
+
<a name="poppler-fonts-iter-next"></a><h3>poppler_fonts_iter_next ()</h3>
|
2394
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2395
|
+
poppler_fonts_iter_next (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a> *iter</code></em>);</pre>
|
2396
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
2397
|
+
to point to the next font</p>
|
2398
|
+
<div class="refsect3">
|
2399
|
+
<a name="id-1.2.3.9.52.5"></a><h4>Parameters</h4>
|
2400
|
+
<div class="informaltable"><table width="100%" border="0">
|
2401
|
+
<colgroup>
|
2402
|
+
<col width="150px" class="parameters_name">
|
2403
|
+
<col class="parameters_description">
|
2404
|
+
<col width="200px" class="parameters_annotations">
|
2405
|
+
</colgroup>
|
2406
|
+
<tbody><tr>
|
2407
|
+
<td class="parameter_name"><p>iter</p></td>
|
2408
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerFontsIter" title="PopplerFontsIter"><span class="type">PopplerFontsIter</span></a></p></td>
|
2409
|
+
<td class="parameter_annotations"> </td>
|
2410
|
+
</tr></tbody>
|
2411
|
+
</table></div>
|
2412
|
+
</div>
|
2413
|
+
<div class="refsect3">
|
2414
|
+
<a name="id-1.2.3.9.52.6"></a><h4>Returns</h4>
|
2415
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2416
|
+
was set to the next font</p>
|
2417
|
+
<p></p>
|
2418
|
+
</div>
|
2419
|
+
</div>
|
2420
|
+
<hr>
|
2421
|
+
<div class="refsect2">
|
2422
|
+
<a name="poppler-layers-iter-new"></a><h3>poppler_layers_iter_new ()</h3>
|
2423
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="returnvalue">PopplerLayersIter</span></a> *
|
2424
|
+
poppler_layers_iter_new (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>);</pre>
|
2425
|
+
<div class="refsect3">
|
2426
|
+
<a name="id-1.2.3.9.53.4"></a><h4>Parameters</h4>
|
2427
|
+
<div class="informaltable"><table width="100%" border="0">
|
2428
|
+
<colgroup>
|
2429
|
+
<col width="150px" class="parameters_name">
|
2430
|
+
<col class="parameters_description">
|
2431
|
+
<col width="200px" class="parameters_annotations">
|
2432
|
+
</colgroup>
|
2433
|
+
<tbody><tr>
|
2434
|
+
<td class="parameter_name"><p>document</p></td>
|
2435
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
2436
|
+
<td class="parameter_annotations"> </td>
|
2437
|
+
</tr></tbody>
|
2438
|
+
</table></div>
|
2439
|
+
</div>
|
2440
|
+
<p class="since">Since 0.12</p>
|
2441
|
+
</div>
|
2442
|
+
<hr>
|
2443
|
+
<div class="refsect2">
|
2444
|
+
<a name="poppler-layers-iter-copy"></a><h3>poppler_layers_iter_copy ()</h3>
|
2445
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="returnvalue">PopplerLayersIter</span></a> *
|
2446
|
+
poppler_layers_iter_copy (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a> *iter</code></em>);</pre>
|
2447
|
+
<p>Creates a new <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a> as a copy of <em class="parameter"><code>iter</code></em>
|
2448
|
+
. This must be freed with
|
2449
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-free" title="poppler_layers_iter_free ()"><code class="function">poppler_layers_iter_free()</code></a>.</p>
|
2450
|
+
<div class="refsect3">
|
2451
|
+
<a name="id-1.2.3.9.54.5"></a><h4>Parameters</h4>
|
2452
|
+
<div class="informaltable"><table width="100%" border="0">
|
2453
|
+
<colgroup>
|
2454
|
+
<col width="150px" class="parameters_name">
|
2455
|
+
<col class="parameters_description">
|
2456
|
+
<col width="200px" class="parameters_annotations">
|
2457
|
+
</colgroup>
|
2458
|
+
<tbody><tr>
|
2459
|
+
<td class="parameter_name"><p>iter</p></td>
|
2460
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a></p></td>
|
2461
|
+
<td class="parameter_annotations"> </td>
|
2462
|
+
</tr></tbody>
|
2463
|
+
</table></div>
|
2464
|
+
</div>
|
2465
|
+
<div class="refsect3">
|
2466
|
+
<a name="id-1.2.3.9.54.6"></a><h4>Returns</h4>
|
2467
|
+
<p> a new <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a></p>
|
2468
|
+
<p>Since 0.12</p>
|
2469
|
+
<p></p>
|
2470
|
+
</div>
|
2471
|
+
</div>
|
2472
|
+
<hr>
|
2473
|
+
<div class="refsect2">
|
2474
|
+
<a name="poppler-layers-iter-free"></a><h3>poppler_layers_iter_free ()</h3>
|
2475
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2476
|
+
poppler_layers_iter_free (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a> *iter</code></em>);</pre>
|
2477
|
+
<p>Frees <em class="parameter"><code>iter</code></em>
|
2478
|
+
.</p>
|
2479
|
+
<div class="refsect3">
|
2480
|
+
<a name="id-1.2.3.9.55.5"></a><h4>Parameters</h4>
|
2481
|
+
<div class="informaltable"><table width="100%" border="0">
|
2482
|
+
<colgroup>
|
2483
|
+
<col width="150px" class="parameters_name">
|
2484
|
+
<col class="parameters_description">
|
2485
|
+
<col width="200px" class="parameters_annotations">
|
2486
|
+
</colgroup>
|
2487
|
+
<tbody><tr>
|
2488
|
+
<td class="parameter_name"><p>iter</p></td>
|
2489
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a></p></td>
|
2490
|
+
<td class="parameter_annotations"> </td>
|
2491
|
+
</tr></tbody>
|
2492
|
+
</table></div>
|
2493
|
+
</div>
|
2494
|
+
<p class="since">Since 0.12</p>
|
2495
|
+
</div>
|
2496
|
+
<hr>
|
2497
|
+
<div class="refsect2">
|
2498
|
+
<a name="poppler-layers-iter-get-child"></a><h3>poppler_layers_iter_get_child ()</h3>
|
2499
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="returnvalue">PopplerLayersIter</span></a> *
|
2500
|
+
poppler_layers_iter_get_child (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a> *parent</code></em>);</pre>
|
2501
|
+
<p>Returns a newly created child of <em class="parameter"><code>parent</code></em>
|
2502
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the iter has no child.
|
2503
|
+
See <a class="link" href="PopplerDocument.html#poppler-layers-iter-new" title="poppler_layers_iter_new ()"><code class="function">poppler_layers_iter_new()</code></a> for more information on this function.</p>
|
2504
|
+
<div class="refsect3">
|
2505
|
+
<a name="id-1.2.3.9.56.5"></a><h4>Parameters</h4>
|
2506
|
+
<div class="informaltable"><table width="100%" border="0">
|
2507
|
+
<colgroup>
|
2508
|
+
<col width="150px" class="parameters_name">
|
2509
|
+
<col class="parameters_description">
|
2510
|
+
<col width="200px" class="parameters_annotations">
|
2511
|
+
</colgroup>
|
2512
|
+
<tbody><tr>
|
2513
|
+
<td class="parameter_name"><p>parent</p></td>
|
2514
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a></p></td>
|
2515
|
+
<td class="parameter_annotations"> </td>
|
2516
|
+
</tr></tbody>
|
2517
|
+
</table></div>
|
2518
|
+
</div>
|
2519
|
+
<div class="refsect3">
|
2520
|
+
<a name="id-1.2.3.9.56.6"></a><h4>Returns</h4>
|
2521
|
+
<p> a new <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
2522
|
+
<p></p>
|
2523
|
+
</div>
|
2524
|
+
<p class="since">Since 0.12</p>
|
2525
|
+
</div>
|
2526
|
+
<hr>
|
2527
|
+
<div class="refsect2">
|
2528
|
+
<a name="poppler-layers-iter-get-layer"></a><h3>poppler_layers_iter_get_layer ()</h3>
|
2529
|
+
<pre class="programlisting"><a class="link" href="PopplerLayer.html" title="PopplerLayer"><span class="returnvalue">PopplerLayer</span></a> *
|
2530
|
+
poppler_layers_iter_get_layer (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a> *iter</code></em>);</pre>
|
2531
|
+
<p>Returns the <a class="link" href="PopplerLayer.html" title="PopplerLayer"><span class="type">PopplerLayer</span></a> associated with <em class="parameter"><code>iter</code></em>
|
2532
|
+
.</p>
|
2533
|
+
<div class="refsect3">
|
2534
|
+
<a name="id-1.2.3.9.57.5"></a><h4>Parameters</h4>
|
2535
|
+
<div class="informaltable"><table width="100%" border="0">
|
2536
|
+
<colgroup>
|
2537
|
+
<col width="150px" class="parameters_name">
|
2538
|
+
<col class="parameters_description">
|
2539
|
+
<col width="200px" class="parameters_annotations">
|
2540
|
+
</colgroup>
|
2541
|
+
<tbody><tr>
|
2542
|
+
<td class="parameter_name"><p>iter</p></td>
|
2543
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a></p></td>
|
2544
|
+
<td class="parameter_annotations"> </td>
|
2545
|
+
</tr></tbody>
|
2546
|
+
</table></div>
|
2547
|
+
</div>
|
2548
|
+
<div class="refsect3">
|
2549
|
+
<a name="id-1.2.3.9.57.6"></a><h4>Returns</h4>
|
2550
|
+
<p> a new <a class="link" href="PopplerLayer.html" title="PopplerLayer"><span class="type">PopplerLayer</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
2551
|
+
there isn't any layer associated with <em class="parameter"><code>iter</code></em>
|
2552
|
+
. </p>
|
2553
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
2554
|
+
</div>
|
2555
|
+
<p class="since">Since 0.12</p>
|
2556
|
+
</div>
|
2557
|
+
<hr>
|
2558
|
+
<div class="refsect2">
|
2559
|
+
<a name="poppler-layers-iter-get-title"></a><h3>poppler_layers_iter_get_title ()</h3>
|
2560
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2561
|
+
poppler_layers_iter_get_title (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a> *iter</code></em>);</pre>
|
2562
|
+
<p>Returns the title associated with <em class="parameter"><code>iter</code></em>
|
2563
|
+
. It must be freed with
|
2564
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</p>
|
2565
|
+
<div class="refsect3">
|
2566
|
+
<a name="id-1.2.3.9.58.5"></a><h4>Parameters</h4>
|
2567
|
+
<div class="informaltable"><table width="100%" border="0">
|
2568
|
+
<colgroup>
|
2569
|
+
<col width="150px" class="parameters_name">
|
2570
|
+
<col class="parameters_description">
|
2571
|
+
<col width="200px" class="parameters_annotations">
|
2572
|
+
</colgroup>
|
2573
|
+
<tbody><tr>
|
2574
|
+
<td class="parameter_name"><p>iter</p></td>
|
2575
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a></p></td>
|
2576
|
+
<td class="parameter_annotations"> </td>
|
2577
|
+
</tr></tbody>
|
2578
|
+
</table></div>
|
2579
|
+
</div>
|
2580
|
+
<div class="refsect3">
|
2581
|
+
<a name="id-1.2.3.9.58.6"></a><h4>Returns</h4>
|
2582
|
+
<p> a new string containing the <em class="parameter"><code>iter</code></em>
|
2583
|
+
's title or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>iter</code></em>
|
2584
|
+
doesn't have a title.
|
2585
|
+
The returned string should be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when no longer needed.</p>
|
2586
|
+
<p></p>
|
2587
|
+
</div>
|
2588
|
+
<p class="since">Since 0.12</p>
|
2589
|
+
</div>
|
2590
|
+
<hr>
|
2591
|
+
<div class="refsect2">
|
2592
|
+
<a name="poppler-layers-iter-next"></a><h3>poppler_layers_iter_next ()</h3>
|
2593
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2594
|
+
poppler_layers_iter_next (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a> *iter</code></em>);</pre>
|
2595
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
2596
|
+
to point to the next action at the current level, if valid. See
|
2597
|
+
<a class="link" href="PopplerDocument.html#poppler-layers-iter-new" title="poppler_layers_iter_new ()"><code class="function">poppler_layers_iter_new()</code></a> for more information.</p>
|
2598
|
+
<div class="refsect3">
|
2599
|
+
<a name="id-1.2.3.9.59.5"></a><h4>Parameters</h4>
|
2600
|
+
<div class="informaltable"><table width="100%" border="0">
|
2601
|
+
<colgroup>
|
2602
|
+
<col width="150px" class="parameters_name">
|
2603
|
+
<col class="parameters_description">
|
2604
|
+
<col width="200px" class="parameters_annotations">
|
2605
|
+
</colgroup>
|
2606
|
+
<tbody><tr>
|
2607
|
+
<td class="parameter_name"><p>iter</p></td>
|
2608
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html#PopplerLayersIter" title="PopplerLayersIter"><span class="type">PopplerLayersIter</span></a></p></td>
|
2609
|
+
<td class="parameter_annotations"> </td>
|
2610
|
+
</tr></tbody>
|
2611
|
+
</table></div>
|
2612
|
+
</div>
|
2613
|
+
<div class="refsect3">
|
2614
|
+
<a name="id-1.2.3.9.59.6"></a><h4>Returns</h4>
|
2615
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2616
|
+
was set to the next action</p>
|
2617
|
+
<p></p>
|
2618
|
+
</div>
|
2619
|
+
<p class="since">Since 0.12</p>
|
2620
|
+
</div>
|
2621
|
+
<hr>
|
2622
|
+
<div class="refsect2">
|
2623
|
+
<a name="poppler-ps-file-new"></a><h3>poppler_ps_file_new ()</h3>
|
2624
|
+
<pre class="programlisting"><a class="link" href="PopplerDocument.html#PopplerPSFile" title="PopplerPSFile"><span class="returnvalue">PopplerPSFile</span></a> *
|
2625
|
+
poppler_ps_file_new (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *document</code></em>,
|
2626
|
+
<em class="parameter"><code>const <span class="type">char</span> *filename</code></em>,
|
2627
|
+
<em class="parameter"><code><span class="type">int</span> first_page</code></em>,
|
2628
|
+
<em class="parameter"><code><span class="type">int</span> n_pages</code></em>);</pre>
|
2629
|
+
<p>Create a new postscript file to render to</p>
|
2630
|
+
<div class="refsect3">
|
2631
|
+
<a name="id-1.2.3.9.60.5"></a><h4>Parameters</h4>
|
2632
|
+
<div class="informaltable"><table width="100%" border="0">
|
2633
|
+
<colgroup>
|
2634
|
+
<col width="150px" class="parameters_name">
|
2635
|
+
<col class="parameters_description">
|
2636
|
+
<col width="200px" class="parameters_annotations">
|
2637
|
+
</colgroup>
|
2638
|
+
<tbody>
|
2639
|
+
<tr>
|
2640
|
+
<td class="parameter_name"><p>document</p></td>
|
2641
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a></p></td>
|
2642
|
+
<td class="parameter_annotations"> </td>
|
2643
|
+
</tr>
|
2644
|
+
<tr>
|
2645
|
+
<td class="parameter_name"><p>filename</p></td>
|
2646
|
+
<td class="parameter_description"><p>the path of the output filename</p></td>
|
2647
|
+
<td class="parameter_annotations"> </td>
|
2648
|
+
</tr>
|
2649
|
+
<tr>
|
2650
|
+
<td class="parameter_name"><p>first_page</p></td>
|
2651
|
+
<td class="parameter_description"><p>the first page to print</p></td>
|
2652
|
+
<td class="parameter_annotations"> </td>
|
2653
|
+
</tr>
|
2654
|
+
<tr>
|
2655
|
+
<td class="parameter_name"><p>n_pages</p></td>
|
2656
|
+
<td class="parameter_description"><p>the number of pages to print</p></td>
|
2657
|
+
<td class="parameter_annotations"> </td>
|
2658
|
+
</tr>
|
2659
|
+
</tbody>
|
2660
|
+
</table></div>
|
2661
|
+
</div>
|
2662
|
+
<div class="refsect3">
|
2663
|
+
<a name="id-1.2.3.9.60.6"></a><h4>Returns</h4>
|
2664
|
+
<p> a PopplerPSFile </p>
|
2665
|
+
<p></p>
|
2666
|
+
</div>
|
2667
|
+
</div>
|
2668
|
+
<hr>
|
2669
|
+
<div class="refsect2">
|
2670
|
+
<a name="poppler-ps-file-free"></a><h3>poppler_ps_file_free ()</h3>
|
2671
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2672
|
+
poppler_ps_file_free (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerPSFile" title="PopplerPSFile"><span class="type">PopplerPSFile</span></a> *ps_file</code></em>);</pre>
|
2673
|
+
<p>Frees <em class="parameter"><code>ps_file</code></em>
|
2674
|
+
</p>
|
2675
|
+
<div class="refsect3">
|
2676
|
+
<a name="id-1.2.3.9.61.5"></a><h4>Parameters</h4>
|
2677
|
+
<div class="informaltable"><table width="100%" border="0">
|
2678
|
+
<colgroup>
|
2679
|
+
<col width="150px" class="parameters_name">
|
2680
|
+
<col class="parameters_description">
|
2681
|
+
<col width="200px" class="parameters_annotations">
|
2682
|
+
</colgroup>
|
2683
|
+
<tbody><tr>
|
2684
|
+
<td class="parameter_name"><p>ps_file</p></td>
|
2685
|
+
<td class="parameter_description"><p>a PopplerPSFile</p></td>
|
2686
|
+
<td class="parameter_annotations"> </td>
|
2687
|
+
</tr></tbody>
|
2688
|
+
</table></div>
|
2689
|
+
</div>
|
2690
|
+
</div>
|
2691
|
+
<hr>
|
2692
|
+
<div class="refsect2">
|
2693
|
+
<a name="poppler-ps-file-set-paper-size"></a><h3>poppler_ps_file_set_paper_size ()</h3>
|
2694
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2695
|
+
poppler_ps_file_set_paper_size (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerPSFile" title="PopplerPSFile"><span class="type">PopplerPSFile</span></a> *ps_file</code></em>,
|
2696
|
+
<em class="parameter"><code><span class="type">double</span> width</code></em>,
|
2697
|
+
<em class="parameter"><code><span class="type">double</span> height</code></em>);</pre>
|
2698
|
+
<p>Set the output paper size. These values will end up in the
|
2699
|
+
DocumentMedia, the BoundingBox DSC comments and other places in the
|
2700
|
+
generated PostScript.</p>
|
2701
|
+
<div class="refsect3">
|
2702
|
+
<a name="id-1.2.3.9.62.5"></a><h4>Parameters</h4>
|
2703
|
+
<div class="informaltable"><table width="100%" border="0">
|
2704
|
+
<colgroup>
|
2705
|
+
<col width="150px" class="parameters_name">
|
2706
|
+
<col class="parameters_description">
|
2707
|
+
<col width="200px" class="parameters_annotations">
|
2708
|
+
</colgroup>
|
2709
|
+
<tbody>
|
2710
|
+
<tr>
|
2711
|
+
<td class="parameter_name"><p>ps_file</p></td>
|
2712
|
+
<td class="parameter_description"><p>a PopplerPSFile which was not yet printed to.</p></td>
|
2713
|
+
<td class="parameter_annotations"> </td>
|
2714
|
+
</tr>
|
2715
|
+
<tr>
|
2716
|
+
<td class="parameter_name"><p>width</p></td>
|
2717
|
+
<td class="parameter_description"><p>the paper width in 1/72 inch</p></td>
|
2718
|
+
<td class="parameter_annotations"> </td>
|
2719
|
+
</tr>
|
2720
|
+
<tr>
|
2721
|
+
<td class="parameter_name"><p>height</p></td>
|
2722
|
+
<td class="parameter_description"><p>the paper height in 1/72 inch</p></td>
|
2723
|
+
<td class="parameter_annotations"> </td>
|
2724
|
+
</tr>
|
2725
|
+
</tbody>
|
2726
|
+
</table></div>
|
2727
|
+
</div>
|
2728
|
+
</div>
|
2729
|
+
<hr>
|
2730
|
+
<div class="refsect2">
|
2731
|
+
<a name="poppler-ps-file-set-duplex"></a><h3>poppler_ps_file_set_duplex ()</h3>
|
2732
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2733
|
+
poppler_ps_file_set_duplex (<em class="parameter"><code><a class="link" href="PopplerDocument.html#PopplerPSFile" title="PopplerPSFile"><span class="type">PopplerPSFile</span></a> *ps_file</code></em>,
|
2734
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> duplex</code></em>);</pre>
|
2735
|
+
<p>Enable or disable Duplex printing.</p>
|
2736
|
+
<div class="refsect3">
|
2737
|
+
<a name="id-1.2.3.9.63.5"></a><h4>Parameters</h4>
|
2738
|
+
<div class="informaltable"><table width="100%" border="0">
|
2739
|
+
<colgroup>
|
2740
|
+
<col width="150px" class="parameters_name">
|
2741
|
+
<col class="parameters_description">
|
2742
|
+
<col width="200px" class="parameters_annotations">
|
2743
|
+
</colgroup>
|
2744
|
+
<tbody>
|
2745
|
+
<tr>
|
2746
|
+
<td class="parameter_name"><p>ps_file</p></td>
|
2747
|
+
<td class="parameter_description"><p>a PopplerPSFile which was not yet printed to</p></td>
|
2748
|
+
<td class="parameter_annotations"> </td>
|
2749
|
+
</tr>
|
2750
|
+
<tr>
|
2751
|
+
<td class="parameter_name"><p>duplex</p></td>
|
2752
|
+
<td class="parameter_description"><p>whether to force duplex printing (on printers which support this)</p></td>
|
2753
|
+
<td class="parameter_annotations"> </td>
|
2754
|
+
</tr>
|
2755
|
+
</tbody>
|
2756
|
+
</table></div>
|
2757
|
+
</div>
|
2758
|
+
</div>
|
2759
|
+
</div>
|
2760
|
+
<div class="refsect1">
|
2761
|
+
<a name="PopplerDocument.other_details"></a><h2>Types and Values</h2>
|
2762
|
+
<div class="refsect2">
|
2763
|
+
<a name="PopplerDocument-struct"></a><h3>PopplerDocument</h3>
|
2764
|
+
<pre class="programlisting">typedef struct _PopplerDocument PopplerDocument;</pre>
|
2765
|
+
</div>
|
2766
|
+
<hr>
|
2767
|
+
<div class="refsect2">
|
2768
|
+
<a name="PopplerIndexIter"></a><h3>PopplerIndexIter</h3>
|
2769
|
+
<pre class="programlisting">typedef struct _PopplerIndexIter PopplerIndexIter;</pre>
|
2770
|
+
</div>
|
2771
|
+
<hr>
|
2772
|
+
<div class="refsect2">
|
2773
|
+
<a name="PopplerFontsIter"></a><h3>PopplerFontsIter</h3>
|
2774
|
+
<pre class="programlisting">typedef struct _PopplerFontsIter PopplerFontsIter;</pre>
|
2775
|
+
</div>
|
2776
|
+
<hr>
|
2777
|
+
<div class="refsect2">
|
2778
|
+
<a name="PopplerLayersIter"></a><h3>PopplerLayersIter</h3>
|
2779
|
+
<pre class="programlisting">typedef struct _PopplerLayersIter PopplerLayersIter;</pre>
|
2780
|
+
</div>
|
2781
|
+
<hr>
|
2782
|
+
<div class="refsect2">
|
2783
|
+
<a name="PopplerPageLayout"></a><h3>enum PopplerPageLayout</h3>
|
2784
|
+
<p>Page layout types</p>
|
2785
|
+
<div class="refsect3">
|
2786
|
+
<a name="id-1.2.3.10.6.4"></a><h4>Members</h4>
|
2787
|
+
<div class="informaltable"><table width="100%" border="0">
|
2788
|
+
<colgroup>
|
2789
|
+
<col width="300px" class="enum_members_name">
|
2790
|
+
<col class="enum_members_description">
|
2791
|
+
<col width="200px" class="enum_members_annotations">
|
2792
|
+
</colgroup>
|
2793
|
+
<tbody>
|
2794
|
+
<tr>
|
2795
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-LAYOUT-UNSET:CAPS"></a>POPPLER_PAGE_LAYOUT_UNSET</p></td>
|
2796
|
+
<td class="enum_member_description">
|
2797
|
+
<p>no specific layout set</p>
|
2798
|
+
</td>
|
2799
|
+
<td class="enum_member_annotations"> </td>
|
2800
|
+
</tr>
|
2801
|
+
<tr>
|
2802
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-LAYOUT-SINGLE-PAGE:CAPS"></a>POPPLER_PAGE_LAYOUT_SINGLE_PAGE</p></td>
|
2803
|
+
<td class="enum_member_description">
|
2804
|
+
<p>one page at a time</p>
|
2805
|
+
</td>
|
2806
|
+
<td class="enum_member_annotations"> </td>
|
2807
|
+
</tr>
|
2808
|
+
<tr>
|
2809
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-LAYOUT-ONE-COLUMN:CAPS"></a>POPPLER_PAGE_LAYOUT_ONE_COLUMN</p></td>
|
2810
|
+
<td class="enum_member_description">
|
2811
|
+
<p>pages in one column</p>
|
2812
|
+
</td>
|
2813
|
+
<td class="enum_member_annotations"> </td>
|
2814
|
+
</tr>
|
2815
|
+
<tr>
|
2816
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-LAYOUT-TWO-COLUMN-LEFT:CAPS"></a>POPPLER_PAGE_LAYOUT_TWO_COLUMN_LEFT</p></td>
|
2817
|
+
<td class="enum_member_description">
|
2818
|
+
<p>pages in two columns with odd numbered pages on the left</p>
|
2819
|
+
</td>
|
2820
|
+
<td class="enum_member_annotations"> </td>
|
2821
|
+
</tr>
|
2822
|
+
<tr>
|
2823
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-LAYOUT-TWO-COLUMN-RIGHT:CAPS"></a>POPPLER_PAGE_LAYOUT_TWO_COLUMN_RIGHT</p></td>
|
2824
|
+
<td class="enum_member_description">
|
2825
|
+
<p>pages in two columns with odd numbered pages on the right</p>
|
2826
|
+
</td>
|
2827
|
+
<td class="enum_member_annotations"> </td>
|
2828
|
+
</tr>
|
2829
|
+
<tr>
|
2830
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-LAYOUT-TWO-PAGE-LEFT:CAPS"></a>POPPLER_PAGE_LAYOUT_TWO_PAGE_LEFT</p></td>
|
2831
|
+
<td class="enum_member_description">
|
2832
|
+
<p>two pages at a time with odd numbered pages on the left</p>
|
2833
|
+
</td>
|
2834
|
+
<td class="enum_member_annotations"> </td>
|
2835
|
+
</tr>
|
2836
|
+
<tr>
|
2837
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-LAYOUT-TWO-PAGE-RIGHT:CAPS"></a>POPPLER_PAGE_LAYOUT_TWO_PAGE_RIGHT</p></td>
|
2838
|
+
<td class="enum_member_description">
|
2839
|
+
<p>two pages at a time with odd numbered pages on the right</p>
|
2840
|
+
</td>
|
2841
|
+
<td class="enum_member_annotations"> </td>
|
2842
|
+
</tr>
|
2843
|
+
</tbody>
|
2844
|
+
</table></div>
|
2845
|
+
</div>
|
2846
|
+
</div>
|
2847
|
+
<hr>
|
2848
|
+
<div class="refsect2">
|
2849
|
+
<a name="PopplerPageMode"></a><h3>enum PopplerPageMode</h3>
|
2850
|
+
<p>Page modes</p>
|
2851
|
+
<div class="refsect3">
|
2852
|
+
<a name="id-1.2.3.10.7.4"></a><h4>Members</h4>
|
2853
|
+
<div class="informaltable"><table width="100%" border="0">
|
2854
|
+
<colgroup>
|
2855
|
+
<col width="300px" class="enum_members_name">
|
2856
|
+
<col class="enum_members_description">
|
2857
|
+
<col width="200px" class="enum_members_annotations">
|
2858
|
+
</colgroup>
|
2859
|
+
<tbody>
|
2860
|
+
<tr>
|
2861
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-MODE-UNSET:CAPS"></a>POPPLER_PAGE_MODE_UNSET</p></td>
|
2862
|
+
<td class="enum_member_description">
|
2863
|
+
<p>no specific mode set</p>
|
2864
|
+
</td>
|
2865
|
+
<td class="enum_member_annotations"> </td>
|
2866
|
+
</tr>
|
2867
|
+
<tr>
|
2868
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-MODE-NONE:CAPS"></a>POPPLER_PAGE_MODE_NONE</p></td>
|
2869
|
+
<td class="enum_member_description">
|
2870
|
+
<p>neither document outline nor thumbnails visible</p>
|
2871
|
+
</td>
|
2872
|
+
<td class="enum_member_annotations"> </td>
|
2873
|
+
</tr>
|
2874
|
+
<tr>
|
2875
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-MODE-USE-OUTLINES:CAPS"></a>POPPLER_PAGE_MODE_USE_OUTLINES</p></td>
|
2876
|
+
<td class="enum_member_description">
|
2877
|
+
<p>document outline visible</p>
|
2878
|
+
</td>
|
2879
|
+
<td class="enum_member_annotations"> </td>
|
2880
|
+
</tr>
|
2881
|
+
<tr>
|
2882
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-MODE-USE-THUMBS:CAPS"></a>POPPLER_PAGE_MODE_USE_THUMBS</p></td>
|
2883
|
+
<td class="enum_member_description">
|
2884
|
+
<p>thumbnails visible</p>
|
2885
|
+
</td>
|
2886
|
+
<td class="enum_member_annotations"> </td>
|
2887
|
+
</tr>
|
2888
|
+
<tr>
|
2889
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-MODE-FULL-SCREEN:CAPS"></a>POPPLER_PAGE_MODE_FULL_SCREEN</p></td>
|
2890
|
+
<td class="enum_member_description">
|
2891
|
+
<p>full-screen mode</p>
|
2892
|
+
</td>
|
2893
|
+
<td class="enum_member_annotations"> </td>
|
2894
|
+
</tr>
|
2895
|
+
<tr>
|
2896
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-MODE-USE-OC:CAPS"></a>POPPLER_PAGE_MODE_USE_OC</p></td>
|
2897
|
+
<td class="enum_member_description">
|
2898
|
+
<p>layers panel visible</p>
|
2899
|
+
</td>
|
2900
|
+
<td class="enum_member_annotations"> </td>
|
2901
|
+
</tr>
|
2902
|
+
<tr>
|
2903
|
+
<td class="enum_member_name"><p><a name="POPPLER-PAGE-MODE-USE-ATTACHMENTS:CAPS"></a>POPPLER_PAGE_MODE_USE_ATTACHMENTS</p></td>
|
2904
|
+
<td class="enum_member_description">
|
2905
|
+
<p>attachments panel visible</p>
|
2906
|
+
</td>
|
2907
|
+
<td class="enum_member_annotations"> </td>
|
2908
|
+
</tr>
|
2909
|
+
</tbody>
|
2910
|
+
</table></div>
|
2911
|
+
</div>
|
2912
|
+
</div>
|
2913
|
+
<hr>
|
2914
|
+
<div class="refsect2">
|
2915
|
+
<a name="PopplerFontInfo"></a><h3>PopplerFontInfo</h3>
|
2916
|
+
<pre class="programlisting">typedef struct {
|
2917
|
+
} PopplerFontInfo;
|
2918
|
+
</pre>
|
2919
|
+
</div>
|
2920
|
+
<hr>
|
2921
|
+
<div class="refsect2">
|
2922
|
+
<a name="PopplerFontType"></a><h3>enum PopplerFontType</h3>
|
2923
|
+
<p>Font types</p>
|
2924
|
+
<div class="refsect3">
|
2925
|
+
<a name="id-1.2.3.10.9.4"></a><h4>Members</h4>
|
2926
|
+
<div class="informaltable"><table width="100%" border="0">
|
2927
|
+
<colgroup>
|
2928
|
+
<col width="300px" class="enum_members_name">
|
2929
|
+
<col class="enum_members_description">
|
2930
|
+
<col width="200px" class="enum_members_annotations">
|
2931
|
+
</colgroup>
|
2932
|
+
<tbody>
|
2933
|
+
<tr>
|
2934
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-UNKNOWN:CAPS"></a>POPPLER_FONT_TYPE_UNKNOWN</p></td>
|
2935
|
+
<td class="enum_member_description">
|
2936
|
+
<p>unknown font type</p>
|
2937
|
+
</td>
|
2938
|
+
<td class="enum_member_annotations"> </td>
|
2939
|
+
</tr>
|
2940
|
+
<tr>
|
2941
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-TYPE1:CAPS"></a>POPPLER_FONT_TYPE_TYPE1</p></td>
|
2942
|
+
<td class="enum_member_description">
|
2943
|
+
<p>Type 1 font type</p>
|
2944
|
+
</td>
|
2945
|
+
<td class="enum_member_annotations"> </td>
|
2946
|
+
</tr>
|
2947
|
+
<tr>
|
2948
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-TYPE1C:CAPS"></a>POPPLER_FONT_TYPE_TYPE1C</p></td>
|
2949
|
+
<td class="enum_member_description">
|
2950
|
+
<p>Type 1 font type embedded in Compact Font Format (CFF) font program</p>
|
2951
|
+
</td>
|
2952
|
+
<td class="enum_member_annotations"> </td>
|
2953
|
+
</tr>
|
2954
|
+
<tr>
|
2955
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-TYPE1COT:CAPS"></a>POPPLER_FONT_TYPE_TYPE1COT</p></td>
|
2956
|
+
<td class="enum_member_description">
|
2957
|
+
<p>Type 1 font type embedded in OpenType font program</p>
|
2958
|
+
</td>
|
2959
|
+
<td class="enum_member_annotations"> </td>
|
2960
|
+
</tr>
|
2961
|
+
<tr>
|
2962
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-TYPE3:CAPS"></a>POPPLER_FONT_TYPE_TYPE3</p></td>
|
2963
|
+
<td class="enum_member_description">
|
2964
|
+
<p>A font type that is defined with PDF graphics operators</p>
|
2965
|
+
</td>
|
2966
|
+
<td class="enum_member_annotations"> </td>
|
2967
|
+
</tr>
|
2968
|
+
<tr>
|
2969
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-TRUETYPE:CAPS"></a>POPPLER_FONT_TYPE_TRUETYPE</p></td>
|
2970
|
+
<td class="enum_member_description">
|
2971
|
+
<p>TrueType font type</p>
|
2972
|
+
</td>
|
2973
|
+
<td class="enum_member_annotations"> </td>
|
2974
|
+
</tr>
|
2975
|
+
<tr>
|
2976
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-TRUETYPEOT:CAPS"></a>POPPLER_FONT_TYPE_TRUETYPEOT</p></td>
|
2977
|
+
<td class="enum_member_description">
|
2978
|
+
<p>TrueType font type embedded in OpenType font program</p>
|
2979
|
+
</td>
|
2980
|
+
<td class="enum_member_annotations"> </td>
|
2981
|
+
</tr>
|
2982
|
+
<tr>
|
2983
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-CID-TYPE0:CAPS"></a>POPPLER_FONT_TYPE_CID_TYPE0</p></td>
|
2984
|
+
<td class="enum_member_description">
|
2985
|
+
<p>CIDFont type based on Type 1 font technology</p>
|
2986
|
+
</td>
|
2987
|
+
<td class="enum_member_annotations"> </td>
|
2988
|
+
</tr>
|
2989
|
+
<tr>
|
2990
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-CID-TYPE0C:CAPS"></a>POPPLER_FONT_TYPE_CID_TYPE0C</p></td>
|
2991
|
+
<td class="enum_member_description">
|
2992
|
+
<p>CIDFont type based on Type 1 font technology embedded in CFF font program</p>
|
2993
|
+
</td>
|
2994
|
+
<td class="enum_member_annotations"> </td>
|
2995
|
+
</tr>
|
2996
|
+
<tr>
|
2997
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-CID-TYPE0COT:CAPS"></a>POPPLER_FONT_TYPE_CID_TYPE0COT</p></td>
|
2998
|
+
<td class="enum_member_description">
|
2999
|
+
<p>CIDFont type based on Type 1 font technology embedded in OpenType font program</p>
|
3000
|
+
</td>
|
3001
|
+
<td class="enum_member_annotations"> </td>
|
3002
|
+
</tr>
|
3003
|
+
<tr>
|
3004
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-CID-TYPE2:CAPS"></a>POPPLER_FONT_TYPE_CID_TYPE2</p></td>
|
3005
|
+
<td class="enum_member_description">
|
3006
|
+
<p>CIDFont type based on TrueType font technology</p>
|
3007
|
+
</td>
|
3008
|
+
<td class="enum_member_annotations"> </td>
|
3009
|
+
</tr>
|
3010
|
+
<tr>
|
3011
|
+
<td class="enum_member_name"><p><a name="POPPLER-FONT-TYPE-CID-TYPE2OT:CAPS"></a>POPPLER_FONT_TYPE_CID_TYPE2OT</p></td>
|
3012
|
+
<td class="enum_member_description">
|
3013
|
+
<p>CIDFont type based on TrueType font technology embedded in OpenType font program</p>
|
3014
|
+
</td>
|
3015
|
+
<td class="enum_member_annotations"> </td>
|
3016
|
+
</tr>
|
3017
|
+
</tbody>
|
3018
|
+
</table></div>
|
3019
|
+
</div>
|
3020
|
+
</div>
|
3021
|
+
<hr>
|
3022
|
+
<div class="refsect2">
|
3023
|
+
<a name="PopplerPSFile"></a><h3>PopplerPSFile</h3>
|
3024
|
+
<pre class="programlisting">typedef struct {
|
3025
|
+
} PopplerPSFile;
|
3026
|
+
</pre>
|
3027
|
+
</div>
|
3028
|
+
<hr>
|
3029
|
+
<div class="refsect2">
|
3030
|
+
<a name="PopplerViewerPreferences"></a><h3>enum PopplerViewerPreferences</h3>
|
3031
|
+
<p>Viewer preferences</p>
|
3032
|
+
<div class="refsect3">
|
3033
|
+
<a name="id-1.2.3.10.11.4"></a><h4>Members</h4>
|
3034
|
+
<div class="informaltable"><table width="100%" border="0">
|
3035
|
+
<colgroup>
|
3036
|
+
<col width="300px" class="enum_members_name">
|
3037
|
+
<col class="enum_members_description">
|
3038
|
+
<col width="200px" class="enum_members_annotations">
|
3039
|
+
</colgroup>
|
3040
|
+
<tbody>
|
3041
|
+
<tr>
|
3042
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-UNSET:CAPS"></a>POPPLER_VIEWER_PREFERENCES_UNSET</p></td>
|
3043
|
+
<td class="enum_member_description">
|
3044
|
+
<p>no preferences set</p>
|
3045
|
+
</td>
|
3046
|
+
<td class="enum_member_annotations"> </td>
|
3047
|
+
</tr>
|
3048
|
+
<tr>
|
3049
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-HIDE-TOOLBAR:CAPS"></a>POPPLER_VIEWER_PREFERENCES_HIDE_TOOLBAR</p></td>
|
3050
|
+
<td class="enum_member_description">
|
3051
|
+
<p>hider toolbars when document is active</p>
|
3052
|
+
</td>
|
3053
|
+
<td class="enum_member_annotations"> </td>
|
3054
|
+
</tr>
|
3055
|
+
<tr>
|
3056
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-HIDE-MENUBAR:CAPS"></a>POPPLER_VIEWER_PREFERENCES_HIDE_MENUBAR</p></td>
|
3057
|
+
<td class="enum_member_description">
|
3058
|
+
<p>hide menu bar when document is active</p>
|
3059
|
+
</td>
|
3060
|
+
<td class="enum_member_annotations"> </td>
|
3061
|
+
</tr>
|
3062
|
+
<tr>
|
3063
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-HIDE-WINDOWUI:CAPS"></a>POPPLER_VIEWER_PREFERENCES_HIDE_WINDOWUI</p></td>
|
3064
|
+
<td class="enum_member_description">
|
3065
|
+
<p>hide UI elements in document's window</p>
|
3066
|
+
</td>
|
3067
|
+
<td class="enum_member_annotations"> </td>
|
3068
|
+
</tr>
|
3069
|
+
<tr>
|
3070
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-FIT-WINDOW:CAPS"></a>POPPLER_VIEWER_PREFERENCES_FIT_WINDOW</p></td>
|
3071
|
+
<td class="enum_member_description">
|
3072
|
+
<p>resize document's window to fit the size of the first displayed page</p>
|
3073
|
+
</td>
|
3074
|
+
<td class="enum_member_annotations"> </td>
|
3075
|
+
</tr>
|
3076
|
+
<tr>
|
3077
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-CENTER-WINDOW:CAPS"></a>POPPLER_VIEWER_PREFERENCES_CENTER_WINDOW</p></td>
|
3078
|
+
<td class="enum_member_description">
|
3079
|
+
<p>position the document's window in the center of the screen</p>
|
3080
|
+
</td>
|
3081
|
+
<td class="enum_member_annotations"> </td>
|
3082
|
+
</tr>
|
3083
|
+
<tr>
|
3084
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-DISPLAY-DOC-TITLE:CAPS"></a>POPPLER_VIEWER_PREFERENCES_DISPLAY_DOC_TITLE</p></td>
|
3085
|
+
<td class="enum_member_description">
|
3086
|
+
<p>display document title in window's title bar</p>
|
3087
|
+
</td>
|
3088
|
+
<td class="enum_member_annotations"> </td>
|
3089
|
+
</tr>
|
3090
|
+
<tr>
|
3091
|
+
<td class="enum_member_name"><p><a name="POPPLER-VIEWER-PREFERENCES-DIRECTION-RTL:CAPS"></a>POPPLER_VIEWER_PREFERENCES_DIRECTION_RTL</p></td>
|
3092
|
+
<td class="enum_member_description">
|
3093
|
+
<p>the predominant reading order for text is right to left</p>
|
3094
|
+
</td>
|
3095
|
+
<td class="enum_member_annotations"> </td>
|
3096
|
+
</tr>
|
3097
|
+
</tbody>
|
3098
|
+
</table></div>
|
3099
|
+
</div>
|
3100
|
+
</div>
|
3101
|
+
<hr>
|
3102
|
+
<div class="refsect2">
|
3103
|
+
<a name="PopplerPermissions"></a><h3>enum PopplerPermissions</h3>
|
3104
|
+
<p>Permissions</p>
|
3105
|
+
<div class="refsect3">
|
3106
|
+
<a name="id-1.2.3.10.12.4"></a><h4>Members</h4>
|
3107
|
+
<div class="informaltable"><table width="100%" border="0">
|
3108
|
+
<colgroup>
|
3109
|
+
<col width="300px" class="enum_members_name">
|
3110
|
+
<col class="enum_members_description">
|
3111
|
+
<col width="200px" class="enum_members_annotations">
|
3112
|
+
</colgroup>
|
3113
|
+
<tbody>
|
3114
|
+
<tr>
|
3115
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-PRINT:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_PRINT</p></td>
|
3116
|
+
<td class="enum_member_description">
|
3117
|
+
<p>document can be printer</p>
|
3118
|
+
</td>
|
3119
|
+
<td class="enum_member_annotations"> </td>
|
3120
|
+
</tr>
|
3121
|
+
<tr>
|
3122
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-MODIFY:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_MODIFY</p></td>
|
3123
|
+
<td class="enum_member_description">
|
3124
|
+
<p>document contents can be modified</p>
|
3125
|
+
</td>
|
3126
|
+
<td class="enum_member_annotations"> </td>
|
3127
|
+
</tr>
|
3128
|
+
<tr>
|
3129
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-COPY:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_COPY</p></td>
|
3130
|
+
<td class="enum_member_description">
|
3131
|
+
<p>document can be copied</p>
|
3132
|
+
</td>
|
3133
|
+
<td class="enum_member_annotations"> </td>
|
3134
|
+
</tr>
|
3135
|
+
<tr>
|
3136
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-ADD-NOTES:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_ADD_NOTES</p></td>
|
3137
|
+
<td class="enum_member_description">
|
3138
|
+
<p>annotations can added to the document</p>
|
3139
|
+
</td>
|
3140
|
+
<td class="enum_member_annotations"> </td>
|
3141
|
+
</tr>
|
3142
|
+
<tr>
|
3143
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-FILL-FORM:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_FILL_FORM</p></td>
|
3144
|
+
<td class="enum_member_description">
|
3145
|
+
<p>interactive form fields can be filled in</p>
|
3146
|
+
</td>
|
3147
|
+
<td class="enum_member_annotations"> </td>
|
3148
|
+
</tr>
|
3149
|
+
<tr>
|
3150
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-EXTRACT-CONTENTS:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_EXTRACT_CONTENTS</p></td>
|
3151
|
+
<td class="enum_member_description">
|
3152
|
+
<p>extract text and graphics
|
3153
|
+
(in support of accessibility to users with disabilities or for other purposes). Since 0.18</p>
|
3154
|
+
</td>
|
3155
|
+
<td class="enum_member_annotations"> </td>
|
3156
|
+
</tr>
|
3157
|
+
<tr>
|
3158
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-ASSEMBLE:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_ASSEMBLE</p></td>
|
3159
|
+
<td class="enum_member_description">
|
3160
|
+
<p>assemble the document (insert, rotate, or delete pages and create
|
3161
|
+
bookmarks or thumbnail images). Since 0.18</p>
|
3162
|
+
</td>
|
3163
|
+
<td class="enum_member_annotations"> </td>
|
3164
|
+
</tr>
|
3165
|
+
<tr>
|
3166
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-OK-TO-PRINT-HIGH-RESOLUTION:CAPS"></a>POPPLER_PERMISSIONS_OK_TO_PRINT_HIGH_RESOLUTION</p></td>
|
3167
|
+
<td class="enum_member_description">
|
3168
|
+
<p>document can be printer at high resolution. Since 0.18</p>
|
3169
|
+
</td>
|
3170
|
+
<td class="enum_member_annotations"> </td>
|
3171
|
+
</tr>
|
3172
|
+
<tr>
|
3173
|
+
<td class="enum_member_name"><p><a name="POPPLER-PERMISSIONS-FULL:CAPS"></a>POPPLER_PERMISSIONS_FULL</p></td>
|
3174
|
+
<td class="enum_member_description">
|
3175
|
+
<p>document permits all operations</p>
|
3176
|
+
</td>
|
3177
|
+
<td class="enum_member_annotations"> </td>
|
3178
|
+
</tr>
|
3179
|
+
</tbody>
|
3180
|
+
</table></div>
|
3181
|
+
</div>
|
3182
|
+
</div>
|
3183
|
+
</div>
|
3184
|
+
<div class="refsect1">
|
3185
|
+
<a name="PopplerDocument.property-details"></a><h2>Property Details</h2>
|
3186
|
+
<div class="refsect2">
|
3187
|
+
<a name="PopplerDocument--author"></a><h3>The <code class="literal">“author”</code> property</h3>
|
3188
|
+
<pre class="programlisting"> “author” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3189
|
+
<p>The author of the document</p>
|
3190
|
+
<p>Flags: Read</p>
|
3191
|
+
<p>Default value: NULL</p>
|
3192
|
+
</div>
|
3193
|
+
<hr>
|
3194
|
+
<div class="refsect2">
|
3195
|
+
<a name="PopplerDocument--creation-date"></a><h3>The <code class="literal">“creation-date”</code> property</h3>
|
3196
|
+
<pre class="programlisting"> “creation-date” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
3197
|
+
<p>The date the document was created as seconds since the Epoch, or -1</p>
|
3198
|
+
<p>Flags: Read</p>
|
3199
|
+
<p>Allowed values: >= -1</p>
|
3200
|
+
<p>Default value: -1</p>
|
3201
|
+
</div>
|
3202
|
+
<hr>
|
3203
|
+
<div class="refsect2">
|
3204
|
+
<a name="PopplerDocument--creator"></a><h3>The <code class="literal">“creator”</code> property</h3>
|
3205
|
+
<pre class="programlisting"> “creator” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3206
|
+
<p>The creator of the document. See also <a class="link" href="PopplerDocument.html#poppler-document-get-creator" title="poppler_document_get_creator ()"><code class="function">poppler_document_get_creator()</code></a></p>
|
3207
|
+
<p>Flags: Read</p>
|
3208
|
+
<p>Default value: NULL</p>
|
3209
|
+
</div>
|
3210
|
+
<hr>
|
3211
|
+
<div class="refsect2">
|
3212
|
+
<a name="PopplerDocument--format"></a><h3>The <code class="literal">“format”</code> property</h3>
|
3213
|
+
<pre class="programlisting"> “format” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3214
|
+
<p>The PDF version as string. See also <a class="link" href="PopplerDocument.html#poppler-document-get-pdf-version-string" title="poppler_document_get_pdf_version_string ()"><code class="function">poppler_document_get_pdf_version_string()</code></a></p>
|
3215
|
+
<p>Flags: Read</p>
|
3216
|
+
<p>Default value: NULL</p>
|
3217
|
+
</div>
|
3218
|
+
<hr>
|
3219
|
+
<div class="refsect2">
|
3220
|
+
<a name="PopplerDocument--format-major"></a><h3>The <code class="literal">“format-major”</code> property</h3>
|
3221
|
+
<pre class="programlisting"> “format-major” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
|
3222
|
+
<p>The PDF major version number. See also <a class="link" href="PopplerDocument.html#poppler-document-get-pdf-version" title="poppler_document_get_pdf_version ()"><code class="function">poppler_document_get_pdf_version()</code></a></p>
|
3223
|
+
<p>Flags: Read</p>
|
3224
|
+
<p>Default value: 1</p>
|
3225
|
+
</div>
|
3226
|
+
<hr>
|
3227
|
+
<div class="refsect2">
|
3228
|
+
<a name="PopplerDocument--format-minor"></a><h3>The <code class="literal">“format-minor”</code> property</h3>
|
3229
|
+
<pre class="programlisting"> “format-minor” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
|
3230
|
+
<p>The PDF minor version number. See also <a class="link" href="PopplerDocument.html#poppler-document-get-pdf-version" title="poppler_document_get_pdf_version ()"><code class="function">poppler_document_get_pdf_version()</code></a></p>
|
3231
|
+
<p>Flags: Read</p>
|
3232
|
+
<p>Default value: 0</p>
|
3233
|
+
</div>
|
3234
|
+
<hr>
|
3235
|
+
<div class="refsect2">
|
3236
|
+
<a name="PopplerDocument--keywords"></a><h3>The <code class="literal">“keywords”</code> property</h3>
|
3237
|
+
<pre class="programlisting"> “keywords” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3238
|
+
<p>The keywords associated to the document</p>
|
3239
|
+
<p>Flags: Read</p>
|
3240
|
+
<p>Default value: NULL</p>
|
3241
|
+
</div>
|
3242
|
+
<hr>
|
3243
|
+
<div class="refsect2">
|
3244
|
+
<a name="PopplerDocument--linearized"></a><h3>The <code class="literal">“linearized”</code> property</h3>
|
3245
|
+
<pre class="programlisting"> “linearized” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
3246
|
+
<p>Whether document is linearized. See also <a class="link" href="PopplerDocument.html#poppler-document-is-linearized" title="poppler_document_is_linearized ()"><code class="function">poppler_document_is_linearized()</code></a></p>
|
3247
|
+
<p>Flags: Read</p>
|
3248
|
+
<p>Default value: FALSE</p>
|
3249
|
+
</div>
|
3250
|
+
<hr>
|
3251
|
+
<div class="refsect2">
|
3252
|
+
<a name="PopplerDocument--metadata"></a><h3>The <code class="literal">“metadata”</code> property</h3>
|
3253
|
+
<pre class="programlisting"> “metadata” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3254
|
+
<p>Document metadata in XML format, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
3255
|
+
<p>Flags: Read</p>
|
3256
|
+
<p>Default value: NULL</p>
|
3257
|
+
</div>
|
3258
|
+
<hr>
|
3259
|
+
<div class="refsect2">
|
3260
|
+
<a name="PopplerDocument--mod-date"></a><h3>The <code class="literal">“mod-date”</code> property</h3>
|
3261
|
+
<pre class="programlisting"> “mod-date” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
3262
|
+
<p>The date the document was most recently modified as seconds since the Epoch, or -1</p>
|
3263
|
+
<p>Flags: Read</p>
|
3264
|
+
<p>Allowed values: >= -1</p>
|
3265
|
+
<p>Default value: -1</p>
|
3266
|
+
</div>
|
3267
|
+
<hr>
|
3268
|
+
<div class="refsect2">
|
3269
|
+
<a name="PopplerDocument--page-layout"></a><h3>The <code class="literal">“page-layout”</code> property</h3>
|
3270
|
+
<pre class="programlisting"> “page-layout” <a class="link" href="PopplerDocument.html#PopplerPageLayout" title="enum PopplerPageLayout"><span class="type">PopplerPageLayout</span></a></pre>
|
3271
|
+
<p>The page layout that should be used when the document is opened</p>
|
3272
|
+
<p>Flags: Read</p>
|
3273
|
+
<p>Default value: POPPLER_PAGE_LAYOUT_UNSET</p>
|
3274
|
+
</div>
|
3275
|
+
<hr>
|
3276
|
+
<div class="refsect2">
|
3277
|
+
<a name="PopplerDocument--page-mode"></a><h3>The <code class="literal">“page-mode”</code> property</h3>
|
3278
|
+
<pre class="programlisting"> “page-mode” <a class="link" href="PopplerDocument.html#PopplerPageMode" title="enum PopplerPageMode"><span class="type">PopplerPageMode</span></a></pre>
|
3279
|
+
<p>The mode that should be used when the document is opened</p>
|
3280
|
+
<p>Flags: Read</p>
|
3281
|
+
<p>Default value: POPPLER_PAGE_MODE_UNSET</p>
|
3282
|
+
</div>
|
3283
|
+
<hr>
|
3284
|
+
<div class="refsect2">
|
3285
|
+
<a name="PopplerDocument--permissions"></a><h3>The <code class="literal">“permissions”</code> property</h3>
|
3286
|
+
<pre class="programlisting"> “permissions” <a class="link" href="PopplerDocument.html#PopplerPermissions" title="enum PopplerPermissions"><span class="type">PopplerPermissions</span></a></pre>
|
3287
|
+
<p>Flags specifying which operations are permitted when the document is opened</p>
|
3288
|
+
<p>Flags: Read</p>
|
3289
|
+
<p>Default value: POPPLER_PERMISSIONS_OK_TO_PRINT | POPPLER_PERMISSIONS_OK_TO_MODIFY | POPPLER_PERMISSIONS_OK_TO_COPY | POPPLER_PERMISSIONS_OK_TO_ADD_NOTES | POPPLER_PERMISSIONS_OK_TO_FILL_FORM | POPPLER_PERMISSIONS_OK_TO_EXTRACT_CONTENTS | POPPLER_PERMISSIONS_OK_TO_ASSEMBLE | POPPLER_PERMISSIONS_OK_TO_PRINT_HIGH_RESOLUTION</p>
|
3290
|
+
</div>
|
3291
|
+
<hr>
|
3292
|
+
<div class="refsect2">
|
3293
|
+
<a name="PopplerDocument--producer"></a><h3>The <code class="literal">“producer”</code> property</h3>
|
3294
|
+
<pre class="programlisting"> “producer” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3295
|
+
<p>The producer of the document. See also <a class="link" href="PopplerDocument.html#poppler-document-get-producer" title="poppler_document_get_producer ()"><code class="function">poppler_document_get_producer()</code></a></p>
|
3296
|
+
<p>Flags: Read</p>
|
3297
|
+
<p>Default value: NULL</p>
|
3298
|
+
</div>
|
3299
|
+
<hr>
|
3300
|
+
<div class="refsect2">
|
3301
|
+
<a name="PopplerDocument--subject"></a><h3>The <code class="literal">“subject”</code> property</h3>
|
3302
|
+
<pre class="programlisting"> “subject” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3303
|
+
<p>The subject of the document</p>
|
3304
|
+
<p>Flags: Read</p>
|
3305
|
+
<p>Default value: NULL</p>
|
3306
|
+
</div>
|
3307
|
+
<hr>
|
3308
|
+
<div class="refsect2">
|
3309
|
+
<a name="PopplerDocument--title"></a><h3>The <code class="literal">“title”</code> property</h3>
|
3310
|
+
<pre class="programlisting"> “title” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
3311
|
+
<p>The document's title or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
3312
|
+
<p>Flags: Read</p>
|
3313
|
+
<p>Default value: NULL</p>
|
3314
|
+
</div>
|
3315
|
+
<hr>
|
3316
|
+
<div class="refsect2">
|
3317
|
+
<a name="PopplerDocument--viewer-preferences"></a><h3>The <code class="literal">“viewer-preferences”</code> property</h3>
|
3318
|
+
<pre class="programlisting"> “viewer-preferences” <a class="link" href="PopplerDocument.html#PopplerViewerPreferences" title="enum PopplerViewerPreferences"><span class="type">PopplerViewerPreferences</span></a></pre>
|
3319
|
+
<p>Viewer Preferences.</p>
|
3320
|
+
<p>Flags: Read</p>
|
3321
|
+
</div>
|
3322
|
+
</div>
|
3323
|
+
</div>
|
3324
|
+
<div class="footer">
|
3325
|
+
<hr>
|
3326
|
+
Generated by GTK-Doc V1.21</div>
|
3327
|
+
</body>
|
3328
|
+
</html>
|