poppler 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +1 -1
- data/Rakefile +69 -9
- data/ext/poppler/extconf.rb +5 -2
- data/ext/poppler/rbpoppler-action.c +242 -86
- data/ext/poppler/{rbpoppler-annotationcalloutline.c → rbpoppler-annotation-callout-line.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationfreetext.c → rbpoppler-annotation-free-text.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationmapping.c → rbpoppler-annotation-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationmarkup.c → rbpoppler-annotation-markup.c} +5 -4
- data/ext/poppler/{rbpoppler-annotationtext.c → rbpoppler-annotation-text.c} +2 -7
- data/ext/poppler/{rbpoppler-buttonfield.c → rbpoppler-button-field.c} +0 -0
- data/ext/poppler/{rbpoppler-choicefield.c → rbpoppler-choice-field.c} +0 -0
- data/ext/poppler/{rbpoppler-fontinfo.c → rbpoppler-font-info.c} +2 -8
- data/ext/poppler/{rbpoppler-fontsiter.c → rbpoppler-fonts-iter.c} +5 -6
- data/ext/poppler/{rbpoppler-formfieldmapping.c → rbpoppler-form-field-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-imagemapping.c → rbpoppler-image-mapping.c} +2 -7
- data/ext/poppler/{rbpoppler-indexiter.c → rbpoppler-index-iter.c} +2 -3
- data/ext/poppler/{rbpoppler-linkmapping.c → rbpoppler-link-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-pagetransition.c → rbpoppler-page-transition.c} +2 -3
- data/ext/poppler/rbpoppler-page.c +0 -29
- data/ext/poppler/rbpoppler-private.h +13 -13
- data/ext/poppler/{rbpoppler-psfile.c → rbpoppler-ps-file.c} +2 -3
- data/ext/poppler/{rbpoppler-textfield.c → rbpoppler-text-field.c} +0 -0
- data/ext/poppler/rbpoppler.c +14 -22
- data/ext/poppler/rbpoppler.h +3 -6
- data/ext/poppler/rbpopplerconversions.h +1 -1
- data/lib/1.9/poppler.so +0 -0
- data/lib/2.0/poppler.so +0 -0
- data/sample/pdf2.rb +46 -10
- data/test/fixtures/image.png +0 -0
- data/test/run-test.rb +7 -4
- data/test/test_page.rb +1 -0
- data/vendor/local/bin/cjpeg.exe +0 -0
- data/vendor/local/bin/djpeg.exe +0 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libjpeg-9.dll +0 -0
- data/vendor/local/bin/libpoppler-44.dll +0 -0
- data/vendor/local/bin/libpoppler-glib-8.dll +0 -0
- data/vendor/local/bin/libsqlite3-0.dll +0 -0
- data/vendor/local/bin/pdfdetach.exe +0 -0
- data/vendor/local/bin/pdffonts.exe +0 -0
- data/vendor/local/bin/pdfimages.exe +0 -0
- data/vendor/local/bin/pdfinfo.exe +0 -0
- data/vendor/local/bin/pdfseparate.exe +0 -0
- data/vendor/local/bin/pdftocairo.exe +0 -0
- data/vendor/local/bin/pdftohtml.exe +0 -0
- data/vendor/local/bin/pdftoppm.exe +0 -0
- data/vendor/local/bin/pdftops.exe +0 -0
- data/vendor/local/bin/pdftotext.exe +0 -0
- data/vendor/local/bin/pdfunite.exe +0 -0
- data/vendor/local/bin/rdjpgcom.exe +0 -0
- data/vendor/local/bin/sqlite3.exe +0 -0
- data/vendor/local/bin/wrjpgcom.exe +0 -0
- data/vendor/local/include/jconfig.h +8 -0
- data/vendor/local/include/jerror.h +2 -2
- data/vendor/local/include/jmorecfg.h +28 -7
- data/vendor/local/include/jpeglib.h +46 -8
- data/vendor/local/include/poppler/glib/poppler-action.h +156 -2
- data/vendor/local/include/poppler/glib/poppler-annot.h +57 -1
- data/vendor/local/include/poppler/glib/poppler-attachment.h +17 -0
- data/vendor/local/include/poppler/glib/poppler-document.h +133 -26
- data/vendor/local/include/poppler/glib/poppler-enums.h +8 -0
- data/vendor/local/include/poppler/glib/poppler-features.h +58 -4
- data/vendor/local/include/poppler/glib/poppler-form-field.h +4 -0
- data/vendor/local/include/poppler/glib/poppler-media.h +73 -0
- data/vendor/local/include/poppler/glib/poppler-movie.h +42 -0
- data/vendor/local/include/poppler/glib/poppler-page.h +133 -44
- data/vendor/local/include/poppler/glib/poppler.h +125 -24
- data/vendor/local/include/sqlite3.h +7338 -0
- data/vendor/local/include/sqlite3ext.h +487 -0
- data/vendor/local/lib/girepository-1.0/Poppler-0.18.typelib +0 -0
- data/vendor/local/lib/libjpeg.a +0 -0
- data/vendor/local/lib/libjpeg.dll.a +0 -0
- data/vendor/local/lib/libjpeg.la +41 -0
- data/vendor/local/lib/libpoppler-glib.a +0 -0
- data/vendor/local/lib/libpoppler-glib.dll.a +0 -0
- data/vendor/local/lib/libpoppler-glib.la +41 -0
- data/vendor/local/lib/libpoppler.a +0 -0
- data/vendor/local/lib/libpoppler.dll.a +0 -0
- data/vendor/local/lib/libpoppler.la +41 -0
- data/vendor/local/lib/libsqlite3.a +0 -0
- data/vendor/local/lib/libsqlite3.dll.a +0 -0
- data/vendor/local/lib/libsqlite3.la +41 -0
- data/vendor/local/lib/pkgconfig/poppler-cairo.pc +9 -0
- data/vendor/local/lib/pkgconfig/poppler-glib.pc +3 -3
- data/vendor/local/lib/pkgconfig/poppler-splash.pc +2 -2
- data/vendor/local/lib/pkgconfig/poppler.pc +1 -1
- data/vendor/local/lib/pkgconfig/sqlite3.pc +13 -0
- data/vendor/local/share/gir-1.0/Poppler-0.18.gir +5452 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAnnot.html +1671 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAttachment.html +214 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerDocument.html +2587 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerFormField.html +1070 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerLayer.html +228 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMedia.html +306 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMovie.html +156 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerPage.html +2132 -0
- data/vendor/local/share/gtk-doc/html/poppler/annotation-glossary.html +71 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-12.html +128 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-14.html +107 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-16.html +185 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-18.html +77 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-20.html +42 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-22.html +62 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-deprecated.html +42 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-full.html +1352 -0
- data/vendor/local/share/gtk-doc/html/poppler/ch01.html +21 -19
- data/vendor/local/share/gtk-doc/html/poppler/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/index.html +35 -18
- data/vendor/local/share/gtk-doc/html/poppler/index.sgml +548 -300
- data/vendor/local/share/gtk-doc/html/poppler/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerAction.html +662 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-Version-and-Features-Information.html +145 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler.html +319 -364
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp2 +506 -265
- data/vendor/local/share/gtk-doc/html/poppler/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/style.css +153 -54
- data/vendor/local/share/gtk-doc/html/poppler/up.png +0 -0
- data/vendor/local/share/license/poppler/AUTHORS +5 -0
- data/vendor/local/share/license/poppler/COPYING +339 -0
- data/vendor/local/share/man/man1/cjpeg.1 +51 -10
- data/vendor/local/share/man/man1/djpeg.1 +5 -4
- data/vendor/local/share/man/man1/jpegtran.1 +15 -2
- data/vendor/local/share/man/man1/pdfdetach.1 +86 -0
- data/vendor/local/share/man/man1/pdffonts.1 +16 -7
- data/vendor/local/share/man/man1/pdfimages.1 +114 -7
- data/vendor/local/share/man/man1/pdfinfo.1 +16 -7
- data/vendor/local/share/man/man1/pdfseparate.1 +49 -0
- data/vendor/local/share/man/man1/pdftocairo.1 +266 -0
- data/vendor/local/share/man/man1/pdftohtml.1 +30 -8
- data/vendor/local/share/man/man1/pdftoppm.1 +42 -12
- data/vendor/local/share/man/man1/pdftops.1 +26 -10
- data/vendor/local/share/man/man1/pdftotext.1 +18 -7
- data/vendor/local/share/man/man1/pdfunite.1 +33 -0
- data/vendor/local/share/man/man1/sqlite3.1 +229 -0
- metadata +107 -64
- data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
- data/vendor/local/bin/libjpeg-7.dll +0 -0
- data/vendor/local/bin/libpng12-0.dll +0 -0
- data/vendor/local/bin/libpoppler-5.dll +0 -0
- data/vendor/local/bin/libpoppler-glib-4.dll +0 -0
- data/vendor/local/include/libpng12/png.h +0 -3726
- data/vendor/local/include/libpng12/pngconf.h +0 -1508
- data/vendor/local/include/png.h +0 -3726
- data/vendor/local/include/pngconf.h +0 -1508
- data/vendor/local/lib/libpng.def +0 -366
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng12.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
- data/vendor/local/lib/pkgconfig/libpng12.pc +0 -11
- data/vendor/local/manifest/jpeg-dev_7-1_win32.mft +0 -18
- data/vendor/local/manifest/jpeg_7-1_win32.mft +0 -2
- data/vendor/local/manifest/libpng-dev_1.2.40-1_win32.mft +0 -15
- data/vendor/local/manifest/libpng_1.2.40-1_win32.mft +0 -2
- data/vendor/local/manifest/poppler-dev_0.12.0-1_win32.mft +0 -49
- data/vendor/local/manifest/poppler_0.12.0-1_win32.mft +0 -4
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-action.html +0 -386
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-annot.html +0 -854
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-attachment.html +0 -205
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-document.html +0 -1122
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-enums.html +0 -412
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-features.html +0 -143
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-form-field.html +0 -871
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-layer.html +0 -214
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-page.html +0 -1258
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp +0 -281
- data/vendor/local/share/man/man3/libpng.3 +0 -4349
- data/vendor/local/share/man/man3/libpngpf.3 +0 -790
- data/vendor/local/share/man/man5/png.5 +0 -74
- data/vendor/local/src/tml/packaging/jpeg_7-1_win32.log +0 -249
- data/vendor/local/src/tml/packaging/jpeg_7-1_win32.sh +0 -44
- data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.log +0 -269
- data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.sh +0 -63
@@ -1,386 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>PopplerAction</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
|
7
|
-
<link rel="start" href="index.html" title="Poppler Reference Manual">
|
8
|
-
<link rel="up" href="ch01.html" title="Poppler">
|
9
|
-
<link rel="prev" href="poppler-poppler-page.html" title="PopplerPage">
|
10
|
-
<link rel="next" href="poppler-poppler-attachment.html" title="PopplerAttachment">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.11 (XML mode)">
|
12
|
-
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="ch01.html" title="Poppler">
|
14
|
-
</head>
|
15
|
-
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
16
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
17
|
-
<tr valign="middle">
|
18
|
-
<td><a accesskey="p" href="poppler-poppler-page.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
19
|
-
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
20
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
21
|
-
<th width="100%" align="center">Poppler Reference Manual</th>
|
22
|
-
<td><a accesskey="n" href="poppler-poppler-attachment.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
23
|
-
</tr>
|
24
|
-
<tr><td colspan="5" class="shortcuts">
|
25
|
-
<a href="#poppler-poppler-action.synopsis" class="shortcut">Top</a>
|
26
|
-
|
|
27
|
-
<a href="#poppler-poppler-action.description" class="shortcut">Description</a>
|
28
|
-
</td></tr>
|
29
|
-
</table>
|
30
|
-
<div class="refentry" lang="en">
|
31
|
-
<a name="poppler-poppler-action"></a><div class="titlepage"></div>
|
32
|
-
<div class="refnamediv"><table width="100%"><tr>
|
33
|
-
<td valign="top">
|
34
|
-
<h2><span class="refentrytitle"><a name="poppler-poppler-action.top_of_page"></a>PopplerAction</span></h2>
|
35
|
-
<p>PopplerAction — Action links</p>
|
36
|
-
</td>
|
37
|
-
<td valign="top" align="right"></td>
|
38
|
-
</tr></table></div>
|
39
|
-
<div class="refsynopsisdiv">
|
40
|
-
<a name="poppler-poppler-action.synopsis"></a><h2>Synopsis</h2>
|
41
|
-
<pre class="synopsis">
|
42
|
-
enum <a class="link" href="poppler-poppler-action.html#PopplerActionType" title="enum PopplerActionType">PopplerActionType</a>;
|
43
|
-
enum <a class="link" href="poppler-poppler-action.html#PopplerDestType" title="enum PopplerDestType">PopplerDestType</a>;
|
44
|
-
<a class="link" href="poppler-poppler-action.html#PopplerActionAny" title="PopplerActionAny">PopplerActionAny</a>;
|
45
|
-
<a class="link" href="poppler-poppler-action.html#PopplerActionGotoDest" title="PopplerActionGotoDest">PopplerActionGotoDest</a>;
|
46
|
-
<a class="link" href="poppler-poppler-action.html#PopplerActionGotoRemote" title="PopplerActionGotoRemote">PopplerActionGotoRemote</a>;
|
47
|
-
<a class="link" href="poppler-poppler-action.html#PopplerActionLaunch" title="PopplerActionLaunch">PopplerActionLaunch</a>;
|
48
|
-
<a class="link" href="poppler-poppler-action.html#PopplerActionUri" title="PopplerActionUri">PopplerActionUri</a>;
|
49
|
-
<a class="link" href="poppler-poppler-action.html#PopplerActionNamed" title="PopplerActionNamed">PopplerActionNamed</a>;
|
50
|
-
<a class="link" href="poppler-poppler-action.html#PopplerActionMovie" title="PopplerActionMovie">PopplerActionMovie</a>;
|
51
|
-
<a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest">PopplerDest</a>;
|
52
|
-
union <a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction">PopplerAction</a>;
|
53
|
-
#define <a class="link" href="poppler-poppler-action.html#POPPLER-TYPE-ACTION--CAPS" title="POPPLER_TYPE_ACTION">POPPLER_TYPE_ACTION</a>
|
54
|
-
#define <a class="link" href="poppler-poppler-action.html#POPPLER-ACTION--CAPS" title="POPPLER_ACTION()">POPPLER_ACTION</a> (obj)
|
55
|
-
GType <a class="link" href="poppler-poppler-action.html#poppler-action-get-type" title="poppler_action_get_type ()">poppler_action_get_type</a> (void);
|
56
|
-
<a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction">PopplerAction</a> * <a class="link" href="poppler-poppler-action.html#poppler-action-copy" title="poppler_action_copy ()">poppler_action_copy</a> (<a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction">PopplerAction</a> *action);
|
57
|
-
void <a class="link" href="poppler-poppler-action.html#poppler-action-free" title="poppler_action_free ()">poppler_action_free</a> (<a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction">PopplerAction</a> *action);
|
58
|
-
#define <a class="link" href="poppler-poppler-action.html#POPPLER-TYPE-DEST--CAPS" title="POPPLER_TYPE_DEST">POPPLER_TYPE_DEST</a>
|
59
|
-
GType <a class="link" href="poppler-poppler-action.html#poppler-dest-get-type" title="poppler_dest_get_type ()">poppler_dest_get_type</a> (void);
|
60
|
-
<a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest">PopplerDest</a> * <a class="link" href="poppler-poppler-action.html#poppler-dest-copy" title="poppler_dest_copy ()">poppler_dest_copy</a> (<a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest">PopplerDest</a> *dest);
|
61
|
-
void <a class="link" href="poppler-poppler-action.html#poppler-dest-free" title="poppler_dest_free ()">poppler_dest_free</a> (<a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest">PopplerDest</a> *dest);
|
62
|
-
</pre>
|
63
|
-
</div>
|
64
|
-
<div class="refsect1" lang="en">
|
65
|
-
<a name="poppler-poppler-action.description"></a><h2>Description</h2>
|
66
|
-
<p>
|
67
|
-
</p>
|
68
|
-
</div>
|
69
|
-
<div class="refsect1" lang="en">
|
70
|
-
<a name="poppler-poppler-action.details"></a><h2>Details</h2>
|
71
|
-
<div class="refsect2" lang="en">
|
72
|
-
<a name="PopplerActionType"></a><h3>enum PopplerActionType</h3>
|
73
|
-
<pre class="programlisting">typedef enum
|
74
|
-
{
|
75
|
-
POPPLER_ACTION_UNKNOWN, /* unknown action */
|
76
|
-
POPPLER_ACTION_NONE, /* no action specified */
|
77
|
-
POPPLER_ACTION_GOTO_DEST, /* go to destination */
|
78
|
-
POPPLER_ACTION_GOTO_REMOTE, /* go to destination in new file */
|
79
|
-
POPPLER_ACTION_LAUNCH, /* launch app (or open document) */
|
80
|
-
POPPLER_ACTION_URI, /* URI */
|
81
|
-
POPPLER_ACTION_NAMED, /* named action*/
|
82
|
-
POPPLER_ACTION_MOVIE /* movie action */
|
83
|
-
} PopplerActionType;
|
84
|
-
</pre>
|
85
|
-
<p>
|
86
|
-
</p>
|
87
|
-
</div>
|
88
|
-
<hr>
|
89
|
-
<div class="refsect2" lang="en">
|
90
|
-
<a name="PopplerDestType"></a><h3>enum PopplerDestType</h3>
|
91
|
-
<pre class="programlisting">typedef enum
|
92
|
-
{
|
93
|
-
POPPLER_DEST_UNKNOWN,
|
94
|
-
POPPLER_DEST_XYZ,
|
95
|
-
POPPLER_DEST_FIT,
|
96
|
-
POPPLER_DEST_FITH,
|
97
|
-
POPPLER_DEST_FITV,
|
98
|
-
POPPLER_DEST_FITR,
|
99
|
-
POPPLER_DEST_FITB,
|
100
|
-
POPPLER_DEST_FITBH,
|
101
|
-
POPPLER_DEST_FITBV,
|
102
|
-
POPPLER_DEST_NAMED
|
103
|
-
} PopplerDestType;
|
104
|
-
</pre>
|
105
|
-
<p>
|
106
|
-
</p>
|
107
|
-
</div>
|
108
|
-
<hr>
|
109
|
-
<div class="refsect2" lang="en">
|
110
|
-
<a name="PopplerActionAny"></a><h3>PopplerActionAny</h3>
|
111
|
-
<pre class="programlisting">typedef struct {
|
112
|
-
PopplerActionType type;
|
113
|
-
gchar *title;
|
114
|
-
} PopplerActionAny;
|
115
|
-
</pre>
|
116
|
-
<p>
|
117
|
-
</p>
|
118
|
-
</div>
|
119
|
-
<hr>
|
120
|
-
<div class="refsect2" lang="en">
|
121
|
-
<a name="PopplerActionGotoDest"></a><h3>PopplerActionGotoDest</h3>
|
122
|
-
<pre class="programlisting">typedef struct {
|
123
|
-
PopplerActionType type;
|
124
|
-
gchar *title;
|
125
|
-
|
126
|
-
PopplerDest *dest;
|
127
|
-
} PopplerActionGotoDest;
|
128
|
-
</pre>
|
129
|
-
<p>
|
130
|
-
</p>
|
131
|
-
</div>
|
132
|
-
<hr>
|
133
|
-
<div class="refsect2" lang="en">
|
134
|
-
<a name="PopplerActionGotoRemote"></a><h3>PopplerActionGotoRemote</h3>
|
135
|
-
<pre class="programlisting">typedef struct {
|
136
|
-
PopplerActionType type;
|
137
|
-
gchar *title;
|
138
|
-
|
139
|
-
gchar *file_name;
|
140
|
-
PopplerDest *dest;
|
141
|
-
} PopplerActionGotoRemote;
|
142
|
-
</pre>
|
143
|
-
<p>
|
144
|
-
</p>
|
145
|
-
</div>
|
146
|
-
<hr>
|
147
|
-
<div class="refsect2" lang="en">
|
148
|
-
<a name="PopplerActionLaunch"></a><h3>PopplerActionLaunch</h3>
|
149
|
-
<pre class="programlisting">typedef struct {
|
150
|
-
PopplerActionType type;
|
151
|
-
gchar *title;
|
152
|
-
|
153
|
-
gchar *file_name;
|
154
|
-
gchar *params;
|
155
|
-
} PopplerActionLaunch;
|
156
|
-
</pre>
|
157
|
-
<p>
|
158
|
-
</p>
|
159
|
-
</div>
|
160
|
-
<hr>
|
161
|
-
<div class="refsect2" lang="en">
|
162
|
-
<a name="PopplerActionUri"></a><h3>PopplerActionUri</h3>
|
163
|
-
<pre class="programlisting">typedef struct {
|
164
|
-
PopplerActionType type;
|
165
|
-
gchar *title;
|
166
|
-
|
167
|
-
char *uri;
|
168
|
-
} PopplerActionUri;
|
169
|
-
</pre>
|
170
|
-
<p>
|
171
|
-
</p>
|
172
|
-
</div>
|
173
|
-
<hr>
|
174
|
-
<div class="refsect2" lang="en">
|
175
|
-
<a name="PopplerActionNamed"></a><h3>PopplerActionNamed</h3>
|
176
|
-
<pre class="programlisting">typedef struct {
|
177
|
-
PopplerActionType type;
|
178
|
-
gchar *title;
|
179
|
-
|
180
|
-
gchar *named_dest;
|
181
|
-
} PopplerActionNamed;
|
182
|
-
</pre>
|
183
|
-
<p>
|
184
|
-
</p>
|
185
|
-
</div>
|
186
|
-
<hr>
|
187
|
-
<div class="refsect2" lang="en">
|
188
|
-
<a name="PopplerActionMovie"></a><h3>PopplerActionMovie</h3>
|
189
|
-
<pre class="programlisting">typedef struct {
|
190
|
-
PopplerActionType type;
|
191
|
-
gchar *title;
|
192
|
-
} PopplerActionMovie;
|
193
|
-
</pre>
|
194
|
-
<p>
|
195
|
-
</p>
|
196
|
-
</div>
|
197
|
-
<hr>
|
198
|
-
<div class="refsect2" lang="en">
|
199
|
-
<a name="PopplerDest"></a><h3>PopplerDest</h3>
|
200
|
-
<pre class="programlisting">typedef struct {
|
201
|
-
PopplerDestType type;
|
202
|
-
|
203
|
-
int page_num;
|
204
|
-
double left;
|
205
|
-
double bottom;
|
206
|
-
double right;
|
207
|
-
double top;
|
208
|
-
double zoom;
|
209
|
-
gchar *named_dest;
|
210
|
-
guint change_left : 1;
|
211
|
-
guint change_top : 1;
|
212
|
-
guint change_zoom : 1;
|
213
|
-
} PopplerDest;
|
214
|
-
</pre>
|
215
|
-
<p>
|
216
|
-
</p>
|
217
|
-
</div>
|
218
|
-
<hr>
|
219
|
-
<div class="refsect2" lang="en">
|
220
|
-
<a name="PopplerAction"></a><h3>union PopplerAction</h3>
|
221
|
-
<pre class="programlisting">union PopplerAction
|
222
|
-
{
|
223
|
-
PopplerActionType type;
|
224
|
-
PopplerActionAny any;
|
225
|
-
PopplerActionGotoDest goto_dest;
|
226
|
-
PopplerActionGotoRemote goto_remote;
|
227
|
-
PopplerActionLaunch launch;
|
228
|
-
PopplerActionUri uri;
|
229
|
-
PopplerActionNamed named;
|
230
|
-
PopplerActionMovie movie;
|
231
|
-
};
|
232
|
-
</pre>
|
233
|
-
<p>
|
234
|
-
</p>
|
235
|
-
</div>
|
236
|
-
<hr>
|
237
|
-
<div class="refsect2" lang="en">
|
238
|
-
<a name="POPPLER-TYPE-ACTION--CAPS"></a><h3>POPPLER_TYPE_ACTION</h3>
|
239
|
-
<pre class="programlisting">#define POPPLER_TYPE_ACTION (poppler_action_get_type ())
|
240
|
-
</pre>
|
241
|
-
<p>
|
242
|
-
</p>
|
243
|
-
</div>
|
244
|
-
<hr>
|
245
|
-
<div class="refsect2" lang="en">
|
246
|
-
<a name="POPPLER-ACTION--CAPS"></a><h3>POPPLER_ACTION()</h3>
|
247
|
-
<pre class="programlisting">#define POPPLER_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), POPPLER_TYPE_ACTION, PopplerAction))
|
248
|
-
</pre>
|
249
|
-
<p>
|
250
|
-
</p>
|
251
|
-
<div class="variablelist"><table border="0">
|
252
|
-
<col align="left" valign="top">
|
253
|
-
<tbody><tr>
|
254
|
-
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
255
|
-
<td>
|
256
|
-
</td>
|
257
|
-
</tr></tbody>
|
258
|
-
</table></div>
|
259
|
-
</div>
|
260
|
-
<hr>
|
261
|
-
<div class="refsect2" lang="en">
|
262
|
-
<a name="poppler-action-get-type"></a><h3>poppler_action_get_type ()</h3>
|
263
|
-
<pre class="programlisting">GType poppler_action_get_type (void);</pre>
|
264
|
-
<p>
|
265
|
-
</p>
|
266
|
-
<div class="variablelist"><table border="0">
|
267
|
-
<col align="left" valign="top">
|
268
|
-
<tbody><tr>
|
269
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
270
|
-
<td>
|
271
|
-
</td>
|
272
|
-
</tr></tbody>
|
273
|
-
</table></div>
|
274
|
-
</div>
|
275
|
-
<hr>
|
276
|
-
<div class="refsect2" lang="en">
|
277
|
-
<a name="poppler-action-copy"></a><h3>poppler_action_copy ()</h3>
|
278
|
-
<pre class="programlisting"><a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction">PopplerAction</a> * poppler_action_copy (<a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction">PopplerAction</a> *action);</pre>
|
279
|
-
<p>
|
280
|
-
Copies <em class="parameter"><code>action</code></em>, creating an identical <a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a>.</p>
|
281
|
-
<p>
|
282
|
-
</p>
|
283
|
-
<div class="variablelist"><table border="0">
|
284
|
-
<col align="left" valign="top">
|
285
|
-
<tbody>
|
286
|
-
<tr>
|
287
|
-
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
|
288
|
-
<td> a <a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a>
|
289
|
-
</td>
|
290
|
-
</tr>
|
291
|
-
<tr>
|
292
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
293
|
-
<td> a new action identical to <em class="parameter"><code>action</code></em>
|
294
|
-
</td>
|
295
|
-
</tr>
|
296
|
-
</tbody>
|
297
|
-
</table></div>
|
298
|
-
</div>
|
299
|
-
<hr>
|
300
|
-
<div class="refsect2" lang="en">
|
301
|
-
<a name="poppler-action-free"></a><h3>poppler_action_free ()</h3>
|
302
|
-
<pre class="programlisting">void poppler_action_free (<a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction">PopplerAction</a> *action);</pre>
|
303
|
-
<p>
|
304
|
-
Frees <em class="parameter"><code>action</code></em></p>
|
305
|
-
<p>
|
306
|
-
</p>
|
307
|
-
<div class="variablelist"><table border="0">
|
308
|
-
<col align="left" valign="top">
|
309
|
-
<tbody><tr>
|
310
|
-
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
|
311
|
-
<td> a <a class="link" href="poppler-poppler-action.html#PopplerAction" title="union PopplerAction"><span class="type">PopplerAction</span></a>
|
312
|
-
</td>
|
313
|
-
</tr></tbody>
|
314
|
-
</table></div>
|
315
|
-
</div>
|
316
|
-
<hr>
|
317
|
-
<div class="refsect2" lang="en">
|
318
|
-
<a name="POPPLER-TYPE-DEST--CAPS"></a><h3>POPPLER_TYPE_DEST</h3>
|
319
|
-
<pre class="programlisting">#define POPPLER_TYPE_DEST (poppler_dest_get_type ())
|
320
|
-
</pre>
|
321
|
-
<p>
|
322
|
-
</p>
|
323
|
-
</div>
|
324
|
-
<hr>
|
325
|
-
<div class="refsect2" lang="en">
|
326
|
-
<a name="poppler-dest-get-type"></a><h3>poppler_dest_get_type ()</h3>
|
327
|
-
<pre class="programlisting">GType poppler_dest_get_type (void);</pre>
|
328
|
-
<p>
|
329
|
-
</p>
|
330
|
-
<div class="variablelist"><table border="0">
|
331
|
-
<col align="left" valign="top">
|
332
|
-
<tbody><tr>
|
333
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
334
|
-
<td>
|
335
|
-
</td>
|
336
|
-
</tr></tbody>
|
337
|
-
</table></div>
|
338
|
-
</div>
|
339
|
-
<hr>
|
340
|
-
<div class="refsect2" lang="en">
|
341
|
-
<a name="poppler-dest-copy"></a><h3>poppler_dest_copy ()</h3>
|
342
|
-
<pre class="programlisting"><a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest">PopplerDest</a> * poppler_dest_copy (<a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest">PopplerDest</a> *dest);</pre>
|
343
|
-
<p>
|
344
|
-
Copies <em class="parameter"><code>dest</code></em>, creating an identical <a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a>.</p>
|
345
|
-
<p>
|
346
|
-
</p>
|
347
|
-
<div class="variablelist"><table border="0">
|
348
|
-
<col align="left" valign="top">
|
349
|
-
<tbody>
|
350
|
-
<tr>
|
351
|
-
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
352
|
-
<td> a <a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a>
|
353
|
-
</td>
|
354
|
-
</tr>
|
355
|
-
<tr>
|
356
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
357
|
-
<td> a new destination identical to <em class="parameter"><code>dest</code></em>
|
358
|
-
</td>
|
359
|
-
</tr>
|
360
|
-
</tbody>
|
361
|
-
</table></div>
|
362
|
-
</div>
|
363
|
-
<hr>
|
364
|
-
<div class="refsect2" lang="en">
|
365
|
-
<a name="poppler-dest-free"></a><h3>poppler_dest_free ()</h3>
|
366
|
-
<pre class="programlisting">void poppler_dest_free (<a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest">PopplerDest</a> *dest);</pre>
|
367
|
-
<p>
|
368
|
-
Frees <em class="parameter"><code>dest</code></em></p>
|
369
|
-
<p>
|
370
|
-
</p>
|
371
|
-
<div class="variablelist"><table border="0">
|
372
|
-
<col align="left" valign="top">
|
373
|
-
<tbody><tr>
|
374
|
-
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
375
|
-
<td> a <a class="link" href="poppler-poppler-action.html#PopplerDest" title="PopplerDest"><span class="type">PopplerDest</span></a>
|
376
|
-
</td>
|
377
|
-
</tr></tbody>
|
378
|
-
</table></div>
|
379
|
-
</div>
|
380
|
-
</div>
|
381
|
-
</div>
|
382
|
-
<div class="footer">
|
383
|
-
<hr>
|
384
|
-
Generated by GTK-Doc V1.11</div>
|
385
|
-
</body>
|
386
|
-
</html>
|
@@ -1,854 +0,0 @@
|
|
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>PopplerAnnot</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
|
7
|
-
<link rel="start" href="index.html" title="Poppler Reference Manual">
|
8
|
-
<link rel="up" href="ch01.html" title="Poppler">
|
9
|
-
<link rel="prev" href="poppler-poppler-enums.html" title="poppler-enums">
|
10
|
-
<link rel="next" href="poppler-poppler-layer.html" title="PopplerLayer">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.11 (XML mode)">
|
12
|
-
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="ch01.html" title="Poppler">
|
14
|
-
</head>
|
15
|
-
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
16
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
17
|
-
<tr valign="middle">
|
18
|
-
<td><a accesskey="p" href="poppler-poppler-enums.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
19
|
-
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
20
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
21
|
-
<th width="100%" align="center">Poppler Reference Manual</th>
|
22
|
-
<td><a accesskey="n" href="poppler-poppler-layer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
23
|
-
</tr>
|
24
|
-
<tr><td colspan="5" class="shortcuts">
|
25
|
-
<a href="#poppler-poppler-annot.synopsis" class="shortcut">Top</a>
|
26
|
-
|
|
27
|
-
<a href="#poppler-poppler-annot.description" class="shortcut">Description</a>
|
28
|
-
</td></tr>
|
29
|
-
</table>
|
30
|
-
<div class="refentry" lang="en">
|
31
|
-
<a name="poppler-poppler-annot"></a><div class="titlepage"></div>
|
32
|
-
<div class="refnamediv"><table width="100%"><tr>
|
33
|
-
<td valign="top">
|
34
|
-
<h2><span class="refentrytitle"><a name="poppler-poppler-annot.top_of_page"></a>PopplerAnnot</span></h2>
|
35
|
-
<p>PopplerAnnot — Annotations</p>
|
36
|
-
</td>
|
37
|
-
<td valign="top" align="right"></td>
|
38
|
-
</tr></table></div>
|
39
|
-
<div class="refsynopsisdiv">
|
40
|
-
<a name="poppler-poppler-annot.synopsis"></a><h2>Synopsis</h2>
|
41
|
-
<pre class="synopsis">
|
42
|
-
<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a>;
|
43
|
-
PopplerAnnotCalloutLine * <a class="link" href="poppler-poppler-annot.html#poppler-annot-callout-line-copy" title="poppler_annot_callout_line_copy ()">poppler_annot_callout_line_copy</a>
|
44
|
-
(PopplerAnnotCalloutLine *callout);
|
45
|
-
void <a class="link" href="poppler-poppler-annot.html#poppler-annot-callout-line-free" title="poppler_annot_callout_line_free ()">poppler_annot_callout_line_free</a> (PopplerAnnotCalloutLine *callout);
|
46
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-callout-line-get-type" title="poppler_annot_callout_line_get_type ()">poppler_annot_callout_line_get_type</a> (void);
|
47
|
-
PopplerAnnotCalloutLine * <a class="link" href="poppler-poppler-annot.html#poppler-annot-callout-line-new" title="poppler_annot_callout_line_new ()">poppler_annot_callout_line_new</a>
|
48
|
-
(void);
|
49
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-external-data-type-get-type" title="poppler_annot_external_data_type_get_type ()">poppler_annot_external_data_type_get_type</a>
|
50
|
-
(void);
|
51
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-flag-get-type" title="poppler_annot_flag_get_type ()">poppler_annot_flag_get_type</a> (void);
|
52
|
-
PopplerAnnotCalloutLine * <a class="link" href="poppler-poppler-annot.html#poppler-annot-free-text-get-callout-line" title="poppler_annot_free_text_get_callout_line ()">poppler_annot_free_text_get_callout_line</a>
|
53
|
-
(PopplerAnnotFreeText *poppler_annot);
|
54
|
-
PopplerAnnotFreeTextQuadding <a class="link" href="poppler-poppler-annot.html#poppler-annot-free-text-get-quadding" title="poppler_annot_free_text_get_quadding ()">poppler_annot_free_text_get_quadding</a>
|
55
|
-
(PopplerAnnotFreeText *poppler_annot);
|
56
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-free-text-get-type" title="poppler_annot_free_text_get_type ()">poppler_annot_free_text_get_type</a> (void);
|
57
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-free-text-quadding-get-type" title="poppler_annot_free_text_quadding_get_type ()">poppler_annot_free_text_quadding_get_type</a>
|
58
|
-
(void);
|
59
|
-
PopplerAnnotType <a class="link" href="poppler-poppler-annot.html#poppler-annot-get-annot-type" title="poppler_annot_get_annot_type ()">poppler_annot_get_annot_type</a> (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);
|
60
|
-
PopplerColor * <a class="link" href="poppler-poppler-annot.html#poppler-annot-get-color" title="poppler_annot_get_color ()">poppler_annot_get_color</a> (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);
|
61
|
-
gchar * <a class="link" href="poppler-poppler-annot.html#poppler-annot-get-contents" title="poppler_annot_get_contents ()">poppler_annot_get_contents</a> (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);
|
62
|
-
PopplerAnnotFlag <a class="link" href="poppler-poppler-annot.html#poppler-annot-get-flags" title="poppler_annot_get_flags ()">poppler_annot_get_flags</a> (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);
|
63
|
-
gchar * <a class="link" href="poppler-poppler-annot.html#poppler-annot-get-modified" title="poppler_annot_get_modified ()">poppler_annot_get_modified</a> (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);
|
64
|
-
gchar * <a class="link" href="poppler-poppler-annot.html#poppler-annot-get-name" title="poppler_annot_get_name ()">poppler_annot_get_name</a> (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);
|
65
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-get-type" title="poppler_annot_get_type ()">poppler_annot_get_type</a> (void);
|
66
|
-
PopplerAnnotMapping * <a class="link" href="poppler-poppler-annot.html#poppler-annot-mapping-copy" title="poppler_annot_mapping_copy ()">poppler_annot_mapping_copy</a> (PopplerAnnotMapping *mapping);
|
67
|
-
void <a class="link" href="poppler-poppler-annot.html#poppler-annot-mapping-free" title="poppler_annot_mapping_free ()">poppler_annot_mapping_free</a> (PopplerAnnotMapping *mapping);
|
68
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-mapping-get-type" title="poppler_annot_mapping_get_type ()">poppler_annot_mapping_get_type</a> (void);
|
69
|
-
PopplerAnnotMapping * <a class="link" href="poppler-poppler-annot.html#poppler-annot-mapping-new" title="poppler_annot_mapping_new ()">poppler_annot_mapping_new</a> (void);
|
70
|
-
GDate * <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-date" title="poppler_annot_markup_get_date ()">poppler_annot_markup_get_date</a> (PopplerAnnotMarkup *poppler_annot);
|
71
|
-
PopplerAnnotExternalDataType <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-external-data" title="poppler_annot_markup_get_external_data ()">poppler_annot_markup_get_external_data</a>
|
72
|
-
(PopplerAnnotMarkup *poppler_annot);
|
73
|
-
gchar * <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-label" title="poppler_annot_markup_get_label ()">poppler_annot_markup_get_label</a> (PopplerAnnotMarkup *poppler_annot);
|
74
|
-
gdouble <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-opacity" title="poppler_annot_markup_get_opacity ()">poppler_annot_markup_get_opacity</a> (PopplerAnnotMarkup *poppler_annot);
|
75
|
-
gboolean <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-popup-is-open" title="poppler_annot_markup_get_popup_is_open ()">poppler_annot_markup_get_popup_is_open</a>
|
76
|
-
(PopplerAnnotMarkup *poppler_annot);
|
77
|
-
PopplerAnnotMarkupReplyType <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-reply-to" title="poppler_annot_markup_get_reply_to ()">poppler_annot_markup_get_reply_to</a>
|
78
|
-
(PopplerAnnotMarkup *poppler_annot);
|
79
|
-
gchar * <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-subject" title="poppler_annot_markup_get_subject ()">poppler_annot_markup_get_subject</a> (PopplerAnnotMarkup *poppler_annot);
|
80
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-get-type" title="poppler_annot_markup_get_type ()">poppler_annot_markup_get_type</a> (void);
|
81
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-markup-reply-type-get-type" title="poppler_annot_markup_reply_type_get_type ()">poppler_annot_markup_reply_type_get_type</a>
|
82
|
-
(void);
|
83
|
-
gchar * <a class="link" href="poppler-poppler-annot.html#poppler-annot-text-get-icon" title="poppler_annot_text_get_icon ()">poppler_annot_text_get_icon</a> (PopplerAnnotText *poppler_annot);
|
84
|
-
gboolean <a class="link" href="poppler-poppler-annot.html#poppler-annot-text-get-is-open" title="poppler_annot_text_get_is_open ()">poppler_annot_text_get_is_open</a> (PopplerAnnotText *poppler_annot);
|
85
|
-
PopplerAnnotTextState <a class="link" href="poppler-poppler-annot.html#poppler-annot-text-get-state" title="poppler_annot_text_get_state ()">poppler_annot_text_get_state</a> (PopplerAnnotText *poppler_annot);
|
86
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-text-get-type" title="poppler_annot_text_get_type ()">poppler_annot_text_get_type</a> (void);
|
87
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-text-state-get-type" title="poppler_annot_text_state_get_type ()">poppler_annot_text_state_get_type</a> (void);
|
88
|
-
GType <a class="link" href="poppler-poppler-annot.html#poppler-annot-type-get-type" title="poppler_annot_type_get_type ()">poppler_annot_type_get_type</a> (void);
|
89
|
-
</pre>
|
90
|
-
</div>
|
91
|
-
<div class="refsect1" lang="en">
|
92
|
-
<a name="poppler-poppler-annot.description"></a><h2>Description</h2>
|
93
|
-
<p>
|
94
|
-
</p>
|
95
|
-
</div>
|
96
|
-
<div class="refsect1" lang="en">
|
97
|
-
<a name="poppler-poppler-annot.details"></a><h2>Details</h2>
|
98
|
-
<div class="refsect2" lang="en">
|
99
|
-
<a name="PopplerAnnot"></a><h3>PopplerAnnot</h3>
|
100
|
-
<pre class="programlisting">typedef struct _PopplerAnnot PopplerAnnot;</pre>
|
101
|
-
<p>
|
102
|
-
</p>
|
103
|
-
</div>
|
104
|
-
<hr>
|
105
|
-
<div class="refsect2" lang="en">
|
106
|
-
<a name="poppler-annot-callout-line-copy"></a><h3>poppler_annot_callout_line_copy ()</h3>
|
107
|
-
<pre class="programlisting">PopplerAnnotCalloutLine * poppler_annot_callout_line_copy
|
108
|
-
(PopplerAnnotCalloutLine *callout);</pre>
|
109
|
-
<p>
|
110
|
-
It does copy <em class="parameter"><code>callout</code></em> to a new <span class="type">PopplerAnnotCalloutLine</span>.</p>
|
111
|
-
<p>
|
112
|
-
</p>
|
113
|
-
<div class="variablelist"><table border="0">
|
114
|
-
<col align="left" valign="top">
|
115
|
-
<tbody>
|
116
|
-
<tr>
|
117
|
-
<td><p><span class="term"><em class="parameter"><code>callout</code></em> :</span></p></td>
|
118
|
-
<td> the <span class="type">PopplerAnnotCalloutline</span> to be copied.
|
119
|
-
</td>
|
120
|
-
</tr>
|
121
|
-
<tr>
|
122
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
123
|
-
<td> a new allocated <span class="type">PopplerAnnotCalloutLine</span> as exact copy of
|
124
|
-
<em class="parameter"><code>callout</code></em>, NULL in other case. It must be freed when done.
|
125
|
-
</td>
|
126
|
-
</tr>
|
127
|
-
</tbody>
|
128
|
-
</table></div>
|
129
|
-
</div>
|
130
|
-
<hr>
|
131
|
-
<div class="refsect2" lang="en">
|
132
|
-
<a name="poppler-annot-callout-line-free"></a><h3>poppler_annot_callout_line_free ()</h3>
|
133
|
-
<pre class="programlisting">void poppler_annot_callout_line_free (PopplerAnnotCalloutLine *callout);</pre>
|
134
|
-
<p>
|
135
|
-
Frees the memory used by <span class="type">PopplerAnnotCalloutLine</span>.</p>
|
136
|
-
<p>
|
137
|
-
</p>
|
138
|
-
<div class="variablelist"><table border="0">
|
139
|
-
<col align="left" valign="top">
|
140
|
-
<tbody><tr>
|
141
|
-
<td><p><span class="term"><em class="parameter"><code>callout</code></em> :</span></p></td>
|
142
|
-
<td> a <span class="type">PopplerAnnotCalloutLine</span>
|
143
|
-
</td>
|
144
|
-
</tr></tbody>
|
145
|
-
</table></div>
|
146
|
-
</div>
|
147
|
-
<hr>
|
148
|
-
<div class="refsect2" lang="en">
|
149
|
-
<a name="poppler-annot-callout-line-get-type"></a><h3>poppler_annot_callout_line_get_type ()</h3>
|
150
|
-
<pre class="programlisting">GType poppler_annot_callout_line_get_type (void);</pre>
|
151
|
-
<p>
|
152
|
-
</p>
|
153
|
-
<div class="variablelist"><table border="0">
|
154
|
-
<col align="left" valign="top">
|
155
|
-
<tbody><tr>
|
156
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
157
|
-
<td>
|
158
|
-
</td>
|
159
|
-
</tr></tbody>
|
160
|
-
</table></div>
|
161
|
-
</div>
|
162
|
-
<hr>
|
163
|
-
<div class="refsect2" lang="en">
|
164
|
-
<a name="poppler-annot-callout-line-new"></a><h3>poppler_annot_callout_line_new ()</h3>
|
165
|
-
<pre class="programlisting">PopplerAnnotCalloutLine * poppler_annot_callout_line_new
|
166
|
-
(void);</pre>
|
167
|
-
<p>
|
168
|
-
Creates a new empty <span class="type">PopplerAnnotCalloutLine</span>.</p>
|
169
|
-
<p>
|
170
|
-
</p>
|
171
|
-
<div class="variablelist"><table border="0">
|
172
|
-
<col align="left" valign="top">
|
173
|
-
<tbody><tr>
|
174
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
175
|
-
<td> a new allocated <span class="type">PopplerAnnotCalloutLine</span>, NULL in other case.
|
176
|
-
It must be freed when done.
|
177
|
-
</td>
|
178
|
-
</tr></tbody>
|
179
|
-
</table></div>
|
180
|
-
</div>
|
181
|
-
<hr>
|
182
|
-
<div class="refsect2" lang="en">
|
183
|
-
<a name="poppler-annot-external-data-type-get-type"></a><h3>poppler_annot_external_data_type_get_type ()</h3>
|
184
|
-
<pre class="programlisting">GType poppler_annot_external_data_type_get_type
|
185
|
-
(void);</pre>
|
186
|
-
<p>
|
187
|
-
</p>
|
188
|
-
<div class="variablelist"><table border="0">
|
189
|
-
<col align="left" valign="top">
|
190
|
-
<tbody><tr>
|
191
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
192
|
-
<td>
|
193
|
-
</td>
|
194
|
-
</tr></tbody>
|
195
|
-
</table></div>
|
196
|
-
</div>
|
197
|
-
<hr>
|
198
|
-
<div class="refsect2" lang="en">
|
199
|
-
<a name="poppler-annot-flag-get-type"></a><h3>poppler_annot_flag_get_type ()</h3>
|
200
|
-
<pre class="programlisting">GType poppler_annot_flag_get_type (void);</pre>
|
201
|
-
<p>
|
202
|
-
</p>
|
203
|
-
<div class="variablelist"><table border="0">
|
204
|
-
<col align="left" valign="top">
|
205
|
-
<tbody><tr>
|
206
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
207
|
-
<td>
|
208
|
-
</td>
|
209
|
-
</tr></tbody>
|
210
|
-
</table></div>
|
211
|
-
</div>
|
212
|
-
<hr>
|
213
|
-
<div class="refsect2" lang="en">
|
214
|
-
<a name="poppler-annot-free-text-get-callout-line"></a><h3>poppler_annot_free_text_get_callout_line ()</h3>
|
215
|
-
<pre class="programlisting">PopplerAnnotCalloutLine * poppler_annot_free_text_get_callout_line
|
216
|
-
(PopplerAnnotFreeText *poppler_annot);</pre>
|
217
|
-
<p>
|
218
|
-
Retrieves a <span class="type">PopplerCalloutLine</span> of four or six numbers specifying a callout
|
219
|
-
line attached to the <em class="parameter"><code>poppler_annot</code></em>.</p>
|
220
|
-
<p>
|
221
|
-
</p>
|
222
|
-
<div class="variablelist"><table border="0">
|
223
|
-
<col align="left" valign="top">
|
224
|
-
<tbody>
|
225
|
-
<tr>
|
226
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
227
|
-
<td> a <span class="type">PopplerAnnotFreeText</span>
|
228
|
-
</td>
|
229
|
-
</tr>
|
230
|
-
<tr>
|
231
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
232
|
-
<td> a new allocated <span class="type">PopplerCalloutLine</span> if the annot has a callout
|
233
|
-
line, NULL in other case. It must be freed with <code class="function">g_free()</code> when
|
234
|
-
done.
|
235
|
-
</td>
|
236
|
-
</tr>
|
237
|
-
</tbody>
|
238
|
-
</table></div>
|
239
|
-
</div>
|
240
|
-
<hr>
|
241
|
-
<div class="refsect2" lang="en">
|
242
|
-
<a name="poppler-annot-free-text-get-quadding"></a><h3>poppler_annot_free_text_get_quadding ()</h3>
|
243
|
-
<pre class="programlisting">PopplerAnnotFreeTextQuadding poppler_annot_free_text_get_quadding
|
244
|
-
(PopplerAnnotFreeText *poppler_annot);</pre>
|
245
|
-
<p>
|
246
|
-
Retrieves the justification of the text of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
247
|
-
<p>
|
248
|
-
</p>
|
249
|
-
<div class="variablelist"><table border="0">
|
250
|
-
<col align="left" valign="top">
|
251
|
-
<tbody>
|
252
|
-
<tr>
|
253
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
254
|
-
<td> a <span class="type">PopplerAnnotFreeText</span>
|
255
|
-
</td>
|
256
|
-
</tr>
|
257
|
-
<tr>
|
258
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
259
|
-
<td> <span class="type">PopplerAnnotFreeTextQuadding</span> of <em class="parameter"><code>poppler_annot</code></em>.
|
260
|
-
</td>
|
261
|
-
</tr>
|
262
|
-
</tbody>
|
263
|
-
</table></div>
|
264
|
-
</div>
|
265
|
-
<hr>
|
266
|
-
<div class="refsect2" lang="en">
|
267
|
-
<a name="poppler-annot-free-text-get-type"></a><h3>poppler_annot_free_text_get_type ()</h3>
|
268
|
-
<pre class="programlisting">GType poppler_annot_free_text_get_type (void);</pre>
|
269
|
-
<p>
|
270
|
-
</p>
|
271
|
-
<div class="variablelist"><table border="0">
|
272
|
-
<col align="left" valign="top">
|
273
|
-
<tbody><tr>
|
274
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
275
|
-
<td>
|
276
|
-
</td>
|
277
|
-
</tr></tbody>
|
278
|
-
</table></div>
|
279
|
-
</div>
|
280
|
-
<hr>
|
281
|
-
<div class="refsect2" lang="en">
|
282
|
-
<a name="poppler-annot-free-text-quadding-get-type"></a><h3>poppler_annot_free_text_quadding_get_type ()</h3>
|
283
|
-
<pre class="programlisting">GType poppler_annot_free_text_quadding_get_type
|
284
|
-
(void);</pre>
|
285
|
-
<p>
|
286
|
-
</p>
|
287
|
-
<div class="variablelist"><table border="0">
|
288
|
-
<col align="left" valign="top">
|
289
|
-
<tbody><tr>
|
290
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
291
|
-
<td>
|
292
|
-
</td>
|
293
|
-
</tr></tbody>
|
294
|
-
</table></div>
|
295
|
-
</div>
|
296
|
-
<hr>
|
297
|
-
<div class="refsect2" lang="en">
|
298
|
-
<a name="poppler-annot-get-annot-type"></a><h3>poppler_annot_get_annot_type ()</h3>
|
299
|
-
<pre class="programlisting">PopplerAnnotType poppler_annot_get_annot_type (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);</pre>
|
300
|
-
<p>
|
301
|
-
Gets the type of <em class="parameter"><code>poppler_annot</code></em></p>
|
302
|
-
<p>
|
303
|
-
</p>
|
304
|
-
<div class="variablelist"><table border="0">
|
305
|
-
<col align="left" valign="top">
|
306
|
-
<tbody>
|
307
|
-
<tr>
|
308
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
309
|
-
<td> a <a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a>
|
310
|
-
</td>
|
311
|
-
</tr>
|
312
|
-
<tr>
|
313
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
314
|
-
<td> <span class="type">PopplerAnnotType</span> of <em class="parameter"><code>poppler_annot</code></em>.
|
315
|
-
</td>
|
316
|
-
</tr>
|
317
|
-
</tbody>
|
318
|
-
</table></div>
|
319
|
-
</div>
|
320
|
-
<hr>
|
321
|
-
<div class="refsect2" lang="en">
|
322
|
-
<a name="poppler-annot-get-color"></a><h3>poppler_annot_get_color ()</h3>
|
323
|
-
<pre class="programlisting">PopplerColor * poppler_annot_get_color (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);</pre>
|
324
|
-
<p>
|
325
|
-
Retrieves the color of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
326
|
-
<p>
|
327
|
-
</p>
|
328
|
-
<div class="variablelist"><table border="0">
|
329
|
-
<col align="left" valign="top">
|
330
|
-
<tbody>
|
331
|
-
<tr>
|
332
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
333
|
-
<td> a <a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a>
|
334
|
-
</td>
|
335
|
-
</tr>
|
336
|
-
<tr>
|
337
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
338
|
-
<td> a new allocated <span class="type">PopplerColor</span> with the color values of
|
339
|
-
<em class="parameter"><code>poppler_annot</code></em>, or <code class="literal">NULL</code>. It must be freed with <code class="function">g_free()</code> when done.
|
340
|
-
</td>
|
341
|
-
</tr>
|
342
|
-
</tbody>
|
343
|
-
</table></div>
|
344
|
-
</div>
|
345
|
-
<hr>
|
346
|
-
<div class="refsect2" lang="en">
|
347
|
-
<a name="poppler-annot-get-contents"></a><h3>poppler_annot_get_contents ()</h3>
|
348
|
-
<pre class="programlisting">gchar * poppler_annot_get_contents (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);</pre>
|
349
|
-
<p>
|
350
|
-
Retrieves the contents of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
351
|
-
<p>
|
352
|
-
</p>
|
353
|
-
<div class="variablelist"><table border="0">
|
354
|
-
<col align="left" valign="top">
|
355
|
-
<tbody>
|
356
|
-
<tr>
|
357
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
358
|
-
<td> a <a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a>
|
359
|
-
</td>
|
360
|
-
</tr>
|
361
|
-
<tr>
|
362
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
363
|
-
<td> a new allocated string with the contents of <em class="parameter"><code>poppler_annot</code></em>. It
|
364
|
-
must be freed with <code class="function">g_free()</code> when done.
|
365
|
-
</td>
|
366
|
-
</tr>
|
367
|
-
</tbody>
|
368
|
-
</table></div>
|
369
|
-
</div>
|
370
|
-
<hr>
|
371
|
-
<div class="refsect2" lang="en">
|
372
|
-
<a name="poppler-annot-get-flags"></a><h3>poppler_annot_get_flags ()</h3>
|
373
|
-
<pre class="programlisting">PopplerAnnotFlag poppler_annot_get_flags (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);</pre>
|
374
|
-
<p>
|
375
|
-
Retrieves the flag field specifying various characteristics of the
|
376
|
-
<em class="parameter"><code>poppler_annot</code></em>.</p>
|
377
|
-
<p>
|
378
|
-
</p>
|
379
|
-
<div class="variablelist"><table border="0">
|
380
|
-
<col align="left" valign="top">
|
381
|
-
<tbody>
|
382
|
-
<tr>
|
383
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
384
|
-
<td> a <a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a>
|
385
|
-
</td>
|
386
|
-
</tr>
|
387
|
-
<tr>
|
388
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
389
|
-
<td> the flag field of <em class="parameter"><code>poppler_annot</code></em>.
|
390
|
-
</td>
|
391
|
-
</tr>
|
392
|
-
</tbody>
|
393
|
-
</table></div>
|
394
|
-
</div>
|
395
|
-
<hr>
|
396
|
-
<div class="refsect2" lang="en">
|
397
|
-
<a name="poppler-annot-get-modified"></a><h3>poppler_annot_get_modified ()</h3>
|
398
|
-
<pre class="programlisting">gchar * poppler_annot_get_modified (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);</pre>
|
399
|
-
<p>
|
400
|
-
Retrieves the last modification data of <em class="parameter"><code>poppler_annot</code></em>. The returned
|
401
|
-
string will be either a PDF format date or a text string.
|
402
|
-
See also #<code class="function">poppler_date_parse()</code></p>
|
403
|
-
<p>
|
404
|
-
</p>
|
405
|
-
<div class="variablelist"><table border="0">
|
406
|
-
<col align="left" valign="top">
|
407
|
-
<tbody>
|
408
|
-
<tr>
|
409
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
410
|
-
<td> a <a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a>
|
411
|
-
</td>
|
412
|
-
</tr>
|
413
|
-
<tr>
|
414
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
415
|
-
<td> a new allocated string with the last modification data of
|
416
|
-
<em class="parameter"><code>poppler_annot</code></em>. It must be freed with <code class="function">g_free()</code> when done.
|
417
|
-
</td>
|
418
|
-
</tr>
|
419
|
-
</tbody>
|
420
|
-
</table></div>
|
421
|
-
</div>
|
422
|
-
<hr>
|
423
|
-
<div class="refsect2" lang="en">
|
424
|
-
<a name="poppler-annot-get-name"></a><h3>poppler_annot_get_name ()</h3>
|
425
|
-
<pre class="programlisting">gchar * poppler_annot_get_name (<a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot">PopplerAnnot</a> *poppler_annot);</pre>
|
426
|
-
<p>
|
427
|
-
Retrieves the name of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
428
|
-
<p>
|
429
|
-
</p>
|
430
|
-
<div class="variablelist"><table border="0">
|
431
|
-
<col align="left" valign="top">
|
432
|
-
<tbody>
|
433
|
-
<tr>
|
434
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
435
|
-
<td> a <a class="link" href="poppler-poppler-annot.html#PopplerAnnot" title="PopplerAnnot"><span class="type">PopplerAnnot</span></a>
|
436
|
-
</td>
|
437
|
-
</tr>
|
438
|
-
<tr>
|
439
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
440
|
-
<td> a new allocated string with the name of <em class="parameter"><code>poppler_annot</code></em>. It must
|
441
|
-
be freed with <code class="function">g_free()</code> when done.
|
442
|
-
</td>
|
443
|
-
</tr>
|
444
|
-
</tbody>
|
445
|
-
</table></div>
|
446
|
-
</div>
|
447
|
-
<hr>
|
448
|
-
<div class="refsect2" lang="en">
|
449
|
-
<a name="poppler-annot-get-type"></a><h3>poppler_annot_get_type ()</h3>
|
450
|
-
<pre class="programlisting">GType poppler_annot_get_type (void);</pre>
|
451
|
-
<p>
|
452
|
-
</p>
|
453
|
-
<div class="variablelist"><table border="0">
|
454
|
-
<col align="left" valign="top">
|
455
|
-
<tbody><tr>
|
456
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
457
|
-
<td>
|
458
|
-
</td>
|
459
|
-
</tr></tbody>
|
460
|
-
</table></div>
|
461
|
-
</div>
|
462
|
-
<hr>
|
463
|
-
<div class="refsect2" lang="en">
|
464
|
-
<a name="poppler-annot-mapping-copy"></a><h3>poppler_annot_mapping_copy ()</h3>
|
465
|
-
<pre class="programlisting">PopplerAnnotMapping * poppler_annot_mapping_copy (PopplerAnnotMapping *mapping);</pre>
|
466
|
-
<p>
|
467
|
-
</p>
|
468
|
-
<div class="variablelist"><table border="0">
|
469
|
-
<col align="left" valign="top">
|
470
|
-
<tbody>
|
471
|
-
<tr>
|
472
|
-
<td><p><span class="term"><em class="parameter"><code>mapping</code></em> :</span></p></td>
|
473
|
-
<td>
|
474
|
-
</td>
|
475
|
-
</tr>
|
476
|
-
<tr>
|
477
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
478
|
-
<td>
|
479
|
-
</td>
|
480
|
-
</tr>
|
481
|
-
</tbody>
|
482
|
-
</table></div>
|
483
|
-
</div>
|
484
|
-
<hr>
|
485
|
-
<div class="refsect2" lang="en">
|
486
|
-
<a name="poppler-annot-mapping-free"></a><h3>poppler_annot_mapping_free ()</h3>
|
487
|
-
<pre class="programlisting">void poppler_annot_mapping_free (PopplerAnnotMapping *mapping);</pre>
|
488
|
-
<p>
|
489
|
-
</p>
|
490
|
-
<div class="variablelist"><table border="0">
|
491
|
-
<col align="left" valign="top">
|
492
|
-
<tbody><tr>
|
493
|
-
<td><p><span class="term"><em class="parameter"><code>mapping</code></em> :</span></p></td>
|
494
|
-
<td>
|
495
|
-
</td>
|
496
|
-
</tr></tbody>
|
497
|
-
</table></div>
|
498
|
-
</div>
|
499
|
-
<hr>
|
500
|
-
<div class="refsect2" lang="en">
|
501
|
-
<a name="poppler-annot-mapping-get-type"></a><h3>poppler_annot_mapping_get_type ()</h3>
|
502
|
-
<pre class="programlisting">GType poppler_annot_mapping_get_type (void);</pre>
|
503
|
-
<p>
|
504
|
-
</p>
|
505
|
-
<div class="variablelist"><table border="0">
|
506
|
-
<col align="left" valign="top">
|
507
|
-
<tbody><tr>
|
508
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
509
|
-
<td>
|
510
|
-
</td>
|
511
|
-
</tr></tbody>
|
512
|
-
</table></div>
|
513
|
-
</div>
|
514
|
-
<hr>
|
515
|
-
<div class="refsect2" lang="en">
|
516
|
-
<a name="poppler-annot-mapping-new"></a><h3>poppler_annot_mapping_new ()</h3>
|
517
|
-
<pre class="programlisting">PopplerAnnotMapping * poppler_annot_mapping_new (void);</pre>
|
518
|
-
<p>
|
519
|
-
</p>
|
520
|
-
<div class="variablelist"><table border="0">
|
521
|
-
<col align="left" valign="top">
|
522
|
-
<tbody><tr>
|
523
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
524
|
-
<td>
|
525
|
-
</td>
|
526
|
-
</tr></tbody>
|
527
|
-
</table></div>
|
528
|
-
</div>
|
529
|
-
<hr>
|
530
|
-
<div class="refsect2" lang="en">
|
531
|
-
<a name="poppler-annot-markup-get-date"></a><h3>poppler_annot_markup_get_date ()</h3>
|
532
|
-
<pre class="programlisting">GDate * poppler_annot_markup_get_date (PopplerAnnotMarkup *poppler_annot);</pre>
|
533
|
-
<p>
|
534
|
-
</p>
|
535
|
-
<div class="variablelist"><table border="0">
|
536
|
-
<col align="left" valign="top">
|
537
|
-
<tbody>
|
538
|
-
<tr>
|
539
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
540
|
-
<td>
|
541
|
-
</td>
|
542
|
-
</tr>
|
543
|
-
<tr>
|
544
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
545
|
-
<td>
|
546
|
-
</td>
|
547
|
-
</tr>
|
548
|
-
</tbody>
|
549
|
-
</table></div>
|
550
|
-
</div>
|
551
|
-
<hr>
|
552
|
-
<div class="refsect2" lang="en">
|
553
|
-
<a name="poppler-annot-markup-get-external-data"></a><h3>poppler_annot_markup_get_external_data ()</h3>
|
554
|
-
<pre class="programlisting">PopplerAnnotExternalDataType poppler_annot_markup_get_external_data
|
555
|
-
(PopplerAnnotMarkup *poppler_annot);</pre>
|
556
|
-
<p>
|
557
|
-
Gets the external data type of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
558
|
-
<p>
|
559
|
-
</p>
|
560
|
-
<div class="variablelist"><table border="0">
|
561
|
-
<col align="left" valign="top">
|
562
|
-
<tbody>
|
563
|
-
<tr>
|
564
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
565
|
-
<td> a <span class="type">PopplerAnnotMarkup</span>
|
566
|
-
</td>
|
567
|
-
</tr>
|
568
|
-
<tr>
|
569
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
570
|
-
<td> <span class="type">PopplerAnnotExternalDataType</span> of <em class="parameter"><code>poppler_annot</code></em>.
|
571
|
-
</td>
|
572
|
-
</tr>
|
573
|
-
</tbody>
|
574
|
-
</table></div>
|
575
|
-
</div>
|
576
|
-
<hr>
|
577
|
-
<div class="refsect2" lang="en">
|
578
|
-
<a name="poppler-annot-markup-get-label"></a><h3>poppler_annot_markup_get_label ()</h3>
|
579
|
-
<pre class="programlisting">gchar * poppler_annot_markup_get_label (PopplerAnnotMarkup *poppler_annot);</pre>
|
580
|
-
<p>
|
581
|
-
Retrieves the label text of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
582
|
-
<p>
|
583
|
-
</p>
|
584
|
-
<div class="variablelist"><table border="0">
|
585
|
-
<col align="left" valign="top">
|
586
|
-
<tbody>
|
587
|
-
<tr>
|
588
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
589
|
-
<td> a <span class="type">PopplerAnnotMarkup</span>
|
590
|
-
</td>
|
591
|
-
</tr>
|
592
|
-
<tr>
|
593
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
594
|
-
<td> the label text of <em class="parameter"><code>poppler_annot</code></em>.
|
595
|
-
</td>
|
596
|
-
</tr>
|
597
|
-
</tbody>
|
598
|
-
</table></div>
|
599
|
-
</div>
|
600
|
-
<hr>
|
601
|
-
<div class="refsect2" lang="en">
|
602
|
-
<a name="poppler-annot-markup-get-opacity"></a><h3>poppler_annot_markup_get_opacity ()</h3>
|
603
|
-
<pre class="programlisting">gdouble poppler_annot_markup_get_opacity (PopplerAnnotMarkup *poppler_annot);</pre>
|
604
|
-
<p>
|
605
|
-
Retrieves the opacity value of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
606
|
-
<p>
|
607
|
-
</p>
|
608
|
-
<div class="variablelist"><table border="0">
|
609
|
-
<col align="left" valign="top">
|
610
|
-
<tbody>
|
611
|
-
<tr>
|
612
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
613
|
-
<td> a <span class="type">PopplerAnnotMarkup</span>
|
614
|
-
</td>
|
615
|
-
</tr>
|
616
|
-
<tr>
|
617
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
618
|
-
<td> the opacity value of <em class="parameter"><code>poppler_annot</code></em>.
|
619
|
-
</td>
|
620
|
-
</tr>
|
621
|
-
</tbody>
|
622
|
-
</table></div>
|
623
|
-
</div>
|
624
|
-
<hr>
|
625
|
-
<div class="refsect2" lang="en">
|
626
|
-
<a name="poppler-annot-markup-get-popup-is-open"></a><h3>poppler_annot_markup_get_popup_is_open ()</h3>
|
627
|
-
<pre class="programlisting">gboolean poppler_annot_markup_get_popup_is_open
|
628
|
-
(PopplerAnnotMarkup *poppler_annot);</pre>
|
629
|
-
<p>
|
630
|
-
Retrieves the state of the popup annot related to <em class="parameter"><code>poppler_annot</code></em>.</p>
|
631
|
-
<p>
|
632
|
-
</p>
|
633
|
-
<div class="variablelist"><table border="0">
|
634
|
-
<col align="left" valign="top">
|
635
|
-
<tbody>
|
636
|
-
<tr>
|
637
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
638
|
-
<td> a <span class="type">PopplerAnnotMarkup</span>
|
639
|
-
</td>
|
640
|
-
</tr>
|
641
|
-
<tr>
|
642
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
643
|
-
<td> the state of <em class="parameter"><code>poppler_annot</code></em>. <code class="literal">TRUE</code> if it's open, <code class="literal">FALSE</code> in
|
644
|
-
other case.
|
645
|
-
</td>
|
646
|
-
</tr>
|
647
|
-
</tbody>
|
648
|
-
</table></div>
|
649
|
-
</div>
|
650
|
-
<hr>
|
651
|
-
<div class="refsect2" lang="en">
|
652
|
-
<a name="poppler-annot-markup-get-reply-to"></a><h3>poppler_annot_markup_get_reply_to ()</h3>
|
653
|
-
<pre class="programlisting">PopplerAnnotMarkupReplyType poppler_annot_markup_get_reply_to
|
654
|
-
(PopplerAnnotMarkup *poppler_annot);</pre>
|
655
|
-
<p>
|
656
|
-
Gets the reply type of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
657
|
-
<p>
|
658
|
-
</p>
|
659
|
-
<div class="variablelist"><table border="0">
|
660
|
-
<col align="left" valign="top">
|
661
|
-
<tbody>
|
662
|
-
<tr>
|
663
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
664
|
-
<td> a <span class="type">PopplerAnnotMarkup</span>
|
665
|
-
</td>
|
666
|
-
</tr>
|
667
|
-
<tr>
|
668
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
669
|
-
<td> <span class="type">PopplerAnnotMarkupReplyType</span> of <em class="parameter"><code>poppler_annot</code></em>.
|
670
|
-
</td>
|
671
|
-
</tr>
|
672
|
-
</tbody>
|
673
|
-
</table></div>
|
674
|
-
</div>
|
675
|
-
<hr>
|
676
|
-
<div class="refsect2" lang="en">
|
677
|
-
<a name="poppler-annot-markup-get-subject"></a><h3>poppler_annot_markup_get_subject ()</h3>
|
678
|
-
<pre class="programlisting">gchar * poppler_annot_markup_get_subject (PopplerAnnotMarkup *poppler_annot);</pre>
|
679
|
-
<p>
|
680
|
-
Retrives the subject text of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
681
|
-
<p>
|
682
|
-
</p>
|
683
|
-
<div class="variablelist"><table border="0">
|
684
|
-
<col align="left" valign="top">
|
685
|
-
<tbody>
|
686
|
-
<tr>
|
687
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
688
|
-
<td> a <span class="type">PopplerAnnotMarkup</span>
|
689
|
-
</td>
|
690
|
-
</tr>
|
691
|
-
<tr>
|
692
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
693
|
-
<td> the subject text of <em class="parameter"><code>poppler_annot</code></em>.
|
694
|
-
</td>
|
695
|
-
</tr>
|
696
|
-
</tbody>
|
697
|
-
</table></div>
|
698
|
-
</div>
|
699
|
-
<hr>
|
700
|
-
<div class="refsect2" lang="en">
|
701
|
-
<a name="poppler-annot-markup-get-type"></a><h3>poppler_annot_markup_get_type ()</h3>
|
702
|
-
<pre class="programlisting">GType poppler_annot_markup_get_type (void);</pre>
|
703
|
-
<p>
|
704
|
-
</p>
|
705
|
-
<div class="variablelist"><table border="0">
|
706
|
-
<col align="left" valign="top">
|
707
|
-
<tbody><tr>
|
708
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
709
|
-
<td>
|
710
|
-
</td>
|
711
|
-
</tr></tbody>
|
712
|
-
</table></div>
|
713
|
-
</div>
|
714
|
-
<hr>
|
715
|
-
<div class="refsect2" lang="en">
|
716
|
-
<a name="poppler-annot-markup-reply-type-get-type"></a><h3>poppler_annot_markup_reply_type_get_type ()</h3>
|
717
|
-
<pre class="programlisting">GType poppler_annot_markup_reply_type_get_type
|
718
|
-
(void);</pre>
|
719
|
-
<p>
|
720
|
-
</p>
|
721
|
-
<div class="variablelist"><table border="0">
|
722
|
-
<col align="left" valign="top">
|
723
|
-
<tbody><tr>
|
724
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
725
|
-
<td>
|
726
|
-
</td>
|
727
|
-
</tr></tbody>
|
728
|
-
</table></div>
|
729
|
-
</div>
|
730
|
-
<hr>
|
731
|
-
<div class="refsect2" lang="en">
|
732
|
-
<a name="poppler-annot-text-get-icon"></a><h3>poppler_annot_text_get_icon ()</h3>
|
733
|
-
<pre class="programlisting">gchar * poppler_annot_text_get_icon (PopplerAnnotText *poppler_annot);</pre>
|
734
|
-
<p>
|
735
|
-
Gets the icon type of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
736
|
-
<p>
|
737
|
-
</p>
|
738
|
-
<div class="variablelist"><table border="0">
|
739
|
-
<col align="left" valign="top">
|
740
|
-
<tbody>
|
741
|
-
<tr>
|
742
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
743
|
-
<td> a <span class="type">PopplerAnnotText</span>
|
744
|
-
</td>
|
745
|
-
</tr>
|
746
|
-
<tr>
|
747
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
748
|
-
<td> <span class="type">PopplerAnnotTextIcon</span> of <em class="parameter"><code>poppler_annot</code></em>.
|
749
|
-
</td>
|
750
|
-
</tr>
|
751
|
-
</tbody>
|
752
|
-
</table></div>
|
753
|
-
</div>
|
754
|
-
<hr>
|
755
|
-
<div class="refsect2" lang="en">
|
756
|
-
<a name="poppler-annot-text-get-is-open"></a><h3>poppler_annot_text_get_is_open ()</h3>
|
757
|
-
<pre class="programlisting">gboolean poppler_annot_text_get_is_open (PopplerAnnotText *poppler_annot);</pre>
|
758
|
-
<p>
|
759
|
-
Retrieves the state of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
760
|
-
<p>
|
761
|
-
</p>
|
762
|
-
<div class="variablelist"><table border="0">
|
763
|
-
<col align="left" valign="top">
|
764
|
-
<tbody>
|
765
|
-
<tr>
|
766
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
767
|
-
<td> a <span class="type">PopplerAnnotText</span>
|
768
|
-
</td>
|
769
|
-
</tr>
|
770
|
-
<tr>
|
771
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
772
|
-
<td> the state of <em class="parameter"><code>poppler_annot</code></em>. <code class="literal">TRUE</code> if it's open, <code class="literal">FALSE</code> in
|
773
|
-
other case.
|
774
|
-
</td>
|
775
|
-
</tr>
|
776
|
-
</tbody>
|
777
|
-
</table></div>
|
778
|
-
</div>
|
779
|
-
<hr>
|
780
|
-
<div class="refsect2" lang="en">
|
781
|
-
<a name="poppler-annot-text-get-state"></a><h3>poppler_annot_text_get_state ()</h3>
|
782
|
-
<pre class="programlisting">PopplerAnnotTextState poppler_annot_text_get_state (PopplerAnnotText *poppler_annot);</pre>
|
783
|
-
<p>
|
784
|
-
Retrieves the state of <em class="parameter"><code>poppler_annot</code></em>.</p>
|
785
|
-
<p>
|
786
|
-
</p>
|
787
|
-
<div class="variablelist"><table border="0">
|
788
|
-
<col align="left" valign="top">
|
789
|
-
<tbody>
|
790
|
-
<tr>
|
791
|
-
<td><p><span class="term"><em class="parameter"><code>poppler_annot</code></em> :</span></p></td>
|
792
|
-
<td> a <span class="type">PopplerAnnotText</span>
|
793
|
-
</td>
|
794
|
-
</tr>
|
795
|
-
<tr>
|
796
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
797
|
-
<td> <span class="type">PopplerAnnotTextState</span> of <em class="parameter"><code>poppler_annot</code></em>.
|
798
|
-
</td>
|
799
|
-
</tr>
|
800
|
-
</tbody>
|
801
|
-
</table></div>
|
802
|
-
</div>
|
803
|
-
<hr>
|
804
|
-
<div class="refsect2" lang="en">
|
805
|
-
<a name="poppler-annot-text-get-type"></a><h3>poppler_annot_text_get_type ()</h3>
|
806
|
-
<pre class="programlisting">GType poppler_annot_text_get_type (void);</pre>
|
807
|
-
<p>
|
808
|
-
</p>
|
809
|
-
<div class="variablelist"><table border="0">
|
810
|
-
<col align="left" valign="top">
|
811
|
-
<tbody><tr>
|
812
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
813
|
-
<td>
|
814
|
-
</td>
|
815
|
-
</tr></tbody>
|
816
|
-
</table></div>
|
817
|
-
</div>
|
818
|
-
<hr>
|
819
|
-
<div class="refsect2" lang="en">
|
820
|
-
<a name="poppler-annot-text-state-get-type"></a><h3>poppler_annot_text_state_get_type ()</h3>
|
821
|
-
<pre class="programlisting">GType poppler_annot_text_state_get_type (void);</pre>
|
822
|
-
<p>
|
823
|
-
</p>
|
824
|
-
<div class="variablelist"><table border="0">
|
825
|
-
<col align="left" valign="top">
|
826
|
-
<tbody><tr>
|
827
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
828
|
-
<td>
|
829
|
-
</td>
|
830
|
-
</tr></tbody>
|
831
|
-
</table></div>
|
832
|
-
</div>
|
833
|
-
<hr>
|
834
|
-
<div class="refsect2" lang="en">
|
835
|
-
<a name="poppler-annot-type-get-type"></a><h3>poppler_annot_type_get_type ()</h3>
|
836
|
-
<pre class="programlisting">GType poppler_annot_type_get_type (void);</pre>
|
837
|
-
<p>
|
838
|
-
</p>
|
839
|
-
<div class="variablelist"><table border="0">
|
840
|
-
<col align="left" valign="top">
|
841
|
-
<tbody><tr>
|
842
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
843
|
-
<td>
|
844
|
-
</td>
|
845
|
-
</tr></tbody>
|
846
|
-
</table></div>
|
847
|
-
</div>
|
848
|
-
</div>
|
849
|
-
</div>
|
850
|
-
<div class="footer">
|
851
|
-
<hr>
|
852
|
-
Generated by GTK-Doc V1.11</div>
|
853
|
-
</body>
|
854
|
-
</html>
|