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,412 +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>poppler-enums</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-form-field.html" title="PopplerFormField">
|
10
|
-
<link rel="next" href="poppler-poppler-annot.html" title="PopplerAnnot">
|
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-form-field.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-annot.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-enums.synopsis" class="shortcut">Top</a>
|
26
|
-
|
|
27
|
-
<a href="#poppler-poppler-enums.description" class="shortcut">Description</a>
|
28
|
-
</td></tr>
|
29
|
-
</table>
|
30
|
-
<div class="refentry" lang="en">
|
31
|
-
<a name="poppler-poppler-enums"></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-enums.top_of_page"></a>poppler-enums</span></h2>
|
35
|
-
<p>poppler-enums</p>
|
36
|
-
</td>
|
37
|
-
<td valign="top" align="right"></td>
|
38
|
-
</tr></table></div>
|
39
|
-
<div class="refsynopsisdiv">
|
40
|
-
<a name="poppler-poppler-enums.synopsis"></a><h2>Synopsis</h2>
|
41
|
-
<pre class="synopsis">
|
42
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-ACTION-TYPE--CAPS" title="POPPLER_TYPE_ACTION_TYPE">POPPLER_TYPE_ACTION_TYPE</a>
|
43
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-action-type-get-type" title="poppler_action_type_get_type ()">poppler_action_type_get_type</a> (void);
|
44
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-DEST-TYPE--CAPS" title="POPPLER_TYPE_DEST_TYPE">POPPLER_TYPE_DEST_TYPE</a>
|
45
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-dest-type-get-type" title="poppler_dest_type_get_type ()">poppler_dest_type_get_type</a> (void);
|
46
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-PAGE-LAYOUT--CAPS" title="POPPLER_TYPE_PAGE_LAYOUT">POPPLER_TYPE_PAGE_LAYOUT</a>
|
47
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-page-layout-get-type" title="poppler_page_layout_get_type ()">poppler_page_layout_get_type</a> (void);
|
48
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-PAGE-MODE--CAPS" title="POPPLER_TYPE_PAGE_MODE">POPPLER_TYPE_PAGE_MODE</a>
|
49
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-page-mode-get-type" title="poppler_page_mode_get_type ()">poppler_page_mode_get_type</a> (void);
|
50
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-FONT-TYPE--CAPS" title="POPPLER_TYPE_FONT_TYPE">POPPLER_TYPE_FONT_TYPE</a>
|
51
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-font-type-get-type" title="poppler_font_type_get_type ()">poppler_font_type_get_type</a> (void);
|
52
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-VIEWER-PREFERENCES--CAPS" title="POPPLER_TYPE_VIEWER_PREFERENCES">POPPLER_TYPE_VIEWER_PREFERENCES</a>
|
53
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-viewer-preferences-get-type" title="poppler_viewer_preferences_get_type ()">poppler_viewer_preferences_get_type</a> (void);
|
54
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-PERMISSIONS--CAPS" title="POPPLER_TYPE_PERMISSIONS">POPPLER_TYPE_PERMISSIONS</a>
|
55
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-permissions-get-type" title="poppler_permissions_get_type ()">poppler_permissions_get_type</a> (void);
|
56
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-SELECTION-STYLE--CAPS" title="POPPLER_TYPE_SELECTION_STYLE">POPPLER_TYPE_SELECTION_STYLE</a>
|
57
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-selection-style-get-type" title="poppler_selection_style_get_type ()">poppler_selection_style_get_type</a> (void);
|
58
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-PAGE-TRANSITION-TYPE--CAPS" title="POPPLER_TYPE_PAGE_TRANSITION_TYPE">POPPLER_TYPE_PAGE_TRANSITION_TYPE</a>
|
59
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-page-transition-type-get-type" title="poppler_page_transition_type_get_type ()">poppler_page_transition_type_get_type</a>
|
60
|
-
(void);
|
61
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-PAGE-TRANSITION-ALIGNMENT--CAPS" title="POPPLER_TYPE_PAGE_TRANSITION_ALIGNMENT">POPPLER_TYPE_PAGE_TRANSITION_ALIGNMENT</a>
|
62
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-page-transition-alignment-get-type" title="poppler_page_transition_alignment_get_type ()">poppler_page_transition_alignment_get_type</a>
|
63
|
-
(void);
|
64
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-PAGE-TRANSITION-DIRECTION--CAPS" title="POPPLER_TYPE_PAGE_TRANSITION_DIRECTION">POPPLER_TYPE_PAGE_TRANSITION_DIRECTION</a>
|
65
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-page-transition-direction-get-type" title="poppler_page_transition_direction_get_type ()">poppler_page_transition_direction_get_type</a>
|
66
|
-
(void);
|
67
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-ERROR--CAPS" title="POPPLER_TYPE_ERROR">POPPLER_TYPE_ERROR</a>
|
68
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-error-get-type" title="poppler_error_get_type ()">poppler_error_get_type</a> (void);
|
69
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-ORIENTATION--CAPS" title="POPPLER_TYPE_ORIENTATION">POPPLER_TYPE_ORIENTATION</a>
|
70
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-orientation-get-type" title="poppler_orientation_get_type ()">poppler_orientation_get_type</a> (void);
|
71
|
-
#define <a class="link" href="poppler-poppler-enums.html#POPPLER-TYPE-BACKEND--CAPS" title="POPPLER_TYPE_BACKEND">POPPLER_TYPE_BACKEND</a>
|
72
|
-
GType <a class="link" href="poppler-poppler-enums.html#poppler-backend-get-type" title="poppler_backend_get_type ()">poppler_backend_get_type</a> (void);
|
73
|
-
</pre>
|
74
|
-
</div>
|
75
|
-
<div class="refsect1" lang="en">
|
76
|
-
<a name="poppler-poppler-enums.description"></a><h2>Description</h2>
|
77
|
-
<p>
|
78
|
-
</p>
|
79
|
-
</div>
|
80
|
-
<div class="refsect1" lang="en">
|
81
|
-
<a name="poppler-poppler-enums.details"></a><h2>Details</h2>
|
82
|
-
<div class="refsect2" lang="en">
|
83
|
-
<a name="POPPLER-TYPE-ACTION-TYPE--CAPS"></a><h3>POPPLER_TYPE_ACTION_TYPE</h3>
|
84
|
-
<pre class="programlisting">#define POPPLER_TYPE_ACTION_TYPE (poppler_action_type_get_type ())
|
85
|
-
</pre>
|
86
|
-
<p>
|
87
|
-
</p>
|
88
|
-
</div>
|
89
|
-
<hr>
|
90
|
-
<div class="refsect2" lang="en">
|
91
|
-
<a name="poppler-action-type-get-type"></a><h3>poppler_action_type_get_type ()</h3>
|
92
|
-
<pre class="programlisting">GType poppler_action_type_get_type (void);</pre>
|
93
|
-
<p>
|
94
|
-
</p>
|
95
|
-
<div class="variablelist"><table border="0">
|
96
|
-
<col align="left" valign="top">
|
97
|
-
<tbody><tr>
|
98
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
99
|
-
<td>
|
100
|
-
</td>
|
101
|
-
</tr></tbody>
|
102
|
-
</table></div>
|
103
|
-
</div>
|
104
|
-
<hr>
|
105
|
-
<div class="refsect2" lang="en">
|
106
|
-
<a name="POPPLER-TYPE-DEST-TYPE--CAPS"></a><h3>POPPLER_TYPE_DEST_TYPE</h3>
|
107
|
-
<pre class="programlisting">#define POPPLER_TYPE_DEST_TYPE (poppler_dest_type_get_type ())
|
108
|
-
</pre>
|
109
|
-
<p>
|
110
|
-
</p>
|
111
|
-
</div>
|
112
|
-
<hr>
|
113
|
-
<div class="refsect2" lang="en">
|
114
|
-
<a name="poppler-dest-type-get-type"></a><h3>poppler_dest_type_get_type ()</h3>
|
115
|
-
<pre class="programlisting">GType poppler_dest_type_get_type (void);</pre>
|
116
|
-
<p>
|
117
|
-
</p>
|
118
|
-
<div class="variablelist"><table border="0">
|
119
|
-
<col align="left" valign="top">
|
120
|
-
<tbody><tr>
|
121
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
122
|
-
<td>
|
123
|
-
</td>
|
124
|
-
</tr></tbody>
|
125
|
-
</table></div>
|
126
|
-
</div>
|
127
|
-
<hr>
|
128
|
-
<div class="refsect2" lang="en">
|
129
|
-
<a name="POPPLER-TYPE-PAGE-LAYOUT--CAPS"></a><h3>POPPLER_TYPE_PAGE_LAYOUT</h3>
|
130
|
-
<pre class="programlisting">#define POPPLER_TYPE_PAGE_LAYOUT (poppler_page_layout_get_type ())
|
131
|
-
</pre>
|
132
|
-
<p>
|
133
|
-
</p>
|
134
|
-
</div>
|
135
|
-
<hr>
|
136
|
-
<div class="refsect2" lang="en">
|
137
|
-
<a name="poppler-page-layout-get-type"></a><h3>poppler_page_layout_get_type ()</h3>
|
138
|
-
<pre class="programlisting">GType poppler_page_layout_get_type (void);</pre>
|
139
|
-
<p>
|
140
|
-
</p>
|
141
|
-
<div class="variablelist"><table border="0">
|
142
|
-
<col align="left" valign="top">
|
143
|
-
<tbody><tr>
|
144
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
145
|
-
<td>
|
146
|
-
</td>
|
147
|
-
</tr></tbody>
|
148
|
-
</table></div>
|
149
|
-
</div>
|
150
|
-
<hr>
|
151
|
-
<div class="refsect2" lang="en">
|
152
|
-
<a name="POPPLER-TYPE-PAGE-MODE--CAPS"></a><h3>POPPLER_TYPE_PAGE_MODE</h3>
|
153
|
-
<pre class="programlisting">#define POPPLER_TYPE_PAGE_MODE (poppler_page_mode_get_type ())
|
154
|
-
</pre>
|
155
|
-
<p>
|
156
|
-
</p>
|
157
|
-
</div>
|
158
|
-
<hr>
|
159
|
-
<div class="refsect2" lang="en">
|
160
|
-
<a name="poppler-page-mode-get-type"></a><h3>poppler_page_mode_get_type ()</h3>
|
161
|
-
<pre class="programlisting">GType poppler_page_mode_get_type (void);</pre>
|
162
|
-
<p>
|
163
|
-
</p>
|
164
|
-
<div class="variablelist"><table border="0">
|
165
|
-
<col align="left" valign="top">
|
166
|
-
<tbody><tr>
|
167
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
168
|
-
<td>
|
169
|
-
</td>
|
170
|
-
</tr></tbody>
|
171
|
-
</table></div>
|
172
|
-
</div>
|
173
|
-
<hr>
|
174
|
-
<div class="refsect2" lang="en">
|
175
|
-
<a name="POPPLER-TYPE-FONT-TYPE--CAPS"></a><h3>POPPLER_TYPE_FONT_TYPE</h3>
|
176
|
-
<pre class="programlisting">#define POPPLER_TYPE_FONT_TYPE (poppler_font_type_get_type ())
|
177
|
-
</pre>
|
178
|
-
<p>
|
179
|
-
</p>
|
180
|
-
</div>
|
181
|
-
<hr>
|
182
|
-
<div class="refsect2" lang="en">
|
183
|
-
<a name="poppler-font-type-get-type"></a><h3>poppler_font_type_get_type ()</h3>
|
184
|
-
<pre class="programlisting">GType poppler_font_type_get_type (void);</pre>
|
185
|
-
<p>
|
186
|
-
</p>
|
187
|
-
<div class="variablelist"><table border="0">
|
188
|
-
<col align="left" valign="top">
|
189
|
-
<tbody><tr>
|
190
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
191
|
-
<td>
|
192
|
-
</td>
|
193
|
-
</tr></tbody>
|
194
|
-
</table></div>
|
195
|
-
</div>
|
196
|
-
<hr>
|
197
|
-
<div class="refsect2" lang="en">
|
198
|
-
<a name="POPPLER-TYPE-VIEWER-PREFERENCES--CAPS"></a><h3>POPPLER_TYPE_VIEWER_PREFERENCES</h3>
|
199
|
-
<pre class="programlisting">#define POPPLER_TYPE_VIEWER_PREFERENCES (poppler_viewer_preferences_get_type ())
|
200
|
-
</pre>
|
201
|
-
<p>
|
202
|
-
</p>
|
203
|
-
</div>
|
204
|
-
<hr>
|
205
|
-
<div class="refsect2" lang="en">
|
206
|
-
<a name="poppler-viewer-preferences-get-type"></a><h3>poppler_viewer_preferences_get_type ()</h3>
|
207
|
-
<pre class="programlisting">GType poppler_viewer_preferences_get_type (void);</pre>
|
208
|
-
<p>
|
209
|
-
</p>
|
210
|
-
<div class="variablelist"><table border="0">
|
211
|
-
<col align="left" valign="top">
|
212
|
-
<tbody><tr>
|
213
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
214
|
-
<td>
|
215
|
-
</td>
|
216
|
-
</tr></tbody>
|
217
|
-
</table></div>
|
218
|
-
</div>
|
219
|
-
<hr>
|
220
|
-
<div class="refsect2" lang="en">
|
221
|
-
<a name="POPPLER-TYPE-PERMISSIONS--CAPS"></a><h3>POPPLER_TYPE_PERMISSIONS</h3>
|
222
|
-
<pre class="programlisting">#define POPPLER_TYPE_PERMISSIONS (poppler_permissions_get_type ())
|
223
|
-
</pre>
|
224
|
-
<p>
|
225
|
-
</p>
|
226
|
-
</div>
|
227
|
-
<hr>
|
228
|
-
<div class="refsect2" lang="en">
|
229
|
-
<a name="poppler-permissions-get-type"></a><h3>poppler_permissions_get_type ()</h3>
|
230
|
-
<pre class="programlisting">GType poppler_permissions_get_type (void);</pre>
|
231
|
-
<p>
|
232
|
-
</p>
|
233
|
-
<div class="variablelist"><table border="0">
|
234
|
-
<col align="left" valign="top">
|
235
|
-
<tbody><tr>
|
236
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
237
|
-
<td>
|
238
|
-
</td>
|
239
|
-
</tr></tbody>
|
240
|
-
</table></div>
|
241
|
-
</div>
|
242
|
-
<hr>
|
243
|
-
<div class="refsect2" lang="en">
|
244
|
-
<a name="POPPLER-TYPE-SELECTION-STYLE--CAPS"></a><h3>POPPLER_TYPE_SELECTION_STYLE</h3>
|
245
|
-
<pre class="programlisting">#define POPPLER_TYPE_SELECTION_STYLE (poppler_selection_style_get_type ())
|
246
|
-
</pre>
|
247
|
-
<p>
|
248
|
-
</p>
|
249
|
-
</div>
|
250
|
-
<hr>
|
251
|
-
<div class="refsect2" lang="en">
|
252
|
-
<a name="poppler-selection-style-get-type"></a><h3>poppler_selection_style_get_type ()</h3>
|
253
|
-
<pre class="programlisting">GType poppler_selection_style_get_type (void);</pre>
|
254
|
-
<p>
|
255
|
-
</p>
|
256
|
-
<div class="variablelist"><table border="0">
|
257
|
-
<col align="left" valign="top">
|
258
|
-
<tbody><tr>
|
259
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
260
|
-
<td>
|
261
|
-
</td>
|
262
|
-
</tr></tbody>
|
263
|
-
</table></div>
|
264
|
-
</div>
|
265
|
-
<hr>
|
266
|
-
<div class="refsect2" lang="en">
|
267
|
-
<a name="POPPLER-TYPE-PAGE-TRANSITION-TYPE--CAPS"></a><h3>POPPLER_TYPE_PAGE_TRANSITION_TYPE</h3>
|
268
|
-
<pre class="programlisting">#define POPPLER_TYPE_PAGE_TRANSITION_TYPE (poppler_page_transition_type_get_type ())
|
269
|
-
</pre>
|
270
|
-
<p>
|
271
|
-
</p>
|
272
|
-
</div>
|
273
|
-
<hr>
|
274
|
-
<div class="refsect2" lang="en">
|
275
|
-
<a name="poppler-page-transition-type-get-type"></a><h3>poppler_page_transition_type_get_type ()</h3>
|
276
|
-
<pre class="programlisting">GType poppler_page_transition_type_get_type
|
277
|
-
(void);</pre>
|
278
|
-
<p>
|
279
|
-
</p>
|
280
|
-
<div class="variablelist"><table border="0">
|
281
|
-
<col align="left" valign="top">
|
282
|
-
<tbody><tr>
|
283
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
284
|
-
<td>
|
285
|
-
</td>
|
286
|
-
</tr></tbody>
|
287
|
-
</table></div>
|
288
|
-
</div>
|
289
|
-
<hr>
|
290
|
-
<div class="refsect2" lang="en">
|
291
|
-
<a name="POPPLER-TYPE-PAGE-TRANSITION-ALIGNMENT--CAPS"></a><h3>POPPLER_TYPE_PAGE_TRANSITION_ALIGNMENT</h3>
|
292
|
-
<pre class="programlisting">#define POPPLER_TYPE_PAGE_TRANSITION_ALIGNMENT (poppler_page_transition_alignment_get_type ())
|
293
|
-
</pre>
|
294
|
-
<p>
|
295
|
-
</p>
|
296
|
-
</div>
|
297
|
-
<hr>
|
298
|
-
<div class="refsect2" lang="en">
|
299
|
-
<a name="poppler-page-transition-alignment-get-type"></a><h3>poppler_page_transition_alignment_get_type ()</h3>
|
300
|
-
<pre class="programlisting">GType poppler_page_transition_alignment_get_type
|
301
|
-
(void);</pre>
|
302
|
-
<p>
|
303
|
-
</p>
|
304
|
-
<div class="variablelist"><table border="0">
|
305
|
-
<col align="left" valign="top">
|
306
|
-
<tbody><tr>
|
307
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
308
|
-
<td>
|
309
|
-
</td>
|
310
|
-
</tr></tbody>
|
311
|
-
</table></div>
|
312
|
-
</div>
|
313
|
-
<hr>
|
314
|
-
<div class="refsect2" lang="en">
|
315
|
-
<a name="POPPLER-TYPE-PAGE-TRANSITION-DIRECTION--CAPS"></a><h3>POPPLER_TYPE_PAGE_TRANSITION_DIRECTION</h3>
|
316
|
-
<pre class="programlisting">#define POPPLER_TYPE_PAGE_TRANSITION_DIRECTION (poppler_page_transition_direction_get_type ())
|
317
|
-
</pre>
|
318
|
-
<p>
|
319
|
-
</p>
|
320
|
-
</div>
|
321
|
-
<hr>
|
322
|
-
<div class="refsect2" lang="en">
|
323
|
-
<a name="poppler-page-transition-direction-get-type"></a><h3>poppler_page_transition_direction_get_type ()</h3>
|
324
|
-
<pre class="programlisting">GType poppler_page_transition_direction_get_type
|
325
|
-
(void);</pre>
|
326
|
-
<p>
|
327
|
-
</p>
|
328
|
-
<div class="variablelist"><table border="0">
|
329
|
-
<col align="left" valign="top">
|
330
|
-
<tbody><tr>
|
331
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
332
|
-
<td>
|
333
|
-
</td>
|
334
|
-
</tr></tbody>
|
335
|
-
</table></div>
|
336
|
-
</div>
|
337
|
-
<hr>
|
338
|
-
<div class="refsect2" lang="en">
|
339
|
-
<a name="POPPLER-TYPE-ERROR--CAPS"></a><h3>POPPLER_TYPE_ERROR</h3>
|
340
|
-
<pre class="programlisting">#define POPPLER_TYPE_ERROR (poppler_error_get_type ())
|
341
|
-
</pre>
|
342
|
-
<p>
|
343
|
-
</p>
|
344
|
-
</div>
|
345
|
-
<hr>
|
346
|
-
<div class="refsect2" lang="en">
|
347
|
-
<a name="poppler-error-get-type"></a><h3>poppler_error_get_type ()</h3>
|
348
|
-
<pre class="programlisting">GType poppler_error_get_type (void);</pre>
|
349
|
-
<p>
|
350
|
-
</p>
|
351
|
-
<div class="variablelist"><table border="0">
|
352
|
-
<col align="left" valign="top">
|
353
|
-
<tbody><tr>
|
354
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
355
|
-
<td>
|
356
|
-
</td>
|
357
|
-
</tr></tbody>
|
358
|
-
</table></div>
|
359
|
-
</div>
|
360
|
-
<hr>
|
361
|
-
<div class="refsect2" lang="en">
|
362
|
-
<a name="POPPLER-TYPE-ORIENTATION--CAPS"></a><h3>POPPLER_TYPE_ORIENTATION</h3>
|
363
|
-
<pre class="programlisting">#define POPPLER_TYPE_ORIENTATION (poppler_orientation_get_type ())
|
364
|
-
</pre>
|
365
|
-
<p>
|
366
|
-
</p>
|
367
|
-
</div>
|
368
|
-
<hr>
|
369
|
-
<div class="refsect2" lang="en">
|
370
|
-
<a name="poppler-orientation-get-type"></a><h3>poppler_orientation_get_type ()</h3>
|
371
|
-
<pre class="programlisting">GType poppler_orientation_get_type (void);</pre>
|
372
|
-
<p>
|
373
|
-
</p>
|
374
|
-
<div class="variablelist"><table border="0">
|
375
|
-
<col align="left" valign="top">
|
376
|
-
<tbody><tr>
|
377
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
378
|
-
<td>
|
379
|
-
</td>
|
380
|
-
</tr></tbody>
|
381
|
-
</table></div>
|
382
|
-
</div>
|
383
|
-
<hr>
|
384
|
-
<div class="refsect2" lang="en">
|
385
|
-
<a name="POPPLER-TYPE-BACKEND--CAPS"></a><h3>POPPLER_TYPE_BACKEND</h3>
|
386
|
-
<pre class="programlisting">#define POPPLER_TYPE_BACKEND (poppler_backend_get_type ())
|
387
|
-
</pre>
|
388
|
-
<p>
|
389
|
-
</p>
|
390
|
-
</div>
|
391
|
-
<hr>
|
392
|
-
<div class="refsect2" lang="en">
|
393
|
-
<a name="poppler-backend-get-type"></a><h3>poppler_backend_get_type ()</h3>
|
394
|
-
<pre class="programlisting">GType poppler_backend_get_type (void);</pre>
|
395
|
-
<p>
|
396
|
-
</p>
|
397
|
-
<div class="variablelist"><table border="0">
|
398
|
-
<col align="left" valign="top">
|
399
|
-
<tbody><tr>
|
400
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
401
|
-
<td>
|
402
|
-
</td>
|
403
|
-
</tr></tbody>
|
404
|
-
</table></div>
|
405
|
-
</div>
|
406
|
-
</div>
|
407
|
-
</div>
|
408
|
-
<div class="footer">
|
409
|
-
<hr>
|
410
|
-
Generated by GTK-Doc V1.11</div>
|
411
|
-
</body>
|
412
|
-
</html>
|
@@ -1,143 +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>Version and Features Information</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-layer.html" title="PopplerLayer">
|
10
|
-
<meta name="generator" content="GTK-Doc V1.11 (XML mode)">
|
11
|
-
<link rel="stylesheet" href="style.css" type="text/css">
|
12
|
-
<link rel="chapter" href="ch01.html" title="Poppler">
|
13
|
-
</head>
|
14
|
-
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
-
<tr valign="middle">
|
17
|
-
<td><a accesskey="p" href="poppler-poppler-layer.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
-
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
-
<th width="100%" align="center">Poppler Reference Manual</th>
|
21
|
-
<td> </td>
|
22
|
-
</tr>
|
23
|
-
<tr><td colspan="5" class="shortcuts">
|
24
|
-
<a href="#poppler-poppler-features.synopsis" class="shortcut">Top</a>
|
25
|
-
|
|
26
|
-
<a href="#poppler-poppler-features.description" class="shortcut">Description</a>
|
27
|
-
</td></tr>
|
28
|
-
</table>
|
29
|
-
<div class="refentry" lang="en">
|
30
|
-
<a name="poppler-poppler-features"></a><div class="titlepage"></div>
|
31
|
-
<div class="refnamediv"><table width="100%"><tr>
|
32
|
-
<td valign="top">
|
33
|
-
<h2><span class="refentrytitle"><a name="poppler-poppler-features.top_of_page"></a>Version and Features Information</span></h2>
|
34
|
-
<p>Version and Features Information — Variables and functions to check the poppler version and features</p>
|
35
|
-
</td>
|
36
|
-
<td valign="top" align="right"></td>
|
37
|
-
</tr></table></div>
|
38
|
-
<div class="refsynopsisdiv">
|
39
|
-
<a name="poppler-poppler-features.synopsis"></a><h2>Synopsis</h2>
|
40
|
-
<pre class="synopsis">
|
41
|
-
#define <a class="link" href="poppler-poppler-features.html#POPPLER-HAS-CAIRO--CAPS" title="POPPLER_HAS_CAIRO">POPPLER_HAS_CAIRO</a>
|
42
|
-
#define <a class="link" href="poppler-poppler-features.html#POPPLER-WITH-GDK--CAPS" title="POPPLER_WITH_GDK">POPPLER_WITH_GDK</a>
|
43
|
-
#define <a class="link" href="poppler-poppler-features.html#POPPLER-MAJOR-VERSION--CAPS" title="POPPLER_MAJOR_VERSION">POPPLER_MAJOR_VERSION</a>
|
44
|
-
#define <a class="link" href="poppler-poppler-features.html#POPPLER-MINOR-VERSION--CAPS" title="POPPLER_MINOR_VERSION">POPPLER_MINOR_VERSION</a>
|
45
|
-
#define <a class="link" href="poppler-poppler-features.html#POPPLER-MICRO-VERSION--CAPS" title="POPPLER_MICRO_VERSION">POPPLER_MICRO_VERSION</a>
|
46
|
-
#define <a class="link" href="poppler-poppler-features.html#POPPLER-CHECK-VERSION--CAPS" title="POPPLER_CHECK_VERSION()">POPPLER_CHECK_VERSION</a> (major,minor,micro)
|
47
|
-
</pre>
|
48
|
-
</div>
|
49
|
-
<div class="refsect1" lang="en">
|
50
|
-
<a name="poppler-poppler-features.description"></a><h2>Description</h2>
|
51
|
-
<p>
|
52
|
-
Poppler provides version information, and information about features
|
53
|
-
enabled at compile time. This is primarily useful in configure checks
|
54
|
-
for builds that have a configure script, or for allowing code to optionally
|
55
|
-
depend but not require a specific poppler version.
|
56
|
-
</p>
|
57
|
-
</div>
|
58
|
-
<div class="refsect1" lang="en">
|
59
|
-
<a name="poppler-poppler-features.details"></a><h2>Details</h2>
|
60
|
-
<div class="refsect2" lang="en">
|
61
|
-
<a name="POPPLER-HAS-CAIRO--CAPS"></a><h3>POPPLER_HAS_CAIRO</h3>
|
62
|
-
<pre class="programlisting">#define POPPLER_HAS_CAIRO 1
|
63
|
-
</pre>
|
64
|
-
<p>
|
65
|
-
Defined if poppler was compiled with cairo support.
|
66
|
-
</p>
|
67
|
-
</div>
|
68
|
-
<hr>
|
69
|
-
<div class="refsect2" lang="en">
|
70
|
-
<a name="POPPLER-WITH-GDK--CAPS"></a><h3>POPPLER_WITH_GDK</h3>
|
71
|
-
<pre class="programlisting">#define POPPLER_WITH_GDK 1
|
72
|
-
</pre>
|
73
|
-
<p>
|
74
|
-
Defined if poppler was compiled with GDK support.
|
75
|
-
</p>
|
76
|
-
</div>
|
77
|
-
<hr>
|
78
|
-
<div class="refsect2" lang="en">
|
79
|
-
<a name="POPPLER-MAJOR-VERSION--CAPS"></a><h3>POPPLER_MAJOR_VERSION</h3>
|
80
|
-
<pre class="programlisting">#define POPPLER_MAJOR_VERSION (0)
|
81
|
-
</pre>
|
82
|
-
<p>
|
83
|
-
The major version number of the poppler header files (e.g. in poppler version
|
84
|
-
0.1.2 this is 0.)
|
85
|
-
</p>
|
86
|
-
Since: 0.11</div>
|
87
|
-
<hr>
|
88
|
-
<div class="refsect2" lang="en">
|
89
|
-
<a name="POPPLER-MINOR-VERSION--CAPS"></a><h3>POPPLER_MINOR_VERSION</h3>
|
90
|
-
<pre class="programlisting">#define POPPLER_MINOR_VERSION (12)
|
91
|
-
</pre>
|
92
|
-
<p>
|
93
|
-
</p>
|
94
|
-
The major version number of the poppler header files (e.g. in poppler version
|
95
|
-
0.1.2 this is 1.)
|
96
|
-
Since: 0.11</div>
|
97
|
-
<hr>
|
98
|
-
<div class="refsect2" lang="en">
|
99
|
-
<a name="POPPLER-MICRO-VERSION--CAPS"></a><h3>POPPLER_MICRO_VERSION</h3>
|
100
|
-
<pre class="programlisting">#define POPPLER_MICRO_VERSION (0)
|
101
|
-
</pre>
|
102
|
-
<p>
|
103
|
-
The micro version number of the poppler header files (e.g. in poppler version
|
104
|
-
0.1.2 this is 2.)
|
105
|
-
</p>
|
106
|
-
Since: 0.11</div>
|
107
|
-
<hr>
|
108
|
-
<div class="refsect2" lang="en">
|
109
|
-
<a name="POPPLER-CHECK-VERSION--CAPS"></a><h3>POPPLER_CHECK_VERSION()</h3>
|
110
|
-
<pre class="programlisting">#define POPPLER_CHECK_VERSION(major,minor,micro)</pre>
|
111
|
-
<p>
|
112
|
-
Returns <code class="literal">TRUE</code> if the version of the poppler header files is the same
|
113
|
-
as or newer than the passed-in version.
|
114
|
-
</p>
|
115
|
-
<div class="variablelist"><table border="0">
|
116
|
-
<col align="left" valign="top">
|
117
|
-
<tbody>
|
118
|
-
<tr>
|
119
|
-
<td><p><span class="term"><em class="parameter"><code>major</code></em> :</span></p></td>
|
120
|
-
<td>major version (e.g. 0 for version 0.1.2)
|
121
|
-
</td>
|
122
|
-
</tr>
|
123
|
-
<tr>
|
124
|
-
<td><p><span class="term"><em class="parameter"><code>minor</code></em> :</span></p></td>
|
125
|
-
<td>minor version (e.g. 1 for version 0.1.2)
|
126
|
-
</td>
|
127
|
-
</tr>
|
128
|
-
<tr>
|
129
|
-
<td><p><span class="term"><em class="parameter"><code>micro</code></em> :</span></p></td>
|
130
|
-
<td>micro version (e.g. 2 for version 0.1.2)
|
131
|
-
Since: 0.11
|
132
|
-
</td>
|
133
|
-
</tr>
|
134
|
-
</tbody>
|
135
|
-
</table></div>
|
136
|
-
</div>
|
137
|
-
</div>
|
138
|
-
</div>
|
139
|
-
<div class="footer">
|
140
|
-
<hr>
|
141
|
-
Generated by GTK-Doc V1.11</div>
|
142
|
-
</body>
|
143
|
-
</html>
|