poppler 3.0.8-x64-mingw32 → 3.0.9-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/ext/poppler/extconf.rb +1 -1
- data/ext/poppler/rbpoppler-page.c +9 -9
- data/lib/2.2/poppler.so +0 -0
- data/lib/2.3/poppler.so +0 -0
- data/sample/pdf2.rb +1 -1
- data/test/run-test.rb +5 -3
- data/test/test_page.rb +9 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libpoppler-59.dll +0 -0
- data/vendor/local/bin/libsqlite3-0.dll +0 -0
- data/vendor/local/bin/opj_dump.exe +0 -0
- data/vendor/local/bin/sqlite3.exe +0 -0
- data/vendor/local/include/sqlite3.h +1655 -46
- data/vendor/local/include/sqlite3ext.h +19 -5
- data/vendor/local/lib/libjpeg.dll.a +0 -0
- data/vendor/local/lib/libopenjp2.dll.a +0 -0
- data/vendor/local/lib/libpoppler-cpp.dll.a +0 -0
- data/vendor/local/lib/libpoppler-glib.dll.a +0 -0
- data/vendor/local/lib/libpoppler.a +0 -0
- data/vendor/local/lib/libpoppler.dll.a +0 -0
- data/vendor/local/lib/libsqlite3.a +0 -0
- data/vendor/local/lib/libsqlite3.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/sqlite3.pc +1 -1
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAnnot.html +75 -75
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAttachment.html +26 -26
- data/vendor/local/share/gtk-doc/html/poppler/PopplerDocument.html +164 -164
- data/vendor/local/share/gtk-doc/html/poppler/PopplerFormField.html +70 -70
- data/vendor/local/share/gtk-doc/html/poppler/PopplerLayer.html +11 -11
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMedia.html +35 -35
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMovie.html +9 -9
- data/vendor/local/share/gtk-doc/html/poppler/PopplerPage.html +82 -82
- data/vendor/local/share/gtk-doc/html/poppler/PopplerStructureElement.html +131 -131
- data/vendor/local/share/gtk-doc/html/poppler/poppler-Error-handling.html +1 -1
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PDF-Utility-functions.html +5 -5
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerAction.html +5 -5
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerColor.html +3 -3
- data/vendor/local/share/gtk-doc/html/poppler/poppler-Version-and-Features-Information.html +1 -1
- metadata +5 -5
@@ -15,12 +15,10 @@
|
|
15
15
|
** as extensions by SQLite should #include this file instead of
|
16
16
|
** sqlite3.h.
|
17
17
|
*/
|
18
|
-
#ifndef
|
19
|
-
#define
|
18
|
+
#ifndef SQLITE3EXT_H
|
19
|
+
#define SQLITE3EXT_H
|
20
20
|
#include "sqlite3.h"
|
21
21
|
|
22
|
-
typedef struct sqlite3_api_routines sqlite3_api_routines;
|
23
|
-
|
24
22
|
/*
|
25
23
|
** The following structure holds pointers to all of the SQLite API
|
26
24
|
** routines.
|
@@ -281,8 +279,21 @@ struct sqlite3_api_routines {
|
|
281
279
|
int (*db_cacheflush)(sqlite3*);
|
282
280
|
/* Version 3.12.0 and later */
|
283
281
|
int (*system_errno)(sqlite3*);
|
282
|
+
/* Version 3.14.0 and later */
|
283
|
+
int (*trace_v2)(sqlite3*,unsigned,int(*)(unsigned,void*,void*,void*),void*);
|
284
|
+
char *(*expanded_sql)(sqlite3_stmt*);
|
284
285
|
};
|
285
286
|
|
287
|
+
/*
|
288
|
+
** This is the function signature used for all extension entry points. It
|
289
|
+
** is also defined in the file "loadext.c".
|
290
|
+
*/
|
291
|
+
typedef int (*sqlite3_loadext_entry)(
|
292
|
+
sqlite3 *db, /* Handle to the database. */
|
293
|
+
char **pzErrMsg, /* Used to set error string on failure. */
|
294
|
+
const sqlite3_api_routines *pThunk /* Extension API function pointers. */
|
295
|
+
);
|
296
|
+
|
286
297
|
/*
|
287
298
|
** The following macros redefine the API routines so that they are
|
288
299
|
** redirected through the global sqlite3_api structure.
|
@@ -526,6 +537,9 @@ struct sqlite3_api_routines {
|
|
526
537
|
#define sqlite3_db_cacheflush sqlite3_api->db_cacheflush
|
527
538
|
/* Version 3.12.0 and later */
|
528
539
|
#define sqlite3_system_errno sqlite3_api->system_errno
|
540
|
+
/* Version 3.14.0 and later */
|
541
|
+
#define sqlite3_trace_v2 sqlite3_api->trace_v2
|
542
|
+
#define sqlite3_expanded_sql sqlite3_api->expanded_sql
|
529
543
|
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */
|
530
544
|
|
531
545
|
#if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION)
|
@@ -543,4 +557,4 @@ struct sqlite3_api_routines {
|
|
543
557
|
# define SQLITE_EXTENSION_INIT3 /*no-op*/
|
544
558
|
#endif
|
545
559
|
|
546
|
-
#endif /*
|
560
|
+
#endif /* SQLITE3EXT_H */
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -66,7 +66,7 @@
|
|
66
66
|
</tr>
|
67
67
|
<tr>
|
68
68
|
<td class="function_type">
|
69
|
-
<a href="
|
69
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
70
70
|
</td>
|
71
71
|
<td class="function_name">
|
72
72
|
<a class="link" href="PopplerAnnot.html#poppler-annot-get-name" title="poppler_annot_get_name ()">poppler_annot_get_name</a> <span class="c_punctuation">()</span>
|
@@ -74,7 +74,7 @@
|
|
74
74
|
</tr>
|
75
75
|
<tr>
|
76
76
|
<td class="function_type">
|
77
|
-
<a href="
|
77
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
78
78
|
</td>
|
79
79
|
<td class="function_name">
|
80
80
|
<a class="link" href="PopplerAnnot.html#poppler-annot-get-page-index" title="poppler_annot_get_page_index ()">poppler_annot_get_page_index</a> <span class="c_punctuation">()</span>
|
@@ -98,7 +98,7 @@
|
|
98
98
|
</tr>
|
99
99
|
<tr>
|
100
100
|
<td class="function_type">
|
101
|
-
<a href="
|
101
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
102
102
|
</td>
|
103
103
|
<td class="function_name">
|
104
104
|
<a class="link" href="PopplerAnnot.html#poppler-annot-get-contents" title="poppler_annot_get_contents ()">poppler_annot_get_contents</a> <span class="c_punctuation">()</span>
|
@@ -114,7 +114,7 @@
|
|
114
114
|
</tr>
|
115
115
|
<tr>
|
116
116
|
<td class="function_type">
|
117
|
-
<a href="
|
117
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
118
118
|
</td>
|
119
119
|
<td class="function_name">
|
120
120
|
<a class="link" href="PopplerAnnot.html#poppler-annot-get-modified" title="poppler_annot_get_modified ()">poppler_annot_get_modified</a> <span class="c_punctuation">()</span>
|
@@ -138,7 +138,7 @@
|
|
138
138
|
</tr>
|
139
139
|
<tr>
|
140
140
|
<td class="function_type">
|
141
|
-
<a href="
|
141
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
142
142
|
</td>
|
143
143
|
<td class="function_name">
|
144
144
|
<a class="link" href="PopplerAnnot.html#poppler-annot-markup-get-label" title="poppler_annot_markup_get_label ()">poppler_annot_markup_get_label</a> <span class="c_punctuation">()</span>
|
@@ -154,7 +154,7 @@
|
|
154
154
|
</tr>
|
155
155
|
<tr>
|
156
156
|
<td class="function_type">
|
157
|
-
<a href="
|
157
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
158
158
|
</td>
|
159
159
|
<td class="function_name">
|
160
160
|
<a class="link" href="PopplerAnnot.html#poppler-annot-markup-get-subject" title="poppler_annot_markup_get_subject ()">poppler_annot_markup_get_subject</a> <span class="c_punctuation">()</span>
|
@@ -162,7 +162,7 @@
|
|
162
162
|
</tr>
|
163
163
|
<tr>
|
164
164
|
<td class="function_type">
|
165
|
-
<a href="
|
165
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
166
166
|
</td>
|
167
167
|
<td class="function_name">
|
168
168
|
<a class="link" href="PopplerAnnot.html#poppler-annot-markup-get-opacity" title="poppler_annot_markup_get_opacity ()">poppler_annot_markup_get_opacity</a> <span class="c_punctuation">()</span>
|
@@ -178,7 +178,7 @@
|
|
178
178
|
</tr>
|
179
179
|
<tr>
|
180
180
|
<td class="function_type">
|
181
|
-
<a href="
|
181
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
182
182
|
</td>
|
183
183
|
<td class="function_name">
|
184
184
|
<a class="link" href="PopplerAnnot.html#poppler-annot-markup-has-popup" title="poppler_annot_markup_has_popup ()">poppler_annot_markup_has_popup</a> <span class="c_punctuation">()</span>
|
@@ -194,7 +194,7 @@
|
|
194
194
|
</tr>
|
195
195
|
<tr>
|
196
196
|
<td class="function_type">
|
197
|
-
<a href="
|
197
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
198
198
|
</td>
|
199
199
|
<td class="function_name">
|
200
200
|
<a class="link" href="PopplerAnnot.html#poppler-annot-markup-get-popup-is-open" title="poppler_annot_markup_get_popup_is_open ()">poppler_annot_markup_get_popup_is_open</a> <span class="c_punctuation">()</span>
|
@@ -210,7 +210,7 @@
|
|
210
210
|
</tr>
|
211
211
|
<tr>
|
212
212
|
<td class="function_type">
|
213
|
-
<a href="
|
213
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
214
214
|
</td>
|
215
215
|
<td class="function_name">
|
216
216
|
<a class="link" href="PopplerAnnot.html#poppler-annot-markup-get-popup-rectangle" title="poppler_annot_markup_get_popup_rectangle ()">poppler_annot_markup_get_popup_rectangle</a> <span class="c_punctuation">()</span>
|
@@ -226,7 +226,7 @@
|
|
226
226
|
</tr>
|
227
227
|
<tr>
|
228
228
|
<td class="function_type">
|
229
|
-
<a href="
|
229
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Date-and-Time-Functions.html#GDate"><span class="returnvalue">GDate</span></a> *
|
230
230
|
</td>
|
231
231
|
<td class="function_name">
|
232
232
|
<a class="link" href="PopplerAnnot.html#poppler-annot-markup-get-date" title="poppler_annot_markup_get_date ()">poppler_annot_markup_get_date</a> <span class="c_punctuation">()</span>
|
@@ -258,7 +258,7 @@
|
|
258
258
|
</tr>
|
259
259
|
<tr>
|
260
260
|
<td class="function_type">
|
261
|
-
<a href="
|
261
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
262
262
|
</td>
|
263
263
|
<td class="function_name">
|
264
264
|
<a class="link" href="PopplerAnnot.html#poppler-annot-text-get-icon" title="poppler_annot_text_get_icon ()">poppler_annot_text_get_icon</a> <span class="c_punctuation">()</span>
|
@@ -274,7 +274,7 @@
|
|
274
274
|
</tr>
|
275
275
|
<tr>
|
276
276
|
<td class="function_type">
|
277
|
-
<a href="
|
277
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
278
278
|
</td>
|
279
279
|
<td class="function_name">
|
280
280
|
<a class="link" href="PopplerAnnot.html#poppler-annot-text-get-is-open" title="poppler_annot_text_get_is_open ()">poppler_annot_text_get_is_open</a> <span class="c_punctuation">()</span>
|
@@ -338,7 +338,7 @@
|
|
338
338
|
</tr>
|
339
339
|
<tr>
|
340
340
|
<td class="function_type">
|
341
|
-
<a href="
|
341
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="returnvalue">GArray</span></a> *
|
342
342
|
</td>
|
343
343
|
<td class="function_name">
|
344
344
|
<a class="link" href="PopplerAnnot.html#poppler-annot-text-markup-get-quadrilaterals" title="poppler_annot_text_markup_get_quadrilaterals ()">poppler_annot_text_markup_get_quadrilaterals</a> <span class="c_punctuation">()</span>
|
@@ -370,7 +370,7 @@
|
|
370
370
|
</tr>
|
371
371
|
<tr>
|
372
372
|
<td class="function_type">
|
373
|
-
<a href="
|
373
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
374
374
|
</td>
|
375
375
|
<td class="function_name">
|
376
376
|
<a class="link" href="PopplerAnnot.html#poppler-annot-file-attachment-get-name" title="poppler_annot_file_attachment_get_name ()">poppler_annot_file_attachment_get_name</a> <span class="c_punctuation">()</span>
|
@@ -394,7 +394,7 @@
|
|
394
394
|
</tr>
|
395
395
|
<tr>
|
396
396
|
<td class="function_type">
|
397
|
-
<a href="
|
397
|
+
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
398
398
|
</td>
|
399
399
|
<td class="function_name">
|
400
400
|
<a class="link" href="PopplerAnnot.html#poppler-annot-movie-get-title" title="poppler_annot_movie_get_title ()">poppler_annot_movie_get_title</a> <span class="c_punctuation">()</span>
|
@@ -668,7 +668,7 @@
|
|
668
668
|
</div>
|
669
669
|
<div class="refsect1">
|
670
670
|
<a name="PopplerAnnot.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
671
|
-
<pre class="screen"> <a href="
|
671
|
+
<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
672
672
|
<span class="lineart">╰──</span> PopplerAnnot
|
673
673
|
</pre>
|
674
674
|
</div>
|
@@ -774,7 +774,7 @@ poppler_annot_set_flags (<em class="parameter"><code><a class="link" href="Poppl
|
|
774
774
|
<hr>
|
775
775
|
<div class="refsect2">
|
776
776
|
<a name="poppler-annot-get-name"></a><h3>poppler_annot_get_name ()</h3>
|
777
|
-
<pre class="programlisting"><a href="
|
777
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
778
778
|
poppler_annot_get_name (<em class="parameter"><code><a class="link" href="PopplerAnnot.html" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a> *poppler_annot</code></em>);</pre>
|
779
779
|
<p>Retrieves the name of <em class="parameter"><code>poppler_annot</code></em>
|
780
780
|
.</p>
|
@@ -797,13 +797,13 @@ poppler_annot_get_name (<em class="parameter"><code><a class="link" href="Popple
|
|
797
797
|
<a name="id-1.2.7.8.5.6"></a><h4>Returns</h4>
|
798
798
|
<p> a new allocated string with the name of <em class="parameter"><code>poppler_annot</code></em>
|
799
799
|
. It must
|
800
|
-
be freed with <a href="
|
800
|
+
be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</p>
|
801
801
|
</div>
|
802
802
|
</div>
|
803
803
|
<hr>
|
804
804
|
<div class="refsect2">
|
805
805
|
<a name="poppler-annot-get-page-index"></a><h3>poppler_annot_get_page_index ()</h3>
|
806
|
-
<pre class="programlisting"><a href="
|
806
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
807
807
|
poppler_annot_get_page_index (<em class="parameter"><code><a class="link" href="PopplerAnnot.html" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a> *poppler_annot</code></em>);</pre>
|
808
808
|
<p>Returns the page index to which <em class="parameter"><code>poppler_annot</code></em>
|
809
809
|
is associated, or -1 if unknown</p>
|
@@ -854,7 +854,7 @@ poppler_annot_get_color (<em class="parameter"><code><a class="link" href="Poppl
|
|
854
854
|
<a name="id-1.2.7.8.7.6"></a><h4>Returns</h4>
|
855
855
|
<p> a new allocated <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> with the color values of
|
856
856
|
<em class="parameter"><code>poppler_annot</code></em>
|
857
|
-
, or <a href="
|
857
|
+
, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. It must be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</p>
|
858
858
|
</div>
|
859
859
|
</div>
|
860
860
|
<hr>
|
@@ -881,7 +881,7 @@ poppler_annot_set_color (<em class="parameter"><code><a class="link" href="Poppl
|
|
881
881
|
</tr>
|
882
882
|
<tr>
|
883
883
|
<td class="parameter_name"><p>poppler_color</p></td>
|
884
|
-
<td class="parameter_description"><p> a <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>, or <a href="
|
884
|
+
<td class="parameter_description"><p> a <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
885
885
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
886
886
|
</tr>
|
887
887
|
</tbody>
|
@@ -892,7 +892,7 @@ poppler_annot_set_color (<em class="parameter"><code><a class="link" href="Poppl
|
|
892
892
|
<hr>
|
893
893
|
<div class="refsect2">
|
894
894
|
<a name="poppler-annot-get-contents"></a><h3>poppler_annot_get_contents ()</h3>
|
895
|
-
<pre class="programlisting"><a href="
|
895
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
896
896
|
poppler_annot_get_contents (<em class="parameter"><code><a class="link" href="PopplerAnnot.html" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a> *poppler_annot</code></em>);</pre>
|
897
897
|
<p>Retrieves the contents of <em class="parameter"><code>poppler_annot</code></em>
|
898
898
|
.</p>
|
@@ -915,7 +915,7 @@ poppler_annot_get_contents (<em class="parameter"><code><a class="link" href="Po
|
|
915
915
|
<a name="id-1.2.7.8.9.6"></a><h4>Returns</h4>
|
916
916
|
<p> a new allocated string with the contents of <em class="parameter"><code>poppler_annot</code></em>
|
917
917
|
. It
|
918
|
-
must be freed with <a href="
|
918
|
+
must be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</p>
|
919
919
|
</div>
|
920
920
|
</div>
|
921
921
|
<hr>
|
@@ -923,7 +923,7 @@ must be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/s
|
|
923
923
|
<a name="poppler-annot-set-contents"></a><h3>poppler_annot_set_contents ()</h3>
|
924
924
|
<pre class="programlisting"><span class="returnvalue">void</span>
|
925
925
|
poppler_annot_set_contents (<em class="parameter"><code><a class="link" href="PopplerAnnot.html" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a> *poppler_annot</code></em>,
|
926
|
-
<em class="parameter"><code>const <a href="
|
926
|
+
<em class="parameter"><code>const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *contents</code></em>);</pre>
|
927
927
|
<p>Sets the contents of <em class="parameter"><code>poppler_annot</code></em>
|
928
928
|
to the given value,
|
929
929
|
replacing the current contents.</p>
|
@@ -954,7 +954,7 @@ replacing the current contents.</p>
|
|
954
954
|
<hr>
|
955
955
|
<div class="refsect2">
|
956
956
|
<a name="poppler-annot-get-modified"></a><h3>poppler_annot_get_modified ()</h3>
|
957
|
-
<pre class="programlisting"><a href="
|
957
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
958
958
|
poppler_annot_get_modified (<em class="parameter"><code><a class="link" href="PopplerAnnot.html" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a> *poppler_annot</code></em>);</pre>
|
959
959
|
<p>Retrieves the last modification data of <em class="parameter"><code>poppler_annot</code></em>
|
960
960
|
. The returned
|
@@ -979,7 +979,7 @@ See also <a class="link" href="poppler-PDF-Utility-functions.html#poppler-date-p
|
|
979
979
|
<a name="id-1.2.7.8.11.6"></a><h4>Returns</h4>
|
980
980
|
<p> a new allocated string with the last modification data of
|
981
981
|
<em class="parameter"><code>poppler_annot</code></em>
|
982
|
-
. It must be freed with <a href="
|
982
|
+
. It must be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</p>
|
983
983
|
</div>
|
984
984
|
</div>
|
985
985
|
<hr>
|
@@ -1051,7 +1051,7 @@ where the annotation <em class="parameter"><code>poppler_annot</code></em>
|
|
1051
1051
|
<hr>
|
1052
1052
|
<div class="refsect2">
|
1053
1053
|
<a name="poppler-annot-markup-get-label"></a><h3>poppler_annot_markup_get_label ()</h3>
|
1054
|
-
<pre class="programlisting"><a href="
|
1054
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1055
1055
|
poppler_annot_markup_get_label (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>);</pre>
|
1056
1056
|
<p>Retrieves the label text of <em class="parameter"><code>poppler_annot</code></em>
|
1057
1057
|
.</p>
|
@@ -1081,7 +1081,7 @@ poppler_annot_markup_get_label (<em class="parameter"><code><a class="link" href
|
|
1081
1081
|
<a name="poppler-annot-markup-set-label"></a><h3>poppler_annot_markup_set_label ()</h3>
|
1082
1082
|
<pre class="programlisting"><span class="returnvalue">void</span>
|
1083
1083
|
poppler_annot_markup_set_label (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>,
|
1084
|
-
<em class="parameter"><code>const <a href="
|
1084
|
+
<em class="parameter"><code>const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);</pre>
|
1085
1085
|
<p>Sets the label text of <em class="parameter"><code>poppler_annot</code></em>
|
1086
1086
|
, replacing the current one</p>
|
1087
1087
|
<div class="refsect3">
|
@@ -1100,7 +1100,7 @@ poppler_annot_markup_set_label (<em class="parameter"><code><a class="link" href
|
|
1100
1100
|
</tr>
|
1101
1101
|
<tr>
|
1102
1102
|
<td class="parameter_name"><p>label</p></td>
|
1103
|
-
<td class="parameter_description"><p> a text string containing the new label, or <a href="
|
1103
|
+
<td class="parameter_description"><p> a text string containing the new label, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1104
1104
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1105
1105
|
</tr>
|
1106
1106
|
</tbody>
|
@@ -1111,7 +1111,7 @@ poppler_annot_markup_set_label (<em class="parameter"><code><a class="link" href
|
|
1111
1111
|
<hr>
|
1112
1112
|
<div class="refsect2">
|
1113
1113
|
<a name="poppler-annot-markup-get-subject"></a><h3>poppler_annot_markup_get_subject ()</h3>
|
1114
|
-
<pre class="programlisting"><a href="
|
1114
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1115
1115
|
poppler_annot_markup_get_subject (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>);</pre>
|
1116
1116
|
<p>Retrives the subject text of <em class="parameter"><code>poppler_annot</code></em>
|
1117
1117
|
.</p>
|
@@ -1139,7 +1139,7 @@ poppler_annot_markup_get_subject (<em class="parameter"><code><a class="link" hr
|
|
1139
1139
|
<hr>
|
1140
1140
|
<div class="refsect2">
|
1141
1141
|
<a name="poppler-annot-markup-get-opacity"></a><h3>poppler_annot_markup_get_opacity ()</h3>
|
1142
|
-
<pre class="programlisting"><a href="
|
1142
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
1143
1143
|
poppler_annot_markup_get_opacity (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>);</pre>
|
1144
1144
|
<p>Retrieves the opacity value of <em class="parameter"><code>poppler_annot</code></em>
|
1145
1145
|
.</p>
|
@@ -1170,7 +1170,7 @@ between 0 (transparent) and 1 (opaque)</p>
|
|
1170
1170
|
<a name="poppler-annot-markup-set-opacity"></a><h3>poppler_annot_markup_set_opacity ()</h3>
|
1171
1171
|
<pre class="programlisting"><span class="returnvalue">void</span>
|
1172
1172
|
poppler_annot_markup_set_opacity (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>,
|
1173
|
-
<em class="parameter"><code><a href="
|
1173
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> opacity</code></em>);</pre>
|
1174
1174
|
<p>Sets the opacity of <em class="parameter"><code>poppler_annot</code></em>
|
1175
1175
|
. This value applies to
|
1176
1176
|
all visible elements of <em class="parameter"><code>poppler_annot</code></em>
|
@@ -1203,9 +1203,9 @@ but not to the pop-up window that appears when it's openened</p>
|
|
1203
1203
|
<hr>
|
1204
1204
|
<div class="refsect2">
|
1205
1205
|
<a name="poppler-annot-markup-has-popup"></a><h3>poppler_annot_markup_has_popup ()</h3>
|
1206
|
-
<pre class="programlisting"><a href="
|
1206
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1207
1207
|
poppler_annot_markup_has_popup (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>);</pre>
|
1208
|
-
<p>Return <a href="
|
1208
|
+
<p>Return <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the markup annotation has a popup window associated</p>
|
1209
1209
|
<div class="refsect3">
|
1210
1210
|
<a name="id-1.2.7.8.19.5"></a><h4>Parameters</h4>
|
1211
1211
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -1223,8 +1223,8 @@ poppler_annot_markup_has_popup (<em class="parameter"><code><a class="link" href
|
|
1223
1223
|
</div>
|
1224
1224
|
<div class="refsect3">
|
1225
1225
|
<a name="id-1.2.7.8.19.6"></a><h4>Returns</h4>
|
1226
|
-
<p> <a href="
|
1227
|
-
has popup, <a href="
|
1226
|
+
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>poppler_annot</code></em>
|
1227
|
+
has popup, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
|
1228
1228
|
</div>
|
1229
1229
|
<p class="since">Since: <a class="link" href="api-index-0-12.html#api-index-0.12">0.12</a></p>
|
1230
1230
|
</div>
|
@@ -1265,7 +1265,7 @@ Popup window shall be displayed by viewers at <em class="parameter"><code>popup_
|
|
1265
1265
|
<hr>
|
1266
1266
|
<div class="refsect2">
|
1267
1267
|
<a name="poppler-annot-markup-get-popup-is-open"></a><h3>poppler_annot_markup_get_popup_is_open ()</h3>
|
1268
|
-
<pre class="programlisting"><a href="
|
1268
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1269
1269
|
poppler_annot_markup_get_popup_is_open
|
1270
1270
|
(<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>);</pre>
|
1271
1271
|
<p>Retrieves the state of the popup window related to <em class="parameter"><code>poppler_annot</code></em>
|
@@ -1288,7 +1288,7 @@ poppler_annot_markup_get_popup_is_open
|
|
1288
1288
|
<div class="refsect3">
|
1289
1289
|
<a name="id-1.2.7.8.21.6"></a><h4>Returns</h4>
|
1290
1290
|
<p> the state of <em class="parameter"><code>poppler_annot</code></em>
|
1291
|
-
. <a href="
|
1291
|
+
. <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if it's open, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> in
|
1292
1292
|
other case.</p>
|
1293
1293
|
</div>
|
1294
1294
|
</div>
|
@@ -1298,7 +1298,7 @@ other case.</p>
|
|
1298
1298
|
<pre class="programlisting"><span class="returnvalue">void</span>
|
1299
1299
|
poppler_annot_markup_set_popup_is_open
|
1300
1300
|
(<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>,
|
1301
|
-
<em class="parameter"><code><a href="
|
1301
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_open</code></em>);</pre>
|
1302
1302
|
<p>Sets the state of the popup window related to <em class="parameter"><code>poppler_annot</code></em>
|
1303
1303
|
.</p>
|
1304
1304
|
<div class="refsect3">
|
@@ -1328,7 +1328,7 @@ poppler_annot_markup_set_popup_is_open
|
|
1328
1328
|
<hr>
|
1329
1329
|
<div class="refsect2">
|
1330
1330
|
<a name="poppler-annot-markup-get-popup-rectangle"></a><h3>poppler_annot_markup_get_popup_rectangle ()</h3>
|
1331
|
-
<pre class="programlisting"><a href="
|
1331
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1332
1332
|
poppler_annot_markup_get_popup_rectangle
|
1333
1333
|
(<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>,
|
1334
1334
|
<em class="parameter"><code><a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a> *poppler_rect</code></em>);</pre>
|
@@ -1358,7 +1358,7 @@ poppler_annot_markup_get_popup_rectangle
|
|
1358
1358
|
</div>
|
1359
1359
|
<div class="refsect3">
|
1360
1360
|
<a name="id-1.2.7.8.23.6"></a><h4>Returns</h4>
|
1361
|
-
<p> <a href="
|
1361
|
+
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a> was correctly filled, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
|
1362
1362
|
</div>
|
1363
1363
|
<p class="since">Since: <a class="link" href="api-index-0-12.html#api-index-0.12">0.12</a></p>
|
1364
1364
|
</div>
|
@@ -1402,7 +1402,7 @@ a popup window to a <a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup"
|
|
1402
1402
|
<hr>
|
1403
1403
|
<div class="refsect2">
|
1404
1404
|
<a name="poppler-annot-markup-get-date"></a><h3>poppler_annot_markup_get_date ()</h3>
|
1405
|
-
<pre class="programlisting"><a href="
|
1405
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Date-and-Time-Functions.html#GDate"><span class="returnvalue">GDate</span></a> *
|
1406
1406
|
poppler_annot_markup_get_date (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMarkup" title="PopplerAnnotMarkup"><span class="type">PopplerAnnotMarkup</span></a> *poppler_annot</code></em>);</pre>
|
1407
1407
|
<p>Returns the date and time when the annotation was created</p>
|
1408
1408
|
<div class="refsect3">
|
@@ -1422,8 +1422,8 @@ poppler_annot_markup_get_date (<em class="parameter"><code><a class="link" href=
|
|
1422
1422
|
</div>
|
1423
1423
|
<div class="refsect3">
|
1424
1424
|
<a name="id-1.2.7.8.25.6"></a><h4>Returns</h4>
|
1425
|
-
<p> a <a href="
|
1426
|
-
when the annotation was created, or <a href="
|
1425
|
+
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> representing the date and time
|
1426
|
+
when the annotation was created, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
1427
1427
|
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1428
1428
|
</div>
|
1429
1429
|
</div>
|
@@ -1525,7 +1525,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1525
1525
|
<hr>
|
1526
1526
|
<div class="refsect2">
|
1527
1527
|
<a name="poppler-annot-text-get-icon"></a><h3>poppler_annot_text_get_icon ()</h3>
|
1528
|
-
<pre class="programlisting"><a href="
|
1528
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1529
1529
|
poppler_annot_text_get_icon (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotText" title="PopplerAnnotText"><span class="type">PopplerAnnotText</span></a> *poppler_annot</code></em>);</pre>
|
1530
1530
|
<p>Gets name of the icon of <em class="parameter"><code>poppler_annot</code></em>
|
1531
1531
|
.</p>
|
@@ -1554,7 +1554,7 @@ poppler_annot_text_get_icon (<em class="parameter"><code><a class="link" href="P
|
|
1554
1554
|
<a name="poppler-annot-text-set-icon"></a><h3>poppler_annot_text_set_icon ()</h3>
|
1555
1555
|
<pre class="programlisting"><span class="returnvalue">void</span>
|
1556
1556
|
poppler_annot_text_set_icon (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotText" title="PopplerAnnotText"><span class="type">PopplerAnnotText</span></a> *poppler_annot</code></em>,
|
1557
|
-
<em class="parameter"><code>const <a href="
|
1557
|
+
<em class="parameter"><code>const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon</code></em>);</pre>
|
1558
1558
|
<p>Sets the icon of <em class="parameter"><code>poppler_annot</code></em>
|
1559
1559
|
. The following predefined
|
1560
1560
|
icons are currently supported:</p>
|
@@ -1629,7 +1629,7 @@ icons are currently supported:</p>
|
|
1629
1629
|
<hr>
|
1630
1630
|
<div class="refsect2">
|
1631
1631
|
<a name="poppler-annot-text-get-is-open"></a><h3>poppler_annot_text_get_is_open ()</h3>
|
1632
|
-
<pre class="programlisting"><a href="
|
1632
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1633
1633
|
poppler_annot_text_get_is_open (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotText" title="PopplerAnnotText"><span class="type">PopplerAnnotText</span></a> *poppler_annot</code></em>);</pre>
|
1634
1634
|
<p>Retrieves the state of <em class="parameter"><code>poppler_annot</code></em>
|
1635
1635
|
.</p>
|
@@ -1651,7 +1651,7 @@ poppler_annot_text_get_is_open (<em class="parameter"><code><a class="link" href
|
|
1651
1651
|
<div class="refsect3">
|
1652
1652
|
<a name="id-1.2.7.8.31.6"></a><h4>Returns</h4>
|
1653
1653
|
<p> the state of <em class="parameter"><code>poppler_annot</code></em>
|
1654
|
-
. <a href="
|
1654
|
+
. <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if it's open, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> in
|
1655
1655
|
other case.</p>
|
1656
1656
|
</div>
|
1657
1657
|
</div>
|
@@ -1660,7 +1660,7 @@ other case.</p>
|
|
1660
1660
|
<a name="poppler-annot-text-set-is-open"></a><h3>poppler_annot_text_set_is_open ()</h3>
|
1661
1661
|
<pre class="programlisting"><span class="returnvalue">void</span>
|
1662
1662
|
poppler_annot_text_set_is_open (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotText" title="PopplerAnnotText"><span class="type">PopplerAnnotText</span></a> *poppler_annot</code></em>,
|
1663
|
-
<em class="parameter"><code><a href="
|
1663
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_open</code></em>);</pre>
|
1664
1664
|
<p>Sets whether <em class="parameter"><code>poppler_annot</code></em>
|
1665
1665
|
should initially be displayed open</p>
|
1666
1666
|
<div class="refsect3">
|
@@ -1722,7 +1722,7 @@ poppler_annot_text_get_state (<em class="parameter"><code><a class="link" href="
|
|
1722
1722
|
poppler_annot_text_markup_new_highlight
|
1723
1723
|
(<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *doc</code></em>,
|
1724
1724
|
<em class="parameter"><code><a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a> *rect</code></em>,
|
1725
|
-
<em class="parameter"><code><a href="
|
1725
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *quadrilaterals</code></em>);</pre>
|
1726
1726
|
<p>Creates a new Highlight Text annotation that will be
|
1727
1727
|
located on <em class="parameter"><code>rect</code></em>
|
1728
1728
|
when added to a page. See <a class="link" href="PopplerPage.html#poppler-page-add-annot" title="poppler_page_add_annot ()"><code class="function">poppler_page_add_annot()</code></a></p>
|
@@ -1747,7 +1747,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1747
1747
|
</tr>
|
1748
1748
|
<tr>
|
1749
1749
|
<td class="parameter_name"><p>quadrilaterals</p></td>
|
1750
|
-
<td class="parameter_description"><p> A <a href="
|
1750
|
+
<td class="parameter_description"><p> A <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> of
|
1751
1751
|
<a class="link" href="PopplerAnnot.html#PopplerQuadrilateral" title="PopplerQuadrilateral"><span class="type">PopplerQuadrilateral</span></a>s. </p></td>
|
1752
1752
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerQuadrilateral]</span></td>
|
1753
1753
|
</tr>
|
@@ -1768,7 +1768,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1768
1768
|
poppler_annot_text_markup_new_squiggly
|
1769
1769
|
(<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *doc</code></em>,
|
1770
1770
|
<em class="parameter"><code><a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a> *rect</code></em>,
|
1771
|
-
<em class="parameter"><code><a href="
|
1771
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *quadrilaterals</code></em>);</pre>
|
1772
1772
|
<p>Creates a new Squiggly Text annotation that will be
|
1773
1773
|
located on <em class="parameter"><code>rect</code></em>
|
1774
1774
|
when added to a page. See <a class="link" href="PopplerPage.html#poppler-page-add-annot" title="poppler_page_add_annot ()"><code class="function">poppler_page_add_annot()</code></a></p>
|
@@ -1793,7 +1793,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1793
1793
|
</tr>
|
1794
1794
|
<tr>
|
1795
1795
|
<td class="parameter_name"><p>quadrilaterals</p></td>
|
1796
|
-
<td class="parameter_description"><p> A <a href="
|
1796
|
+
<td class="parameter_description"><p> A <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> of
|
1797
1797
|
<a class="link" href="PopplerAnnot.html#PopplerQuadrilateral" title="PopplerQuadrilateral"><span class="type">PopplerQuadrilateral</span></a>s. </p></td>
|
1798
1798
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerQuadrilateral]</span></td>
|
1799
1799
|
</tr>
|
@@ -1814,7 +1814,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1814
1814
|
poppler_annot_text_markup_new_strikeout
|
1815
1815
|
(<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *doc</code></em>,
|
1816
1816
|
<em class="parameter"><code><a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a> *rect</code></em>,
|
1817
|
-
<em class="parameter"><code><a href="
|
1817
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *quadrilaterals</code></em>);</pre>
|
1818
1818
|
<p>Creates a new Strike Out Text annotation that will be
|
1819
1819
|
located on <em class="parameter"><code>rect</code></em>
|
1820
1820
|
when added to a page. See <a class="link" href="PopplerPage.html#poppler-page-add-annot" title="poppler_page_add_annot ()"><code class="function">poppler_page_add_annot()</code></a></p>
|
@@ -1839,7 +1839,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1839
1839
|
</tr>
|
1840
1840
|
<tr>
|
1841
1841
|
<td class="parameter_name"><p>quadrilaterals</p></td>
|
1842
|
-
<td class="parameter_description"><p> A <a href="
|
1842
|
+
<td class="parameter_description"><p> A <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> of
|
1843
1843
|
<a class="link" href="PopplerAnnot.html#PopplerQuadrilateral" title="PopplerQuadrilateral"><span class="type">PopplerQuadrilateral</span></a>s. </p></td>
|
1844
1844
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerQuadrilateral]</span></td>
|
1845
1845
|
</tr>
|
@@ -1860,7 +1860,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1860
1860
|
poppler_annot_text_markup_new_underline
|
1861
1861
|
(<em class="parameter"><code><a class="link" href="PopplerDocument.html" title="PopplerDocument"><span class="type">PopplerDocument</span></a> *doc</code></em>,
|
1862
1862
|
<em class="parameter"><code><a class="link" href="PopplerPage.html#PopplerRectangle" title="PopplerRectangle"><span class="type">PopplerRectangle</span></a> *rect</code></em>,
|
1863
|
-
<em class="parameter"><code><a href="
|
1863
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *quadrilaterals</code></em>);</pre>
|
1864
1864
|
<p>Creates a new Underline Text annotation that will be
|
1865
1865
|
located on <em class="parameter"><code>rect</code></em>
|
1866
1866
|
when added to a page. See <a class="link" href="PopplerPage.html#poppler-page-add-annot" title="poppler_page_add_annot ()"><code class="function">poppler_page_add_annot()</code></a></p>
|
@@ -1885,7 +1885,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1885
1885
|
</tr>
|
1886
1886
|
<tr>
|
1887
1887
|
<td class="parameter_name"><p>quadrilaterals</p></td>
|
1888
|
-
<td class="parameter_description"><p> A <a href="
|
1888
|
+
<td class="parameter_description"><p> A <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> of
|
1889
1889
|
<a class="link" href="PopplerAnnot.html#PopplerQuadrilateral" title="PopplerQuadrilateral"><span class="type">PopplerQuadrilateral</span></a>s. </p></td>
|
1890
1890
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerQuadrilateral]</span></td>
|
1891
1891
|
</tr>
|
@@ -1905,7 +1905,7 @@ located on <em class="parameter"><code>rect</code></em>
|
|
1905
1905
|
<pre class="programlisting"><span class="returnvalue">void</span>
|
1906
1906
|
poppler_annot_text_markup_set_quadrilaterals
|
1907
1907
|
(<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotTextMarkup" title="PopplerAnnotTextMarkup"><span class="type">PopplerAnnotTextMarkup</span></a> *poppler_annot</code></em>,
|
1908
|
-
<em class="parameter"><code><a href="
|
1908
|
+
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *quadrilaterals</code></em>);</pre>
|
1909
1909
|
<p>Set the regions (Quadrilaterals) to apply the text markup in <em class="parameter"><code>poppler_annot</code></em>
|
1910
1910
|
.</p>
|
1911
1911
|
<div class="refsect3">
|
@@ -1924,7 +1924,7 @@ poppler_annot_text_markup_set_quadrilaterals
|
|
1924
1924
|
</tr>
|
1925
1925
|
<tr>
|
1926
1926
|
<td class="parameter_name"><p>quadrilaterals</p></td>
|
1927
|
-
<td class="parameter_description"><p> A <a href="
|
1927
|
+
<td class="parameter_description"><p> A <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> of
|
1928
1928
|
<a class="link" href="PopplerAnnot.html#PopplerQuadrilateral" title="PopplerQuadrilateral"><span class="type">PopplerQuadrilateral</span></a>s. </p></td>
|
1929
1929
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerQuadrilateral]</span></td>
|
1930
1930
|
</tr>
|
@@ -1936,10 +1936,10 @@ poppler_annot_text_markup_set_quadrilaterals
|
|
1936
1936
|
<hr>
|
1937
1937
|
<div class="refsect2">
|
1938
1938
|
<a name="poppler-annot-text-markup-get-quadrilaterals"></a><h3>poppler_annot_text_markup_get_quadrilaterals ()</h3>
|
1939
|
-
<pre class="programlisting"><a href="
|
1939
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="returnvalue">GArray</span></a> *
|
1940
1940
|
poppler_annot_text_markup_get_quadrilaterals
|
1941
1941
|
(<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotTextMarkup" title="PopplerAnnotTextMarkup"><span class="type">PopplerAnnotTextMarkup</span></a> *poppler_annot</code></em>);</pre>
|
1942
|
-
<p>Returns a <a href="
|
1942
|
+
<p>Returns a <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> of <a class="link" href="PopplerAnnot.html#PopplerQuadrilateral" title="PopplerQuadrilateral"><span class="type">PopplerQuadrilateral</span></a> items that map from a
|
1943
1943
|
location on <em class="parameter"><code>page</code></em>
|
1944
1944
|
to a <a class="link" href="PopplerAnnot.html#PopplerAnnotTextMarkup" title="PopplerAnnotTextMarkup"><span class="type">PopplerAnnotTextMarkup</span></a>. This array must be freed
|
1945
1945
|
when done.</p>
|
@@ -1960,7 +1960,7 @@ when done.</p>
|
|
1960
1960
|
</div>
|
1961
1961
|
<div class="refsect3">
|
1962
1962
|
<a name="id-1.2.7.8.39.6"></a><h4>Returns</h4>
|
1963
|
-
<p> A <a href="
|
1963
|
+
<p> A <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> of <a class="link" href="PopplerAnnot.html#PopplerQuadrilateral" title="PopplerQuadrilateral"><span class="type">PopplerQuadrilateral</span></a>. </p>
|
1964
1964
|
<p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> PopplerQuadrilateral][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1965
1965
|
</div>
|
1966
1966
|
<p class="since">Since: <a class="link" href="api-index-0-26.html#api-index-0.26">0.26</a></p>
|
@@ -1992,7 +1992,7 @@ line attached to the <em class="parameter"><code>poppler_annot</code></em>
|
|
1992
1992
|
<div class="refsect3">
|
1993
1993
|
<a name="id-1.2.7.8.40.6"></a><h4>Returns</h4>
|
1994
1994
|
<p> a new allocated <a class="link" href="PopplerAnnot.html#PopplerAnnotCalloutLine" title="PopplerAnnotCalloutLine"><span class="type">PopplerAnnotCalloutLine</span></a> if the annot has a callout
|
1995
|
-
line, <a href="
|
1995
|
+
line, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in other case. It must be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when
|
1996
1996
|
done.</p>
|
1997
1997
|
</div>
|
1998
1998
|
</div>
|
@@ -2059,7 +2059,7 @@ The <a class="link" href="PopplerAttachment.html" title="PopplerAttachment"><spa
|
|
2059
2059
|
<hr>
|
2060
2060
|
<div class="refsect2">
|
2061
2061
|
<a name="poppler-annot-file-attachment-get-name"></a><h3>poppler_annot_file_attachment_get_name ()</h3>
|
2062
|
-
<pre class="programlisting"><a href="
|
2062
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2063
2063
|
poppler_annot_file_attachment_get_name
|
2064
2064
|
(<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotFileAttachment" title="PopplerAnnotFileAttachment"><span class="type">PopplerAnnotFileAttachment</span></a> *poppler_annot</code></em>);</pre>
|
2065
2065
|
<p>Retrieves the name of <em class="parameter"><code>poppler_annot</code></em>
|
@@ -2083,7 +2083,7 @@ poppler_annot_file_attachment_get_name
|
|
2083
2083
|
<a name="id-1.2.7.8.43.6"></a><h4>Returns</h4>
|
2084
2084
|
<p> a new allocated string with the name of <em class="parameter"><code>poppler_annot</code></em>
|
2085
2085
|
. It must
|
2086
|
-
be freed with <a href="
|
2086
|
+
be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</p>
|
2087
2087
|
</div>
|
2088
2088
|
<p class="since">Since: <a class="link" href="api-index-0-14.html#api-index-0.14">0.14</a></p>
|
2089
2089
|
</div>
|
@@ -2152,7 +2152,7 @@ object is owned by <a class="link" href="PopplerAnnot.html#PopplerAnnotMovie" ti
|
|
2152
2152
|
<hr>
|
2153
2153
|
<div class="refsect2">
|
2154
2154
|
<a name="poppler-annot-movie-get-title"></a><h3>poppler_annot_movie_get_title ()</h3>
|
2155
|
-
<pre class="programlisting"><a href="
|
2155
|
+
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2156
2156
|
poppler_annot_movie_get_title (<em class="parameter"><code><a class="link" href="PopplerAnnot.html#PopplerAnnotMovie" title="PopplerAnnotMovie"><span class="type">PopplerAnnotMovie</span></a> *poppler_annot</code></em>);</pre>
|
2157
2157
|
<p>Retrieves the movie title of <em class="parameter"><code>poppler_annot</code></em>
|
2158
2158
|
.</p>
|
@@ -2186,7 +2186,7 @@ poppler_annot_callout_line_new (<em class="parameter"><code><span class="type">v
|
|
2186
2186
|
<p>Creates a new empty <a class="link" href="PopplerAnnot.html#PopplerAnnotCalloutLine" title="PopplerAnnotCalloutLine"><span class="type">PopplerAnnotCalloutLine</span></a>.</p>
|
2187
2187
|
<div class="refsect3">
|
2188
2188
|
<a name="id-1.2.7.8.47.5"></a><h4>Returns</h4>
|
2189
|
-
<p> a new allocated <a class="link" href="PopplerAnnot.html#PopplerAnnotCalloutLine" title="PopplerAnnotCalloutLine"><span class="type">PopplerAnnotCalloutLine</span></a>, <a href="
|
2189
|
+
<p> a new allocated <a class="link" href="PopplerAnnot.html#PopplerAnnotCalloutLine" title="PopplerAnnotCalloutLine"><span class="type">PopplerAnnotCalloutLine</span></a>, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in other case.
|
2190
2190
|
It must be freed when done.</p>
|
2191
2191
|
</div>
|
2192
2192
|
</div>
|
@@ -2216,7 +2216,7 @@ poppler_annot_callout_line_copy (<em class="parameter"><code><a class="link" hre
|
|
2216
2216
|
<a name="id-1.2.7.8.48.6"></a><h4>Returns</h4>
|
2217
2217
|
<p> a new allocated <a class="link" href="PopplerAnnot.html#PopplerAnnotCalloutLine" title="PopplerAnnotCalloutLine"><span class="type">PopplerAnnotCalloutLine</span></a> as exact copy of
|
2218
2218
|
<em class="parameter"><code>callout</code></em>
|
2219
|
-
, <a href="
|
2219
|
+
, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in other case. It must be freed when done.</p>
|
2220
2220
|
</div>
|
2221
2221
|
</div>
|
2222
2222
|
<hr>
|
@@ -2306,7 +2306,7 @@ poppler_annot_circle_get_interior_color
|
|
2306
2306
|
<a name="id-1.2.7.8.51.6"></a><h4>Returns</h4>
|
2307
2307
|
<p> a new allocated <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> with the color values of
|
2308
2308
|
<em class="parameter"><code>poppler_annot</code></em>
|
2309
|
-
, or <a href="
|
2309
|
+
, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. It must be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</p>
|
2310
2310
|
</div>
|
2311
2311
|
<p class="since">Since: <a class="link" href="api-index-0-26.html#api-index-0.26">0.26</a></p>
|
2312
2312
|
</div>
|
@@ -2335,7 +2335,7 @@ poppler_annot_circle_set_interior_color
|
|
2335
2335
|
</tr>
|
2336
2336
|
<tr>
|
2337
2337
|
<td class="parameter_name"><p>poppler_color</p></td>
|
2338
|
-
<td class="parameter_description"><p> a <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>, or <a href="
|
2338
|
+
<td class="parameter_description"><p> a <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
2339
2339
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2340
2340
|
</tr>
|
2341
2341
|
</tbody>
|
@@ -2496,7 +2496,7 @@ poppler_annot_square_get_interior_color
|
|
2496
2496
|
<a name="id-1.2.7.8.56.6"></a><h4>Returns</h4>
|
2497
2497
|
<p> a new allocated <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a> with the color values of
|
2498
2498
|
<em class="parameter"><code>poppler_annot</code></em>
|
2499
|
-
, or <a href="
|
2499
|
+
, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. It must be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</p>
|
2500
2500
|
</div>
|
2501
2501
|
<p class="since">Since: <a class="link" href="api-index-0-26.html#api-index-0.26">0.26</a></p>
|
2502
2502
|
</div>
|
@@ -2525,7 +2525,7 @@ poppler_annot_square_set_interior_color
|
|
2525
2525
|
</tr>
|
2526
2526
|
<tr>
|
2527
2527
|
<td class="parameter_name"><p>poppler_color</p></td>
|
2528
|
-
<td class="parameter_description"><p> a <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>, or <a href="
|
2528
|
+
<td class="parameter_description"><p> a <a class="link" href="poppler-PopplerColor.html#PopplerColor" title="PopplerColor"><span class="type">PopplerColor</span></a>, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
2529
2529
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2530
2530
|
</tr>
|
2531
2531
|
</tbody>
|
@@ -3110,12 +3110,12 @@ poppler_quadrilateral_free (<em class="parameter"><code><a class="link" href="Po
|
|
3110
3110
|
</colgroup>
|
3111
3111
|
<tbody>
|
3112
3112
|
<tr>
|
3113
|
-
<td class="struct_member_name"><p><a href="
|
3113
|
+
<td class="struct_member_name"><p><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="PopplerPoint.x"></a>x</code></em>;</p></td>
|
3114
3114
|
<td class="struct_member_description"><p>x coordinate</p></td>
|
3115
3115
|
<td class="struct_member_annotations"> </td>
|
3116
3116
|
</tr>
|
3117
3117
|
<tr>
|
3118
|
-
<td class="struct_member_name"><p><a href="
|
3118
|
+
<td class="struct_member_name"><p><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="PopplerPoint.y"></a>y</code></em>;</p></td>
|
3119
3119
|
<td class="struct_member_description"><p>y coordinate</p></td>
|
3120
3120
|
<td class="struct_member_annotations"> </td>
|
3121
3121
|
</tr>
|