poppler 2.2.0-x86-mingw32 → 2.2.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +5 -5
- data/ext/poppler/extconf.rb +1 -1
- data/lib/2.0/poppler.so +0 -0
- data/test/test_annotation.rb +3 -1
- data/test/test_page.rb +0 -18
- data/vendor/local/bin/cjpeg.exe +0 -0
- data/vendor/local/bin/djpeg.exe +0 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libjpeg-9.dll +0 -0
- data/vendor/local/bin/{libpoppler-44.dll → libpoppler-46.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 +7 -1
- data/vendor/local/include/jmorecfg.h +68 -12
- data/vendor/local/include/jpeglib.h +19 -12
- 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-annot.h +64 -0
- data/vendor/local/include/poppler/glib/poppler-enums.h +34 -0
- data/vendor/local/include/poppler/glib/poppler-features.h +1 -1
- data/vendor/local/include/poppler/glib/poppler-media.h +1 -1
- data/vendor/local/include/poppler/glib/poppler-page.h +61 -0
- data/vendor/local/include/poppler/glib/poppler-structure-element.h +357 -0
- data/vendor/local/include/poppler/glib/poppler.h +11 -1
- data/vendor/local/include/sqlite3.h +245 -89
- 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 +2 -2
- 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 +2 -2
- data/vendor/local/lib/libpoppler.a +0 -0
- data/vendor/local/lib/libpoppler.dll.a +0 -0
- data/vendor/local/lib/libpoppler.la +4 -4
- data/vendor/local/lib/libsqlite3.a +0 -0
- data/vendor/local/lib/libsqlite3.dll.a +0 -0
- data/vendor/local/lib/libsqlite3.la +1 -1
- data/vendor/local/lib/pkgconfig/poppler-cairo.pc +2 -2
- data/vendor/local/lib/pkgconfig/poppler-cpp.pc +13 -0
- data/vendor/local/lib/pkgconfig/poppler-glib.pc +2 -2
- data/vendor/local/lib/pkgconfig/poppler-splash.pc +2 -2
- data/vendor/local/lib/pkgconfig/poppler.pc +1 -1
- data/vendor/local/lib/pkgconfig/sqlite3.pc +2 -2
- data/vendor/local/share/gir-1.0/Poppler-0.18.gir +2993 -169
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAnnot.html +2674 -1137
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAttachment.html +186 -133
- data/vendor/local/share/gtk-doc/html/poppler/PopplerDocument.html +2523 -1782
- data/vendor/local/share/gtk-doc/html/poppler/PopplerFormField.html +1071 -738
- data/vendor/local/share/gtk-doc/html/poppler/PopplerLayer.html +225 -146
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMedia.html +276 -201
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMovie.html +142 -101
- data/vendor/local/share/gtk-doc/html/poppler/PopplerPage.html +2191 -1421
- data/vendor/local/share/gtk-doc/html/poppler/PopplerStructureElement.html +3781 -0
- data/vendor/local/share/gtk-doc/html/poppler/annotation-glossary.html +30 -44
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-12.html +34 -39
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-14.html +27 -32
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-16.html +50 -55
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-18.html +23 -28
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-20.html +12 -15
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-22.html +18 -23
- data/vendor/local/share/gtk-doc/html/poppler/api-index-deprecated.html +12 -15
- data/vendor/local/share/gtk-doc/html/poppler/api-index-full.html +762 -280
- data/vendor/local/share/gtk-doc/html/poppler/ch01.html +12 -9
- data/vendor/local/share/gtk-doc/html/poppler/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/index.html +7 -4
- data/vendor/local/share/gtk-doc/html/poppler/index.sgml +258 -269
- 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-PopplerAction.html +454 -320
- data/vendor/local/share/gtk-doc/html/poppler/poppler-Version-and-Features-Information.html +102 -76
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler.html +367 -278
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp2 +356 -409
- 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 +314 -104
- 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/man/man1/cjpeg.1 +23 -2
- data/vendor/local/share/man/man1/djpeg.1 +2 -2
- data/vendor/local/share/man/man1/jpegtran.1 +12 -4
- data/vendor/local/share/man/man1/pdfimages.1 +78 -7
- data/vendor/local/share/man/man1/pdfinfo.1 +6 -0
- data/vendor/local/share/man/man1/pdftocairo.1 +9 -17
- data/vendor/local/share/man/man1/pdftohtml.1 +1 -1
- data/vendor/local/share/man/man1/pdftoppm.1 +12 -0
- data/vendor/local/share/man/man1/pdftops.1 +10 -20
- data/vendor/local/share/man/man1/rdjpgcom.1 +1 -1
- data/vendor/local/share/man/man1/sqlite3.1 +72 -22
- metadata +34 -15
- data/lib/1.9/poppler.so +0 -0
- data/lib/2.1/poppler.so +0 -0
@@ -0,0 +1,3781 @@
|
|
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: PopplerStructureElement</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="PopplerMovie.html" title="PopplerMovie">
|
10
|
+
<link rel="next" href="poppler-Version-and-Features-Information.html" title="Version and Features Information">
|
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="#PopplerStructureElement.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#PopplerStructureElement.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="PopplerMovie.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
+
<td><a accesskey="n" href="poppler-Version-and-Features-Information.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="PopplerStructureElement"></a><div class="titlepage"></div>
|
28
|
+
<div class="refnamediv"><table width="100%"><tr>
|
29
|
+
<td valign="top">
|
30
|
+
<h2><span class="refentrytitle"><a name="PopplerStructureElement.top_of_page"></a>PopplerStructureElement</span></h2>
|
31
|
+
<p>PopplerStructureElement — Document structure element.</p>
|
32
|
+
</td>
|
33
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
34
|
+
</tr></table></div>
|
35
|
+
<div class="refsect1">
|
36
|
+
<a name="PopplerStructureElement.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 class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="returnvalue">PopplerStructureElementIter</span></a> *
|
46
|
+
</td>
|
47
|
+
<td class="function_name">
|
48
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-new" title="poppler_structure_element_iter_new ()">poppler_structure_element_iter_new</a> <span class="c_punctuation">()</span>
|
49
|
+
</td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td class="function_type">
|
53
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
54
|
+
</td>
|
55
|
+
<td class="function_name">
|
56
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-next" title="poppler_structure_element_iter_next ()">poppler_structure_element_iter_next</a> <span class="c_punctuation">()</span>
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
<tr>
|
60
|
+
<td class="function_type">
|
61
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="returnvalue">PopplerStructureElementIter</span></a> *
|
62
|
+
</td>
|
63
|
+
<td class="function_name">
|
64
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-copy" title="poppler_structure_element_iter_copy ()">poppler_structure_element_iter_copy</a> <span class="c_punctuation">()</span>
|
65
|
+
</td>
|
66
|
+
</tr>
|
67
|
+
<tr>
|
68
|
+
<td class="function_type">
|
69
|
+
<span class="returnvalue">void</span>
|
70
|
+
</td>
|
71
|
+
<td class="function_name">
|
72
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-free" title="poppler_structure_element_iter_free ()">poppler_structure_element_iter_free</a> <span class="c_punctuation">()</span>
|
73
|
+
</td>
|
74
|
+
</tr>
|
75
|
+
<tr>
|
76
|
+
<td class="function_type">
|
77
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="returnvalue">PopplerStructureElementIter</span></a> *
|
78
|
+
</td>
|
79
|
+
<td class="function_name">
|
80
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-get-child" title="poppler_structure_element_iter_get_child ()">poppler_structure_element_iter_get_child</a> <span class="c_punctuation">()</span>
|
81
|
+
</td>
|
82
|
+
</tr>
|
83
|
+
<tr>
|
84
|
+
<td class="function_type">
|
85
|
+
<a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="returnvalue">PopplerStructureElement</span></a> *
|
86
|
+
</td>
|
87
|
+
<td class="function_name">
|
88
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-get-element" title="poppler_structure_element_iter_get_element ()">poppler_structure_element_iter_get_element</a> <span class="c_punctuation">()</span>
|
89
|
+
</td>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td class="function_type">
|
93
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureElementKind" title="enum PopplerStructureElementKind"><span class="returnvalue">PopplerStructureElementKind</span></a>
|
94
|
+
</td>
|
95
|
+
<td class="function_name">
|
96
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-kind" title="poppler_structure_element_get_kind ()">poppler_structure_element_get_kind</a> <span class="c_punctuation">()</span>
|
97
|
+
</td>
|
98
|
+
</tr>
|
99
|
+
<tr>
|
100
|
+
<td class="function_type">
|
101
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
102
|
+
</td>
|
103
|
+
<td class="function_name">
|
104
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-page" title="poppler_structure_element_get_page ()">poppler_structure_element_get_page</a> <span class="c_punctuation">()</span>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td class="function_type">
|
109
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
110
|
+
</td>
|
111
|
+
<td class="function_name">
|
112
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-is-content" title="poppler_structure_element_is_content ()">poppler_structure_element_is_content</a> <span class="c_punctuation">()</span>
|
113
|
+
</td>
|
114
|
+
</tr>
|
115
|
+
<tr>
|
116
|
+
<td class="function_type">
|
117
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
118
|
+
</td>
|
119
|
+
<td class="function_name">
|
120
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-is-inline" title="poppler_structure_element_is_inline ()">poppler_structure_element_is_inline</a> <span class="c_punctuation">()</span>
|
121
|
+
</td>
|
122
|
+
</tr>
|
123
|
+
<tr>
|
124
|
+
<td class="function_type">
|
125
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
126
|
+
</td>
|
127
|
+
<td class="function_name">
|
128
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-is-block" title="poppler_structure_element_is_block ()">poppler_structure_element_is_block</a> <span class="c_punctuation">()</span>
|
129
|
+
</td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td class="function_type">
|
133
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
134
|
+
</td>
|
135
|
+
<td class="function_name">
|
136
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-is-grouping" title="poppler_structure_element_is_grouping ()">poppler_structure_element_is_grouping</a> <span class="c_punctuation">()</span>
|
137
|
+
</td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td class="function_type">
|
141
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
142
|
+
</td>
|
143
|
+
<td class="function_name">
|
144
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-id" title="poppler_structure_element_get_id ()">poppler_structure_element_get_id</a> <span class="c_punctuation">()</span>
|
145
|
+
</td>
|
146
|
+
</tr>
|
147
|
+
<tr>
|
148
|
+
<td class="function_type">
|
149
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
150
|
+
</td>
|
151
|
+
<td class="function_name">
|
152
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-title" title="poppler_structure_element_get_title ()">poppler_structure_element_get_title</a> <span class="c_punctuation">()</span>
|
153
|
+
</td>
|
154
|
+
</tr>
|
155
|
+
<tr>
|
156
|
+
<td class="function_type">
|
157
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
158
|
+
</td>
|
159
|
+
<td class="function_name">
|
160
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-abbreviation" title="poppler_structure_element_get_abbreviation ()">poppler_structure_element_get_abbreviation</a> <span class="c_punctuation">()</span>
|
161
|
+
</td>
|
162
|
+
</tr>
|
163
|
+
<tr>
|
164
|
+
<td class="function_type">
|
165
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
166
|
+
</td>
|
167
|
+
<td class="function_name">
|
168
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-language" title="poppler_structure_element_get_language ()">poppler_structure_element_get_language</a> <span class="c_punctuation">()</span>
|
169
|
+
</td>
|
170
|
+
</tr>
|
171
|
+
<tr>
|
172
|
+
<td class="function_type">
|
173
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
174
|
+
</td>
|
175
|
+
<td class="function_name">
|
176
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text" title="poppler_structure_element_get_text ()">poppler_structure_element_get_text</a> <span class="c_punctuation">()</span>
|
177
|
+
</td>
|
178
|
+
</tr>
|
179
|
+
<tr>
|
180
|
+
<td class="function_type">
|
181
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
182
|
+
</td>
|
183
|
+
<td class="function_name">
|
184
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-alt-text" title="poppler_structure_element_get_alt_text ()">poppler_structure_element_get_alt_text</a> <span class="c_punctuation">()</span>
|
185
|
+
</td>
|
186
|
+
</tr>
|
187
|
+
<tr>
|
188
|
+
<td class="function_type">
|
189
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
190
|
+
</td>
|
191
|
+
<td class="function_name">
|
192
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-actual-text" title="poppler_structure_element_get_actual_text ()">poppler_structure_element_get_actual_text</a> <span class="c_punctuation">()</span>
|
193
|
+
</td>
|
194
|
+
</tr>
|
195
|
+
<tr>
|
196
|
+
<td class="function_type">
|
197
|
+
<a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="returnvalue">PopplerTextSpan</span></a> **
|
198
|
+
</td>
|
199
|
+
<td class="function_name">
|
200
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text-spans" title="poppler_structure_element_get_text_spans ()">poppler_structure_element_get_text_spans</a> <span class="c_punctuation">()</span>
|
201
|
+
</td>
|
202
|
+
</tr>
|
203
|
+
<tr>
|
204
|
+
<td class="function_type">
|
205
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructurePlacement" title="enum PopplerStructurePlacement"><span class="returnvalue">PopplerStructurePlacement</span></a>
|
206
|
+
</td>
|
207
|
+
<td class="function_name">
|
208
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-placement" title="poppler_structure_element_get_placement ()">poppler_structure_element_get_placement</a> <span class="c_punctuation">()</span>
|
209
|
+
</td>
|
210
|
+
</tr>
|
211
|
+
<tr>
|
212
|
+
<td class="function_type">
|
213
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureWritingMode" title="enum PopplerStructureWritingMode"><span class="returnvalue">PopplerStructureWritingMode</span></a>
|
214
|
+
</td>
|
215
|
+
<td class="function_name">
|
216
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-writing-mode" title="poppler_structure_element_get_writing_mode ()">poppler_structure_element_get_writing_mode</a> <span class="c_punctuation">()</span>
|
217
|
+
</td>
|
218
|
+
</tr>
|
219
|
+
<tr>
|
220
|
+
<td class="function_type">
|
221
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
222
|
+
</td>
|
223
|
+
<td class="function_name">
|
224
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-background-color" title="poppler_structure_element_get_background_color ()">poppler_structure_element_get_background_color</a> <span class="c_punctuation">()</span>
|
225
|
+
</td>
|
226
|
+
</tr>
|
227
|
+
<tr>
|
228
|
+
<td class="function_type">
|
229
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
230
|
+
</td>
|
231
|
+
<td class="function_name">
|
232
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-border-color" title="poppler_structure_element_get_border_color ()">poppler_structure_element_get_border_color</a> <span class="c_punctuation">()</span>
|
233
|
+
</td>
|
234
|
+
</tr>
|
235
|
+
<tr>
|
236
|
+
<td class="function_type">
|
237
|
+
<span class="returnvalue">void</span>
|
238
|
+
</td>
|
239
|
+
<td class="function_name">
|
240
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-border-style" title="poppler_structure_element_get_border_style ()">poppler_structure_element_get_border_style</a> <span class="c_punctuation">()</span>
|
241
|
+
</td>
|
242
|
+
</tr>
|
243
|
+
<tr>
|
244
|
+
<td class="function_type">
|
245
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
246
|
+
</td>
|
247
|
+
<td class="function_name">
|
248
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-border-thickness" title="poppler_structure_element_get_border_thickness ()">poppler_structure_element_get_border_thickness</a> <span class="c_punctuation">()</span>
|
249
|
+
</td>
|
250
|
+
</tr>
|
251
|
+
<tr>
|
252
|
+
<td class="function_type">
|
253
|
+
<span class="returnvalue">void</span>
|
254
|
+
</td>
|
255
|
+
<td class="function_name">
|
256
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-padding" title="poppler_structure_element_get_padding ()">poppler_structure_element_get_padding</a> <span class="c_punctuation">()</span>
|
257
|
+
</td>
|
258
|
+
</tr>
|
259
|
+
<tr>
|
260
|
+
<td class="function_type">
|
261
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
262
|
+
</td>
|
263
|
+
<td class="function_name">
|
264
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-color" title="poppler_structure_element_get_color ()">poppler_structure_element_get_color</a> <span class="c_punctuation">()</span>
|
265
|
+
</td>
|
266
|
+
</tr>
|
267
|
+
<tr>
|
268
|
+
<td class="function_type">
|
269
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
270
|
+
</td>
|
271
|
+
<td class="function_name">
|
272
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-space-before" title="poppler_structure_element_get_space_before ()">poppler_structure_element_get_space_before</a> <span class="c_punctuation">()</span>
|
273
|
+
</td>
|
274
|
+
</tr>
|
275
|
+
<tr>
|
276
|
+
<td class="function_type">
|
277
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
278
|
+
</td>
|
279
|
+
<td class="function_name">
|
280
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-space-after" title="poppler_structure_element_get_space_after ()">poppler_structure_element_get_space_after</a> <span class="c_punctuation">()</span>
|
281
|
+
</td>
|
282
|
+
</tr>
|
283
|
+
<tr>
|
284
|
+
<td class="function_type">
|
285
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
286
|
+
</td>
|
287
|
+
<td class="function_name">
|
288
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-start-indent" title="poppler_structure_element_get_start_indent ()">poppler_structure_element_get_start_indent</a> <span class="c_punctuation">()</span>
|
289
|
+
</td>
|
290
|
+
</tr>
|
291
|
+
<tr>
|
292
|
+
<td class="function_type">
|
293
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
294
|
+
</td>
|
295
|
+
<td class="function_name">
|
296
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-end-indent" title="poppler_structure_element_get_end_indent ()">poppler_structure_element_get_end_indent</a> <span class="c_punctuation">()</span>
|
297
|
+
</td>
|
298
|
+
</tr>
|
299
|
+
<tr>
|
300
|
+
<td class="function_type">
|
301
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
302
|
+
</td>
|
303
|
+
<td class="function_name">
|
304
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text-indent" title="poppler_structure_element_get_text_indent ()">poppler_structure_element_get_text_indent</a> <span class="c_punctuation">()</span>
|
305
|
+
</td>
|
306
|
+
</tr>
|
307
|
+
<tr>
|
308
|
+
<td class="function_type">
|
309
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureTextAlign" title="enum PopplerStructureTextAlign"><span class="returnvalue">PopplerStructureTextAlign</span></a>
|
310
|
+
</td>
|
311
|
+
<td class="function_name">
|
312
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text-align" title="poppler_structure_element_get_text_align ()">poppler_structure_element_get_text_align</a> <span class="c_punctuation">()</span>
|
313
|
+
</td>
|
314
|
+
</tr>
|
315
|
+
<tr>
|
316
|
+
<td class="function_type">
|
317
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
318
|
+
</td>
|
319
|
+
<td class="function_name">
|
320
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-bounding-box" title="poppler_structure_element_get_bounding_box ()">poppler_structure_element_get_bounding_box</a> <span class="c_punctuation">()</span>
|
321
|
+
</td>
|
322
|
+
</tr>
|
323
|
+
<tr>
|
324
|
+
<td class="function_type">
|
325
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
326
|
+
</td>
|
327
|
+
<td class="function_name">
|
328
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-width" title="poppler_structure_element_get_width ()">poppler_structure_element_get_width</a> <span class="c_punctuation">()</span>
|
329
|
+
</td>
|
330
|
+
</tr>
|
331
|
+
<tr>
|
332
|
+
<td class="function_type">
|
333
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
334
|
+
</td>
|
335
|
+
<td class="function_name">
|
336
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-height" title="poppler_structure_element_get_height ()">poppler_structure_element_get_height</a> <span class="c_punctuation">()</span>
|
337
|
+
</td>
|
338
|
+
</tr>
|
339
|
+
<tr>
|
340
|
+
<td class="function_type">
|
341
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureBlockAlign" title="enum PopplerStructureBlockAlign"><span class="returnvalue">PopplerStructureBlockAlign</span></a>
|
342
|
+
</td>
|
343
|
+
<td class="function_name">
|
344
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-block-align" title="poppler_structure_element_get_block_align ()">poppler_structure_element_get_block_align</a> <span class="c_punctuation">()</span>
|
345
|
+
</td>
|
346
|
+
</tr>
|
347
|
+
<tr>
|
348
|
+
<td class="function_type">
|
349
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureInlineAlign" title="enum PopplerStructureInlineAlign"><span class="returnvalue">PopplerStructureInlineAlign</span></a>
|
350
|
+
</td>
|
351
|
+
<td class="function_name">
|
352
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-inline-align" title="poppler_structure_element_get_inline_align ()">poppler_structure_element_get_inline_align</a> <span class="c_punctuation">()</span>
|
353
|
+
</td>
|
354
|
+
</tr>
|
355
|
+
<tr>
|
356
|
+
<td class="function_type">
|
357
|
+
<span class="returnvalue">void</span>
|
358
|
+
</td>
|
359
|
+
<td class="function_name">
|
360
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-table-border-style" title="poppler_structure_element_get_table_border_style ()">poppler_structure_element_get_table_border_style</a> <span class="c_punctuation">()</span>
|
361
|
+
</td>
|
362
|
+
</tr>
|
363
|
+
<tr>
|
364
|
+
<td class="function_type">
|
365
|
+
<span class="returnvalue">void</span>
|
366
|
+
</td>
|
367
|
+
<td class="function_name">
|
368
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-table-padding" title="poppler_structure_element_get_table_padding ()">poppler_structure_element_get_table_padding</a> <span class="c_punctuation">()</span>
|
369
|
+
</td>
|
370
|
+
</tr>
|
371
|
+
<tr>
|
372
|
+
<td class="function_type">
|
373
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
374
|
+
</td>
|
375
|
+
<td class="function_name">
|
376
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-baseline-shift" title="poppler_structure_element_get_baseline_shift ()">poppler_structure_element_get_baseline_shift</a> <span class="c_punctuation">()</span>
|
377
|
+
</td>
|
378
|
+
</tr>
|
379
|
+
<tr>
|
380
|
+
<td class="function_type">
|
381
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
382
|
+
</td>
|
383
|
+
<td class="function_name">
|
384
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-line-height" title="poppler_structure_element_get_line_height ()">poppler_structure_element_get_line_height</a> <span class="c_punctuation">()</span>
|
385
|
+
</td>
|
386
|
+
</tr>
|
387
|
+
<tr>
|
388
|
+
<td class="function_type">
|
389
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
390
|
+
</td>
|
391
|
+
<td class="function_name">
|
392
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text-decoration-color" title="poppler_structure_element_get_text_decoration_color ()">poppler_structure_element_get_text_decoration_color</a> <span class="c_punctuation">()</span>
|
393
|
+
</td>
|
394
|
+
</tr>
|
395
|
+
<tr>
|
396
|
+
<td class="function_type">
|
397
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
398
|
+
</td>
|
399
|
+
<td class="function_name">
|
400
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text-decoration-thickness" title="poppler_structure_element_get_text_decoration_thickness ()">poppler_structure_element_get_text_decoration_thickness</a> <span class="c_punctuation">()</span>
|
401
|
+
</td>
|
402
|
+
</tr>
|
403
|
+
<tr>
|
404
|
+
<td class="function_type">
|
405
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureTextDecoration" title="enum PopplerStructureTextDecoration"><span class="returnvalue">PopplerStructureTextDecoration</span></a>
|
406
|
+
</td>
|
407
|
+
<td class="function_name">
|
408
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text-decoration-type" title="poppler_structure_element_get_text_decoration_type ()">poppler_structure_element_get_text_decoration_type</a> <span class="c_punctuation">()</span>
|
409
|
+
</td>
|
410
|
+
</tr>
|
411
|
+
<tr>
|
412
|
+
<td class="function_type">
|
413
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureRubyAlign" title="enum PopplerStructureRubyAlign"><span class="returnvalue">PopplerStructureRubyAlign</span></a>
|
414
|
+
</td>
|
415
|
+
<td class="function_name">
|
416
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-ruby-align" title="poppler_structure_element_get_ruby_align ()">poppler_structure_element_get_ruby_align</a> <span class="c_punctuation">()</span>
|
417
|
+
</td>
|
418
|
+
</tr>
|
419
|
+
<tr>
|
420
|
+
<td class="function_type">
|
421
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureRubyPosition" title="enum PopplerStructureRubyPosition"><span class="returnvalue">PopplerStructureRubyPosition</span></a>
|
422
|
+
</td>
|
423
|
+
<td class="function_name">
|
424
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-ruby-position" title="poppler_structure_element_get_ruby_position ()">poppler_structure_element_get_ruby_position</a> <span class="c_punctuation">()</span>
|
425
|
+
</td>
|
426
|
+
</tr>
|
427
|
+
<tr>
|
428
|
+
<td class="function_type">
|
429
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureGlyphOrientation" title="enum PopplerStructureGlyphOrientation"><span class="returnvalue">PopplerStructureGlyphOrientation</span></a>
|
430
|
+
</td>
|
431
|
+
<td class="function_name">
|
432
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-glyph-orientation" title="poppler_structure_element_get_glyph_orientation ()">poppler_structure_element_get_glyph_orientation</a> <span class="c_punctuation">()</span>
|
433
|
+
</td>
|
434
|
+
</tr>
|
435
|
+
<tr>
|
436
|
+
<td class="function_type">
|
437
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
438
|
+
</td>
|
439
|
+
<td class="function_name">
|
440
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-column-count" title="poppler_structure_element_get_column_count ()">poppler_structure_element_get_column_count</a> <span class="c_punctuation">()</span>
|
441
|
+
</td>
|
442
|
+
</tr>
|
443
|
+
<tr>
|
444
|
+
<td class="function_type">
|
445
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> *
|
446
|
+
</td>
|
447
|
+
<td class="function_name">
|
448
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-column-gaps" title="poppler_structure_element_get_column_gaps ()">poppler_structure_element_get_column_gaps</a> <span class="c_punctuation">()</span>
|
449
|
+
</td>
|
450
|
+
</tr>
|
451
|
+
<tr>
|
452
|
+
<td class="function_type">
|
453
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> *
|
454
|
+
</td>
|
455
|
+
<td class="function_name">
|
456
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-column-widths" title="poppler_structure_element_get_column_widths ()">poppler_structure_element_get_column_widths</a> <span class="c_punctuation">()</span>
|
457
|
+
</td>
|
458
|
+
</tr>
|
459
|
+
<tr>
|
460
|
+
<td class="function_type">
|
461
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureListNumbering" title="enum PopplerStructureListNumbering"><span class="returnvalue">PopplerStructureListNumbering</span></a>
|
462
|
+
</td>
|
463
|
+
<td class="function_name">
|
464
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-list-numbering" title="poppler_structure_element_get_list_numbering ()">poppler_structure_element_get_list_numbering</a> <span class="c_punctuation">()</span>
|
465
|
+
</td>
|
466
|
+
</tr>
|
467
|
+
<tr>
|
468
|
+
<td class="function_type">
|
469
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureFormRole" title="enum PopplerStructureFormRole"><span class="returnvalue">PopplerStructureFormRole</span></a>
|
470
|
+
</td>
|
471
|
+
<td class="function_name">
|
472
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-form-role" title="poppler_structure_element_get_form_role ()">poppler_structure_element_get_form_role</a> <span class="c_punctuation">()</span>
|
473
|
+
</td>
|
474
|
+
</tr>
|
475
|
+
<tr>
|
476
|
+
<td class="function_type">
|
477
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureFormState" title="enum PopplerStructureFormState"><span class="returnvalue">PopplerStructureFormState</span></a>
|
478
|
+
</td>
|
479
|
+
<td class="function_name">
|
480
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-form-state" title="poppler_structure_element_get_form_state ()">poppler_structure_element_get_form_state</a> <span class="c_punctuation">()</span>
|
481
|
+
</td>
|
482
|
+
</tr>
|
483
|
+
<tr>
|
484
|
+
<td class="function_type">
|
485
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
486
|
+
</td>
|
487
|
+
<td class="function_name">
|
488
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-form-description" title="poppler_structure_element_get_form_description ()">poppler_structure_element_get_form_description</a> <span class="c_punctuation">()</span>
|
489
|
+
</td>
|
490
|
+
</tr>
|
491
|
+
<tr>
|
492
|
+
<td class="function_type">
|
493
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
494
|
+
</td>
|
495
|
+
<td class="function_name">
|
496
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-table-row-span" title="poppler_structure_element_get_table_row_span ()">poppler_structure_element_get_table_row_span</a> <span class="c_punctuation">()</span>
|
497
|
+
</td>
|
498
|
+
</tr>
|
499
|
+
<tr>
|
500
|
+
<td class="function_type">
|
501
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
502
|
+
</td>
|
503
|
+
<td class="function_name">
|
504
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-table-column-span" title="poppler_structure_element_get_table_column_span ()">poppler_structure_element_get_table_column_span</a> <span class="c_punctuation">()</span>
|
505
|
+
</td>
|
506
|
+
</tr>
|
507
|
+
<tr>
|
508
|
+
<td class="function_type">
|
509
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
|
510
|
+
</td>
|
511
|
+
<td class="function_name">
|
512
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-table-headers" title="poppler_structure_element_get_table_headers ()">poppler_structure_element_get_table_headers</a> <span class="c_punctuation">()</span>
|
513
|
+
</td>
|
514
|
+
</tr>
|
515
|
+
<tr>
|
516
|
+
<td class="function_type">
|
517
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureTableScope" title="enum PopplerStructureTableScope"><span class="returnvalue">PopplerStructureTableScope</span></a>
|
518
|
+
</td>
|
519
|
+
<td class="function_name">
|
520
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-table-scope" title="poppler_structure_element_get_table_scope ()">poppler_structure_element_get_table_scope</a> <span class="c_punctuation">()</span>
|
521
|
+
</td>
|
522
|
+
</tr>
|
523
|
+
<tr>
|
524
|
+
<td class="function_type">
|
525
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
526
|
+
</td>
|
527
|
+
<td class="function_name">
|
528
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-table-summary" title="poppler_structure_element_get_table_summary ()">poppler_structure_element_get_table_summary</a> <span class="c_punctuation">()</span>
|
529
|
+
</td>
|
530
|
+
</tr>
|
531
|
+
<tr>
|
532
|
+
<td class="function_type">
|
533
|
+
<a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="returnvalue">PopplerTextSpan</span></a> *
|
534
|
+
</td>
|
535
|
+
<td class="function_name">
|
536
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-copy" title="poppler_text_span_copy ()">poppler_text_span_copy</a> <span class="c_punctuation">()</span>
|
537
|
+
</td>
|
538
|
+
</tr>
|
539
|
+
<tr>
|
540
|
+
<td class="function_type">
|
541
|
+
<span class="returnvalue">void</span>
|
542
|
+
</td>
|
543
|
+
<td class="function_name">
|
544
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-free" title="poppler_text_span_free ()">poppler_text_span_free</a> <span class="c_punctuation">()</span>
|
545
|
+
</td>
|
546
|
+
</tr>
|
547
|
+
<tr>
|
548
|
+
<td class="function_type">
|
549
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
550
|
+
</td>
|
551
|
+
<td class="function_name">
|
552
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-is-fixed-width-font" title="poppler_text_span_is_fixed_width_font ()">poppler_text_span_is_fixed_width_font</a> <span class="c_punctuation">()</span>
|
553
|
+
</td>
|
554
|
+
</tr>
|
555
|
+
<tr>
|
556
|
+
<td class="function_type">
|
557
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
558
|
+
</td>
|
559
|
+
<td class="function_name">
|
560
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-is-serif-font" title="poppler_text_span_is_serif_font ()">poppler_text_span_is_serif_font</a> <span class="c_punctuation">()</span>
|
561
|
+
</td>
|
562
|
+
</tr>
|
563
|
+
<tr>
|
564
|
+
<td class="function_type">
|
565
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
566
|
+
</td>
|
567
|
+
<td class="function_name">
|
568
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-is-bold-font" title="poppler_text_span_is_bold_font ()">poppler_text_span_is_bold_font</a> <span class="c_punctuation">()</span>
|
569
|
+
</td>
|
570
|
+
</tr>
|
571
|
+
<tr>
|
572
|
+
<td class="function_type">
|
573
|
+
<span class="returnvalue">void</span>
|
574
|
+
</td>
|
575
|
+
<td class="function_name">
|
576
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-get-color" title="poppler_text_span_get_color ()">poppler_text_span_get_color</a> <span class="c_punctuation">()</span>
|
577
|
+
</td>
|
578
|
+
</tr>
|
579
|
+
<tr>
|
580
|
+
<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
581
|
+
</td>
|
582
|
+
<td class="function_name">
|
583
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-get-text" title="poppler_text_span_get_text ()">poppler_text_span_get_text</a> <span class="c_punctuation">()</span>
|
584
|
+
</td>
|
585
|
+
</tr>
|
586
|
+
<tr>
|
587
|
+
<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
588
|
+
</td>
|
589
|
+
<td class="function_name">
|
590
|
+
<a class="link" href="PopplerStructureElement.html#poppler-text-span-get-font-name" title="poppler_text_span_get_font_name ()">poppler_text_span_get_font_name</a> <span class="c_punctuation">()</span>
|
591
|
+
</td>
|
592
|
+
</tr>
|
593
|
+
</tbody>
|
594
|
+
</table></div>
|
595
|
+
</div>
|
596
|
+
<a name="PopplerStructureElementIter"></a><div class="refsect1">
|
597
|
+
<a name="PopplerStructureElement.other"></a><h2>Types and Values</h2>
|
598
|
+
<div class="informaltable"><table width="100%" border="0">
|
599
|
+
<colgroup>
|
600
|
+
<col width="150px" class="name">
|
601
|
+
<col class="description">
|
602
|
+
</colgroup>
|
603
|
+
<tbody>
|
604
|
+
<tr>
|
605
|
+
<td class="datatype_keyword"> </td>
|
606
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureElement-struct" title="PopplerStructureElement">PopplerStructureElement</a></td>
|
607
|
+
</tr>
|
608
|
+
<tr>
|
609
|
+
<td class="datatype_keyword">enum</td>
|
610
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureElementKind" title="enum PopplerStructureElementKind">PopplerStructureElementKind</a></td>
|
611
|
+
</tr>
|
612
|
+
<tr>
|
613
|
+
<td class="datatype_keyword"> </td>
|
614
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter-struct" title="PopplerStructureElementIter">PopplerStructureElementIter</a></td>
|
615
|
+
</tr>
|
616
|
+
<tr>
|
617
|
+
<td class="datatype_keyword">enum</td>
|
618
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureGetTextFlags" title="enum PopplerStructureGetTextFlags">PopplerStructureGetTextFlags</a></td>
|
619
|
+
</tr>
|
620
|
+
<tr>
|
621
|
+
<td class="datatype_keyword">enum</td>
|
622
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructurePlacement" title="enum PopplerStructurePlacement">PopplerStructurePlacement</a></td>
|
623
|
+
</tr>
|
624
|
+
<tr>
|
625
|
+
<td class="datatype_keyword">enum</td>
|
626
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureWritingMode" title="enum PopplerStructureWritingMode">PopplerStructureWritingMode</a></td>
|
627
|
+
</tr>
|
628
|
+
<tr>
|
629
|
+
<td class="datatype_keyword">enum</td>
|
630
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureBorderStyle" title="enum PopplerStructureBorderStyle">PopplerStructureBorderStyle</a></td>
|
631
|
+
</tr>
|
632
|
+
<tr>
|
633
|
+
<td class="datatype_keyword">enum</td>
|
634
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureTextAlign" title="enum PopplerStructureTextAlign">PopplerStructureTextAlign</a></td>
|
635
|
+
</tr>
|
636
|
+
<tr>
|
637
|
+
<td class="datatype_keyword">enum</td>
|
638
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureBlockAlign" title="enum PopplerStructureBlockAlign">PopplerStructureBlockAlign</a></td>
|
639
|
+
</tr>
|
640
|
+
<tr>
|
641
|
+
<td class="datatype_keyword">enum</td>
|
642
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureInlineAlign" title="enum PopplerStructureInlineAlign">PopplerStructureInlineAlign</a></td>
|
643
|
+
</tr>
|
644
|
+
<tr>
|
645
|
+
<td class="datatype_keyword">enum</td>
|
646
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureTextDecoration" title="enum PopplerStructureTextDecoration">PopplerStructureTextDecoration</a></td>
|
647
|
+
</tr>
|
648
|
+
<tr>
|
649
|
+
<td class="datatype_keyword">enum</td>
|
650
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureRubyAlign" title="enum PopplerStructureRubyAlign">PopplerStructureRubyAlign</a></td>
|
651
|
+
</tr>
|
652
|
+
<tr>
|
653
|
+
<td class="datatype_keyword">enum</td>
|
654
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureRubyPosition" title="enum PopplerStructureRubyPosition">PopplerStructureRubyPosition</a></td>
|
655
|
+
</tr>
|
656
|
+
<tr>
|
657
|
+
<td class="datatype_keyword">enum</td>
|
658
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureGlyphOrientation" title="enum PopplerStructureGlyphOrientation">PopplerStructureGlyphOrientation</a></td>
|
659
|
+
</tr>
|
660
|
+
<tr>
|
661
|
+
<td class="datatype_keyword">enum</td>
|
662
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureListNumbering" title="enum PopplerStructureListNumbering">PopplerStructureListNumbering</a></td>
|
663
|
+
</tr>
|
664
|
+
<tr>
|
665
|
+
<td class="datatype_keyword">enum</td>
|
666
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureTableScope" title="enum PopplerStructureTableScope">PopplerStructureTableScope</a></td>
|
667
|
+
</tr>
|
668
|
+
<tr>
|
669
|
+
<td class="datatype_keyword">enum</td>
|
670
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureFormRole" title="enum PopplerStructureFormRole">PopplerStructureFormRole</a></td>
|
671
|
+
</tr>
|
672
|
+
<tr>
|
673
|
+
<td class="datatype_keyword">enum</td>
|
674
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerStructureFormState" title="enum PopplerStructureFormState">PopplerStructureFormState</a></td>
|
675
|
+
</tr>
|
676
|
+
<tr>
|
677
|
+
<td class="datatype_keyword"> </td>
|
678
|
+
<td class="function_name"><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan">PopplerTextSpan</a></td>
|
679
|
+
</tr>
|
680
|
+
</tbody>
|
681
|
+
</table></div>
|
682
|
+
</div>
|
683
|
+
<div class="refsect1">
|
684
|
+
<a name="PopplerStructureElement.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
685
|
+
<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html">GBoxed</a>
|
686
|
+
<span class="lineart">╰──</span> PopplerStructureElementIter
|
687
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
688
|
+
<span class="lineart">╰──</span> PopplerStructureElement
|
689
|
+
</pre>
|
690
|
+
</div>
|
691
|
+
<div class="refsect1">
|
692
|
+
<a name="PopplerStructureElement.includes"></a><h2>Includes</h2>
|
693
|
+
<pre class="synopsis">#include <poppler.h>
|
694
|
+
</pre>
|
695
|
+
</div>
|
696
|
+
<div class="refsect1">
|
697
|
+
<a name="PopplerStructureElement.description"></a><h2>Description</h2>
|
698
|
+
<p>Instances of <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> are used to describe the structure
|
699
|
+
of a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>. To access the elements in the structure of the
|
700
|
+
document, use <a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-new" title="poppler_structure_element_iter_new ()"><code class="function">poppler_structure_element_iter_new()</code></a> to obtain an iterator
|
701
|
+
for the top-level <span class="type">PopplerStructure</span>, and then use the
|
702
|
+
<a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> methods to traverse the structure tree.</p>
|
703
|
+
</div>
|
704
|
+
<div class="refsect1">
|
705
|
+
<a name="PopplerStructureElement.functions_details"></a><h2>Functions</h2>
|
706
|
+
<div class="refsect2">
|
707
|
+
<a name="poppler-structure-element-iter-new"></a><h3>poppler_structure_element_iter_new ()</h3>
|
708
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="returnvalue">PopplerStructureElementIter</span></a> *
|
709
|
+
poppler_structure_element_iter_new (<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *poppler_document</code></em>);</pre>
|
710
|
+
<p>Returns the root <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> for <em class="parameter"><code>document</code></em>
|
711
|
+
, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. The
|
712
|
+
returned value must be freed with <a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-free" title="poppler_structure_element_iter_free ()"><code class="function">poppler_structure_element_iter_free()</code></a>.</p>
|
713
|
+
<p>Documents may have an associated structure tree &mdashmostly, Tagged-PDF
|
714
|
+
compliant documents— which can be used to obtain information about
|
715
|
+
the document structure and its contents. Each node in the tree contains
|
716
|
+
a <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a>.</p>
|
717
|
+
<p>Here is a simple example that walks the whole tree:</p>
|
718
|
+
<div class="informalexample"><pre class="programlisting">
|
719
|
+
static void
|
720
|
+
walk_structure (PopplerStructureElementIter *iter)
|
721
|
+
{
|
722
|
+
do {
|
723
|
+
/* Get the element and do something with it */
|
724
|
+
PopplerStructureElementIter *child = poppler_structure_element_iter_get_child (iter);
|
725
|
+
if (child)
|
726
|
+
walk_structure (child);
|
727
|
+
poppler_structure_element_iter_free (child);
|
728
|
+
} while (poppler_structure_element_iter_next (iter));
|
729
|
+
}
|
730
|
+
...
|
731
|
+
{
|
732
|
+
iter = poppler_structure_element_iter_new (document);
|
733
|
+
walk_structure (iter);
|
734
|
+
poppler_structure_element_iter_free (iter);
|
735
|
+
}
|
736
|
+
</pre></div>
|
737
|
+
<div class="refsect3">
|
738
|
+
<a name="id-1.2.12.9.2.8"></a><h4>Parameters</h4>
|
739
|
+
<div class="informaltable"><table width="100%" border="0">
|
740
|
+
<colgroup>
|
741
|
+
<col width="150px" class="parameters_name">
|
742
|
+
<col class="parameters_description">
|
743
|
+
<col width="200px" class="parameters_annotations">
|
744
|
+
</colgroup>
|
745
|
+
<tbody><tr>
|
746
|
+
<td class="parameter_name"><p>poppler_document</p></td>
|
747
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a>.</p></td>
|
748
|
+
<td class="parameter_annotations"> </td>
|
749
|
+
</tr></tbody>
|
750
|
+
</table></div>
|
751
|
+
</div>
|
752
|
+
<div class="refsect3">
|
753
|
+
<a name="id-1.2.12.9.2.9"></a><h4>Returns</h4>
|
754
|
+
<p> a new <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if document
|
755
|
+
doesn't have structure tree. </p>
|
756
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
757
|
+
</div>
|
758
|
+
<p class="since">Since 0.26</p>
|
759
|
+
</div>
|
760
|
+
<hr>
|
761
|
+
<div class="refsect2">
|
762
|
+
<a name="poppler-structure-element-iter-next"></a><h3>poppler_structure_element_iter_next ()</h3>
|
763
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
764
|
+
poppler_structure_element_iter_next (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> *iter</code></em>);</pre>
|
765
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
766
|
+
to point to the next structure element at the current level
|
767
|
+
of the tree, if valid. See <a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-new" title="poppler_structure_element_iter_new ()"><code class="function">poppler_structure_element_iter_new()</code></a> for more
|
768
|
+
information.</p>
|
769
|
+
<div class="refsect3">
|
770
|
+
<a name="id-1.2.12.9.3.5"></a><h4>Parameters</h4>
|
771
|
+
<div class="informaltable"><table width="100%" border="0">
|
772
|
+
<colgroup>
|
773
|
+
<col width="150px" class="parameters_name">
|
774
|
+
<col class="parameters_description">
|
775
|
+
<col width="200px" class="parameters_annotations">
|
776
|
+
</colgroup>
|
777
|
+
<tbody><tr>
|
778
|
+
<td class="parameter_name"><p>iter</p></td>
|
779
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a></p></td>
|
780
|
+
<td class="parameter_annotations"> </td>
|
781
|
+
</tr></tbody>
|
782
|
+
</table></div>
|
783
|
+
</div>
|
784
|
+
<div class="refsect3">
|
785
|
+
<a name="id-1.2.12.9.3.6"></a><h4>Returns</h4>
|
786
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
787
|
+
was set to the next structure element</p>
|
788
|
+
<p></p>
|
789
|
+
</div>
|
790
|
+
<p class="since">Since 0.26</p>
|
791
|
+
</div>
|
792
|
+
<hr>
|
793
|
+
<div class="refsect2">
|
794
|
+
<a name="poppler-structure-element-iter-copy"></a><h3>poppler_structure_element_iter_copy ()</h3>
|
795
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="returnvalue">PopplerStructureElementIter</span></a> *
|
796
|
+
poppler_structure_element_iter_copy (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> *iter</code></em>);</pre>
|
797
|
+
<p>Creates a new <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> as a copy of <em class="parameter"><code>iter</code></em>
|
798
|
+
. The
|
799
|
+
returned value must be freed with <a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-free" title="poppler_structure_element_iter_free ()"><code class="function">poppler_structure_element_iter_free()</code></a>.</p>
|
800
|
+
<div class="refsect3">
|
801
|
+
<a name="id-1.2.12.9.4.5"></a><h4>Parameters</h4>
|
802
|
+
<div class="informaltable"><table width="100%" border="0">
|
803
|
+
<colgroup>
|
804
|
+
<col width="150px" class="parameters_name">
|
805
|
+
<col class="parameters_description">
|
806
|
+
<col width="200px" class="parameters_annotations">
|
807
|
+
</colgroup>
|
808
|
+
<tbody><tr>
|
809
|
+
<td class="parameter_name"><p>iter</p></td>
|
810
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a></p></td>
|
811
|
+
<td class="parameter_annotations"> </td>
|
812
|
+
</tr></tbody>
|
813
|
+
</table></div>
|
814
|
+
</div>
|
815
|
+
<div class="refsect3">
|
816
|
+
<a name="id-1.2.12.9.4.6"></a><h4>Returns</h4>
|
817
|
+
<p> a new <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a>. </p>
|
818
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
819
|
+
</div>
|
820
|
+
<p class="since">Since 0.26</p>
|
821
|
+
</div>
|
822
|
+
<hr>
|
823
|
+
<div class="refsect2">
|
824
|
+
<a name="poppler-structure-element-iter-free"></a><h3>poppler_structure_element_iter_free ()</h3>
|
825
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
826
|
+
poppler_structure_element_iter_free (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> *iter</code></em>);</pre>
|
827
|
+
<p>Frees <em class="parameter"><code>iter</code></em>
|
828
|
+
.</p>
|
829
|
+
<div class="refsect3">
|
830
|
+
<a name="id-1.2.12.9.5.5"></a><h4>Parameters</h4>
|
831
|
+
<div class="informaltable"><table width="100%" border="0">
|
832
|
+
<colgroup>
|
833
|
+
<col width="150px" class="parameters_name">
|
834
|
+
<col class="parameters_description">
|
835
|
+
<col width="200px" class="parameters_annotations">
|
836
|
+
</colgroup>
|
837
|
+
<tbody><tr>
|
838
|
+
<td class="parameter_name"><p>iter</p></td>
|
839
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a></p></td>
|
840
|
+
<td class="parameter_annotations"> </td>
|
841
|
+
</tr></tbody>
|
842
|
+
</table></div>
|
843
|
+
</div>
|
844
|
+
<p class="since">Since 0.26</p>
|
845
|
+
</div>
|
846
|
+
<hr>
|
847
|
+
<div class="refsect2">
|
848
|
+
<a name="poppler-structure-element-iter-get-child"></a><h3>poppler_structure_element_iter_get_child ()</h3>
|
849
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="returnvalue">PopplerStructureElementIter</span></a> *
|
850
|
+
poppler_structure_element_iter_get_child
|
851
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> *parent</code></em>);</pre>
|
852
|
+
<p>Returns a new iterator to the children elements of the
|
853
|
+
<a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> associated with <em class="parameter"><code>iter</code></em>
|
854
|
+
. The returned value must
|
855
|
+
be freed with <a class="link" href="PopplerStructureElement.html#poppler-structure-element-iter-free" title="poppler_structure_element_iter_free ()"><code class="function">poppler_structure_element_iter_free()</code></a>.</p>
|
856
|
+
<div class="refsect3">
|
857
|
+
<a name="id-1.2.12.9.6.5"></a><h4>Parameters</h4>
|
858
|
+
<div class="informaltable"><table width="100%" border="0">
|
859
|
+
<colgroup>
|
860
|
+
<col width="150px" class="parameters_name">
|
861
|
+
<col class="parameters_description">
|
862
|
+
<col width="200px" class="parameters_annotations">
|
863
|
+
</colgroup>
|
864
|
+
<tbody><tr>
|
865
|
+
<td class="parameter_name"><p>parent</p></td>
|
866
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a></p></td>
|
867
|
+
<td class="parameter_annotations"> </td>
|
868
|
+
</tr></tbody>
|
869
|
+
</table></div>
|
870
|
+
</div>
|
871
|
+
<div class="refsect3">
|
872
|
+
<a name="id-1.2.12.9.6.6"></a><h4>Returns</h4>
|
873
|
+
<p> a new <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a></p>
|
874
|
+
<p></p>
|
875
|
+
</div>
|
876
|
+
<p class="since">Since 0.26</p>
|
877
|
+
</div>
|
878
|
+
<hr>
|
879
|
+
<div class="refsect2">
|
880
|
+
<a name="poppler-structure-element-iter-get-element"></a><h3>poppler_structure_element_iter_get_element ()</h3>
|
881
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="returnvalue">PopplerStructureElement</span></a> *
|
882
|
+
poppler_structure_element_iter_get_element
|
883
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> *iter</code></em>);</pre>
|
884
|
+
<p>Returns the <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a> associated with <em class="parameter"><code>iter</code></em>
|
885
|
+
.</p>
|
886
|
+
<div class="refsect3">
|
887
|
+
<a name="id-1.2.12.9.7.5"></a><h4>Parameters</h4>
|
888
|
+
<div class="informaltable"><table width="100%" border="0">
|
889
|
+
<colgroup>
|
890
|
+
<col width="150px" class="parameters_name">
|
891
|
+
<col class="parameters_description">
|
892
|
+
<col width="200px" class="parameters_annotations">
|
893
|
+
</colgroup>
|
894
|
+
<tbody><tr>
|
895
|
+
<td class="parameter_name"><p>iter</p></td>
|
896
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a></p></td>
|
897
|
+
<td class="parameter_annotations"> </td>
|
898
|
+
</tr></tbody>
|
899
|
+
</table></div>
|
900
|
+
</div>
|
901
|
+
<div class="refsect3">
|
902
|
+
<a name="id-1.2.12.9.7.6"></a><h4>Returns</h4>
|
903
|
+
<p> a new <a class="link" href="PopplerStructureElement.html#PopplerStructureElementIter"><span class="type">PopplerStructureElementIter</span></a>. </p>
|
904
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
905
|
+
</div>
|
906
|
+
<p class="since">Since 0.26</p>
|
907
|
+
</div>
|
908
|
+
<hr>
|
909
|
+
<div class="refsect2">
|
910
|
+
<a name="poppler-structure-element-get-kind"></a><h3>poppler_structure_element_get_kind ()</h3>
|
911
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureElementKind" title="enum PopplerStructureElementKind"><span class="returnvalue">PopplerStructureElementKind</span></a>
|
912
|
+
poppler_structure_element_get_kind (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
913
|
+
<div class="refsect3">
|
914
|
+
<a name="id-1.2.12.9.8.4"></a><h4>Parameters</h4>
|
915
|
+
<div class="informaltable"><table width="100%" border="0">
|
916
|
+
<colgroup>
|
917
|
+
<col width="150px" class="parameters_name">
|
918
|
+
<col class="parameters_description">
|
919
|
+
<col width="200px" class="parameters_annotations">
|
920
|
+
</colgroup>
|
921
|
+
<tbody><tr>
|
922
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
923
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
924
|
+
<td class="parameter_annotations"> </td>
|
925
|
+
</tr></tbody>
|
926
|
+
</table></div>
|
927
|
+
</div>
|
928
|
+
<div class="refsect3">
|
929
|
+
<a name="id-1.2.12.9.8.5"></a><h4>Returns</h4>
|
930
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureElementKind" title="enum PopplerStructureElementKind"><span class="type">PopplerStructureElementKind</span></a> value.</p>
|
931
|
+
<p></p>
|
932
|
+
</div>
|
933
|
+
<p class="since">Since 0.26</p>
|
934
|
+
</div>
|
935
|
+
<hr>
|
936
|
+
<div class="refsect2">
|
937
|
+
<a name="poppler-structure-element-get-page"></a><h3>poppler_structure_element_get_page ()</h3>
|
938
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
939
|
+
poppler_structure_element_get_page (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
940
|
+
<p>Obtains the page number in which the element is contained.</p>
|
941
|
+
<div class="refsect3">
|
942
|
+
<a name="id-1.2.12.9.9.5"></a><h4>Parameters</h4>
|
943
|
+
<div class="informaltable"><table width="100%" border="0">
|
944
|
+
<colgroup>
|
945
|
+
<col width="150px" class="parameters_name">
|
946
|
+
<col class="parameters_description">
|
947
|
+
<col width="200px" class="parameters_annotations">
|
948
|
+
</colgroup>
|
949
|
+
<tbody><tr>
|
950
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
951
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
952
|
+
<td class="parameter_annotations"> </td>
|
953
|
+
</tr></tbody>
|
954
|
+
</table></div>
|
955
|
+
</div>
|
956
|
+
<div class="refsect3">
|
957
|
+
<a name="id-1.2.12.9.9.6"></a><h4>Returns</h4>
|
958
|
+
<p> Number of the page that contains the element, of</p>
|
959
|
+
<code class="code">-1</code> if not defined.
|
960
|
+
<p></p>
|
961
|
+
</div>
|
962
|
+
<p class="since">Since 0.26</p>
|
963
|
+
</div>
|
964
|
+
<hr>
|
965
|
+
<div class="refsect2">
|
966
|
+
<a name="poppler-structure-element-is-content"></a><h3>poppler_structure_element_is_content ()</h3>
|
967
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
968
|
+
poppler_structure_element_is_content (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
969
|
+
<p>Checks whether an element is actual document content.</p>
|
970
|
+
<div class="refsect3">
|
971
|
+
<a name="id-1.2.12.9.10.5"></a><h4>Parameters</h4>
|
972
|
+
<div class="informaltable"><table width="100%" border="0">
|
973
|
+
<colgroup>
|
974
|
+
<col width="150px" class="parameters_name">
|
975
|
+
<col class="parameters_description">
|
976
|
+
<col width="200px" class="parameters_annotations">
|
977
|
+
</colgroup>
|
978
|
+
<tbody><tr>
|
979
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
980
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
981
|
+
<td class="parameter_annotations"> </td>
|
982
|
+
</tr></tbody>
|
983
|
+
</table></div>
|
984
|
+
</div>
|
985
|
+
<div class="refsect3">
|
986
|
+
<a name="id-1.2.12.9.10.6"></a><h4>Returns</h4>
|
987
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element is content, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
988
|
+
<p></p>
|
989
|
+
</div>
|
990
|
+
<p class="since">Since 0.26</p>
|
991
|
+
</div>
|
992
|
+
<hr>
|
993
|
+
<div class="refsect2">
|
994
|
+
<a name="poppler-structure-element-is-inline"></a><h3>poppler_structure_element_is_inline ()</h3>
|
995
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
996
|
+
poppler_structure_element_is_inline (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
997
|
+
<p>Checks whether an element is an inline element.</p>
|
998
|
+
<div class="refsect3">
|
999
|
+
<a name="id-1.2.12.9.11.5"></a><h4>Parameters</h4>
|
1000
|
+
<div class="informaltable"><table width="100%" border="0">
|
1001
|
+
<colgroup>
|
1002
|
+
<col width="150px" class="parameters_name">
|
1003
|
+
<col class="parameters_description">
|
1004
|
+
<col width="200px" class="parameters_annotations">
|
1005
|
+
</colgroup>
|
1006
|
+
<tbody><tr>
|
1007
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1008
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1009
|
+
<td class="parameter_annotations"> </td>
|
1010
|
+
</tr></tbody>
|
1011
|
+
</table></div>
|
1012
|
+
</div>
|
1013
|
+
<div class="refsect3">
|
1014
|
+
<a name="id-1.2.12.9.11.6"></a><h4>Returns</h4>
|
1015
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element is an inline element, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1016
|
+
<p></p>
|
1017
|
+
</div>
|
1018
|
+
<p class="since">Since 0.26</p>
|
1019
|
+
</div>
|
1020
|
+
<hr>
|
1021
|
+
<div class="refsect2">
|
1022
|
+
<a name="poppler-structure-element-is-block"></a><h3>poppler_structure_element_is_block ()</h3>
|
1023
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1024
|
+
poppler_structure_element_is_block (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1025
|
+
<p>Checks whether an element is a block element.</p>
|
1026
|
+
<div class="refsect3">
|
1027
|
+
<a name="id-1.2.12.9.12.5"></a><h4>Parameters</h4>
|
1028
|
+
<div class="informaltable"><table width="100%" border="0">
|
1029
|
+
<colgroup>
|
1030
|
+
<col width="150px" class="parameters_name">
|
1031
|
+
<col class="parameters_description">
|
1032
|
+
<col width="200px" class="parameters_annotations">
|
1033
|
+
</colgroup>
|
1034
|
+
<tbody><tr>
|
1035
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1036
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1037
|
+
<td class="parameter_annotations"> </td>
|
1038
|
+
</tr></tbody>
|
1039
|
+
</table></div>
|
1040
|
+
</div>
|
1041
|
+
<div class="refsect3">
|
1042
|
+
<a name="id-1.2.12.9.12.6"></a><h4>Returns</h4>
|
1043
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element is a block element, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1044
|
+
<p></p>
|
1045
|
+
</div>
|
1046
|
+
<p class="since">Since 0.26</p>
|
1047
|
+
</div>
|
1048
|
+
<hr>
|
1049
|
+
<div class="refsect2">
|
1050
|
+
<a name="poppler-structure-element-is-grouping"></a><h3>poppler_structure_element_is_grouping ()</h3>
|
1051
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1052
|
+
poppler_structure_element_is_grouping (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1053
|
+
<p>Checks whether an element is a grouping element.</p>
|
1054
|
+
<div class="refsect3">
|
1055
|
+
<a name="id-1.2.12.9.13.5"></a><h4>Parameters</h4>
|
1056
|
+
<div class="informaltable"><table width="100%" border="0">
|
1057
|
+
<colgroup>
|
1058
|
+
<col width="150px" class="parameters_name">
|
1059
|
+
<col class="parameters_description">
|
1060
|
+
<col width="200px" class="parameters_annotations">
|
1061
|
+
</colgroup>
|
1062
|
+
<tbody><tr>
|
1063
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1064
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1065
|
+
<td class="parameter_annotations"> </td>
|
1066
|
+
</tr></tbody>
|
1067
|
+
</table></div>
|
1068
|
+
</div>
|
1069
|
+
<div class="refsect3">
|
1070
|
+
<a name="id-1.2.12.9.13.6"></a><h4>Returns</h4>
|
1071
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element is a grouping element, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
|
1072
|
+
otherwise.</p>
|
1073
|
+
<p></p>
|
1074
|
+
</div>
|
1075
|
+
<p class="since">Since 0.26</p>
|
1076
|
+
</div>
|
1077
|
+
<hr>
|
1078
|
+
<div class="refsect2">
|
1079
|
+
<a name="poppler-structure-element-get-id"></a><h3>poppler_structure_element_get_id ()</h3>
|
1080
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1081
|
+
poppler_structure_element_get_id (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1082
|
+
<p>Obtains the identifier of an element.</p>
|
1083
|
+
<div class="refsect3">
|
1084
|
+
<a name="id-1.2.12.9.14.5"></a><h4>Parameters</h4>
|
1085
|
+
<div class="informaltable"><table width="100%" border="0">
|
1086
|
+
<colgroup>
|
1087
|
+
<col width="150px" class="parameters_name">
|
1088
|
+
<col class="parameters_description">
|
1089
|
+
<col width="200px" class="parameters_annotations">
|
1090
|
+
</colgroup>
|
1091
|
+
<tbody><tr>
|
1092
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1093
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1094
|
+
<td class="parameter_annotations"> </td>
|
1095
|
+
</tr></tbody>
|
1096
|
+
</table></div>
|
1097
|
+
</div>
|
1098
|
+
<div class="refsect3">
|
1099
|
+
<a name="id-1.2.12.9.14.6"></a><h4>Returns</h4>
|
1100
|
+
<p> The identifier of the element (if
|
1101
|
+
defined), or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
1102
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1103
|
+
</div>
|
1104
|
+
<p class="since">Since 0.26</p>
|
1105
|
+
</div>
|
1106
|
+
<hr>
|
1107
|
+
<div class="refsect2">
|
1108
|
+
<a name="poppler-structure-element-get-title"></a><h3>poppler_structure_element_get_title ()</h3>
|
1109
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1110
|
+
poppler_structure_element_get_title (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1111
|
+
<p>Obtains the title of an element.</p>
|
1112
|
+
<div class="refsect3">
|
1113
|
+
<a name="id-1.2.12.9.15.5"></a><h4>Parameters</h4>
|
1114
|
+
<div class="informaltable"><table width="100%" border="0">
|
1115
|
+
<colgroup>
|
1116
|
+
<col width="150px" class="parameters_name">
|
1117
|
+
<col class="parameters_description">
|
1118
|
+
<col width="200px" class="parameters_annotations">
|
1119
|
+
</colgroup>
|
1120
|
+
<tbody><tr>
|
1121
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1122
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1123
|
+
<td class="parameter_annotations"> </td>
|
1124
|
+
</tr></tbody>
|
1125
|
+
</table></div>
|
1126
|
+
</div>
|
1127
|
+
<div class="refsect3">
|
1128
|
+
<a name="id-1.2.12.9.15.6"></a><h4>Returns</h4>
|
1129
|
+
<p> The title of the element, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
1130
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1131
|
+
</div>
|
1132
|
+
<p class="since">Since 0.26</p>
|
1133
|
+
</div>
|
1134
|
+
<hr>
|
1135
|
+
<div class="refsect2">
|
1136
|
+
<a name="poppler-structure-element-get-abbreviation"></a><h3>poppler_structure_element_get_abbreviation ()</h3>
|
1137
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1138
|
+
poppler_structure_element_get_abbreviation
|
1139
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1140
|
+
</div>
|
1141
|
+
<hr>
|
1142
|
+
<div class="refsect2">
|
1143
|
+
<a name="poppler-structure-element-get-language"></a><h3>poppler_structure_element_get_language ()</h3>
|
1144
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1145
|
+
poppler_structure_element_get_language
|
1146
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1147
|
+
<p>Obtains the language and country code for the content in an element,
|
1148
|
+
in two-letter ISO format, e.g. <code class="code">en_ES</code>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if not
|
1149
|
+
defined.</p>
|
1150
|
+
<div class="refsect3">
|
1151
|
+
<a name="id-1.2.12.9.17.5"></a><h4>Parameters</h4>
|
1152
|
+
<div class="informaltable"><table width="100%" border="0">
|
1153
|
+
<colgroup>
|
1154
|
+
<col width="150px" class="parameters_name">
|
1155
|
+
<col class="parameters_description">
|
1156
|
+
<col width="200px" class="parameters_annotations">
|
1157
|
+
</colgroup>
|
1158
|
+
<tbody><tr>
|
1159
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1160
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1161
|
+
<td class="parameter_annotations"> </td>
|
1162
|
+
</tr></tbody>
|
1163
|
+
</table></div>
|
1164
|
+
</div>
|
1165
|
+
<div class="refsect3">
|
1166
|
+
<a name="id-1.2.12.9.17.6"></a><h4>Returns</h4>
|
1167
|
+
<p> language and country code, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
1168
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1169
|
+
</div>
|
1170
|
+
<p class="since">Since 0.26</p>
|
1171
|
+
</div>
|
1172
|
+
<hr>
|
1173
|
+
<div class="refsect2">
|
1174
|
+
<a name="poppler-structure-element-get-text"></a><h3>poppler_structure_element_get_text ()</h3>
|
1175
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1176
|
+
poppler_structure_element_get_text (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1177
|
+
<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureGetTextFlags" title="enum PopplerStructureGetTextFlags"><span class="type">PopplerStructureGetTextFlags</span></a> flags</code></em>);</pre>
|
1178
|
+
<p>Obtains the text enclosed by an element, or the text enclosed by the
|
1179
|
+
elements in the subtree (including the element itself).</p>
|
1180
|
+
<div class="refsect3">
|
1181
|
+
<a name="id-1.2.12.9.18.5"></a><h4>Parameters</h4>
|
1182
|
+
<div class="informaltable"><table width="100%" border="0">
|
1183
|
+
<colgroup>
|
1184
|
+
<col width="150px" class="parameters_name">
|
1185
|
+
<col class="parameters_description">
|
1186
|
+
<col width="200px" class="parameters_annotations">
|
1187
|
+
</colgroup>
|
1188
|
+
<tbody>
|
1189
|
+
<tr>
|
1190
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1191
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1192
|
+
<td class="parameter_annotations"> </td>
|
1193
|
+
</tr>
|
1194
|
+
<tr>
|
1195
|
+
<td class="parameter_name"><p>flags</p></td>
|
1196
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html#PopplerStructureGetTextFlags" title="enum PopplerStructureGetTextFlags"><span class="type">PopplerStructureGetTextFlags</span></a> value, or
|
1197
|
+
<a class="link" href="PopplerStructureElement.html#POPPLER-STRUCTURE-GET-TEXT-NONE:CAPS"><code class="literal">POPPLER_STRUCTURE_GET_TEXT_NONE</code></a> to disable all the flags.</p></td>
|
1198
|
+
<td class="parameter_annotations"> </td>
|
1199
|
+
</tr>
|
1200
|
+
</tbody>
|
1201
|
+
</table></div>
|
1202
|
+
</div>
|
1203
|
+
<div class="refsect3">
|
1204
|
+
<a name="id-1.2.12.9.18.6"></a><h4>Returns</h4>
|
1205
|
+
<p> A string. </p>
|
1206
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1207
|
+
</div>
|
1208
|
+
<p class="since">Since 0.26</p>
|
1209
|
+
</div>
|
1210
|
+
<hr>
|
1211
|
+
<div class="refsect2">
|
1212
|
+
<a name="poppler-structure-element-get-alt-text"></a><h3>poppler_structure_element_get_alt_text ()</h3>
|
1213
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1214
|
+
poppler_structure_element_get_alt_text
|
1215
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1216
|
+
<p>Obtains the “alternate” text representation of the element (and its child
|
1217
|
+
elements). This is mostly used for non-text elements like images and
|
1218
|
+
figures, to specify a textual description of the element.</p>
|
1219
|
+
<p>Note that for elements containing proper text, the function
|
1220
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text" title="poppler_structure_element_get_text ()"><code class="function">poppler_structure_element_get_text()</code></a> must be used instead.</p>
|
1221
|
+
<div class="refsect3">
|
1222
|
+
<a name="id-1.2.12.9.19.6"></a><h4>Parameters</h4>
|
1223
|
+
<div class="informaltable"><table width="100%" border="0">
|
1224
|
+
<colgroup>
|
1225
|
+
<col width="150px" class="parameters_name">
|
1226
|
+
<col class="parameters_description">
|
1227
|
+
<col width="200px" class="parameters_annotations">
|
1228
|
+
</colgroup>
|
1229
|
+
<tbody><tr>
|
1230
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1231
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1232
|
+
<td class="parameter_annotations"> </td>
|
1233
|
+
</tr></tbody>
|
1234
|
+
</table></div>
|
1235
|
+
</div>
|
1236
|
+
<div class="refsect3">
|
1237
|
+
<a name="id-1.2.12.9.19.7"></a><h4>Returns</h4>
|
1238
|
+
<p> The alternate text representation for the
|
1239
|
+
element, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if not defined. </p>
|
1240
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1241
|
+
</div>
|
1242
|
+
<p class="since">Since 0.26</p>
|
1243
|
+
</div>
|
1244
|
+
<hr>
|
1245
|
+
<div class="refsect2">
|
1246
|
+
<a name="poppler-structure-element-get-actual-text"></a><h3>poppler_structure_element_get_actual_text ()</h3>
|
1247
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1248
|
+
poppler_structure_element_get_actual_text
|
1249
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1250
|
+
<p>Obtains the actual text enclosed by the element (and its child elements).
|
1251
|
+
The actual text is mostly used for non-text elements like images and
|
1252
|
+
figures which <span style="color: red"><em>do</em></span> have the graphical appearance of text, like
|
1253
|
+
a logo. For those the actual text is the equivalent text to those
|
1254
|
+
graphical elements which look like text when rendered.</p>
|
1255
|
+
<p>Note that for elements containing proper text, the function
|
1256
|
+
<a class="link" href="PopplerStructureElement.html#poppler-structure-element-get-text" title="poppler_structure_element_get_text ()"><code class="function">poppler_structure_element_get_text()</code></a> must be used instead.</p>
|
1257
|
+
<div class="refsect3">
|
1258
|
+
<a name="id-1.2.12.9.20.6"></a><h4>Parameters</h4>
|
1259
|
+
<div class="informaltable"><table width="100%" border="0">
|
1260
|
+
<colgroup>
|
1261
|
+
<col width="150px" class="parameters_name">
|
1262
|
+
<col class="parameters_description">
|
1263
|
+
<col width="200px" class="parameters_annotations">
|
1264
|
+
</colgroup>
|
1265
|
+
<tbody><tr>
|
1266
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1267
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1268
|
+
<td class="parameter_annotations"> </td>
|
1269
|
+
</tr></tbody>
|
1270
|
+
</table></div>
|
1271
|
+
</div>
|
1272
|
+
<div class="refsect3">
|
1273
|
+
<a name="id-1.2.12.9.20.7"></a><h4>Returns</h4>
|
1274
|
+
<p> The actual text for the element, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1275
|
+
if not defined. </p>
|
1276
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1277
|
+
</div>
|
1278
|
+
<p class="since">Since 0.26</p>
|
1279
|
+
</div>
|
1280
|
+
<hr>
|
1281
|
+
<div class="refsect2">
|
1282
|
+
<a name="poppler-structure-element-get-text-spans"></a><h3>poppler_structure_element_get_text_spans ()</h3>
|
1283
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="returnvalue">PopplerTextSpan</span></a> **
|
1284
|
+
poppler_structure_element_get_text_spans
|
1285
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1286
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *n_text_spans</code></em>);</pre>
|
1287
|
+
<p>Obtains the text enclosed by an element, as an array of <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a>
|
1288
|
+
structures. Each item in the list is a piece of text which share the same
|
1289
|
+
attributes, plus its attributes. The following example shows how to
|
1290
|
+
obtain and free the text spans of an element:</p>
|
1291
|
+
<div class="informalexample"><pre class="programlisting">
|
1292
|
+
guint i, n_spans;
|
1293
|
+
PopplerTextSpan **text_spans =
|
1294
|
+
poppler_structure_element_get_text_spans (element, &n_spans);
|
1295
|
+
/* Use the text spans */
|
1296
|
+
for (i = 0; i < n_spans; i++)
|
1297
|
+
poppler_text_span_free (text_spans[i]);
|
1298
|
+
g_free (text_spans);
|
1299
|
+
</pre></div>
|
1300
|
+
<div class="refsect3">
|
1301
|
+
<a name="id-1.2.12.9.21.6"></a><h4>Parameters</h4>
|
1302
|
+
<div class="informaltable"><table width="100%" border="0">
|
1303
|
+
<colgroup>
|
1304
|
+
<col width="150px" class="parameters_name">
|
1305
|
+
<col class="parameters_description">
|
1306
|
+
<col width="200px" class="parameters_annotations">
|
1307
|
+
</colgroup>
|
1308
|
+
<tbody>
|
1309
|
+
<tr>
|
1310
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1311
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1312
|
+
<td class="parameter_annotations"> </td>
|
1313
|
+
</tr>
|
1314
|
+
<tr>
|
1315
|
+
<td class="parameter_name"><p>n_text_spans</p></td>
|
1316
|
+
<td class="parameter_description"><p> A pointer to the location where the number of elements in
|
1317
|
+
the returned array will be stored. </p></td>
|
1318
|
+
<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>
|
1319
|
+
</tr>
|
1320
|
+
</tbody>
|
1321
|
+
</table></div>
|
1322
|
+
</div>
|
1323
|
+
<div class="refsect3">
|
1324
|
+
<a name="id-1.2.12.9.21.7"></a><h4>Returns</h4>
|
1325
|
+
<p> An array of <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> elments. </p>
|
1326
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_text_spans][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerTextSpan]</span></p>
|
1327
|
+
</div>
|
1328
|
+
<p class="since">Since 0.26</p>
|
1329
|
+
</div>
|
1330
|
+
<hr>
|
1331
|
+
<div class="refsect2">
|
1332
|
+
<a name="poppler-structure-element-get-placement"></a><h3>poppler_structure_element_get_placement ()</h3>
|
1333
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructurePlacement" title="enum PopplerStructurePlacement"><span class="returnvalue">PopplerStructurePlacement</span></a>
|
1334
|
+
poppler_structure_element_get_placement
|
1335
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1336
|
+
<p>Obtains the placement type of the structure element.</p>
|
1337
|
+
<div class="refsect3">
|
1338
|
+
<a name="id-1.2.12.9.22.5"></a><h4>Parameters</h4>
|
1339
|
+
<div class="informaltable"><table width="100%" border="0">
|
1340
|
+
<colgroup>
|
1341
|
+
<col width="150px" class="parameters_name">
|
1342
|
+
<col class="parameters_description">
|
1343
|
+
<col width="200px" class="parameters_annotations">
|
1344
|
+
</colgroup>
|
1345
|
+
<tbody><tr>
|
1346
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1347
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1348
|
+
<td class="parameter_annotations"> </td>
|
1349
|
+
</tr></tbody>
|
1350
|
+
</table></div>
|
1351
|
+
</div>
|
1352
|
+
<div class="refsect3">
|
1353
|
+
<a name="id-1.2.12.9.22.6"></a><h4>Returns</h4>
|
1354
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructurePlacement" title="enum PopplerStructurePlacement"><span class="type">PopplerStructurePlacement</span></a> value.</p>
|
1355
|
+
<p></p>
|
1356
|
+
</div>
|
1357
|
+
<p class="since">Since 0.26</p>
|
1358
|
+
</div>
|
1359
|
+
<hr>
|
1360
|
+
<div class="refsect2">
|
1361
|
+
<a name="poppler-structure-element-get-writing-mode"></a><h3>poppler_structure_element_get_writing_mode ()</h3>
|
1362
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureWritingMode" title="enum PopplerStructureWritingMode"><span class="returnvalue">PopplerStructureWritingMode</span></a>
|
1363
|
+
poppler_structure_element_get_writing_mode
|
1364
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1365
|
+
<p>Obtains the writing mode (writing direction) of the content associated
|
1366
|
+
with a structure element.</p>
|
1367
|
+
<div class="refsect3">
|
1368
|
+
<a name="id-1.2.12.9.23.5"></a><h4>Parameters</h4>
|
1369
|
+
<div class="informaltable"><table width="100%" border="0">
|
1370
|
+
<colgroup>
|
1371
|
+
<col width="150px" class="parameters_name">
|
1372
|
+
<col class="parameters_description">
|
1373
|
+
<col width="200px" class="parameters_annotations">
|
1374
|
+
</colgroup>
|
1375
|
+
<tbody><tr>
|
1376
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1377
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1378
|
+
<td class="parameter_annotations"> </td>
|
1379
|
+
</tr></tbody>
|
1380
|
+
</table></div>
|
1381
|
+
</div>
|
1382
|
+
<div class="refsect3">
|
1383
|
+
<a name="id-1.2.12.9.23.6"></a><h4>Returns</h4>
|
1384
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureWritingMode" title="enum PopplerStructureWritingMode"><span class="type">PopplerStructureWritingMode</span></a> value.</p>
|
1385
|
+
<p></p>
|
1386
|
+
</div>
|
1387
|
+
<p class="since">Since 0.26</p>
|
1388
|
+
</div>
|
1389
|
+
<hr>
|
1390
|
+
<div class="refsect2">
|
1391
|
+
<a name="poppler-structure-element-get-background-color"></a><h3>poppler_structure_element_get_background_color ()</h3>
|
1392
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1393
|
+
poppler_structure_element_get_background_color
|
1394
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1395
|
+
<em class="parameter"><code><a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> *color</code></em>);</pre>
|
1396
|
+
<p>Obtains the background color of the element. If this attribute is
|
1397
|
+
not specified, the element shall be treated as if it were transparent.</p>
|
1398
|
+
<div class="refsect3">
|
1399
|
+
<a name="id-1.2.12.9.24.5"></a><h4>Parameters</h4>
|
1400
|
+
<div class="informaltable"><table width="100%" border="0">
|
1401
|
+
<colgroup>
|
1402
|
+
<col width="150px" class="parameters_name">
|
1403
|
+
<col class="parameters_description">
|
1404
|
+
<col width="200px" class="parameters_annotations">
|
1405
|
+
</colgroup>
|
1406
|
+
<tbody>
|
1407
|
+
<tr>
|
1408
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1409
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1410
|
+
<td class="parameter_annotations"> </td>
|
1411
|
+
</tr>
|
1412
|
+
<tr>
|
1413
|
+
<td class="parameter_name"><p>color</p></td>
|
1414
|
+
<td class="parameter_description"><p> A <a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>. </p></td>
|
1415
|
+
<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>
|
1416
|
+
</tr>
|
1417
|
+
</tbody>
|
1418
|
+
</table></div>
|
1419
|
+
</div>
|
1420
|
+
<div class="refsect3">
|
1421
|
+
<a name="id-1.2.12.9.24.6"></a><h4>Returns</h4>
|
1422
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a color is defined for the element,
|
1423
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1424
|
+
<p></p>
|
1425
|
+
</div>
|
1426
|
+
<p class="since">Since 0.26</p>
|
1427
|
+
</div>
|
1428
|
+
<hr>
|
1429
|
+
<div class="refsect2">
|
1430
|
+
<a name="poppler-structure-element-get-border-color"></a><h3>poppler_structure_element_get_border_color ()</h3>
|
1431
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1432
|
+
poppler_structure_element_get_border_color
|
1433
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1434
|
+
<em class="parameter"><code><a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> *colors</code></em>);</pre>
|
1435
|
+
<p>Obtains the color of border around the element. The result values
|
1436
|
+
are in before-after-start-end ordering (for the typical Western
|
1437
|
+
left-to-right writing, that is top-bottom-left-right).
|
1438
|
+
If this attribute is not specified, the border color for this element shall
|
1439
|
+
be the current text fill color in effect at the start of its associated
|
1440
|
+
content.</p>
|
1441
|
+
<div class="refsect3">
|
1442
|
+
<a name="id-1.2.12.9.25.5"></a><h4>Parameters</h4>
|
1443
|
+
<div class="informaltable"><table width="100%" border="0">
|
1444
|
+
<colgroup>
|
1445
|
+
<col width="150px" class="parameters_name">
|
1446
|
+
<col class="parameters_description">
|
1447
|
+
<col width="200px" class="parameters_annotations">
|
1448
|
+
</colgroup>
|
1449
|
+
<tbody>
|
1450
|
+
<tr>
|
1451
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1452
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1453
|
+
<td class="parameter_annotations"> </td>
|
1454
|
+
</tr>
|
1455
|
+
<tr>
|
1456
|
+
<td class="parameter_name"><p>colors</p></td>
|
1457
|
+
<td class="parameter_description"><p> An array
|
1458
|
+
of four <a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>. </p></td>
|
1459
|
+
<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="Parameter points to an array of items."><span class="acronym">array</span></acronym> fixed-size=4][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerColor]</span></td>
|
1460
|
+
</tr>
|
1461
|
+
</tbody>
|
1462
|
+
</table></div>
|
1463
|
+
</div>
|
1464
|
+
<div class="refsect3">
|
1465
|
+
<a name="id-1.2.12.9.25.6"></a><h4>Returns</h4>
|
1466
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a color is defined for the element,
|
1467
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1468
|
+
<p></p>
|
1469
|
+
</div>
|
1470
|
+
<p class="since">Since 0.26</p>
|
1471
|
+
</div>
|
1472
|
+
<hr>
|
1473
|
+
<div class="refsect2">
|
1474
|
+
<a name="poppler-structure-element-get-border-style"></a><h3>poppler_structure_element_get_border_style ()</h3>
|
1475
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1476
|
+
poppler_structure_element_get_border_style
|
1477
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1478
|
+
<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureBorderStyle" title="enum PopplerStructureBorderStyle"><span class="type">PopplerStructureBorderStyle</span></a> *border_styles</code></em>);</pre>
|
1479
|
+
<p>Obtains the border style of a structure element. The result values
|
1480
|
+
are in before-after-start-end ordering. For example, using Western
|
1481
|
+
left-to-right writing, that is top-bottom-left-right.</p>
|
1482
|
+
<div class="refsect3">
|
1483
|
+
<a name="id-1.2.12.9.26.5"></a><h4>Parameters</h4>
|
1484
|
+
<div class="informaltable"><table width="100%" border="0">
|
1485
|
+
<colgroup>
|
1486
|
+
<col width="150px" class="parameters_name">
|
1487
|
+
<col class="parameters_description">
|
1488
|
+
<col width="200px" class="parameters_annotations">
|
1489
|
+
</colgroup>
|
1490
|
+
<tbody>
|
1491
|
+
<tr>
|
1492
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1493
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1494
|
+
<td class="parameter_annotations"> </td>
|
1495
|
+
</tr>
|
1496
|
+
<tr>
|
1497
|
+
<td class="parameter_name"><p>border_styles</p></td>
|
1498
|
+
<td class="parameter_description"><p> An array of four <a class="link" href="PopplerStructureElement.html#PopplerStructureBorderStyle" title="enum PopplerStructureBorderStyle"><span class="type">PopplerStructureBorderStyle</span></a> elements. </p></td>
|
1499
|
+
<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="Parameter points to an array of items."><span class="acronym">array</span></acronym> fixed-size=4][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerStructureBorderStyle]</span></td>
|
1500
|
+
</tr>
|
1501
|
+
</tbody>
|
1502
|
+
</table></div>
|
1503
|
+
</div>
|
1504
|
+
<p class="since">Since 0.26</p>
|
1505
|
+
</div>
|
1506
|
+
<hr>
|
1507
|
+
<div class="refsect2">
|
1508
|
+
<a name="poppler-structure-element-get-border-thickness"></a><h3>poppler_structure_element_get_border_thickness ()</h3>
|
1509
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1510
|
+
poppler_structure_element_get_border_thickness
|
1511
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1512
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *border_thicknesses</code></em>);</pre>
|
1513
|
+
<p>Obtains the thickness of the border of an element. The result values
|
1514
|
+
are in before-after-start-end ordering (for the typical Western
|
1515
|
+
left-to-right writing, that is top-bottom-left-right).
|
1516
|
+
A value of 0 indicates that the border shall not be drawn.</p>
|
1517
|
+
<div class="refsect3">
|
1518
|
+
<a name="id-1.2.12.9.27.5"></a><h4>Parameters</h4>
|
1519
|
+
<div class="informaltable"><table width="100%" border="0">
|
1520
|
+
<colgroup>
|
1521
|
+
<col width="150px" class="parameters_name">
|
1522
|
+
<col class="parameters_description">
|
1523
|
+
<col width="200px" class="parameters_annotations">
|
1524
|
+
</colgroup>
|
1525
|
+
<tbody>
|
1526
|
+
<tr>
|
1527
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1528
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1529
|
+
<td class="parameter_annotations"> </td>
|
1530
|
+
</tr>
|
1531
|
+
<tr>
|
1532
|
+
<td class="parameter_name"><p>border_thicknesses</p></td>
|
1533
|
+
<td class="parameter_description"><p> Array with the four values of border thicknesses. </p></td>
|
1534
|
+
<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="Parameter points to an array of items."><span class="acronym">array</span></acronym> fixed-size=4][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> gdouble]</span></td>
|
1535
|
+
</tr>
|
1536
|
+
</tbody>
|
1537
|
+
</table></div>
|
1538
|
+
</div>
|
1539
|
+
<div class="refsect3">
|
1540
|
+
<a name="id-1.2.12.9.27.6"></a><h4>Returns</h4>
|
1541
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the border thickness attribute is defined for
|
1542
|
+
the element, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1543
|
+
<p></p>
|
1544
|
+
</div>
|
1545
|
+
<p class="since">Since 0.26</p>
|
1546
|
+
</div>
|
1547
|
+
<hr>
|
1548
|
+
<div class="refsect2">
|
1549
|
+
<a name="poppler-structure-element-get-padding"></a><h3>poppler_structure_element_get_padding ()</h3>
|
1550
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1551
|
+
poppler_structure_element_get_padding (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1552
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *paddings</code></em>);</pre>
|
1553
|
+
<p>Obtains the padding of an element (space around it). The result
|
1554
|
+
values are in before-after-start-end ordering. For example using
|
1555
|
+
Western left-to-right writing, that is top-bottom-left-right.</p>
|
1556
|
+
<div class="refsect3">
|
1557
|
+
<a name="id-1.2.12.9.28.5"></a><h4>Parameters</h4>
|
1558
|
+
<div class="informaltable"><table width="100%" border="0">
|
1559
|
+
<colgroup>
|
1560
|
+
<col width="150px" class="parameters_name">
|
1561
|
+
<col class="parameters_description">
|
1562
|
+
<col width="200px" class="parameters_annotations">
|
1563
|
+
</colgroup>
|
1564
|
+
<tbody>
|
1565
|
+
<tr>
|
1566
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1567
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1568
|
+
<td class="parameter_annotations"> </td>
|
1569
|
+
</tr>
|
1570
|
+
<tr>
|
1571
|
+
<td class="parameter_name"><p>paddings</p></td>
|
1572
|
+
<td class="parameter_description"><p> Padding for the four sides of the element. </p></td>
|
1573
|
+
<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="Parameter points to an array of items."><span class="acronym">array</span></acronym> fixed-size=4][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> gdouble]</span></td>
|
1574
|
+
</tr>
|
1575
|
+
</tbody>
|
1576
|
+
</table></div>
|
1577
|
+
</div>
|
1578
|
+
<p class="since">Since 0.26</p>
|
1579
|
+
</div>
|
1580
|
+
<hr>
|
1581
|
+
<div class="refsect2">
|
1582
|
+
<a name="poppler-structure-element-get-color"></a><h3>poppler_structure_element_get_color ()</h3>
|
1583
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1584
|
+
poppler_structure_element_get_color (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1585
|
+
<em class="parameter"><code><a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> *color</code></em>);</pre>
|
1586
|
+
<p>Obtains the color of the content contained in the element.
|
1587
|
+
If this attribute is not specified, the color for this element shall
|
1588
|
+
be the current text fill color in effect at the start of its associated content.</p>
|
1589
|
+
<div class="refsect3">
|
1590
|
+
<a name="id-1.2.12.9.29.5"></a><h4>Parameters</h4>
|
1591
|
+
<div class="informaltable"><table width="100%" border="0">
|
1592
|
+
<colgroup>
|
1593
|
+
<col width="150px" class="parameters_name">
|
1594
|
+
<col class="parameters_description">
|
1595
|
+
<col width="200px" class="parameters_annotations">
|
1596
|
+
</colgroup>
|
1597
|
+
<tbody>
|
1598
|
+
<tr>
|
1599
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1600
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1601
|
+
<td class="parameter_annotations"> </td>
|
1602
|
+
</tr>
|
1603
|
+
<tr>
|
1604
|
+
<td class="parameter_name"><p>color</p></td>
|
1605
|
+
<td class="parameter_description"><p> A <a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>. </p></td>
|
1606
|
+
<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>
|
1607
|
+
</tr>
|
1608
|
+
</tbody>
|
1609
|
+
</table></div>
|
1610
|
+
</div>
|
1611
|
+
<div class="refsect3">
|
1612
|
+
<a name="id-1.2.12.9.29.6"></a><h4>Returns</h4>
|
1613
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a color is defined for the element,
|
1614
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1615
|
+
<p></p>
|
1616
|
+
</div>
|
1617
|
+
<p class="since">Since 0.26</p>
|
1618
|
+
</div>
|
1619
|
+
<hr>
|
1620
|
+
<div class="refsect2">
|
1621
|
+
<a name="poppler-structure-element-get-space-before"></a><h3>poppler_structure_element_get_space_before ()</h3>
|
1622
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1623
|
+
poppler_structure_element_get_space_before
|
1624
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1625
|
+
<p>Obtains the amount of empty space before the block-level structure element.</p>
|
1626
|
+
<div class="refsect3">
|
1627
|
+
<a name="id-1.2.12.9.30.5"></a><h4>Parameters</h4>
|
1628
|
+
<div class="informaltable"><table width="100%" border="0">
|
1629
|
+
<colgroup>
|
1630
|
+
<col width="150px" class="parameters_name">
|
1631
|
+
<col class="parameters_description">
|
1632
|
+
<col width="200px" class="parameters_annotations">
|
1633
|
+
</colgroup>
|
1634
|
+
<tbody><tr>
|
1635
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1636
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1637
|
+
<td class="parameter_annotations"> </td>
|
1638
|
+
</tr></tbody>
|
1639
|
+
</table></div>
|
1640
|
+
</div>
|
1641
|
+
<div class="refsect3">
|
1642
|
+
<a name="id-1.2.12.9.30.6"></a><h4>Returns</h4>
|
1643
|
+
<p> A positive value.</p>
|
1644
|
+
<p></p>
|
1645
|
+
</div>
|
1646
|
+
<p class="since">Since 0.26</p>
|
1647
|
+
</div>
|
1648
|
+
<hr>
|
1649
|
+
<div class="refsect2">
|
1650
|
+
<a name="poppler-structure-element-get-space-after"></a><h3>poppler_structure_element_get_space_after ()</h3>
|
1651
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1652
|
+
poppler_structure_element_get_space_after
|
1653
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1654
|
+
<p>Obtains the amount of empty space after the block-level structure element.</p>
|
1655
|
+
<div class="refsect3">
|
1656
|
+
<a name="id-1.2.12.9.31.5"></a><h4>Parameters</h4>
|
1657
|
+
<div class="informaltable"><table width="100%" border="0">
|
1658
|
+
<colgroup>
|
1659
|
+
<col width="150px" class="parameters_name">
|
1660
|
+
<col class="parameters_description">
|
1661
|
+
<col width="200px" class="parameters_annotations">
|
1662
|
+
</colgroup>
|
1663
|
+
<tbody><tr>
|
1664
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1665
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1666
|
+
<td class="parameter_annotations"> </td>
|
1667
|
+
</tr></tbody>
|
1668
|
+
</table></div>
|
1669
|
+
</div>
|
1670
|
+
<div class="refsect3">
|
1671
|
+
<a name="id-1.2.12.9.31.6"></a><h4>Returns</h4>
|
1672
|
+
<p> A positive value.</p>
|
1673
|
+
<p></p>
|
1674
|
+
</div>
|
1675
|
+
<p class="since">Since 0.26</p>
|
1676
|
+
</div>
|
1677
|
+
<hr>
|
1678
|
+
<div class="refsect2">
|
1679
|
+
<a name="poppler-structure-element-get-start-indent"></a><h3>poppler_structure_element_get_start_indent ()</h3>
|
1680
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1681
|
+
poppler_structure_element_get_start_indent
|
1682
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1683
|
+
<p>Obtains the amount of indentation at the beginning of the block-level structure element.</p>
|
1684
|
+
<div class="refsect3">
|
1685
|
+
<a name="id-1.2.12.9.32.5"></a><h4>Parameters</h4>
|
1686
|
+
<div class="informaltable"><table width="100%" border="0">
|
1687
|
+
<colgroup>
|
1688
|
+
<col width="150px" class="parameters_name">
|
1689
|
+
<col class="parameters_description">
|
1690
|
+
<col width="200px" class="parameters_annotations">
|
1691
|
+
</colgroup>
|
1692
|
+
<tbody><tr>
|
1693
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1694
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1695
|
+
<td class="parameter_annotations"> </td>
|
1696
|
+
</tr></tbody>
|
1697
|
+
</table></div>
|
1698
|
+
</div>
|
1699
|
+
<div class="refsect3">
|
1700
|
+
<a name="id-1.2.12.9.32.6"></a><h4>Returns</h4>
|
1701
|
+
<p> A numeric value.</p>
|
1702
|
+
<p></p>
|
1703
|
+
</div>
|
1704
|
+
<p class="since">Since 0.26</p>
|
1705
|
+
</div>
|
1706
|
+
<hr>
|
1707
|
+
<div class="refsect2">
|
1708
|
+
<a name="poppler-structure-element-get-end-indent"></a><h3>poppler_structure_element_get_end_indent ()</h3>
|
1709
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1710
|
+
poppler_structure_element_get_end_indent
|
1711
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1712
|
+
<p>Obtains the amount of indentation at the end of the block-level structure element.</p>
|
1713
|
+
<div class="refsect3">
|
1714
|
+
<a name="id-1.2.12.9.33.5"></a><h4>Parameters</h4>
|
1715
|
+
<div class="informaltable"><table width="100%" border="0">
|
1716
|
+
<colgroup>
|
1717
|
+
<col width="150px" class="parameters_name">
|
1718
|
+
<col class="parameters_description">
|
1719
|
+
<col width="200px" class="parameters_annotations">
|
1720
|
+
</colgroup>
|
1721
|
+
<tbody><tr>
|
1722
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1723
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1724
|
+
<td class="parameter_annotations"> </td>
|
1725
|
+
</tr></tbody>
|
1726
|
+
</table></div>
|
1727
|
+
</div>
|
1728
|
+
<div class="refsect3">
|
1729
|
+
<a name="id-1.2.12.9.33.6"></a><h4>Returns</h4>
|
1730
|
+
<p> A numeric value.</p>
|
1731
|
+
<p></p>
|
1732
|
+
</div>
|
1733
|
+
<p class="since">Since 0.26</p>
|
1734
|
+
</div>
|
1735
|
+
<hr>
|
1736
|
+
<div class="refsect2">
|
1737
|
+
<a name="poppler-structure-element-get-text-indent"></a><h3>poppler_structure_element_get_text_indent ()</h3>
|
1738
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1739
|
+
poppler_structure_element_get_text_indent
|
1740
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1741
|
+
<p>Obtains the amount of indentation of the text contained in the block-level structure element.</p>
|
1742
|
+
<div class="refsect3">
|
1743
|
+
<a name="id-1.2.12.9.34.5"></a><h4>Parameters</h4>
|
1744
|
+
<div class="informaltable"><table width="100%" border="0">
|
1745
|
+
<colgroup>
|
1746
|
+
<col width="150px" class="parameters_name">
|
1747
|
+
<col class="parameters_description">
|
1748
|
+
<col width="200px" class="parameters_annotations">
|
1749
|
+
</colgroup>
|
1750
|
+
<tbody><tr>
|
1751
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1752
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1753
|
+
<td class="parameter_annotations"> </td>
|
1754
|
+
</tr></tbody>
|
1755
|
+
</table></div>
|
1756
|
+
</div>
|
1757
|
+
<div class="refsect3">
|
1758
|
+
<a name="id-1.2.12.9.34.6"></a><h4>Returns</h4>
|
1759
|
+
<p> A numeric value.</p>
|
1760
|
+
<p></p>
|
1761
|
+
</div>
|
1762
|
+
<p class="since">Since 0.26</p>
|
1763
|
+
</div>
|
1764
|
+
<hr>
|
1765
|
+
<div class="refsect2">
|
1766
|
+
<a name="poppler-structure-element-get-text-align"></a><h3>poppler_structure_element_get_text_align ()</h3>
|
1767
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureTextAlign" title="enum PopplerStructureTextAlign"><span class="returnvalue">PopplerStructureTextAlign</span></a>
|
1768
|
+
poppler_structure_element_get_text_align
|
1769
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1770
|
+
<p>Obtains the text alignment mode of the text contained into a
|
1771
|
+
block-level structure element.</p>
|
1772
|
+
<div class="refsect3">
|
1773
|
+
<a name="id-1.2.12.9.35.5"></a><h4>Parameters</h4>
|
1774
|
+
<div class="informaltable"><table width="100%" border="0">
|
1775
|
+
<colgroup>
|
1776
|
+
<col width="150px" class="parameters_name">
|
1777
|
+
<col class="parameters_description">
|
1778
|
+
<col width="200px" class="parameters_annotations">
|
1779
|
+
</colgroup>
|
1780
|
+
<tbody><tr>
|
1781
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1782
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1783
|
+
<td class="parameter_annotations"> </td>
|
1784
|
+
</tr></tbody>
|
1785
|
+
</table></div>
|
1786
|
+
</div>
|
1787
|
+
<div class="refsect3">
|
1788
|
+
<a name="id-1.2.12.9.35.6"></a><h4>Returns</h4>
|
1789
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureTextAlign" title="enum PopplerStructureTextAlign"><span class="type">PopplerStructureTextAlign</span></a> value.</p>
|
1790
|
+
<p></p>
|
1791
|
+
</div>
|
1792
|
+
<p class="since">Since 0.26</p>
|
1793
|
+
</div>
|
1794
|
+
<hr>
|
1795
|
+
<div class="refsect2">
|
1796
|
+
<a name="poppler-structure-element-get-bounding-box"></a><h3>poppler_structure_element_get_bounding_box ()</h3>
|
1797
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1798
|
+
poppler_structure_element_get_bounding_box
|
1799
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1800
|
+
<em class="parameter"><code><a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a> *bounding_box</code></em>);</pre>
|
1801
|
+
<p>Obtains the size of the bounding box of a block-level structure element.</p>
|
1802
|
+
<div class="refsect3">
|
1803
|
+
<a name="id-1.2.12.9.36.5"></a><h4>Parameters</h4>
|
1804
|
+
<div class="informaltable"><table width="100%" border="0">
|
1805
|
+
<colgroup>
|
1806
|
+
<col width="150px" class="parameters_name">
|
1807
|
+
<col class="parameters_description">
|
1808
|
+
<col width="200px" class="parameters_annotations">
|
1809
|
+
</colgroup>
|
1810
|
+
<tbody>
|
1811
|
+
<tr>
|
1812
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1813
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1814
|
+
<td class="parameter_annotations"> </td>
|
1815
|
+
</tr>
|
1816
|
+
<tr>
|
1817
|
+
<td class="parameter_name"><p>bounding_box</p></td>
|
1818
|
+
<td class="parameter_description"><p> A <a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a>. </p></td>
|
1819
|
+
<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>
|
1820
|
+
</tr>
|
1821
|
+
</tbody>
|
1822
|
+
</table></div>
|
1823
|
+
</div>
|
1824
|
+
<div class="refsect3">
|
1825
|
+
<a name="id-1.2.12.9.36.6"></a><h4>Returns</h4>
|
1826
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a bounding box is defined for the element,
|
1827
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1828
|
+
<p></p>
|
1829
|
+
</div>
|
1830
|
+
<p class="since">Since 0.26</p>
|
1831
|
+
</div>
|
1832
|
+
<hr>
|
1833
|
+
<div class="refsect2">
|
1834
|
+
<a name="poppler-structure-element-get-width"></a><h3>poppler_structure_element_get_width ()</h3>
|
1835
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1836
|
+
poppler_structure_element_get_width (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1837
|
+
<p>Obtains the width of the block-level structure element. Note that for elements which do
|
1838
|
+
not specify a width, it has to be calculated, and in this case -1 is returned.</p>
|
1839
|
+
<div class="refsect3">
|
1840
|
+
<a name="id-1.2.12.9.37.5"></a><h4>Parameters</h4>
|
1841
|
+
<div class="informaltable"><table width="100%" border="0">
|
1842
|
+
<colgroup>
|
1843
|
+
<col width="150px" class="parameters_name">
|
1844
|
+
<col class="parameters_description">
|
1845
|
+
<col width="200px" class="parameters_annotations">
|
1846
|
+
</colgroup>
|
1847
|
+
<tbody><tr>
|
1848
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1849
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1850
|
+
<td class="parameter_annotations"> </td>
|
1851
|
+
</tr></tbody>
|
1852
|
+
</table></div>
|
1853
|
+
</div>
|
1854
|
+
<div class="refsect3">
|
1855
|
+
<a name="id-1.2.12.9.37.6"></a><h4>Returns</h4>
|
1856
|
+
<p> A positive value if a width is defined, or -1
|
1857
|
+
if the width is to be calculated automatically.</p>
|
1858
|
+
<p></p>
|
1859
|
+
</div>
|
1860
|
+
<p class="since">Since 0.26</p>
|
1861
|
+
</div>
|
1862
|
+
<hr>
|
1863
|
+
<div class="refsect2">
|
1864
|
+
<a name="poppler-structure-element-get-height"></a><h3>poppler_structure_element_get_height ()</h3>
|
1865
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1866
|
+
poppler_structure_element_get_height (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1867
|
+
<p>Obtains the height of the block-level structure element. Note that for elements which do
|
1868
|
+
not specify a height, it has to be calculated, and in this case -1 is returned.</p>
|
1869
|
+
<div class="refsect3">
|
1870
|
+
<a name="id-1.2.12.9.38.5"></a><h4>Parameters</h4>
|
1871
|
+
<div class="informaltable"><table width="100%" border="0">
|
1872
|
+
<colgroup>
|
1873
|
+
<col width="150px" class="parameters_name">
|
1874
|
+
<col class="parameters_description">
|
1875
|
+
<col width="200px" class="parameters_annotations">
|
1876
|
+
</colgroup>
|
1877
|
+
<tbody><tr>
|
1878
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1879
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1880
|
+
<td class="parameter_annotations"> </td>
|
1881
|
+
</tr></tbody>
|
1882
|
+
</table></div>
|
1883
|
+
</div>
|
1884
|
+
<div class="refsect3">
|
1885
|
+
<a name="id-1.2.12.9.38.6"></a><h4>Returns</h4>
|
1886
|
+
<p> A positive value if a width is defined, or -1
|
1887
|
+
if the height is to be calculated automatically.</p>
|
1888
|
+
<p></p>
|
1889
|
+
</div>
|
1890
|
+
<p class="since">Since 0.26</p>
|
1891
|
+
</div>
|
1892
|
+
<hr>
|
1893
|
+
<div class="refsect2">
|
1894
|
+
<a name="poppler-structure-element-get-block-align"></a><h3>poppler_structure_element_get_block_align ()</h3>
|
1895
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureBlockAlign" title="enum PopplerStructureBlockAlign"><span class="returnvalue">PopplerStructureBlockAlign</span></a>
|
1896
|
+
poppler_structure_element_get_block_align
|
1897
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1898
|
+
<p>Obtains the block-alignment mode of the block-level structure element.</p>
|
1899
|
+
<div class="refsect3">
|
1900
|
+
<a name="id-1.2.12.9.39.5"></a><h4>Parameters</h4>
|
1901
|
+
<div class="informaltable"><table width="100%" border="0">
|
1902
|
+
<colgroup>
|
1903
|
+
<col width="150px" class="parameters_name">
|
1904
|
+
<col class="parameters_description">
|
1905
|
+
<col width="200px" class="parameters_annotations">
|
1906
|
+
</colgroup>
|
1907
|
+
<tbody><tr>
|
1908
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1909
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1910
|
+
<td class="parameter_annotations"> </td>
|
1911
|
+
</tr></tbody>
|
1912
|
+
</table></div>
|
1913
|
+
</div>
|
1914
|
+
<div class="refsect3">
|
1915
|
+
<a name="id-1.2.12.9.39.6"></a><h4>Returns</h4>
|
1916
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureBlockAlign" title="enum PopplerStructureBlockAlign"><span class="type">PopplerStructureBlockAlign</span></a> value.</p>
|
1917
|
+
<p></p>
|
1918
|
+
</div>
|
1919
|
+
<p class="since">Since 0.26</p>
|
1920
|
+
</div>
|
1921
|
+
<hr>
|
1922
|
+
<div class="refsect2">
|
1923
|
+
<a name="poppler-structure-element-get-inline-align"></a><h3>poppler_structure_element_get_inline_align ()</h3>
|
1924
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureInlineAlign" title="enum PopplerStructureInlineAlign"><span class="returnvalue">PopplerStructureInlineAlign</span></a>
|
1925
|
+
poppler_structure_element_get_inline_align
|
1926
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
1927
|
+
<p>Obtains the inline-alignment mode of the block-level structure element.</p>
|
1928
|
+
<div class="refsect3">
|
1929
|
+
<a name="id-1.2.12.9.40.5"></a><h4>Parameters</h4>
|
1930
|
+
<div class="informaltable"><table width="100%" border="0">
|
1931
|
+
<colgroup>
|
1932
|
+
<col width="150px" class="parameters_name">
|
1933
|
+
<col class="parameters_description">
|
1934
|
+
<col width="200px" class="parameters_annotations">
|
1935
|
+
</colgroup>
|
1936
|
+
<tbody><tr>
|
1937
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1938
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1939
|
+
<td class="parameter_annotations"> </td>
|
1940
|
+
</tr></tbody>
|
1941
|
+
</table></div>
|
1942
|
+
</div>
|
1943
|
+
<div class="refsect3">
|
1944
|
+
<a name="id-1.2.12.9.40.6"></a><h4>Returns</h4>
|
1945
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureInlineAlign" title="enum PopplerStructureInlineAlign"><span class="type">PopplerStructureInlineAlign</span></a> value.</p>
|
1946
|
+
<p></p>
|
1947
|
+
</div>
|
1948
|
+
<p class="since">Since 0.26</p>
|
1949
|
+
</div>
|
1950
|
+
<hr>
|
1951
|
+
<div class="refsect2">
|
1952
|
+
<a name="poppler-structure-element-get-table-border-style"></a><h3>poppler_structure_element_get_table_border_style ()</h3>
|
1953
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1954
|
+
poppler_structure_element_get_table_border_style
|
1955
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1956
|
+
<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerStructureBorderStyle" title="enum PopplerStructureBorderStyle"><span class="type">PopplerStructureBorderStyle</span></a> *border_styles</code></em>);</pre>
|
1957
|
+
<p>Obtains the table cell border style of a block-level structure element. The result values
|
1958
|
+
are in before-after-start-end ordering. For example, using Western
|
1959
|
+
left-to-right writing, that is top-bottom-left-right.</p>
|
1960
|
+
<div class="refsect3">
|
1961
|
+
<a name="id-1.2.12.9.41.5"></a><h4>Parameters</h4>
|
1962
|
+
<div class="informaltable"><table width="100%" border="0">
|
1963
|
+
<colgroup>
|
1964
|
+
<col width="150px" class="parameters_name">
|
1965
|
+
<col class="parameters_description">
|
1966
|
+
<col width="200px" class="parameters_annotations">
|
1967
|
+
</colgroup>
|
1968
|
+
<tbody>
|
1969
|
+
<tr>
|
1970
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
1971
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
1972
|
+
<td class="parameter_annotations"> </td>
|
1973
|
+
</tr>
|
1974
|
+
<tr>
|
1975
|
+
<td class="parameter_name"><p>border_styles</p></td>
|
1976
|
+
<td class="parameter_description"><p> An array of four <a class="link" href="PopplerStructureElement.html#PopplerStructureBorderStyle" title="enum PopplerStructureBorderStyle"><span class="type">PopplerStructureBorderStyle</span></a> elements. </p></td>
|
1977
|
+
<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="Parameter points to an array of items."><span class="acronym">array</span></acronym> fixed-size=4][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerStructureBorderStyle]</span></td>
|
1978
|
+
</tr>
|
1979
|
+
</tbody>
|
1980
|
+
</table></div>
|
1981
|
+
</div>
|
1982
|
+
<p class="since">Since 0.26</p>
|
1983
|
+
</div>
|
1984
|
+
<hr>
|
1985
|
+
<div class="refsect2">
|
1986
|
+
<a name="poppler-structure-element-get-table-padding"></a><h3>poppler_structure_element_get_table_padding ()</h3>
|
1987
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1988
|
+
poppler_structure_element_get_table_padding
|
1989
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
1990
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *paddings</code></em>);</pre>
|
1991
|
+
<p>Obtains the padding between the table cell’s content rectangle and the
|
1992
|
+
surrounding border of a block-level structure element. The result
|
1993
|
+
values are in before-after-start-end ordering (for the typical
|
1994
|
+
Western left-to-right writing, that is top-bottom-left-right).</p>
|
1995
|
+
<div class="refsect3">
|
1996
|
+
<a name="id-1.2.12.9.42.5"></a><h4>Parameters</h4>
|
1997
|
+
<div class="informaltable"><table width="100%" border="0">
|
1998
|
+
<colgroup>
|
1999
|
+
<col width="150px" class="parameters_name">
|
2000
|
+
<col class="parameters_description">
|
2001
|
+
<col width="200px" class="parameters_annotations">
|
2002
|
+
</colgroup>
|
2003
|
+
<tbody>
|
2004
|
+
<tr>
|
2005
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2006
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2007
|
+
<td class="parameter_annotations"> </td>
|
2008
|
+
</tr>
|
2009
|
+
<tr>
|
2010
|
+
<td class="parameter_name"><p>paddings</p></td>
|
2011
|
+
<td class="parameter_description"><p> Padding for the four sides of the element. </p></td>
|
2012
|
+
<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="Parameter points to an array of items."><span class="acronym">array</span></acronym> fixed-size=4][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> gdouble]</span></td>
|
2013
|
+
</tr>
|
2014
|
+
</tbody>
|
2015
|
+
</table></div>
|
2016
|
+
</div>
|
2017
|
+
<p class="since">Since 0.26</p>
|
2018
|
+
</div>
|
2019
|
+
<hr>
|
2020
|
+
<div class="refsect2">
|
2021
|
+
<a name="poppler-structure-element-get-baseline-shift"></a><h3>poppler_structure_element_get_baseline_shift ()</h3>
|
2022
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
2023
|
+
poppler_structure_element_get_baseline_shift
|
2024
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2025
|
+
<p>Obtains how much the text contained in the inline-level structure element should be shifted,
|
2026
|
+
measuring from the baseline of the glyphs.</p>
|
2027
|
+
<div class="refsect3">
|
2028
|
+
<a name="id-1.2.12.9.43.5"></a><h4>Parameters</h4>
|
2029
|
+
<div class="informaltable"><table width="100%" border="0">
|
2030
|
+
<colgroup>
|
2031
|
+
<col width="150px" class="parameters_name">
|
2032
|
+
<col class="parameters_description">
|
2033
|
+
<col width="200px" class="parameters_annotations">
|
2034
|
+
</colgroup>
|
2035
|
+
<tbody><tr>
|
2036
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2037
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2038
|
+
<td class="parameter_annotations"> </td>
|
2039
|
+
</tr></tbody>
|
2040
|
+
</table></div>
|
2041
|
+
</div>
|
2042
|
+
<div class="refsect3">
|
2043
|
+
<a name="id-1.2.12.9.43.6"></a><h4>Returns</h4>
|
2044
|
+
<p> A numeric value.</p>
|
2045
|
+
<p></p>
|
2046
|
+
</div>
|
2047
|
+
<p class="since">Since 0.26</p>
|
2048
|
+
</div>
|
2049
|
+
<hr>
|
2050
|
+
<div class="refsect2">
|
2051
|
+
<a name="poppler-structure-element-get-line-height"></a><h3>poppler_structure_element_get_line_height ()</h3>
|
2052
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
2053
|
+
poppler_structure_element_get_line_height
|
2054
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2055
|
+
<p>Obtains the line height for the text contained in the inline-level structure element.
|
2056
|
+
Note that for elements which do not specify a line height, it has to be calculated,
|
2057
|
+
and in this case -1 is returned.</p>
|
2058
|
+
<div class="refsect3">
|
2059
|
+
<a name="id-1.2.12.9.44.5"></a><h4>Parameters</h4>
|
2060
|
+
<div class="informaltable"><table width="100%" border="0">
|
2061
|
+
<colgroup>
|
2062
|
+
<col width="150px" class="parameters_name">
|
2063
|
+
<col class="parameters_description">
|
2064
|
+
<col width="200px" class="parameters_annotations">
|
2065
|
+
</colgroup>
|
2066
|
+
<tbody><tr>
|
2067
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2068
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2069
|
+
<td class="parameter_annotations"> </td>
|
2070
|
+
</tr></tbody>
|
2071
|
+
</table></div>
|
2072
|
+
</div>
|
2073
|
+
<div class="refsect3">
|
2074
|
+
<a name="id-1.2.12.9.44.6"></a><h4>Returns</h4>
|
2075
|
+
<p> A positive value if a line height is defined, or -1
|
2076
|
+
if the height is to be calculated automatically.</p>
|
2077
|
+
<p></p>
|
2078
|
+
</div>
|
2079
|
+
<p class="since">Since 0.26</p>
|
2080
|
+
</div>
|
2081
|
+
<hr>
|
2082
|
+
<div class="refsect2">
|
2083
|
+
<a name="poppler-structure-element-get-text-decoration-color"></a><h3>poppler_structure_element_get_text_decoration_color ()</h3>
|
2084
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2085
|
+
poppler_structure_element_get_text_decoration_color
|
2086
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
2087
|
+
<em class="parameter"><code><a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> *color</code></em>);</pre>
|
2088
|
+
<p>Obtains the color of the text decoration for the text contained
|
2089
|
+
in the inline-level structure element.
|
2090
|
+
If this attribute is not specified, the color for this element shall be the current fill
|
2091
|
+
color in effect at the start of its associated content.</p>
|
2092
|
+
<div class="refsect3">
|
2093
|
+
<a name="id-1.2.12.9.45.5"></a><h4>Parameters</h4>
|
2094
|
+
<div class="informaltable"><table width="100%" border="0">
|
2095
|
+
<colgroup>
|
2096
|
+
<col width="150px" class="parameters_name">
|
2097
|
+
<col class="parameters_description">
|
2098
|
+
<col width="200px" class="parameters_annotations">
|
2099
|
+
</colgroup>
|
2100
|
+
<tbody>
|
2101
|
+
<tr>
|
2102
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2103
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2104
|
+
<td class="parameter_annotations"> </td>
|
2105
|
+
</tr>
|
2106
|
+
<tr>
|
2107
|
+
<td class="parameter_name"><p>color</p></td>
|
2108
|
+
<td class="parameter_description"><p> A <a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>. </p></td>
|
2109
|
+
<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>
|
2110
|
+
</tr>
|
2111
|
+
</tbody>
|
2112
|
+
</table></div>
|
2113
|
+
</div>
|
2114
|
+
<div class="refsect3">
|
2115
|
+
<a name="id-1.2.12.9.45.6"></a><h4>Returns</h4>
|
2116
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a color is defined for the element,
|
2117
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
2118
|
+
<p></p>
|
2119
|
+
</div>
|
2120
|
+
<p class="since">Since 0.26</p>
|
2121
|
+
</div>
|
2122
|
+
<hr>
|
2123
|
+
<div class="refsect2">
|
2124
|
+
<a name="poppler-structure-element-get-text-decoration-thickness"></a><h3>poppler_structure_element_get_text_decoration_thickness ()</h3>
|
2125
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
2126
|
+
poppler_structure_element_get_text_decoration_thickness
|
2127
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2128
|
+
<p>Obtains the thickness of the text decoration for the text contained
|
2129
|
+
in the inline-level structure element.
|
2130
|
+
If this attribute is not specified, it shall be derived from the current
|
2131
|
+
stroke thickness in effect at the start of the element’s associated content.</p>
|
2132
|
+
<div class="refsect3">
|
2133
|
+
<a name="id-1.2.12.9.46.5"></a><h4>Parameters</h4>
|
2134
|
+
<div class="informaltable"><table width="100%" border="0">
|
2135
|
+
<colgroup>
|
2136
|
+
<col width="150px" class="parameters_name">
|
2137
|
+
<col class="parameters_description">
|
2138
|
+
<col width="200px" class="parameters_annotations">
|
2139
|
+
</colgroup>
|
2140
|
+
<tbody><tr>
|
2141
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2142
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2143
|
+
<td class="parameter_annotations"> </td>
|
2144
|
+
</tr></tbody>
|
2145
|
+
</table></div>
|
2146
|
+
</div>
|
2147
|
+
<div class="refsect3">
|
2148
|
+
<a name="id-1.2.12.9.46.6"></a><h4>Returns</h4>
|
2149
|
+
<p> Thickness of the text decoration, or <code class="literal">NaN</code> if not defined.</p>
|
2150
|
+
<p></p>
|
2151
|
+
</div>
|
2152
|
+
<p class="since">Since 0.26</p>
|
2153
|
+
</div>
|
2154
|
+
<hr>
|
2155
|
+
<div class="refsect2">
|
2156
|
+
<a name="poppler-structure-element-get-text-decoration-type"></a><h3>poppler_structure_element_get_text_decoration_type ()</h3>
|
2157
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureTextDecoration" title="enum PopplerStructureTextDecoration"><span class="returnvalue">PopplerStructureTextDecoration</span></a>
|
2158
|
+
poppler_structure_element_get_text_decoration_type
|
2159
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2160
|
+
<p>Obtains the text decoration type of the text contained in the
|
2161
|
+
inline-level structure element.</p>
|
2162
|
+
<div class="refsect3">
|
2163
|
+
<a name="id-1.2.12.9.47.5"></a><h4>Parameters</h4>
|
2164
|
+
<div class="informaltable"><table width="100%" border="0">
|
2165
|
+
<colgroup>
|
2166
|
+
<col width="150px" class="parameters_name">
|
2167
|
+
<col class="parameters_description">
|
2168
|
+
<col width="200px" class="parameters_annotations">
|
2169
|
+
</colgroup>
|
2170
|
+
<tbody><tr>
|
2171
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2172
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2173
|
+
<td class="parameter_annotations"> </td>
|
2174
|
+
</tr></tbody>
|
2175
|
+
</table></div>
|
2176
|
+
</div>
|
2177
|
+
<div class="refsect3">
|
2178
|
+
<a name="id-1.2.12.9.47.6"></a><h4>Returns</h4>
|
2179
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureTextDecoration" title="enum PopplerStructureTextDecoration"><span class="type">PopplerStructureTextDecoration</span></a> value.</p>
|
2180
|
+
<p></p>
|
2181
|
+
</div>
|
2182
|
+
<p class="since">Since 0.26</p>
|
2183
|
+
</div>
|
2184
|
+
<hr>
|
2185
|
+
<div class="refsect2">
|
2186
|
+
<a name="poppler-structure-element-get-ruby-align"></a><h3>poppler_structure_element_get_ruby_align ()</h3>
|
2187
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureRubyAlign" title="enum PopplerStructureRubyAlign"><span class="returnvalue">PopplerStructureRubyAlign</span></a>
|
2188
|
+
poppler_structure_element_get_ruby_align
|
2189
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2190
|
+
<p>Obtains the alignment for the ruby text contained in a
|
2191
|
+
inline-level structure element.</p>
|
2192
|
+
<div class="refsect3">
|
2193
|
+
<a name="id-1.2.12.9.48.5"></a><h4>Parameters</h4>
|
2194
|
+
<div class="informaltable"><table width="100%" border="0">
|
2195
|
+
<colgroup>
|
2196
|
+
<col width="150px" class="parameters_name">
|
2197
|
+
<col class="parameters_description">
|
2198
|
+
<col width="200px" class="parameters_annotations">
|
2199
|
+
</colgroup>
|
2200
|
+
<tbody><tr>
|
2201
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2202
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2203
|
+
<td class="parameter_annotations"> </td>
|
2204
|
+
</tr></tbody>
|
2205
|
+
</table></div>
|
2206
|
+
</div>
|
2207
|
+
<div class="refsect3">
|
2208
|
+
<a name="id-1.2.12.9.48.6"></a><h4>Returns</h4>
|
2209
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureRubyAlign" title="enum PopplerStructureRubyAlign"><span class="type">PopplerStructureRubyAlign</span></a> value.</p>
|
2210
|
+
<p></p>
|
2211
|
+
</div>
|
2212
|
+
<p class="since">Since 0.26</p>
|
2213
|
+
</div>
|
2214
|
+
<hr>
|
2215
|
+
<div class="refsect2">
|
2216
|
+
<a name="poppler-structure-element-get-ruby-position"></a><h3>poppler_structure_element_get_ruby_position ()</h3>
|
2217
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureRubyPosition" title="enum PopplerStructureRubyPosition"><span class="returnvalue">PopplerStructureRubyPosition</span></a>
|
2218
|
+
poppler_structure_element_get_ruby_position
|
2219
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2220
|
+
<p>Obtains the position for the ruby text contained in a
|
2221
|
+
inline-level structure element.</p>
|
2222
|
+
<div class="refsect3">
|
2223
|
+
<a name="id-1.2.12.9.49.5"></a><h4>Parameters</h4>
|
2224
|
+
<div class="informaltable"><table width="100%" border="0">
|
2225
|
+
<colgroup>
|
2226
|
+
<col width="150px" class="parameters_name">
|
2227
|
+
<col class="parameters_description">
|
2228
|
+
<col width="200px" class="parameters_annotations">
|
2229
|
+
</colgroup>
|
2230
|
+
<tbody><tr>
|
2231
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2232
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2233
|
+
<td class="parameter_annotations"> </td>
|
2234
|
+
</tr></tbody>
|
2235
|
+
</table></div>
|
2236
|
+
</div>
|
2237
|
+
<div class="refsect3">
|
2238
|
+
<a name="id-1.2.12.9.49.6"></a><h4>Returns</h4>
|
2239
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureRubyPosition" title="enum PopplerStructureRubyPosition"><span class="type">PopplerStructureRubyPosition</span></a> value.</p>
|
2240
|
+
<p></p>
|
2241
|
+
</div>
|
2242
|
+
<p class="since">Since 0.26</p>
|
2243
|
+
</div>
|
2244
|
+
<hr>
|
2245
|
+
<div class="refsect2">
|
2246
|
+
<a name="poppler-structure-element-get-glyph-orientation"></a><h3>poppler_structure_element_get_glyph_orientation ()</h3>
|
2247
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureGlyphOrientation" title="enum PopplerStructureGlyphOrientation"><span class="returnvalue">PopplerStructureGlyphOrientation</span></a>
|
2248
|
+
poppler_structure_element_get_glyph_orientation
|
2249
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2250
|
+
<p>Obtains the glyph orientation for the text contained in a
|
2251
|
+
inline-level structure element.</p>
|
2252
|
+
<div class="refsect3">
|
2253
|
+
<a name="id-1.2.12.9.50.5"></a><h4>Parameters</h4>
|
2254
|
+
<div class="informaltable"><table width="100%" border="0">
|
2255
|
+
<colgroup>
|
2256
|
+
<col width="150px" class="parameters_name">
|
2257
|
+
<col class="parameters_description">
|
2258
|
+
<col width="200px" class="parameters_annotations">
|
2259
|
+
</colgroup>
|
2260
|
+
<tbody><tr>
|
2261
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2262
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2263
|
+
<td class="parameter_annotations"> </td>
|
2264
|
+
</tr></tbody>
|
2265
|
+
</table></div>
|
2266
|
+
</div>
|
2267
|
+
<div class="refsect3">
|
2268
|
+
<a name="id-1.2.12.9.50.6"></a><h4>Returns</h4>
|
2269
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureGlyphOrientation" title="enum PopplerStructureGlyphOrientation"><span class="type">PopplerStructureGlyphOrientation</span></a> value.</p>
|
2270
|
+
<p></p>
|
2271
|
+
</div>
|
2272
|
+
<p class="since">Since 0.26</p>
|
2273
|
+
</div>
|
2274
|
+
<hr>
|
2275
|
+
<div class="refsect2">
|
2276
|
+
<a name="poppler-structure-element-get-column-count"></a><h3>poppler_structure_element_get_column_count ()</h3>
|
2277
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
2278
|
+
poppler_structure_element_get_column_count
|
2279
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2280
|
+
<p>Obtains the number of columns used to lay out the content contained
|
2281
|
+
in the grouping element.</p>
|
2282
|
+
<div class="refsect3">
|
2283
|
+
<a name="id-1.2.12.9.51.5"></a><h4>Parameters</h4>
|
2284
|
+
<div class="informaltable"><table width="100%" border="0">
|
2285
|
+
<colgroup>
|
2286
|
+
<col width="150px" class="parameters_name">
|
2287
|
+
<col class="parameters_description">
|
2288
|
+
<col width="200px" class="parameters_annotations">
|
2289
|
+
</colgroup>
|
2290
|
+
<tbody><tr>
|
2291
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2292
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2293
|
+
<td class="parameter_annotations"> </td>
|
2294
|
+
</tr></tbody>
|
2295
|
+
</table></div>
|
2296
|
+
</div>
|
2297
|
+
<div class="refsect3">
|
2298
|
+
<a name="id-1.2.12.9.51.6"></a><h4>Returns</h4>
|
2299
|
+
<p> Number of columns.</p>
|
2300
|
+
<p></p>
|
2301
|
+
</div>
|
2302
|
+
<p class="since">Since 0.26</p>
|
2303
|
+
</div>
|
2304
|
+
<hr>
|
2305
|
+
<div class="refsect2">
|
2306
|
+
<a name="poppler-structure-element-get-column-gaps"></a><h3>poppler_structure_element_get_column_gaps ()</h3>
|
2307
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> *
|
2308
|
+
poppler_structure_element_get_column_gaps
|
2309
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
2310
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *n_values</code></em>);</pre>
|
2311
|
+
<p>Obtains the size of the gaps in between adjacent columns. Returns an
|
2312
|
+
array of elements: the first one is the size of the gap in between
|
2313
|
+
columns 1 and 2, second is the size between columns 2 and 3, and so on.</p>
|
2314
|
+
<p>For elements which use a single column, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned and <code class="literal">n_values</code>
|
2315
|
+
is set to zero.</p>
|
2316
|
+
<p>If the attribute is undefined, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned and <code class="literal">n_values</code> is set
|
2317
|
+
to a non-zero value.</p>
|
2318
|
+
<p>The array with the results is allocated by the function. When it is
|
2319
|
+
not needed anymore, be sure to call <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> on it.</p>
|
2320
|
+
<div class="refsect3">
|
2321
|
+
<a name="id-1.2.12.9.52.8"></a><h4>Parameters</h4>
|
2322
|
+
<div class="informaltable"><table width="100%" border="0">
|
2323
|
+
<colgroup>
|
2324
|
+
<col width="150px" class="parameters_name">
|
2325
|
+
<col class="parameters_description">
|
2326
|
+
<col width="200px" class="parameters_annotations">
|
2327
|
+
</colgroup>
|
2328
|
+
<tbody>
|
2329
|
+
<tr>
|
2330
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2331
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2332
|
+
<td class="parameter_annotations"> </td>
|
2333
|
+
</tr>
|
2334
|
+
<tr>
|
2335
|
+
<td class="parameter_name"><p>n_values</p></td>
|
2336
|
+
<td class="parameter_description"><p> Size of the returned array. </p></td>
|
2337
|
+
<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>
|
2338
|
+
</tr>
|
2339
|
+
</tbody>
|
2340
|
+
</table></div>
|
2341
|
+
</div>
|
2342
|
+
<div class="refsect3">
|
2343
|
+
<a name="id-1.2.12.9.52.9"></a><h4>Returns</h4>
|
2344
|
+
<p> Array containing the values for the column gaps, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
|
2345
|
+
array is empty or the attribute is not defined. </p>
|
2346
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> gdouble]</span></p>
|
2347
|
+
</div>
|
2348
|
+
<p class="since">Since 0.26</p>
|
2349
|
+
</div>
|
2350
|
+
<hr>
|
2351
|
+
<div class="refsect2">
|
2352
|
+
<a name="poppler-structure-element-get-column-widths"></a><h3>poppler_structure_element_get_column_widths ()</h3>
|
2353
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> *
|
2354
|
+
poppler_structure_element_get_column_widths
|
2355
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>,
|
2356
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *n_values</code></em>);</pre>
|
2357
|
+
<p>Obtains an array with the widths of the columns.</p>
|
2358
|
+
<p>The array with the results is allocated by the function. When it is
|
2359
|
+
not needed anymore, be sure to call <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> on it.</p>
|
2360
|
+
<div class="refsect3">
|
2361
|
+
<a name="id-1.2.12.9.53.6"></a><h4>Parameters</h4>
|
2362
|
+
<div class="informaltable"><table width="100%" border="0">
|
2363
|
+
<colgroup>
|
2364
|
+
<col width="150px" class="parameters_name">
|
2365
|
+
<col class="parameters_description">
|
2366
|
+
<col width="200px" class="parameters_annotations">
|
2367
|
+
</colgroup>
|
2368
|
+
<tbody>
|
2369
|
+
<tr>
|
2370
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2371
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2372
|
+
<td class="parameter_annotations"> </td>
|
2373
|
+
</tr>
|
2374
|
+
<tr>
|
2375
|
+
<td class="parameter_name"><p>n_values</p></td>
|
2376
|
+
<td class="parameter_description"><p> Size of the returned array. </p></td>
|
2377
|
+
<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>
|
2378
|
+
</tr>
|
2379
|
+
</tbody>
|
2380
|
+
</table></div>
|
2381
|
+
</div>
|
2382
|
+
<div class="refsect3">
|
2383
|
+
<a name="id-1.2.12.9.53.7"></a><h4>Returns</h4>
|
2384
|
+
<p> Array containing widths of the columns, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the attribute
|
2385
|
+
is not defined. </p>
|
2386
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> gdouble]</span></p>
|
2387
|
+
</div>
|
2388
|
+
<p class="since">Since 0.26</p>
|
2389
|
+
</div>
|
2390
|
+
<hr>
|
2391
|
+
<div class="refsect2">
|
2392
|
+
<a name="poppler-structure-element-get-list-numbering"></a><h3>poppler_structure_element_get_list_numbering ()</h3>
|
2393
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureListNumbering" title="enum PopplerStructureListNumbering"><span class="returnvalue">PopplerStructureListNumbering</span></a>
|
2394
|
+
poppler_structure_element_get_list_numbering
|
2395
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2396
|
+
<p>Obtains the list numbering style for list items.</p>
|
2397
|
+
<div class="refsect3">
|
2398
|
+
<a name="id-1.2.12.9.54.5"></a><h4>Parameters</h4>
|
2399
|
+
<div class="informaltable"><table width="100%" border="0">
|
2400
|
+
<colgroup>
|
2401
|
+
<col width="150px" class="parameters_name">
|
2402
|
+
<col class="parameters_description">
|
2403
|
+
<col width="200px" class="parameters_annotations">
|
2404
|
+
</colgroup>
|
2405
|
+
<tbody><tr>
|
2406
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2407
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2408
|
+
<td class="parameter_annotations"> </td>
|
2409
|
+
</tr></tbody>
|
2410
|
+
</table></div>
|
2411
|
+
</div>
|
2412
|
+
<div class="refsect3">
|
2413
|
+
<a name="id-1.2.12.9.54.6"></a><h4>Returns</h4>
|
2414
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureListNumbering" title="enum PopplerStructureListNumbering"><span class="type">PopplerStructureListNumbering</span></a> value.</p>
|
2415
|
+
<p></p>
|
2416
|
+
</div>
|
2417
|
+
<p class="since">Since 0.26</p>
|
2418
|
+
</div>
|
2419
|
+
<hr>
|
2420
|
+
<div class="refsect2">
|
2421
|
+
<a name="poppler-structure-element-get-form-role"></a><h3>poppler_structure_element_get_form_role ()</h3>
|
2422
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureFormRole" title="enum PopplerStructureFormRole"><span class="returnvalue">PopplerStructureFormRole</span></a>
|
2423
|
+
poppler_structure_element_get_form_role
|
2424
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2425
|
+
<p>Obtains the role of a form structure element that is part of a form, or is
|
2426
|
+
a form field. This hints how the control for the element is intended
|
2427
|
+
to be rendered.</p>
|
2428
|
+
<div class="refsect3">
|
2429
|
+
<a name="id-1.2.12.9.55.5"></a><h4>Parameters</h4>
|
2430
|
+
<div class="informaltable"><table width="100%" border="0">
|
2431
|
+
<colgroup>
|
2432
|
+
<col width="150px" class="parameters_name">
|
2433
|
+
<col class="parameters_description">
|
2434
|
+
<col width="200px" class="parameters_annotations">
|
2435
|
+
</colgroup>
|
2436
|
+
<tbody><tr>
|
2437
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2438
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2439
|
+
<td class="parameter_annotations"> </td>
|
2440
|
+
</tr></tbody>
|
2441
|
+
</table></div>
|
2442
|
+
</div>
|
2443
|
+
<div class="refsect3">
|
2444
|
+
<a name="id-1.2.12.9.55.6"></a><h4>Returns</h4>
|
2445
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureFormRole" title="enum PopplerStructureFormRole"><span class="type">PopplerStructureFormRole</span></a> value.</p>
|
2446
|
+
<p></p>
|
2447
|
+
</div>
|
2448
|
+
<p class="since">Since 0.26</p>
|
2449
|
+
</div>
|
2450
|
+
<hr>
|
2451
|
+
<div class="refsect2">
|
2452
|
+
<a name="poppler-structure-element-get-form-state"></a><h3>poppler_structure_element_get_form_state ()</h3>
|
2453
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureFormState" title="enum PopplerStructureFormState"><span class="returnvalue">PopplerStructureFormState</span></a>
|
2454
|
+
poppler_structure_element_get_form_state
|
2455
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2456
|
+
<p>For a structure element that is a form field, obtains in which state
|
2457
|
+
the associated control is expected to be rendered.</p>
|
2458
|
+
<div class="refsect3">
|
2459
|
+
<a name="id-1.2.12.9.56.5"></a><h4>Parameters</h4>
|
2460
|
+
<div class="informaltable"><table width="100%" border="0">
|
2461
|
+
<colgroup>
|
2462
|
+
<col width="150px" class="parameters_name">
|
2463
|
+
<col class="parameters_description">
|
2464
|
+
<col width="200px" class="parameters_annotations">
|
2465
|
+
</colgroup>
|
2466
|
+
<tbody><tr>
|
2467
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2468
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2469
|
+
<td class="parameter_annotations"> </td>
|
2470
|
+
</tr></tbody>
|
2471
|
+
</table></div>
|
2472
|
+
</div>
|
2473
|
+
<div class="refsect3">
|
2474
|
+
<a name="id-1.2.12.9.56.6"></a><h4>Returns</h4>
|
2475
|
+
<p> A <a class="link" href="PopplerStructureElement.html#PopplerStructureFormState" title="enum PopplerStructureFormState"><span class="type">PopplerStructureFormState</span></a> value.</p>
|
2476
|
+
<p></p>
|
2477
|
+
</div>
|
2478
|
+
<p class="since">Since 0.26</p>
|
2479
|
+
</div>
|
2480
|
+
<hr>
|
2481
|
+
<div class="refsect2">
|
2482
|
+
<a name="poppler-structure-element-get-form-description"></a><h3>poppler_structure_element_get_form_description ()</h3>
|
2483
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2484
|
+
poppler_structure_element_get_form_description
|
2485
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2486
|
+
<p>Obtains the textual description of the form element. Note that the
|
2487
|
+
description is for informative purposes, and it is not intended
|
2488
|
+
to be rendered. For example, assistive technologies may use the
|
2489
|
+
description field to provide an alternate way of presenting an
|
2490
|
+
element to the user.</p>
|
2491
|
+
<p>The returned string is allocated by the function. When it is
|
2492
|
+
not needed anymore, be sure to call <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> on it.</p>
|
2493
|
+
<div class="refsect3">
|
2494
|
+
<a name="id-1.2.12.9.57.6"></a><h4>Parameters</h4>
|
2495
|
+
<div class="informaltable"><table width="100%" border="0">
|
2496
|
+
<colgroup>
|
2497
|
+
<col width="150px" class="parameters_name">
|
2498
|
+
<col class="parameters_description">
|
2499
|
+
<col width="200px" class="parameters_annotations">
|
2500
|
+
</colgroup>
|
2501
|
+
<tbody><tr>
|
2502
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2503
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2504
|
+
<td class="parameter_annotations"> </td>
|
2505
|
+
</tr></tbody>
|
2506
|
+
</table></div>
|
2507
|
+
</div>
|
2508
|
+
<div class="refsect3">
|
2509
|
+
<a name="id-1.2.12.9.57.7"></a><h4>Returns</h4>
|
2510
|
+
<p> A string, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the attribute
|
2511
|
+
is not defined. </p>
|
2512
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
2513
|
+
</div>
|
2514
|
+
<p class="since">Since 0.26</p>
|
2515
|
+
</div>
|
2516
|
+
<hr>
|
2517
|
+
<div class="refsect2">
|
2518
|
+
<a name="poppler-structure-element-get-table-row-span"></a><h3>poppler_structure_element_get_table_row_span ()</h3>
|
2519
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
2520
|
+
poppler_structure_element_get_table_row_span
|
2521
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2522
|
+
<p>Obtains the number of rows the table element spans to.</p>
|
2523
|
+
<div class="refsect3">
|
2524
|
+
<a name="id-1.2.12.9.58.5"></a><h4>Parameters</h4>
|
2525
|
+
<div class="informaltable"><table width="100%" border="0">
|
2526
|
+
<colgroup>
|
2527
|
+
<col width="150px" class="parameters_name">
|
2528
|
+
<col class="parameters_description">
|
2529
|
+
<col width="200px" class="parameters_annotations">
|
2530
|
+
</colgroup>
|
2531
|
+
<tbody><tr>
|
2532
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2533
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2534
|
+
<td class="parameter_annotations"> </td>
|
2535
|
+
</tr></tbody>
|
2536
|
+
</table></div>
|
2537
|
+
</div>
|
2538
|
+
<div class="refsect3">
|
2539
|
+
<a name="id-1.2.12.9.58.6"></a><h4>Returns</h4>
|
2540
|
+
<p> A positive, non-zero value.</p>
|
2541
|
+
<p></p>
|
2542
|
+
</div>
|
2543
|
+
<p class="since">Since 0.26</p>
|
2544
|
+
</div>
|
2545
|
+
<hr>
|
2546
|
+
<div class="refsect2">
|
2547
|
+
<a name="poppler-structure-element-get-table-column-span"></a><h3>poppler_structure_element_get_table_column_span ()</h3>
|
2548
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
2549
|
+
poppler_structure_element_get_table_column_span
|
2550
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2551
|
+
<p>Obtains the number of columns the table element spans to.</p>
|
2552
|
+
<div class="refsect3">
|
2553
|
+
<a name="id-1.2.12.9.59.5"></a><h4>Parameters</h4>
|
2554
|
+
<div class="informaltable"><table width="100%" border="0">
|
2555
|
+
<colgroup>
|
2556
|
+
<col width="150px" class="parameters_name">
|
2557
|
+
<col class="parameters_description">
|
2558
|
+
<col width="200px" class="parameters_annotations">
|
2559
|
+
</colgroup>
|
2560
|
+
<tbody><tr>
|
2561
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2562
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2563
|
+
<td class="parameter_annotations"> </td>
|
2564
|
+
</tr></tbody>
|
2565
|
+
</table></div>
|
2566
|
+
</div>
|
2567
|
+
<div class="refsect3">
|
2568
|
+
<a name="id-1.2.12.9.59.6"></a><h4>Returns</h4>
|
2569
|
+
<p> A positive, non-zero value.</p>
|
2570
|
+
<p></p>
|
2571
|
+
</div>
|
2572
|
+
<p class="since">Since 0.26</p>
|
2573
|
+
</div>
|
2574
|
+
<hr>
|
2575
|
+
<div class="refsect2">
|
2576
|
+
<a name="poppler-structure-element-get-table-headers"></a><h3>poppler_structure_element_get_table_headers ()</h3>
|
2577
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
|
2578
|
+
poppler_structure_element_get_table_headers
|
2579
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2580
|
+
<p>Obtains an array with the names of the table column headers. This is only
|
2581
|
+
useful for table header row elements.</p>
|
2582
|
+
<p>The array with the results is allocated by the function. The number
|
2583
|
+
of items in the returned array can be obtained with <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strv-length"><code class="function">g_strv_length()</code></a>.
|
2584
|
+
The returned value must be freed using <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>.</p>
|
2585
|
+
<div class="refsect3">
|
2586
|
+
<a name="id-1.2.12.9.60.6"></a><h4>Parameters</h4>
|
2587
|
+
<div class="informaltable"><table width="100%" border="0">
|
2588
|
+
<colgroup>
|
2589
|
+
<col width="150px" class="parameters_name">
|
2590
|
+
<col class="parameters_description">
|
2591
|
+
<col width="200px" class="parameters_annotations">
|
2592
|
+
</colgroup>
|
2593
|
+
<tbody><tr>
|
2594
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2595
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2596
|
+
<td class="parameter_annotations"> </td>
|
2597
|
+
</tr></tbody>
|
2598
|
+
</table></div>
|
2599
|
+
</div>
|
2600
|
+
<div class="refsect3">
|
2601
|
+
<a name="id-1.2.12.9.60.7"></a><h4>Returns</h4>
|
2602
|
+
<p> Zero-terminated array of strings with the table header names,
|
2603
|
+
or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the attribute is not defined. </p>
|
2604
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> gchar*]</span></p>
|
2605
|
+
</div>
|
2606
|
+
<p class="since">Since 0.26</p>
|
2607
|
+
</div>
|
2608
|
+
<hr>
|
2609
|
+
<div class="refsect2">
|
2610
|
+
<a name="poppler-structure-element-get-table-scope"></a><h3>poppler_structure_element_get_table_scope ()</h3>
|
2611
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerStructureTableScope" title="enum PopplerStructureTableScope"><span class="returnvalue">PopplerStructureTableScope</span></a>
|
2612
|
+
poppler_structure_element_get_table_scope
|
2613
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2614
|
+
<p>Obtains the scope of a table structure element.</p>
|
2615
|
+
<div class="refsect3">
|
2616
|
+
<a name="id-1.2.12.9.61.5"></a><h4>Parameters</h4>
|
2617
|
+
<div class="informaltable"><table width="100%" border="0">
|
2618
|
+
<colgroup>
|
2619
|
+
<col width="150px" class="parameters_name">
|
2620
|
+
<col class="parameters_description">
|
2621
|
+
<col width="200px" class="parameters_annotations">
|
2622
|
+
</colgroup>
|
2623
|
+
<tbody><tr>
|
2624
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2625
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2626
|
+
<td class="parameter_annotations"> </td>
|
2627
|
+
</tr></tbody>
|
2628
|
+
</table></div>
|
2629
|
+
</div>
|
2630
|
+
<div class="refsect3">
|
2631
|
+
<a name="id-1.2.12.9.61.6"></a><h4>Returns</h4>
|
2632
|
+
<p> A <span class="type">PopplerStructureScope</span> value.</p>
|
2633
|
+
<p></p>
|
2634
|
+
</div>
|
2635
|
+
<p class="since">Since 0.26</p>
|
2636
|
+
</div>
|
2637
|
+
<hr>
|
2638
|
+
<div class="refsect2">
|
2639
|
+
<a name="poppler-structure-element-get-table-summary"></a><h3>poppler_structure_element_get_table_summary ()</h3>
|
2640
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2641
|
+
poppler_structure_element_get_table_summary
|
2642
|
+
(<em class="parameter"><code><a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a> *poppler_structure_element</code></em>);</pre>
|
2643
|
+
<p>Obtains the textual summary of the contents of the table element. Note that
|
2644
|
+
the summary is meant for informative purposes, and it is not intended
|
2645
|
+
to be rendered. For example, assistive technologies may use the
|
2646
|
+
description field to provide an alternate way of presenting an element
|
2647
|
+
to the user, or a document indexer may want to scan it for additional
|
2648
|
+
keywords.</p>
|
2649
|
+
<p>The returned string is allocated by the function. When it is
|
2650
|
+
not needed anymore, be sure to call <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> on it.</p>
|
2651
|
+
<div class="refsect3">
|
2652
|
+
<a name="id-1.2.12.9.62.6"></a><h4>Parameters</h4>
|
2653
|
+
<div class="informaltable"><table width="100%" border="0">
|
2654
|
+
<colgroup>
|
2655
|
+
<col width="150px" class="parameters_name">
|
2656
|
+
<col class="parameters_description">
|
2657
|
+
<col width="200px" class="parameters_annotations">
|
2658
|
+
</colgroup>
|
2659
|
+
<tbody><tr>
|
2660
|
+
<td class="parameter_name"><p>poppler_structure_element</p></td>
|
2661
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html" title="PopplerStructureElement"><span class="type">PopplerStructureElement</span></a></p></td>
|
2662
|
+
<td class="parameter_annotations"> </td>
|
2663
|
+
</tr></tbody>
|
2664
|
+
</table></div>
|
2665
|
+
</div>
|
2666
|
+
<div class="refsect3">
|
2667
|
+
<a name="id-1.2.12.9.62.7"></a><h4>Returns</h4>
|
2668
|
+
<p> A string, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the attribute
|
2669
|
+
is not defined. </p>
|
2670
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
2671
|
+
</div>
|
2672
|
+
<p class="since">Since 0.26</p>
|
2673
|
+
</div>
|
2674
|
+
<hr>
|
2675
|
+
<div class="refsect2">
|
2676
|
+
<a name="poppler-text-span-copy"></a><h3>poppler_text_span_copy ()</h3>
|
2677
|
+
<pre class="programlisting"><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="returnvalue">PopplerTextSpan</span></a> *
|
2678
|
+
poppler_text_span_copy (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>);</pre>
|
2679
|
+
<p>Makes a copy of a text span.</p>
|
2680
|
+
<div class="refsect3">
|
2681
|
+
<a name="id-1.2.12.9.63.5"></a><h4>Parameters</h4>
|
2682
|
+
<div class="informaltable"><table width="100%" border="0">
|
2683
|
+
<colgroup>
|
2684
|
+
<col width="150px" class="parameters_name">
|
2685
|
+
<col class="parameters_description">
|
2686
|
+
<col width="200px" class="parameters_annotations">
|
2687
|
+
</colgroup>
|
2688
|
+
<tbody><tr>
|
2689
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2690
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2691
|
+
<td class="parameter_annotations"> </td>
|
2692
|
+
</tr></tbody>
|
2693
|
+
</table></div>
|
2694
|
+
</div>
|
2695
|
+
<div class="refsect3">
|
2696
|
+
<a name="id-1.2.12.9.63.6"></a><h4>Returns</h4>
|
2697
|
+
<p> A new <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a>. </p>
|
2698
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
2699
|
+
</div>
|
2700
|
+
<p class="since">Since 0.26</p>
|
2701
|
+
</div>
|
2702
|
+
<hr>
|
2703
|
+
<div class="refsect2">
|
2704
|
+
<a name="poppler-text-span-free"></a><h3>poppler_text_span_free ()</h3>
|
2705
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2706
|
+
poppler_text_span_free (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>);</pre>
|
2707
|
+
<p>Frees a text span.</p>
|
2708
|
+
<div class="refsect3">
|
2709
|
+
<a name="id-1.2.12.9.64.5"></a><h4>Parameters</h4>
|
2710
|
+
<div class="informaltable"><table width="100%" border="0">
|
2711
|
+
<colgroup>
|
2712
|
+
<col width="150px" class="parameters_name">
|
2713
|
+
<col class="parameters_description">
|
2714
|
+
<col width="200px" class="parameters_annotations">
|
2715
|
+
</colgroup>
|
2716
|
+
<tbody><tr>
|
2717
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2718
|
+
<td class="parameter_description"><p>A <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2719
|
+
<td class="parameter_annotations"> </td>
|
2720
|
+
</tr></tbody>
|
2721
|
+
</table></div>
|
2722
|
+
</div>
|
2723
|
+
<p class="since">Since 0.26</p>
|
2724
|
+
</div>
|
2725
|
+
<hr>
|
2726
|
+
<div class="refsect2">
|
2727
|
+
<a name="poppler-text-span-is-fixed-width-font"></a><h3>poppler_text_span_is_fixed_width_font ()</h3>
|
2728
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2729
|
+
poppler_text_span_is_fixed_width_font (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>);</pre>
|
2730
|
+
<p>Check wether a text span is meant to be rendered using a fixed-width font.</p>
|
2731
|
+
<div class="refsect3">
|
2732
|
+
<a name="id-1.2.12.9.65.5"></a><h4>Parameters</h4>
|
2733
|
+
<div class="informaltable"><table width="100%" border="0">
|
2734
|
+
<colgroup>
|
2735
|
+
<col width="150px" class="parameters_name">
|
2736
|
+
<col class="parameters_description">
|
2737
|
+
<col width="200px" class="parameters_annotations">
|
2738
|
+
</colgroup>
|
2739
|
+
<tbody><tr>
|
2740
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2741
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2742
|
+
<td class="parameter_annotations"> </td>
|
2743
|
+
</tr></tbody>
|
2744
|
+
</table></div>
|
2745
|
+
</div>
|
2746
|
+
<div class="refsect3">
|
2747
|
+
<a name="id-1.2.12.9.65.6"></a><h4>Returns</h4>
|
2748
|
+
<p> Whether the span uses a fixed-width font.</p>
|
2749
|
+
<p></p>
|
2750
|
+
</div>
|
2751
|
+
<p class="since">Since 0.26</p>
|
2752
|
+
</div>
|
2753
|
+
<hr>
|
2754
|
+
<div class="refsect2">
|
2755
|
+
<a name="poppler-text-span-is-serif-font"></a><h3>poppler_text_span_is_serif_font ()</h3>
|
2756
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2757
|
+
poppler_text_span_is_serif_font (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>);</pre>
|
2758
|
+
<p>Check whether a text span is meant to be rendered using a serif font.</p>
|
2759
|
+
<div class="refsect3">
|
2760
|
+
<a name="id-1.2.12.9.66.5"></a><h4>Parameters</h4>
|
2761
|
+
<div class="informaltable"><table width="100%" border="0">
|
2762
|
+
<colgroup>
|
2763
|
+
<col width="150px" class="parameters_name">
|
2764
|
+
<col class="parameters_description">
|
2765
|
+
<col width="200px" class="parameters_annotations">
|
2766
|
+
</colgroup>
|
2767
|
+
<tbody><tr>
|
2768
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2769
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2770
|
+
<td class="parameter_annotations"> </td>
|
2771
|
+
</tr></tbody>
|
2772
|
+
</table></div>
|
2773
|
+
</div>
|
2774
|
+
<div class="refsect3">
|
2775
|
+
<a name="id-1.2.12.9.66.6"></a><h4>Returns</h4>
|
2776
|
+
<p> Whether the span uses a serif font.</p>
|
2777
|
+
<p></p>
|
2778
|
+
</div>
|
2779
|
+
<p class="since">Since 0.26</p>
|
2780
|
+
</div>
|
2781
|
+
<hr>
|
2782
|
+
<div class="refsect2">
|
2783
|
+
<a name="poppler-text-span-is-bold-font"></a><h3>poppler_text_span_is_bold_font ()</h3>
|
2784
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2785
|
+
poppler_text_span_is_bold_font (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>);</pre>
|
2786
|
+
<p>Check whether a text span is meant to be rendered using a bold font.</p>
|
2787
|
+
<div class="refsect3">
|
2788
|
+
<a name="id-1.2.12.9.67.5"></a><h4>Parameters</h4>
|
2789
|
+
<div class="informaltable"><table width="100%" border="0">
|
2790
|
+
<colgroup>
|
2791
|
+
<col width="150px" class="parameters_name">
|
2792
|
+
<col class="parameters_description">
|
2793
|
+
<col width="200px" class="parameters_annotations">
|
2794
|
+
</colgroup>
|
2795
|
+
<tbody><tr>
|
2796
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2797
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2798
|
+
<td class="parameter_annotations"> </td>
|
2799
|
+
</tr></tbody>
|
2800
|
+
</table></div>
|
2801
|
+
</div>
|
2802
|
+
<div class="refsect3">
|
2803
|
+
<a name="id-1.2.12.9.67.6"></a><h4>Returns</h4>
|
2804
|
+
<p> Whether the span uses bold font.</p>
|
2805
|
+
<p></p>
|
2806
|
+
</div>
|
2807
|
+
<p class="since">Since 0.26</p>
|
2808
|
+
</div>
|
2809
|
+
<hr>
|
2810
|
+
<div class="refsect2">
|
2811
|
+
<a name="poppler-text-span-get-color"></a><h3>poppler_text_span_get_color ()</h3>
|
2812
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2813
|
+
poppler_text_span_get_color (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>,
|
2814
|
+
<em class="parameter"><code><a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> *color</code></em>);</pre>
|
2815
|
+
<p>Obtains the color in which the text is to be rendered.</p>
|
2816
|
+
<div class="refsect3">
|
2817
|
+
<a name="id-1.2.12.9.68.5"></a><h4>Parameters</h4>
|
2818
|
+
<div class="informaltable"><table width="100%" border="0">
|
2819
|
+
<colgroup>
|
2820
|
+
<col width="150px" class="parameters_name">
|
2821
|
+
<col class="parameters_description">
|
2822
|
+
<col width="200px" class="parameters_annotations">
|
2823
|
+
</colgroup>
|
2824
|
+
<tbody>
|
2825
|
+
<tr>
|
2826
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2827
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2828
|
+
<td class="parameter_annotations"> </td>
|
2829
|
+
</tr>
|
2830
|
+
<tr>
|
2831
|
+
<td class="parameter_name"><p>color</p></td>
|
2832
|
+
<td class="parameter_description"><p> a return location for a <a class="link" href="poppler-poppler.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>. </p></td>
|
2833
|
+
<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>
|
2834
|
+
</tr>
|
2835
|
+
</tbody>
|
2836
|
+
</table></div>
|
2837
|
+
</div>
|
2838
|
+
<p class="since">Since 0.26</p>
|
2839
|
+
</div>
|
2840
|
+
<hr>
|
2841
|
+
<div class="refsect2">
|
2842
|
+
<a name="poppler-text-span-get-text"></a><h3>poppler_text_span_get_text ()</h3>
|
2843
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2844
|
+
poppler_text_span_get_text (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>);</pre>
|
2845
|
+
<p>Obtains the text contained in the span.</p>
|
2846
|
+
<div class="refsect3">
|
2847
|
+
<a name="id-1.2.12.9.69.5"></a><h4>Parameters</h4>
|
2848
|
+
<div class="informaltable"><table width="100%" border="0">
|
2849
|
+
<colgroup>
|
2850
|
+
<col width="150px" class="parameters_name">
|
2851
|
+
<col class="parameters_description">
|
2852
|
+
<col width="200px" class="parameters_annotations">
|
2853
|
+
</colgroup>
|
2854
|
+
<tbody><tr>
|
2855
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2856
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2857
|
+
<td class="parameter_annotations"> </td>
|
2858
|
+
</tr></tbody>
|
2859
|
+
</table></div>
|
2860
|
+
</div>
|
2861
|
+
<div class="refsect3">
|
2862
|
+
<a name="id-1.2.12.9.69.6"></a><h4>Returns</h4>
|
2863
|
+
<p> A string. </p>
|
2864
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2865
|
+
</div>
|
2866
|
+
<p class="since">Since 0.26</p>
|
2867
|
+
</div>
|
2868
|
+
<hr>
|
2869
|
+
<div class="refsect2">
|
2870
|
+
<a name="poppler-text-span-get-font-name"></a><h3>poppler_text_span_get_font_name ()</h3>
|
2871
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2872
|
+
poppler_text_span_get_font_name (<em class="parameter"><code><a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a> *poppler_text_span</code></em>);</pre>
|
2873
|
+
<p>Obtains the name of the font in which the span is to be rendered.</p>
|
2874
|
+
<div class="refsect3">
|
2875
|
+
<a name="id-1.2.12.9.70.5"></a><h4>Parameters</h4>
|
2876
|
+
<div class="informaltable"><table width="100%" border="0">
|
2877
|
+
<colgroup>
|
2878
|
+
<col width="150px" class="parameters_name">
|
2879
|
+
<col class="parameters_description">
|
2880
|
+
<col width="200px" class="parameters_annotations">
|
2881
|
+
</colgroup>
|
2882
|
+
<tbody><tr>
|
2883
|
+
<td class="parameter_name"><p>poppler_text_span</p></td>
|
2884
|
+
<td class="parameter_description"><p>a <a class="link" href="PopplerStructureElement.html#PopplerTextSpan" title="PopplerTextSpan"><span class="type">PopplerTextSpan</span></a></p></td>
|
2885
|
+
<td class="parameter_annotations"> </td>
|
2886
|
+
</tr></tbody>
|
2887
|
+
</table></div>
|
2888
|
+
</div>
|
2889
|
+
<div class="refsect3">
|
2890
|
+
<a name="id-1.2.12.9.70.6"></a><h4>Returns</h4>
|
2891
|
+
<p> A string containing the font name, or
|
2892
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if a font is not defined. </p>
|
2893
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2894
|
+
</div>
|
2895
|
+
<p class="since">Since 0.26</p>
|
2896
|
+
</div>
|
2897
|
+
</div>
|
2898
|
+
<div class="refsect1">
|
2899
|
+
<a name="PopplerStructureElement.other_details"></a><h2>Types and Values</h2>
|
2900
|
+
<div class="refsect2">
|
2901
|
+
<a name="PopplerStructureElement-struct"></a><h3>PopplerStructureElement</h3>
|
2902
|
+
<pre class="programlisting">typedef struct _PopplerStructureElement PopplerStructureElement;</pre>
|
2903
|
+
</div>
|
2904
|
+
<hr>
|
2905
|
+
<div class="refsect2">
|
2906
|
+
<a name="PopplerStructureElementKind"></a><h3>enum PopplerStructureElementKind</h3>
|
2907
|
+
<div class="refsect3">
|
2908
|
+
<a name="id-1.2.12.10.3.3"></a><h4>Members</h4>
|
2909
|
+
<div class="informaltable"><table width="100%" border="0">
|
2910
|
+
<colgroup>
|
2911
|
+
<col width="300px" class="enum_members_name">
|
2912
|
+
<col class="enum_members_description">
|
2913
|
+
<col width="200px" class="enum_members_annotations">
|
2914
|
+
</colgroup>
|
2915
|
+
<tbody>
|
2916
|
+
<tr>
|
2917
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-CONTENT:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_CONTENT</p></td>
|
2918
|
+
<td> </td>
|
2919
|
+
<td> </td>
|
2920
|
+
</tr>
|
2921
|
+
<tr>
|
2922
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-OBJECT-REFERENCE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_OBJECT_REFERENCE</p></td>
|
2923
|
+
<td> </td>
|
2924
|
+
<td> </td>
|
2925
|
+
</tr>
|
2926
|
+
<tr>
|
2927
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-DOCUMENT:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_DOCUMENT</p></td>
|
2928
|
+
<td> </td>
|
2929
|
+
<td> </td>
|
2930
|
+
</tr>
|
2931
|
+
<tr>
|
2932
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-PART:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_PART</p></td>
|
2933
|
+
<td> </td>
|
2934
|
+
<td> </td>
|
2935
|
+
</tr>
|
2936
|
+
<tr>
|
2937
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-ARTICLE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_ARTICLE</p></td>
|
2938
|
+
<td> </td>
|
2939
|
+
<td> </td>
|
2940
|
+
</tr>
|
2941
|
+
<tr>
|
2942
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-SECTION:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_SECTION</p></td>
|
2943
|
+
<td> </td>
|
2944
|
+
<td> </td>
|
2945
|
+
</tr>
|
2946
|
+
<tr>
|
2947
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-DIV:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_DIV</p></td>
|
2948
|
+
<td> </td>
|
2949
|
+
<td> </td>
|
2950
|
+
</tr>
|
2951
|
+
<tr>
|
2952
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-SPAN:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_SPAN</p></td>
|
2953
|
+
<td> </td>
|
2954
|
+
<td> </td>
|
2955
|
+
</tr>
|
2956
|
+
<tr>
|
2957
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-QUOTE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_QUOTE</p></td>
|
2958
|
+
<td> </td>
|
2959
|
+
<td> </td>
|
2960
|
+
</tr>
|
2961
|
+
<tr>
|
2962
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-NOTE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_NOTE</p></td>
|
2963
|
+
<td> </td>
|
2964
|
+
<td> </td>
|
2965
|
+
</tr>
|
2966
|
+
<tr>
|
2967
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-REFERENCE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_REFERENCE</p></td>
|
2968
|
+
<td> </td>
|
2969
|
+
<td> </td>
|
2970
|
+
</tr>
|
2971
|
+
<tr>
|
2972
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-BIBENTRY:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_BIBENTRY</p></td>
|
2973
|
+
<td> </td>
|
2974
|
+
<td> </td>
|
2975
|
+
</tr>
|
2976
|
+
<tr>
|
2977
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-CODE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_CODE</p></td>
|
2978
|
+
<td> </td>
|
2979
|
+
<td> </td>
|
2980
|
+
</tr>
|
2981
|
+
<tr>
|
2982
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-LINK:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_LINK</p></td>
|
2983
|
+
<td> </td>
|
2984
|
+
<td> </td>
|
2985
|
+
</tr>
|
2986
|
+
<tr>
|
2987
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-ANNOT:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_ANNOT</p></td>
|
2988
|
+
<td> </td>
|
2989
|
+
<td> </td>
|
2990
|
+
</tr>
|
2991
|
+
<tr>
|
2992
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-BLOCKQUOTE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_BLOCKQUOTE</p></td>
|
2993
|
+
<td> </td>
|
2994
|
+
<td> </td>
|
2995
|
+
</tr>
|
2996
|
+
<tr>
|
2997
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-CAPTION:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_CAPTION</p></td>
|
2998
|
+
<td> </td>
|
2999
|
+
<td> </td>
|
3000
|
+
</tr>
|
3001
|
+
<tr>
|
3002
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-NONSTRUCT:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_NONSTRUCT</p></td>
|
3003
|
+
<td> </td>
|
3004
|
+
<td> </td>
|
3005
|
+
</tr>
|
3006
|
+
<tr>
|
3007
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TOC:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TOC</p></td>
|
3008
|
+
<td> </td>
|
3009
|
+
<td> </td>
|
3010
|
+
</tr>
|
3011
|
+
<tr>
|
3012
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TOC-ITEM:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TOC_ITEM</p></td>
|
3013
|
+
<td> </td>
|
3014
|
+
<td> </td>
|
3015
|
+
</tr>
|
3016
|
+
<tr>
|
3017
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-INDEX:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_INDEX</p></td>
|
3018
|
+
<td> </td>
|
3019
|
+
<td> </td>
|
3020
|
+
</tr>
|
3021
|
+
<tr>
|
3022
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-PRIVATE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_PRIVATE</p></td>
|
3023
|
+
<td> </td>
|
3024
|
+
<td> </td>
|
3025
|
+
</tr>
|
3026
|
+
<tr>
|
3027
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-PARAGRAPH:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_PARAGRAPH</p></td>
|
3028
|
+
<td> </td>
|
3029
|
+
<td> </td>
|
3030
|
+
</tr>
|
3031
|
+
<tr>
|
3032
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-HEADING:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_HEADING</p></td>
|
3033
|
+
<td> </td>
|
3034
|
+
<td> </td>
|
3035
|
+
</tr>
|
3036
|
+
<tr>
|
3037
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-HEADING-1:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_HEADING_1</p></td>
|
3038
|
+
<td> </td>
|
3039
|
+
<td> </td>
|
3040
|
+
</tr>
|
3041
|
+
<tr>
|
3042
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-HEADING-2:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_HEADING_2</p></td>
|
3043
|
+
<td> </td>
|
3044
|
+
<td> </td>
|
3045
|
+
</tr>
|
3046
|
+
<tr>
|
3047
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-HEADING-3:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_HEADING_3</p></td>
|
3048
|
+
<td> </td>
|
3049
|
+
<td> </td>
|
3050
|
+
</tr>
|
3051
|
+
<tr>
|
3052
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-HEADING-4:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_HEADING_4</p></td>
|
3053
|
+
<td> </td>
|
3054
|
+
<td> </td>
|
3055
|
+
</tr>
|
3056
|
+
<tr>
|
3057
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-HEADING-5:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_HEADING_5</p></td>
|
3058
|
+
<td> </td>
|
3059
|
+
<td> </td>
|
3060
|
+
</tr>
|
3061
|
+
<tr>
|
3062
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-HEADING-6:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_HEADING_6</p></td>
|
3063
|
+
<td> </td>
|
3064
|
+
<td> </td>
|
3065
|
+
</tr>
|
3066
|
+
<tr>
|
3067
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-LIST:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_LIST</p></td>
|
3068
|
+
<td> </td>
|
3069
|
+
<td> </td>
|
3070
|
+
</tr>
|
3071
|
+
<tr>
|
3072
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-LIST-ITEM:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_LIST_ITEM</p></td>
|
3073
|
+
<td> </td>
|
3074
|
+
<td> </td>
|
3075
|
+
</tr>
|
3076
|
+
<tr>
|
3077
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-LIST-LABEL:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_LIST_LABEL</p></td>
|
3078
|
+
<td> </td>
|
3079
|
+
<td> </td>
|
3080
|
+
</tr>
|
3081
|
+
<tr>
|
3082
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-LIST-BODY:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_LIST_BODY</p></td>
|
3083
|
+
<td> </td>
|
3084
|
+
<td> </td>
|
3085
|
+
</tr>
|
3086
|
+
<tr>
|
3087
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TABLE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TABLE</p></td>
|
3088
|
+
<td> </td>
|
3089
|
+
<td> </td>
|
3090
|
+
</tr>
|
3091
|
+
<tr>
|
3092
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TABLE-ROW:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TABLE_ROW</p></td>
|
3093
|
+
<td> </td>
|
3094
|
+
<td> </td>
|
3095
|
+
</tr>
|
3096
|
+
<tr>
|
3097
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TABLE-HEADING:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TABLE_HEADING</p></td>
|
3098
|
+
<td> </td>
|
3099
|
+
<td> </td>
|
3100
|
+
</tr>
|
3101
|
+
<tr>
|
3102
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TABLE-DATA:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TABLE_DATA</p></td>
|
3103
|
+
<td> </td>
|
3104
|
+
<td> </td>
|
3105
|
+
</tr>
|
3106
|
+
<tr>
|
3107
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TABLE-HEADER:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TABLE_HEADER</p></td>
|
3108
|
+
<td> </td>
|
3109
|
+
<td> </td>
|
3110
|
+
</tr>
|
3111
|
+
<tr>
|
3112
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TABLE-FOOTER:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TABLE_FOOTER</p></td>
|
3113
|
+
<td> </td>
|
3114
|
+
<td> </td>
|
3115
|
+
</tr>
|
3116
|
+
<tr>
|
3117
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-TABLE-BODY:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_TABLE_BODY</p></td>
|
3118
|
+
<td> </td>
|
3119
|
+
<td> </td>
|
3120
|
+
</tr>
|
3121
|
+
<tr>
|
3122
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-RUBY:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_RUBY</p></td>
|
3123
|
+
<td> </td>
|
3124
|
+
<td> </td>
|
3125
|
+
</tr>
|
3126
|
+
<tr>
|
3127
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-RUBY-BASE-TEXT:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_RUBY_BASE_TEXT</p></td>
|
3128
|
+
<td> </td>
|
3129
|
+
<td> </td>
|
3130
|
+
</tr>
|
3131
|
+
<tr>
|
3132
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-RUBY-ANNOT-TEXT:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_RUBY_ANNOT_TEXT</p></td>
|
3133
|
+
<td> </td>
|
3134
|
+
<td> </td>
|
3135
|
+
</tr>
|
3136
|
+
<tr>
|
3137
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-RUBY-PUNCTUATION:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_RUBY_PUNCTUATION</p></td>
|
3138
|
+
<td> </td>
|
3139
|
+
<td> </td>
|
3140
|
+
</tr>
|
3141
|
+
<tr>
|
3142
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-WARICHU:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_WARICHU</p></td>
|
3143
|
+
<td> </td>
|
3144
|
+
<td> </td>
|
3145
|
+
</tr>
|
3146
|
+
<tr>
|
3147
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-WARICHU-TEXT:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_WARICHU_TEXT</p></td>
|
3148
|
+
<td> </td>
|
3149
|
+
<td> </td>
|
3150
|
+
</tr>
|
3151
|
+
<tr>
|
3152
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-WARICHU-PUNCTUATION:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_WARICHU_PUNCTUATION</p></td>
|
3153
|
+
<td> </td>
|
3154
|
+
<td> </td>
|
3155
|
+
</tr>
|
3156
|
+
<tr>
|
3157
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-FIGURE:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_FIGURE</p></td>
|
3158
|
+
<td> </td>
|
3159
|
+
<td> </td>
|
3160
|
+
</tr>
|
3161
|
+
<tr>
|
3162
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-FORMULA:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_FORMULA</p></td>
|
3163
|
+
<td> </td>
|
3164
|
+
<td> </td>
|
3165
|
+
</tr>
|
3166
|
+
<tr>
|
3167
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-ELEMENT-FORM:CAPS"></a>POPPLER_STRUCTURE_ELEMENT_FORM</p></td>
|
3168
|
+
<td> </td>
|
3169
|
+
<td> </td>
|
3170
|
+
</tr>
|
3171
|
+
</tbody>
|
3172
|
+
</table></div>
|
3173
|
+
</div>
|
3174
|
+
</div>
|
3175
|
+
<hr>
|
3176
|
+
<div class="refsect2">
|
3177
|
+
<a name="PopplerStructureElementIter-struct"></a><h3>PopplerStructureElementIter</h3>
|
3178
|
+
<pre class="programlisting">typedef struct _PopplerStructureElementIter PopplerStructureElementIter;</pre>
|
3179
|
+
</div>
|
3180
|
+
<hr>
|
3181
|
+
<div class="refsect2">
|
3182
|
+
<a name="PopplerStructureGetTextFlags"></a><h3>enum PopplerStructureGetTextFlags</h3>
|
3183
|
+
<div class="refsect3">
|
3184
|
+
<a name="id-1.2.12.10.5.3"></a><h4>Members</h4>
|
3185
|
+
<div class="informaltable"><table width="100%" border="0">
|
3186
|
+
<colgroup>
|
3187
|
+
<col width="300px" class="enum_members_name">
|
3188
|
+
<col class="enum_members_description">
|
3189
|
+
<col width="200px" class="enum_members_annotations">
|
3190
|
+
</colgroup>
|
3191
|
+
<tbody>
|
3192
|
+
<tr>
|
3193
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-GET-TEXT-NONE:CAPS"></a>POPPLER_STRUCTURE_GET_TEXT_NONE</p></td>
|
3194
|
+
<td class="enum_member_description">
|
3195
|
+
<p>No flags.</p>
|
3196
|
+
</td>
|
3197
|
+
<td class="enum_member_annotations"> </td>
|
3198
|
+
</tr>
|
3199
|
+
<tr>
|
3200
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-GET-TEXT-RECURSIVE:CAPS"></a>POPPLER_STRUCTURE_GET_TEXT_RECURSIVE</p></td>
|
3201
|
+
<td class="enum_member_description">
|
3202
|
+
<p>For non-leaf, non-content
|
3203
|
+
elements, recursively obtain the text from all the elements
|
3204
|
+
enclosed in the subtree.</p>
|
3205
|
+
</td>
|
3206
|
+
<td class="enum_member_annotations"> </td>
|
3207
|
+
</tr>
|
3208
|
+
</tbody>
|
3209
|
+
</table></div>
|
3210
|
+
</div>
|
3211
|
+
</div>
|
3212
|
+
<hr>
|
3213
|
+
<div class="refsect2">
|
3214
|
+
<a name="PopplerStructurePlacement"></a><h3>enum PopplerStructurePlacement</h3>
|
3215
|
+
<div class="refsect3">
|
3216
|
+
<a name="id-1.2.12.10.6.3"></a><h4>Members</h4>
|
3217
|
+
<div class="informaltable"><table width="100%" border="0">
|
3218
|
+
<colgroup>
|
3219
|
+
<col width="300px" class="enum_members_name">
|
3220
|
+
<col class="enum_members_description">
|
3221
|
+
<col width="200px" class="enum_members_annotations">
|
3222
|
+
</colgroup>
|
3223
|
+
<tbody>
|
3224
|
+
<tr>
|
3225
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-PLACEMENT-BLOCK:CAPS"></a>POPPLER_STRUCTURE_PLACEMENT_BLOCK</p></td>
|
3226
|
+
<td> </td>
|
3227
|
+
<td> </td>
|
3228
|
+
</tr>
|
3229
|
+
<tr>
|
3230
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-PLACEMENT-INLINE:CAPS"></a>POPPLER_STRUCTURE_PLACEMENT_INLINE</p></td>
|
3231
|
+
<td> </td>
|
3232
|
+
<td> </td>
|
3233
|
+
</tr>
|
3234
|
+
<tr>
|
3235
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-PLACEMENT-BEFORE:CAPS"></a>POPPLER_STRUCTURE_PLACEMENT_BEFORE</p></td>
|
3236
|
+
<td> </td>
|
3237
|
+
<td> </td>
|
3238
|
+
</tr>
|
3239
|
+
<tr>
|
3240
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-PLACEMENT-START:CAPS"></a>POPPLER_STRUCTURE_PLACEMENT_START</p></td>
|
3241
|
+
<td> </td>
|
3242
|
+
<td> </td>
|
3243
|
+
</tr>
|
3244
|
+
<tr>
|
3245
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-PLACEMENT-END:CAPS"></a>POPPLER_STRUCTURE_PLACEMENT_END</p></td>
|
3246
|
+
<td> </td>
|
3247
|
+
<td> </td>
|
3248
|
+
</tr>
|
3249
|
+
</tbody>
|
3250
|
+
</table></div>
|
3251
|
+
</div>
|
3252
|
+
</div>
|
3253
|
+
<hr>
|
3254
|
+
<div class="refsect2">
|
3255
|
+
<a name="PopplerStructureWritingMode"></a><h3>enum PopplerStructureWritingMode</h3>
|
3256
|
+
<div class="refsect3">
|
3257
|
+
<a name="id-1.2.12.10.7.3"></a><h4>Members</h4>
|
3258
|
+
<div class="informaltable"><table width="100%" border="0">
|
3259
|
+
<colgroup>
|
3260
|
+
<col width="300px" class="enum_members_name">
|
3261
|
+
<col class="enum_members_description">
|
3262
|
+
<col width="200px" class="enum_members_annotations">
|
3263
|
+
</colgroup>
|
3264
|
+
<tbody>
|
3265
|
+
<tr>
|
3266
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-WRITING-MODE-LR-TB:CAPS"></a>POPPLER_STRUCTURE_WRITING_MODE_LR_TB</p></td>
|
3267
|
+
<td> </td>
|
3268
|
+
<td> </td>
|
3269
|
+
</tr>
|
3270
|
+
<tr>
|
3271
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-WRITING-MODE-RL-TB:CAPS"></a>POPPLER_STRUCTURE_WRITING_MODE_RL_TB</p></td>
|
3272
|
+
<td> </td>
|
3273
|
+
<td> </td>
|
3274
|
+
</tr>
|
3275
|
+
<tr>
|
3276
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-WRITING-MODE-TB-RL:CAPS"></a>POPPLER_STRUCTURE_WRITING_MODE_TB_RL</p></td>
|
3277
|
+
<td> </td>
|
3278
|
+
<td> </td>
|
3279
|
+
</tr>
|
3280
|
+
</tbody>
|
3281
|
+
</table></div>
|
3282
|
+
</div>
|
3283
|
+
</div>
|
3284
|
+
<hr>
|
3285
|
+
<div class="refsect2">
|
3286
|
+
<a name="PopplerStructureBorderStyle"></a><h3>enum PopplerStructureBorderStyle</h3>
|
3287
|
+
<div class="refsect3">
|
3288
|
+
<a name="id-1.2.12.10.8.3"></a><h4>Members</h4>
|
3289
|
+
<div class="informaltable"><table width="100%" border="0">
|
3290
|
+
<colgroup>
|
3291
|
+
<col width="300px" class="enum_members_name">
|
3292
|
+
<col class="enum_members_description">
|
3293
|
+
<col width="200px" class="enum_members_annotations">
|
3294
|
+
</colgroup>
|
3295
|
+
<tbody>
|
3296
|
+
<tr>
|
3297
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-NONE:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_NONE</p></td>
|
3298
|
+
<td> </td>
|
3299
|
+
<td> </td>
|
3300
|
+
</tr>
|
3301
|
+
<tr>
|
3302
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-HIDDEN:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_HIDDEN</p></td>
|
3303
|
+
<td> </td>
|
3304
|
+
<td> </td>
|
3305
|
+
</tr>
|
3306
|
+
<tr>
|
3307
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-DOTTED:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_DOTTED</p></td>
|
3308
|
+
<td> </td>
|
3309
|
+
<td> </td>
|
3310
|
+
</tr>
|
3311
|
+
<tr>
|
3312
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-DASHED:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_DASHED</p></td>
|
3313
|
+
<td> </td>
|
3314
|
+
<td> </td>
|
3315
|
+
</tr>
|
3316
|
+
<tr>
|
3317
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-SOLID:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_SOLID</p></td>
|
3318
|
+
<td> </td>
|
3319
|
+
<td> </td>
|
3320
|
+
</tr>
|
3321
|
+
<tr>
|
3322
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-DOUBLE:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_DOUBLE</p></td>
|
3323
|
+
<td> </td>
|
3324
|
+
<td> </td>
|
3325
|
+
</tr>
|
3326
|
+
<tr>
|
3327
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-GROOVE:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_GROOVE</p></td>
|
3328
|
+
<td> </td>
|
3329
|
+
<td> </td>
|
3330
|
+
</tr>
|
3331
|
+
<tr>
|
3332
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-INSET:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_INSET</p></td>
|
3333
|
+
<td> </td>
|
3334
|
+
<td> </td>
|
3335
|
+
</tr>
|
3336
|
+
<tr>
|
3337
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BORDER-STYLE-OUTSET:CAPS"></a>POPPLER_STRUCTURE_BORDER_STYLE_OUTSET</p></td>
|
3338
|
+
<td> </td>
|
3339
|
+
<td> </td>
|
3340
|
+
</tr>
|
3341
|
+
</tbody>
|
3342
|
+
</table></div>
|
3343
|
+
</div>
|
3344
|
+
</div>
|
3345
|
+
<hr>
|
3346
|
+
<div class="refsect2">
|
3347
|
+
<a name="PopplerStructureTextAlign"></a><h3>enum PopplerStructureTextAlign</h3>
|
3348
|
+
<div class="refsect3">
|
3349
|
+
<a name="id-1.2.12.10.9.3"></a><h4>Members</h4>
|
3350
|
+
<div class="informaltable"><table width="100%" border="0">
|
3351
|
+
<colgroup>
|
3352
|
+
<col width="300px" class="enum_members_name">
|
3353
|
+
<col class="enum_members_description">
|
3354
|
+
<col width="200px" class="enum_members_annotations">
|
3355
|
+
</colgroup>
|
3356
|
+
<tbody>
|
3357
|
+
<tr>
|
3358
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-ALIGN-START:CAPS"></a>POPPLER_STRUCTURE_TEXT_ALIGN_START</p></td>
|
3359
|
+
<td> </td>
|
3360
|
+
<td> </td>
|
3361
|
+
</tr>
|
3362
|
+
<tr>
|
3363
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-ALIGN-CENTER:CAPS"></a>POPPLER_STRUCTURE_TEXT_ALIGN_CENTER</p></td>
|
3364
|
+
<td> </td>
|
3365
|
+
<td> </td>
|
3366
|
+
</tr>
|
3367
|
+
<tr>
|
3368
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-ALIGN-END:CAPS"></a>POPPLER_STRUCTURE_TEXT_ALIGN_END</p></td>
|
3369
|
+
<td> </td>
|
3370
|
+
<td> </td>
|
3371
|
+
</tr>
|
3372
|
+
<tr>
|
3373
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-ALIGN-JUSTIFY:CAPS"></a>POPPLER_STRUCTURE_TEXT_ALIGN_JUSTIFY</p></td>
|
3374
|
+
<td> </td>
|
3375
|
+
<td> </td>
|
3376
|
+
</tr>
|
3377
|
+
</tbody>
|
3378
|
+
</table></div>
|
3379
|
+
</div>
|
3380
|
+
</div>
|
3381
|
+
<hr>
|
3382
|
+
<div class="refsect2">
|
3383
|
+
<a name="PopplerStructureBlockAlign"></a><h3>enum PopplerStructureBlockAlign</h3>
|
3384
|
+
<div class="refsect3">
|
3385
|
+
<a name="id-1.2.12.10.10.3"></a><h4>Members</h4>
|
3386
|
+
<div class="informaltable"><table width="100%" border="0">
|
3387
|
+
<colgroup>
|
3388
|
+
<col width="300px" class="enum_members_name">
|
3389
|
+
<col class="enum_members_description">
|
3390
|
+
<col width="200px" class="enum_members_annotations">
|
3391
|
+
</colgroup>
|
3392
|
+
<tbody>
|
3393
|
+
<tr>
|
3394
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BLOCK-ALIGN-BEFORE:CAPS"></a>POPPLER_STRUCTURE_BLOCK_ALIGN_BEFORE</p></td>
|
3395
|
+
<td> </td>
|
3396
|
+
<td> </td>
|
3397
|
+
</tr>
|
3398
|
+
<tr>
|
3399
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BLOCK-ALIGN-MIDDLE:CAPS"></a>POPPLER_STRUCTURE_BLOCK_ALIGN_MIDDLE</p></td>
|
3400
|
+
<td> </td>
|
3401
|
+
<td> </td>
|
3402
|
+
</tr>
|
3403
|
+
<tr>
|
3404
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BLOCK-ALIGN-AFTER:CAPS"></a>POPPLER_STRUCTURE_BLOCK_ALIGN_AFTER</p></td>
|
3405
|
+
<td> </td>
|
3406
|
+
<td> </td>
|
3407
|
+
</tr>
|
3408
|
+
<tr>
|
3409
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-BLOCK-ALIGN-JUSTIFY:CAPS"></a>POPPLER_STRUCTURE_BLOCK_ALIGN_JUSTIFY</p></td>
|
3410
|
+
<td> </td>
|
3411
|
+
<td> </td>
|
3412
|
+
</tr>
|
3413
|
+
</tbody>
|
3414
|
+
</table></div>
|
3415
|
+
</div>
|
3416
|
+
</div>
|
3417
|
+
<hr>
|
3418
|
+
<div class="refsect2">
|
3419
|
+
<a name="PopplerStructureInlineAlign"></a><h3>enum PopplerStructureInlineAlign</h3>
|
3420
|
+
<div class="refsect3">
|
3421
|
+
<a name="id-1.2.12.10.11.3"></a><h4>Members</h4>
|
3422
|
+
<div class="informaltable"><table width="100%" border="0">
|
3423
|
+
<colgroup>
|
3424
|
+
<col width="300px" class="enum_members_name">
|
3425
|
+
<col class="enum_members_description">
|
3426
|
+
<col width="200px" class="enum_members_annotations">
|
3427
|
+
</colgroup>
|
3428
|
+
<tbody>
|
3429
|
+
<tr>
|
3430
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-INLINE-ALIGN-START:CAPS"></a>POPPLER_STRUCTURE_INLINE_ALIGN_START</p></td>
|
3431
|
+
<td> </td>
|
3432
|
+
<td> </td>
|
3433
|
+
</tr>
|
3434
|
+
<tr>
|
3435
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-INLINE-ALIGN-CENTER:CAPS"></a>POPPLER_STRUCTURE_INLINE_ALIGN_CENTER</p></td>
|
3436
|
+
<td> </td>
|
3437
|
+
<td> </td>
|
3438
|
+
</tr>
|
3439
|
+
<tr>
|
3440
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-INLINE-ALIGN-END:CAPS"></a>POPPLER_STRUCTURE_INLINE_ALIGN_END</p></td>
|
3441
|
+
<td> </td>
|
3442
|
+
<td> </td>
|
3443
|
+
</tr>
|
3444
|
+
</tbody>
|
3445
|
+
</table></div>
|
3446
|
+
</div>
|
3447
|
+
</div>
|
3448
|
+
<hr>
|
3449
|
+
<div class="refsect2">
|
3450
|
+
<a name="PopplerStructureTextDecoration"></a><h3>enum PopplerStructureTextDecoration</h3>
|
3451
|
+
<div class="refsect3">
|
3452
|
+
<a name="id-1.2.12.10.12.3"></a><h4>Members</h4>
|
3453
|
+
<div class="informaltable"><table width="100%" border="0">
|
3454
|
+
<colgroup>
|
3455
|
+
<col width="300px" class="enum_members_name">
|
3456
|
+
<col class="enum_members_description">
|
3457
|
+
<col width="200px" class="enum_members_annotations">
|
3458
|
+
</colgroup>
|
3459
|
+
<tbody>
|
3460
|
+
<tr>
|
3461
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-DECORATION-NONE:CAPS"></a>POPPLER_STRUCTURE_TEXT_DECORATION_NONE</p></td>
|
3462
|
+
<td> </td>
|
3463
|
+
<td> </td>
|
3464
|
+
</tr>
|
3465
|
+
<tr>
|
3466
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-DECORATION-UNDERLINE:CAPS"></a>POPPLER_STRUCTURE_TEXT_DECORATION_UNDERLINE</p></td>
|
3467
|
+
<td> </td>
|
3468
|
+
<td> </td>
|
3469
|
+
</tr>
|
3470
|
+
<tr>
|
3471
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-DECORATION-OVERLINE:CAPS"></a>POPPLER_STRUCTURE_TEXT_DECORATION_OVERLINE</p></td>
|
3472
|
+
<td> </td>
|
3473
|
+
<td> </td>
|
3474
|
+
</tr>
|
3475
|
+
<tr>
|
3476
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TEXT-DECORATION-LINETHROUGH:CAPS"></a>POPPLER_STRUCTURE_TEXT_DECORATION_LINETHROUGH</p></td>
|
3477
|
+
<td> </td>
|
3478
|
+
<td> </td>
|
3479
|
+
</tr>
|
3480
|
+
</tbody>
|
3481
|
+
</table></div>
|
3482
|
+
</div>
|
3483
|
+
</div>
|
3484
|
+
<hr>
|
3485
|
+
<div class="refsect2">
|
3486
|
+
<a name="PopplerStructureRubyAlign"></a><h3>enum PopplerStructureRubyAlign</h3>
|
3487
|
+
<div class="refsect3">
|
3488
|
+
<a name="id-1.2.12.10.13.3"></a><h4>Members</h4>
|
3489
|
+
<div class="informaltable"><table width="100%" border="0">
|
3490
|
+
<colgroup>
|
3491
|
+
<col width="300px" class="enum_members_name">
|
3492
|
+
<col class="enum_members_description">
|
3493
|
+
<col width="200px" class="enum_members_annotations">
|
3494
|
+
</colgroup>
|
3495
|
+
<tbody>
|
3496
|
+
<tr>
|
3497
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-ALIGN-START:CAPS"></a>POPPLER_STRUCTURE_RUBY_ALIGN_START</p></td>
|
3498
|
+
<td> </td>
|
3499
|
+
<td> </td>
|
3500
|
+
</tr>
|
3501
|
+
<tr>
|
3502
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-ALIGN-CENTER:CAPS"></a>POPPLER_STRUCTURE_RUBY_ALIGN_CENTER</p></td>
|
3503
|
+
<td> </td>
|
3504
|
+
<td> </td>
|
3505
|
+
</tr>
|
3506
|
+
<tr>
|
3507
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-ALIGN-END:CAPS"></a>POPPLER_STRUCTURE_RUBY_ALIGN_END</p></td>
|
3508
|
+
<td> </td>
|
3509
|
+
<td> </td>
|
3510
|
+
</tr>
|
3511
|
+
<tr>
|
3512
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-ALIGN-JUSTIFY:CAPS"></a>POPPLER_STRUCTURE_RUBY_ALIGN_JUSTIFY</p></td>
|
3513
|
+
<td> </td>
|
3514
|
+
<td> </td>
|
3515
|
+
</tr>
|
3516
|
+
<tr>
|
3517
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-ALIGN-DISTRIBUTE:CAPS"></a>POPPLER_STRUCTURE_RUBY_ALIGN_DISTRIBUTE</p></td>
|
3518
|
+
<td> </td>
|
3519
|
+
<td> </td>
|
3520
|
+
</tr>
|
3521
|
+
</tbody>
|
3522
|
+
</table></div>
|
3523
|
+
</div>
|
3524
|
+
</div>
|
3525
|
+
<hr>
|
3526
|
+
<div class="refsect2">
|
3527
|
+
<a name="PopplerStructureRubyPosition"></a><h3>enum PopplerStructureRubyPosition</h3>
|
3528
|
+
<div class="refsect3">
|
3529
|
+
<a name="id-1.2.12.10.14.3"></a><h4>Members</h4>
|
3530
|
+
<div class="informaltable"><table width="100%" border="0">
|
3531
|
+
<colgroup>
|
3532
|
+
<col width="300px" class="enum_members_name">
|
3533
|
+
<col class="enum_members_description">
|
3534
|
+
<col width="200px" class="enum_members_annotations">
|
3535
|
+
</colgroup>
|
3536
|
+
<tbody>
|
3537
|
+
<tr>
|
3538
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-POSITION-BEFORE:CAPS"></a>POPPLER_STRUCTURE_RUBY_POSITION_BEFORE</p></td>
|
3539
|
+
<td> </td>
|
3540
|
+
<td> </td>
|
3541
|
+
</tr>
|
3542
|
+
<tr>
|
3543
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-POSITION-AFTER:CAPS"></a>POPPLER_STRUCTURE_RUBY_POSITION_AFTER</p></td>
|
3544
|
+
<td> </td>
|
3545
|
+
<td> </td>
|
3546
|
+
</tr>
|
3547
|
+
<tr>
|
3548
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-POSITION-WARICHU:CAPS"></a>POPPLER_STRUCTURE_RUBY_POSITION_WARICHU</p></td>
|
3549
|
+
<td> </td>
|
3550
|
+
<td> </td>
|
3551
|
+
</tr>
|
3552
|
+
<tr>
|
3553
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-RUBY-POSITION-INLINE:CAPS"></a>POPPLER_STRUCTURE_RUBY_POSITION_INLINE</p></td>
|
3554
|
+
<td> </td>
|
3555
|
+
<td> </td>
|
3556
|
+
</tr>
|
3557
|
+
</tbody>
|
3558
|
+
</table></div>
|
3559
|
+
</div>
|
3560
|
+
</div>
|
3561
|
+
<hr>
|
3562
|
+
<div class="refsect2">
|
3563
|
+
<a name="PopplerStructureGlyphOrientation"></a><h3>enum PopplerStructureGlyphOrientation</h3>
|
3564
|
+
<div class="refsect3">
|
3565
|
+
<a name="id-1.2.12.10.15.3"></a><h4>Members</h4>
|
3566
|
+
<div class="informaltable"><table width="100%" border="0">
|
3567
|
+
<colgroup>
|
3568
|
+
<col width="300px" class="enum_members_name">
|
3569
|
+
<col class="enum_members_description">
|
3570
|
+
<col width="200px" class="enum_members_annotations">
|
3571
|
+
</colgroup>
|
3572
|
+
<tbody>
|
3573
|
+
<tr>
|
3574
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-GLYPH-ORIENTATION-AUTO:CAPS"></a>POPPLER_STRUCTURE_GLYPH_ORIENTATION_AUTO</p></td>
|
3575
|
+
<td> </td>
|
3576
|
+
<td> </td>
|
3577
|
+
</tr>
|
3578
|
+
<tr>
|
3579
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-GLYPH-ORIENTATION-0:CAPS"></a>POPPLER_STRUCTURE_GLYPH_ORIENTATION_0</p></td>
|
3580
|
+
<td> </td>
|
3581
|
+
<td> </td>
|
3582
|
+
</tr>
|
3583
|
+
<tr>
|
3584
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-GLYPH-ORIENTATION-90:CAPS"></a>POPPLER_STRUCTURE_GLYPH_ORIENTATION_90</p></td>
|
3585
|
+
<td> </td>
|
3586
|
+
<td> </td>
|
3587
|
+
</tr>
|
3588
|
+
<tr>
|
3589
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-GLYPH-ORIENTATION-180:CAPS"></a>POPPLER_STRUCTURE_GLYPH_ORIENTATION_180</p></td>
|
3590
|
+
<td> </td>
|
3591
|
+
<td> </td>
|
3592
|
+
</tr>
|
3593
|
+
<tr>
|
3594
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-GLYPH-ORIENTATION-270:CAPS"></a>POPPLER_STRUCTURE_GLYPH_ORIENTATION_270</p></td>
|
3595
|
+
<td> </td>
|
3596
|
+
<td> </td>
|
3597
|
+
</tr>
|
3598
|
+
</tbody>
|
3599
|
+
</table></div>
|
3600
|
+
</div>
|
3601
|
+
</div>
|
3602
|
+
<hr>
|
3603
|
+
<div class="refsect2">
|
3604
|
+
<a name="PopplerStructureListNumbering"></a><h3>enum PopplerStructureListNumbering</h3>
|
3605
|
+
<div class="refsect3">
|
3606
|
+
<a name="id-1.2.12.10.16.3"></a><h4>Members</h4>
|
3607
|
+
<div class="informaltable"><table width="100%" border="0">
|
3608
|
+
<colgroup>
|
3609
|
+
<col width="300px" class="enum_members_name">
|
3610
|
+
<col class="enum_members_description">
|
3611
|
+
<col width="200px" class="enum_members_annotations">
|
3612
|
+
</colgroup>
|
3613
|
+
<tbody>
|
3614
|
+
<tr>
|
3615
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-NONE:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_NONE</p></td>
|
3616
|
+
<td> </td>
|
3617
|
+
<td> </td>
|
3618
|
+
</tr>
|
3619
|
+
<tr>
|
3620
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-DISC:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_DISC</p></td>
|
3621
|
+
<td> </td>
|
3622
|
+
<td> </td>
|
3623
|
+
</tr>
|
3624
|
+
<tr>
|
3625
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-CIRCLE:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_CIRCLE</p></td>
|
3626
|
+
<td> </td>
|
3627
|
+
<td> </td>
|
3628
|
+
</tr>
|
3629
|
+
<tr>
|
3630
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-SQUARE:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_SQUARE</p></td>
|
3631
|
+
<td> </td>
|
3632
|
+
<td> </td>
|
3633
|
+
</tr>
|
3634
|
+
<tr>
|
3635
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-DECIMAL:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_DECIMAL</p></td>
|
3636
|
+
<td> </td>
|
3637
|
+
<td> </td>
|
3638
|
+
</tr>
|
3639
|
+
<tr>
|
3640
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-UPPER-ROMAN:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_UPPER_ROMAN</p></td>
|
3641
|
+
<td> </td>
|
3642
|
+
<td> </td>
|
3643
|
+
</tr>
|
3644
|
+
<tr>
|
3645
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-LOWER-ROMAN:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_LOWER_ROMAN</p></td>
|
3646
|
+
<td> </td>
|
3647
|
+
<td> </td>
|
3648
|
+
</tr>
|
3649
|
+
<tr>
|
3650
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-UPPER-ALPHA:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_UPPER_ALPHA</p></td>
|
3651
|
+
<td> </td>
|
3652
|
+
<td> </td>
|
3653
|
+
</tr>
|
3654
|
+
<tr>
|
3655
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-LIST-NUMBERING-LOWER-ALPHA:CAPS"></a>POPPLER_STRUCTURE_LIST_NUMBERING_LOWER_ALPHA</p></td>
|
3656
|
+
<td> </td>
|
3657
|
+
<td> </td>
|
3658
|
+
</tr>
|
3659
|
+
</tbody>
|
3660
|
+
</table></div>
|
3661
|
+
</div>
|
3662
|
+
</div>
|
3663
|
+
<hr>
|
3664
|
+
<div class="refsect2">
|
3665
|
+
<a name="PopplerStructureTableScope"></a><h3>enum PopplerStructureTableScope</h3>
|
3666
|
+
<div class="refsect3">
|
3667
|
+
<a name="id-1.2.12.10.17.3"></a><h4>Members</h4>
|
3668
|
+
<div class="informaltable"><table width="100%" border="0">
|
3669
|
+
<colgroup>
|
3670
|
+
<col width="300px" class="enum_members_name">
|
3671
|
+
<col class="enum_members_description">
|
3672
|
+
<col width="200px" class="enum_members_annotations">
|
3673
|
+
</colgroup>
|
3674
|
+
<tbody>
|
3675
|
+
<tr>
|
3676
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TABLE-SCOPE-ROW:CAPS"></a>POPPLER_STRUCTURE_TABLE_SCOPE_ROW</p></td>
|
3677
|
+
<td> </td>
|
3678
|
+
<td> </td>
|
3679
|
+
</tr>
|
3680
|
+
<tr>
|
3681
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TABLE-SCOPE-COLUMN:CAPS"></a>POPPLER_STRUCTURE_TABLE_SCOPE_COLUMN</p></td>
|
3682
|
+
<td> </td>
|
3683
|
+
<td> </td>
|
3684
|
+
</tr>
|
3685
|
+
<tr>
|
3686
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-TABLE-SCOPE-BOTH:CAPS"></a>POPPLER_STRUCTURE_TABLE_SCOPE_BOTH</p></td>
|
3687
|
+
<td> </td>
|
3688
|
+
<td> </td>
|
3689
|
+
</tr>
|
3690
|
+
</tbody>
|
3691
|
+
</table></div>
|
3692
|
+
</div>
|
3693
|
+
</div>
|
3694
|
+
<hr>
|
3695
|
+
<div class="refsect2">
|
3696
|
+
<a name="PopplerStructureFormRole"></a><h3>enum PopplerStructureFormRole</h3>
|
3697
|
+
<div class="refsect3">
|
3698
|
+
<a name="id-1.2.12.10.18.3"></a><h4>Members</h4>
|
3699
|
+
<div class="informaltable"><table width="100%" border="0">
|
3700
|
+
<colgroup>
|
3701
|
+
<col width="300px" class="enum_members_name">
|
3702
|
+
<col class="enum_members_description">
|
3703
|
+
<col width="200px" class="enum_members_annotations">
|
3704
|
+
</colgroup>
|
3705
|
+
<tbody>
|
3706
|
+
<tr>
|
3707
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-ROLE-UNDEFINED:CAPS"></a>POPPLER_STRUCTURE_FORM_ROLE_UNDEFINED</p></td>
|
3708
|
+
<td> </td>
|
3709
|
+
<td> </td>
|
3710
|
+
</tr>
|
3711
|
+
<tr>
|
3712
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-ROLE-RADIO-BUTTON:CAPS"></a>POPPLER_STRUCTURE_FORM_ROLE_RADIO_BUTTON</p></td>
|
3713
|
+
<td> </td>
|
3714
|
+
<td> </td>
|
3715
|
+
</tr>
|
3716
|
+
<tr>
|
3717
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-ROLE-PUSH-BUTTON:CAPS"></a>POPPLER_STRUCTURE_FORM_ROLE_PUSH_BUTTON</p></td>
|
3718
|
+
<td> </td>
|
3719
|
+
<td> </td>
|
3720
|
+
</tr>
|
3721
|
+
<tr>
|
3722
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-ROLE-TEXT-VALUE:CAPS"></a>POPPLER_STRUCTURE_FORM_ROLE_TEXT_VALUE</p></td>
|
3723
|
+
<td> </td>
|
3724
|
+
<td> </td>
|
3725
|
+
</tr>
|
3726
|
+
<tr>
|
3727
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-ROLE-CHECKBOX:CAPS"></a>POPPLER_STRUCTURE_FORM_ROLE_CHECKBOX</p></td>
|
3728
|
+
<td> </td>
|
3729
|
+
<td> </td>
|
3730
|
+
</tr>
|
3731
|
+
</tbody>
|
3732
|
+
</table></div>
|
3733
|
+
</div>
|
3734
|
+
</div>
|
3735
|
+
<hr>
|
3736
|
+
<div class="refsect2">
|
3737
|
+
<a name="PopplerStructureFormState"></a><h3>enum PopplerStructureFormState</h3>
|
3738
|
+
<div class="refsect3">
|
3739
|
+
<a name="id-1.2.12.10.19.3"></a><h4>Members</h4>
|
3740
|
+
<div class="informaltable"><table width="100%" border="0">
|
3741
|
+
<colgroup>
|
3742
|
+
<col width="300px" class="enum_members_name">
|
3743
|
+
<col class="enum_members_description">
|
3744
|
+
<col width="200px" class="enum_members_annotations">
|
3745
|
+
</colgroup>
|
3746
|
+
<tbody>
|
3747
|
+
<tr>
|
3748
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-STATE-ON:CAPS"></a>POPPLER_STRUCTURE_FORM_STATE_ON</p></td>
|
3749
|
+
<td> </td>
|
3750
|
+
<td> </td>
|
3751
|
+
</tr>
|
3752
|
+
<tr>
|
3753
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-STATE-OFF:CAPS"></a>POPPLER_STRUCTURE_FORM_STATE_OFF</p></td>
|
3754
|
+
<td> </td>
|
3755
|
+
<td> </td>
|
3756
|
+
</tr>
|
3757
|
+
<tr>
|
3758
|
+
<td class="enum_member_name"><p><a name="POPPLER-STRUCTURE-FORM-STATE-NEUTRAL:CAPS"></a>POPPLER_STRUCTURE_FORM_STATE_NEUTRAL</p></td>
|
3759
|
+
<td> </td>
|
3760
|
+
<td> </td>
|
3761
|
+
</tr>
|
3762
|
+
</tbody>
|
3763
|
+
</table></div>
|
3764
|
+
</div>
|
3765
|
+
</div>
|
3766
|
+
<hr>
|
3767
|
+
<div class="refsect2">
|
3768
|
+
<a name="PopplerTextSpan"></a><h3>PopplerTextSpan</h3>
|
3769
|
+
<pre class="programlisting">typedef struct _PopplerTextSpan PopplerTextSpan;</pre>
|
3770
|
+
</div>
|
3771
|
+
</div>
|
3772
|
+
<div class="refsect1">
|
3773
|
+
<a name="PopplerStructureElement.see-also"></a><h2>See Also</h2>
|
3774
|
+
<p><span class="type">PopplerStructure</span></p>
|
3775
|
+
</div>
|
3776
|
+
</div>
|
3777
|
+
<div class="footer">
|
3778
|
+
<hr>
|
3779
|
+
Generated by GTK-Doc V1.21</div>
|
3780
|
+
</body>
|
3781
|
+
</html>
|