pango 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README +2 -2
- data/Rakefile +7 -5
- data/ext/pango/extconf.rb +4 -4
- data/ext/pango/rbpango.c +0 -9
- data/ext/pango/rbpango.h +2 -10
- data/ext/pango/rbpangoanalysis.c +0 -4
- data/ext/pango/rbpangoattribute.c +1 -26
- data/ext/pango/rbpangoattrlist.c +0 -4
- data/ext/pango/rbpangocairo.c +13 -12
- data/ext/pango/rbpangocairocontext.c +6 -26
- data/ext/pango/rbpangocontext.c +2 -14
- data/ext/pango/rbpangofont.c +0 -12
- data/ext/pango/rbpangofontdescription.c +0 -5
- data/ext/pango/rbpangofontface.c +0 -6
- data/ext/pango/rbpangofontfamily.c +0 -3
- data/ext/pango/rbpangofontmap.c +0 -4
- data/ext/pango/rbpangofontmetrics.c +1 -4
- data/ext/pango/rbpangofontset.c +0 -4
- data/ext/pango/rbpangoglyphitem.c +0 -8
- data/ext/pango/rbpangoglyphstring.c +0 -4
- data/ext/pango/rbpangoitem.c +0 -16
- data/ext/pango/rbpangolanguage.c +0 -5
- data/ext/pango/rbpangolayout.c +36 -19
- data/ext/pango/rbpangolayoutline.c +0 -33
- data/ext/pango/rbpangologattr.c +0 -5
- data/ext/pango/rbpangomatrix.c +0 -10
- data/ext/pango/rbpangoprivate.h +0 -4
- data/ext/pango/rbpangorenderer.c +0 -6
- data/ext/pango/rbpangoscript.c +0 -4
- data/ext/pango/rbpangoscriptiter.c +0 -5
- data/lib/1.9/pango.so +0 -0
- data/lib/2.0/pango.so +0 -0
- data/test/{test_layout.rb → test-layout.rb} +14 -0
- data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
- data/vendor/local/bin/hb-shape.exe +0 -0
- data/vendor/local/bin/hb-view.exe +0 -0
- data/vendor/local/bin/libharfbuzz-0.dll +0 -0
- data/vendor/local/bin/libpango-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/pango-querymodules.exe +0 -0
- data/vendor/local/bin/pango-view.exe +0 -0
- data/vendor/local/include/harfbuzz/hb-buffer.h +10 -10
- data/vendor/local/include/harfbuzz/hb-common.h +147 -131
- data/vendor/local/include/harfbuzz/{hb-uniscribe.h → hb-deprecated.h} +15 -13
- data/vendor/local/include/harfbuzz/hb-face.h +117 -0
- data/vendor/local/include/harfbuzz/hb-font.h +130 -77
- data/vendor/local/include/harfbuzz/hb-ot-layout.h +6 -0
- data/vendor/local/include/harfbuzz/hb-set.h +2 -0
- data/vendor/local/include/harfbuzz/hb-unicode.h +97 -9
- data/vendor/local/include/harfbuzz/hb-version.h +2 -2
- data/vendor/local/include/harfbuzz/hb.h +2 -0
- data/vendor/local/include/pango-1.0/pango/pango-attributes.h +213 -4
- data/vendor/local/include/pango-1.0/pango/pango-break.h +53 -0
- data/vendor/local/include/pango-1.0/pango/pango-coverage.h +21 -0
- data/vendor/local/include/pango-1.0/pango/pango-engine.h +46 -0
- data/vendor/local/include/pango-1.0/pango/pango-features.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pango-font.h +234 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +68 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontset.h +42 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +64 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph.h +55 -0
- data/vendor/local/include/pango-1.0/pango/pango-item.h +28 -0
- data/vendor/local/include/pango-1.0/pango/pango-language.h +5 -0
- data/vendor/local/include/pango-1.0/pango/pango-layout.h +43 -0
- data/vendor/local/include/pango-1.0/pango/pango-modules.h +11 -0
- data/vendor/local/include/pango-1.0/pango/pango-ot.h +149 -0
- data/vendor/local/include/pango-1.0/pango/pango-script.h +102 -0
- data/vendor/local/include/pango-1.0/pango/pango-tabs.h +11 -0
- data/vendor/local/include/pango-1.0/pango/pango-types.h +102 -2
- data/vendor/local/include/pango-1.0/pango/pango-utils.h +44 -0
- data/vendor/local/include/pango-1.0/pango/pangocairo.h +14 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pangoft2.h +13 -0
- data/vendor/local/include/pango-1.0/pango/pangowin32.h +6 -0
- data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
- data/vendor/local/lib/libharfbuzz.dll.a +0 -0
- data/vendor/local/lib/libharfbuzz.la +5 -5
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.la +2 -2
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.la +4 -4
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.la +3 -3
- data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.la +2 -2
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.la +1 -1
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/harfbuzz.pc +5 -5
- data/vendor/local/lib/pkgconfig/pango.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangocairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangoft2.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangowin32.pc +1 -1
- data/vendor/local/share/gir-1.0/Pango-1.0.gir +1824 -1434
- data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +109 -103
- data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +18 -15
- data/vendor/local/share/gtk-doc/html/harfbuzz/annotation-glossary.html +71 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +1419 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/ch01.html +98 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +48 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html +415 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html +1045 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html +1073 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html +67 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html +90 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html +344 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +1617 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html +130 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html +75 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +52 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +76 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html +75 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +544 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html +105 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html +67 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html +540 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +264 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html +194 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html +1180 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html +67 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +156 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb.html +52 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +591 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +105 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.sgml +650 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/object-tree.html +32 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/style.css +321 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +3 -4
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +3 -4
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +4 -9
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +8 -13
- data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/{pango-pango-renderer.html → PangoRenderer.html} +99 -102
- data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +20 -29
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +6 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +4 -11
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +15 -4
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +4 -4
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +6 -6
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +42 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +58 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +6 -5
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +41 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +19 -19
- data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +31 -27
- data/vendor/local/share/gtk-doc/html/pango/index.html +7 -5
- data/vendor/local/share/gtk-doc/html/pango/index.sgml +38 -38
- data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +5 -5
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +6 -9
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +113 -66
- data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +8 -12
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +5 -8
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +90 -53
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +10 -10
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +21 -8
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +44 -15
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +12 -12
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +87 -90
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +2 -5
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +38 -31
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +10 -18
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +10 -11
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +4 -6
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +3 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +12 -12
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +4 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +34 -31
- data/vendor/local/share/gtk-doc/html/pango/pango.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/rendering.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/tools.html +2 -2
- data/vendor/local/share/man/man1/pango-querymodules.1 +2 -2
- data/vendor/local/share/man/man1/pango-view.1 +2 -2
- metadata +57 -24
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
- data/vendor/local/include/harfbuzz/hb-gobject.h +0 -69
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-28.html +0 -31
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="pango-hierarchy.html" title="Object Hierarchy">
|
10
10
|
<link rel="next" href="api-index-full.html" title="Index of all symbols">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -21,21 +21,15 @@
|
|
21
21
|
<td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
24
|
-
<a class="shortcut" href="#
|
25
|
-
|
|
26
|
-
<a class="shortcut" href="#glsA">A</a>
|
27
|
-
|
|
28
|
-
<a class="shortcut" href="#glsI">I</a>
|
24
|
+
<a class="shortcut" href="#glsA">A</a>
|
29
25
|
|
|
30
26
|
<a class="shortcut" href="#glsC">C</a>
|
31
27
|
|
|
32
|
-
<a class="shortcut" href="#glsT">T</a>
|
33
|
-
|
|
34
|
-
<a class="shortcut" href="#glsA">A</a>
|
35
|
-
|
|
36
28
|
<a class="shortcut" href="#glsE">E</a>
|
37
29
|
|
|
38
|
-
<a class="shortcut" href="#
|
30
|
+
<a class="shortcut" href="#glsI">I</a>
|
31
|
+
|
|
32
|
+
<a class="shortcut" href="#glsO">O</a>
|
39
33
|
|
|
40
34
|
<a class="shortcut" href="#glsS">S</a>
|
41
35
|
|
|
@@ -45,41 +39,38 @@
|
|
45
39
|
<div class="glossary">
|
46
40
|
<div class="titlepage"><div><div><h1 class="title">
|
47
41
|
<a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
|
48
|
-
<a name="glsO"></a><h3 class="title">O</h3>
|
49
|
-
<dt><span class="glossterm"><a name="annotation-glossterm-out%20caller-allocates"></a>out caller-allocates</span></dt>
|
50
|
-
<dd class="glossdef"><p>Out parameter, where caller must allocate storage.</p></dd>
|
51
|
-
<dt><span class="glossterm"><a name="annotation-glossterm-out"></a>out</span></dt>
|
52
|
-
<dd class="glossdef"><p>Parameter for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
53
42
|
<a name="glsA"></a><h3 class="title">A</h3>
|
54
43
|
<dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
|
55
44
|
<dd class="glossdef"><p>NULL is ok, both for passing and for returning.</p></dd>
|
56
|
-
<
|
57
|
-
<
|
58
|
-
<dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
45
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
|
46
|
+
<dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
|
59
47
|
<a name="glsC"></a><h3 class="title">C</h3>
|
60
48
|
<dt><span class="glossterm"><a name="annotation-glossterm-closure"></a>closure</span></dt>
|
61
49
|
<dd class="glossdef"><p>This parameter is a 'user_data', for callbacks; many bindings can pass NULL here.</p></dd>
|
62
|
-
<a name="glsT"></a><h3 class="title">T</h3>
|
63
|
-
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
|
64
|
-
<dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
|
65
|
-
<a name="glsA"></a><h3 class="title">A</h3>
|
66
|
-
<dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
|
67
|
-
<dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
|
68
50
|
<a name="glsE"></a><h3 class="title">E</h3>
|
69
51
|
<dt><span class="glossterm"><a name="annotation-glossterm-element-type"></a>element-type</span></dt>
|
70
52
|
<dd class="glossdef"><p>Generics and defining elements of containers and arrays.</p></dd>
|
71
|
-
<a name="
|
72
|
-
<dt><span class="glossterm"><a name="annotation-glossterm-
|
73
|
-
<dd class="glossdef"><p>Free data
|
53
|
+
<a name="glsI"></a><h3 class="title">I</h3>
|
54
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
|
55
|
+
<dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
56
|
+
<a name="glsO"></a><h3 class="title">O</h3>
|
57
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-out"></a>out</span></dt>
|
58
|
+
<dd class="glossdef"><p>Parameter for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
59
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-out%20caller-allocates"></a>out caller-allocates</span></dt>
|
60
|
+
<dd class="glossdef"><p>Out parameter, where caller must allocate storage.</p></dd>
|
74
61
|
<a name="glsS"></a><h3 class="title">S</h3>
|
75
62
|
<dt><span class="glossterm"><a name="annotation-glossterm-scope%20call"></a>scope call</span></dt>
|
76
63
|
<dd class="glossdef"><p>The callback is valid only during the call to the method.</p></dd>
|
77
64
|
<a name="glsT"></a><h3 class="title">T</h3>
|
65
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20container"></a>transfer container</span></dt>
|
66
|
+
<dd class="glossdef"><p>Free data container after the code is done.</p></dd>
|
78
67
|
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
|
79
68
|
<dd class="glossdef"><p>Free data after the code is done.</p></dd>
|
69
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
|
70
|
+
<dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
|
80
71
|
</div>
|
81
72
|
<div class="footer">
|
82
73
|
<hr>
|
83
|
-
Generated by GTK-Doc V1.
|
74
|
+
Generated by GTK-Doc V1.19</div>
|
84
75
|
</body>
|
85
76
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-8.html" title="Index of new symbols in 1.8">
|
10
10
|
<link rel="next" href="api-index-1-12.html" title="Index of new symbols in 1.12">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -135,6 +135,6 @@
|
|
135
135
|
</div>
|
136
136
|
<div class="footer">
|
137
137
|
<hr>
|
138
|
-
Generated by GTK-Doc V1.
|
138
|
+
Generated by GTK-Doc V1.19</div>
|
139
139
|
</body>
|
140
140
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-10.html" title="Index of new symbols in 1.10">
|
10
10
|
<link rel="next" href="api-index-1-14.html" title="Index of new symbols in 1.14">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -49,6 +49,6 @@
|
|
49
49
|
</div>
|
50
50
|
<div class="footer">
|
51
51
|
<hr>
|
52
|
-
Generated by GTK-Doc V1.
|
52
|
+
Generated by GTK-Doc V1.19</div>
|
53
53
|
</body>
|
54
54
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-12.html" title="Index of new symbols in 1.12">
|
10
10
|
<link rel="next" href="api-index-1-16.html" title="Index of new symbols in 1.16">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -64,6 +64,6 @@
|
|
64
64
|
</div>
|
65
65
|
<div class="footer">
|
66
66
|
<hr>
|
67
|
-
Generated by GTK-Doc V1.
|
67
|
+
Generated by GTK-Doc V1.19</div>
|
68
68
|
</body>
|
69
69
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-14.html" title="Index of new symbols in 1.14">
|
10
10
|
<link rel="next" href="api-index-1-18.html" title="Index of new symbols in 1.18">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -51,6 +51,10 @@
|
|
51
51
|
<a name="api-index-1-16"></a>Index of new symbols in 1.16</h1></div></div></div>
|
52
52
|
<a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
|
53
53
|
<dt>
|
54
|
+
<a class="link" href="pango-Text-Processing.html#PANGO-ANALYSIS-FLAG-CENTERED-BASELINE:CAPS" title="PANGO_ANALYSIS_FLAG_CENTERED_BASELINE">PANGO_ANALYSIS_FLAG_CENTERED_BASELINE</a>, macro in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
|
55
|
+
</dt>
|
56
|
+
<dd></dd>
|
57
|
+
<dt>
|
54
58
|
<a class="link" href="pango-Text-Attributes.html#pango-attr-gravity-hint-new" title="pango_attr_gravity_hint_new ()">pango_attr_gravity_hint_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
|
55
59
|
</dt>
|
56
60
|
<dd></dd>
|
@@ -224,6 +228,6 @@
|
|
224
228
|
</div>
|
225
229
|
<div class="footer">
|
226
230
|
<hr>
|
227
|
-
Generated by GTK-Doc V1.
|
231
|
+
Generated by GTK-Doc V1.19</div>
|
228
232
|
</body>
|
229
233
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-16.html" title="Index of new symbols in 1.16">
|
10
10
|
<link rel="next" href="api-index-1-20.html" title="Index of new symbols in 1.20">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -152,6 +152,6 @@
|
|
152
152
|
</div>
|
153
153
|
<div class="footer">
|
154
154
|
<hr>
|
155
|
-
Generated by GTK-Doc V1.
|
155
|
+
Generated by GTK-Doc V1.19</div>
|
156
156
|
</body>
|
157
157
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-deprecated.html" title="Index of deprecated symbols">
|
10
10
|
<link rel="next" href="api-index-1-4.html" title="Index of new symbols in 1.4">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -122,6 +122,6 @@
|
|
122
122
|
</div>
|
123
123
|
<div class="footer">
|
124
124
|
<hr>
|
125
|
-
Generated by GTK-Doc V1.
|
125
|
+
Generated by GTK-Doc V1.19</div>
|
126
126
|
</body>
|
127
127
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-18.html" title="Index of new symbols in 1.18">
|
10
10
|
<link rel="next" href="api-index-1-22.html" title="Index of new symbols in 1.22">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -30,8 +30,6 @@
|
|
30
30
|
<a class="shortcut" href="#idxL">L</a>
|
31
31
|
|
|
32
32
|
<a class="shortcut" href="#idxR">R</a>
|
33
|
-
|
|
34
|
-
<a class="shortcut" href="#idxT">T</a>
|
35
33
|
</td></tr>
|
36
34
|
</table>
|
37
35
|
<div class="index">
|
@@ -79,21 +77,16 @@
|
|
79
77
|
<dd></dd>
|
80
78
|
<a name="idxR"></a><h3 class="title">R</h3>
|
81
79
|
<dt>
|
82
|
-
<a class="link" href="
|
83
|
-
</dt>
|
84
|
-
<dd></dd>
|
85
|
-
<dt>
|
86
|
-
<a class="link" href="pango-pango-renderer.html#pango-renderer-get-layout-line" title="pango_renderer_get_layout_line ()">pango_renderer_get_layout_line</a>, function in <a class="link" href="pango-pango-renderer.html" title="PangoRenderer">PangoRenderer</a>
|
80
|
+
<a class="link" href="PangoRenderer.html#pango-renderer-get-layout" title="pango_renderer_get_layout ()">pango_renderer_get_layout</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
|
87
81
|
</dt>
|
88
82
|
<dd></dd>
|
89
|
-
<a name="idxT"></a><h3 class="title">T</h3>
|
90
83
|
<dt>
|
91
|
-
<a class="link" href="
|
84
|
+
<a class="link" href="PangoRenderer.html#pango-renderer-get-layout-line" title="pango_renderer_get_layout_line ()">pango_renderer_get_layout_line</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
|
92
85
|
</dt>
|
93
86
|
<dd></dd>
|
94
87
|
</div>
|
95
88
|
<div class="footer">
|
96
89
|
<hr>
|
97
|
-
Generated by GTK-Doc V1.
|
90
|
+
Generated by GTK-Doc V1.19</div>
|
98
91
|
</body>
|
99
92
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-20.html" title="Index of new symbols in 1.20">
|
10
10
|
<link rel="next" href="api-index-1-24.html" title="Index of new symbols in 1.24">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -113,7 +113,7 @@
|
|
113
113
|
<dd></dd>
|
114
114
|
<a name="idxR"></a><h3 class="title">R</h3>
|
115
115
|
<dt>
|
116
|
-
<a class="link" href="
|
116
|
+
<a class="link" href="PangoRenderer.html#pango-renderer-draw-glyph-item" title="pango_renderer_draw_glyph_item ()">pango_renderer_draw_glyph_item</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
|
117
117
|
</dt>
|
118
118
|
<dd></dd>
|
119
119
|
<a name="idxT"></a><h3 class="title">T</h3>
|
@@ -124,6 +124,6 @@
|
|
124
124
|
</div>
|
125
125
|
<div class="footer">
|
126
126
|
<hr>
|
127
|
-
Generated by GTK-Doc V1.
|
127
|
+
Generated by GTK-Doc V1.19</div>
|
128
128
|
</body>
|
129
129
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-22.html" title="Index of new symbols in 1.22">
|
10
10
|
<link rel="next" href="api-index-1-26.html" title="Index of new symbols in 1.26">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -21,7 +21,9 @@
|
|
21
21
|
<td><a accesskey="n" href="api-index-1-26.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
24
|
-
<a class="shortcut" href="#
|
24
|
+
<a class="shortcut" href="#idxA">A</a>
|
25
|
+
|
|
26
|
+
<a class="shortcut" href="#idxC">C</a>
|
25
27
|
|
|
26
28
|
<a class="shortcut" href="#idxF">F</a>
|
27
29
|
</td></tr>
|
@@ -29,7 +31,16 @@
|
|
29
31
|
<div class="index">
|
30
32
|
<div class="titlepage"><div><div><h1 class="title">
|
31
33
|
<a name="api-index-1-24"></a>Index of new symbols in 1.24</h1></div></div></div>
|
32
|
-
<a name="idx"></a><a name="
|
34
|
+
<a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
|
35
|
+
<dt>
|
36
|
+
<a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-FROM-TEXT-BEGINNING:CAPS" title="PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING">PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
|
37
|
+
</dt>
|
38
|
+
<dd></dd>
|
39
|
+
<dt>
|
40
|
+
<a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-TO-TEXT-END:CAPS" title="PANGO_ATTR_INDEX_TO_TEXT_END">PANGO_ATTR_INDEX_TO_TEXT_END</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
|
41
|
+
</dt>
|
42
|
+
<dd></dd>
|
43
|
+
<a name="idxC"></a><h3 class="title">C</h3>
|
33
44
|
<dt>
|
34
45
|
<a class="link" href="pango-CoreText-Fonts.html#pango-core-text-font-get-ctfont" title="pango_core_text_font_get_ctfont ()">pango_core_text_font_get_ctfont</a>, function in <a class="link" href="pango-CoreText-Fonts.html" title="CoreText Fonts">CoreText Fonts</a>
|
35
46
|
</dt>
|
@@ -86,6 +97,6 @@
|
|
86
97
|
</div>
|
87
98
|
<div class="footer">
|
88
99
|
<hr>
|
89
|
-
Generated by GTK-Doc V1.
|
100
|
+
Generated by GTK-Doc V1.19</div>
|
90
101
|
</body>
|
91
102
|
</html>
|
@@ -7,8 +7,8 @@
|
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="api-index-1-24.html" title="Index of new symbols in 1.24">
|
10
|
-
<link rel="next" href="api-index-1-
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
10
|
+
<link rel="next" href="api-index-1-30.html" title="Index of new symbols in 1.30">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<td> </td>
|
19
19
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
20
|
<th width="100%" align="center">Pango Reference Manual</th>
|
21
|
-
<td><a accesskey="n" href="api-index-1-
|
21
|
+
<td><a accesskey="n" href="api-index-1-30.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
24
24
|
<a class="shortcut" href="#idxF">F</a>
|
@@ -46,6 +46,6 @@
|
|
46
46
|
</div>
|
47
47
|
<div class="footer">
|
48
48
|
<hr>
|
49
|
-
Generated by GTK-Doc V1.
|
49
|
+
Generated by GTK-Doc V1.19</div>
|
50
50
|
</body>
|
51
51
|
</html>
|
@@ -6,19 +6,19 @@
|
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
|
-
<link rel="prev" href="api-index-1-
|
10
|
-
<link rel="next" href="api-index-1-
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
9
|
+
<link rel="prev" href="api-index-1-26.html" title="Index of new symbols in 1.26">
|
10
|
+
<link rel="next" href="api-index-1-31-0.html" title="Index of new symbols in 1.32">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
15
|
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
16
|
<tr valign="middle">
|
17
|
-
<td><a accesskey="p" href="api-index-1-
|
17
|
+
<td><a accesskey="p" href="api-index-1-26.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td> </td>
|
19
19
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
20
|
<th width="100%" align="center">Pango Reference Manual</th>
|
21
|
-
<td><a accesskey="n" href="api-index-1-
|
21
|
+
<td><a accesskey="n" href="api-index-1-31-0.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts"><a class="shortcut" href="#idxL">L</a></td></tr>
|
24
24
|
</table>
|
@@ -37,6 +37,6 @@
|
|
37
37
|
</div>
|
38
38
|
<div class="footer">
|
39
39
|
<hr>
|
40
|
-
Generated by GTK-Doc V1.
|
40
|
+
Generated by GTK-Doc V1.19</div>
|
41
41
|
</body>
|
42
42
|
</html>
|
@@ -0,0 +1,42 @@
|
|
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>Index of new symbols in 1.32</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
|
+
<link rel="prev" href="api-index-1-30.html" title="Index of new symbols in 1.30">
|
10
|
+
<link rel="next" href="api-index-1-32.html" title="Index of new symbols in 1.32">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="api-index-1-30.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td> </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">Pango Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="api-index-1-32.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts"><a class="shortcut" href="#idxM">M</a></td></tr>
|
24
|
+
</table>
|
25
|
+
<div class="index">
|
26
|
+
<div class="titlepage"><div><div><h1 class="title">
|
27
|
+
<a name="api-index-1-31-0"></a>Index of new symbols in 1.32</h1></div></div></div>
|
28
|
+
<a name="idx"></a><a name="idxM"></a><h3 class="title">M</h3>
|
29
|
+
<dt>
|
30
|
+
<a class="link" href="pango-Text-Attributes.html#pango-markup-parser-finish" title="pango_markup_parser_finish ()">pango_markup_parser_finish</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
|
31
|
+
</dt>
|
32
|
+
<dd></dd>
|
33
|
+
<dt>
|
34
|
+
<a class="link" href="pango-Text-Attributes.html#pango-markup-parser-new" title="pango_markup_parser_new ()">pango_markup_parser_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
|
35
|
+
</dt>
|
36
|
+
<dd></dd>
|
37
|
+
</div>
|
38
|
+
<div class="footer">
|
39
|
+
<hr>
|
40
|
+
Generated by GTK-Doc V1.19</div>
|
41
|
+
</body>
|
42
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
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>Index of new symbols in 1.32</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
|
+
<link rel="prev" href="api-index-1-32.html" title="Index of new symbols in 1.32">
|
10
|
+
<link rel="next" href="api-index-1-34.html" title="Index of new symbols in 1.32">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="api-index-1-32.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td> </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">Pango Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="api-index-1-34.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a class="shortcut" href="#idxC">C</a>
|
25
|
+
|
|
26
|
+
<a class="shortcut" href="#idxF">F</a>
|
27
|
+
|
|
28
|
+
<a class="shortcut" href="#idxL">L</a>
|
29
|
+
</td></tr>
|
30
|
+
</table>
|
31
|
+
<div class="index">
|
32
|
+
<div class="titlepage"><div><div><h1 class="title">
|
33
|
+
<a name="api-index-1-32-4"></a>Index of new symbols in 1.32</h1></div></div></div>
|
34
|
+
<a name="idx"></a><a name="idxC"></a><h3 class="title">C</h3>
|
35
|
+
<dt>
|
36
|
+
<a class="link" href="pango-Text-Processing.html#pango-context-changed" title="pango_context_changed ()">pango_context_changed</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
|
37
|
+
</dt>
|
38
|
+
<dd></dd>
|
39
|
+
<dt>
|
40
|
+
<a class="link" href="pango-Text-Processing.html#pango-context-get-serial" title="pango_context_get_serial ()">pango_context_get_serial</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
|
41
|
+
</dt>
|
42
|
+
<dd></dd>
|
43
|
+
<a name="idxF"></a><h3 class="title">F</h3>
|
44
|
+
<dt>
|
45
|
+
<a class="link" href="pango-Fonts.html#pango-font-map-get-serial" title="pango_font_map_get_serial ()">pango_font_map_get_serial</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
|
46
|
+
</dt>
|
47
|
+
<dd></dd>
|
48
|
+
<a name="idxL"></a><h3 class="title">L</h3>
|
49
|
+
<dt>
|
50
|
+
<a class="link" href="pango-Layout-Objects.html#pango-layout-get-serial" title="pango_layout_get_serial ()">pango_layout_get_serial</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
|
51
|
+
</dt>
|
52
|
+
<dd></dd>
|
53
|
+
</div>
|
54
|
+
<div class="footer">
|
55
|
+
<hr>
|
56
|
+
Generated by GTK-Doc V1.19</div>
|
57
|
+
</body>
|
58
|
+
</html>
|