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
Binary file
|
Binary file
|
@@ -0,0 +1,32 @@
|
|
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>Object Hierarchy</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
+
<link rel="home" href="index.html" title="HarfBuzz Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="HarfBuzz Reference Manual">
|
9
|
+
<link rel="prev" href="harfbuzz-hb-gobject.html" title="hb-gobject">
|
10
|
+
<link rel="next" href="api-index-full.html" title="API Index">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.19.1 (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="10"><tr valign="middle">
|
16
|
+
<td width="100%" align="left"></td>
|
17
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
19
|
+
<td><a accesskey="p" href="harfbuzz-hb-gobject.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="chapter">
|
23
|
+
<div class="titlepage"><div><div><h2 class="title">
|
24
|
+
<a name="object-tree"></a>Object Hierarchy</h2></div></div></div>
|
25
|
+
<pre class="screen">
|
26
|
+
</pre>
|
27
|
+
</div>
|
28
|
+
<div class="footer">
|
29
|
+
<hr>
|
30
|
+
Generated by GTK-Doc V1.19.1</div>
|
31
|
+
</body>
|
32
|
+
</html>
|
Binary file
|
Binary file
|
@@ -0,0 +1,321 @@
|
|
1
|
+
body
|
2
|
+
{
|
3
|
+
font-family: cantarell, sans-serif;
|
4
|
+
}
|
5
|
+
.synopsis, .classsynopsis
|
6
|
+
{
|
7
|
+
/* tango:aluminium 1/2 */
|
8
|
+
background: #eeeeec;
|
9
|
+
border: solid 1px #d3d7cf;
|
10
|
+
padding: 0.5em;
|
11
|
+
}
|
12
|
+
.programlisting
|
13
|
+
{
|
14
|
+
/* tango:sky blue 0/1 */
|
15
|
+
background: #e6f3ff;
|
16
|
+
border: solid 1px #729fcf;
|
17
|
+
padding: 0.5em;
|
18
|
+
}
|
19
|
+
.variablelist
|
20
|
+
{
|
21
|
+
padding: 4px;
|
22
|
+
margin-left: 3em;
|
23
|
+
}
|
24
|
+
.variablelist td:first-child
|
25
|
+
{
|
26
|
+
vertical-align: top;
|
27
|
+
}
|
28
|
+
|
29
|
+
@media screen {
|
30
|
+
sup a.footnote
|
31
|
+
{
|
32
|
+
position: relative;
|
33
|
+
top: 0em ! important;
|
34
|
+
|
35
|
+
}
|
36
|
+
/* this is needed so that the local anchors are displayed below the naviagtion */
|
37
|
+
div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
|
38
|
+
{
|
39
|
+
display: inline-block;
|
40
|
+
position: relative;
|
41
|
+
top:-5em;
|
42
|
+
}
|
43
|
+
/* this seems to be a bug in the xsl style sheets when generating indexes */
|
44
|
+
div.index div.index
|
45
|
+
{
|
46
|
+
top: 0em;
|
47
|
+
}
|
48
|
+
/* make space for the fixed navigation bar and add space at the bottom so that
|
49
|
+
* link targets appear somewhat close to top
|
50
|
+
*/
|
51
|
+
body
|
52
|
+
{
|
53
|
+
padding-top: 3.2em;
|
54
|
+
padding-bottom: 20em;
|
55
|
+
}
|
56
|
+
/* style and size the navigation bar */
|
57
|
+
table.navigation#top
|
58
|
+
{
|
59
|
+
position: fixed;
|
60
|
+
/* tango:aluminum 2 */
|
61
|
+
background: #d3d7cf;
|
62
|
+
border: solid 1px #babdb6;
|
63
|
+
margin-top: 0;
|
64
|
+
margin-bottom: 0;
|
65
|
+
top: 0;
|
66
|
+
left: 0;
|
67
|
+
height: 3em;
|
68
|
+
z-index: 10;
|
69
|
+
}
|
70
|
+
.navigation a, .navigation a:visited
|
71
|
+
{
|
72
|
+
/* tango:sky blue 3 */
|
73
|
+
color: #204a87;
|
74
|
+
}
|
75
|
+
.navigation a:hover
|
76
|
+
{
|
77
|
+
/* tango:sky blue 2 */
|
78
|
+
color: #3465a4;
|
79
|
+
}
|
80
|
+
td.shortcuts
|
81
|
+
{
|
82
|
+
/* tango:sky blue 2 */
|
83
|
+
color: #3465a4;
|
84
|
+
font-size: 80%;
|
85
|
+
white-space: nowrap;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
@media print {
|
89
|
+
table.navigation {
|
90
|
+
visibility: collapse;
|
91
|
+
display: none;
|
92
|
+
}
|
93
|
+
div.titlepage table.navigation {
|
94
|
+
visibility: visible;
|
95
|
+
display: table;
|
96
|
+
/* tango:aluminum 2 */
|
97
|
+
background: #d3d7cf;
|
98
|
+
border: solid 1px #babdb6;
|
99
|
+
margin-top: 0;
|
100
|
+
margin-bottom: 0;
|
101
|
+
top: 0;
|
102
|
+
left: 0;
|
103
|
+
height: 3em;
|
104
|
+
}
|
105
|
+
}
|
106
|
+
|
107
|
+
.navigation .title
|
108
|
+
{
|
109
|
+
font-size: 120%;
|
110
|
+
}
|
111
|
+
|
112
|
+
div.gallery-float
|
113
|
+
{
|
114
|
+
float: left;
|
115
|
+
padding: 10px;
|
116
|
+
}
|
117
|
+
div.gallery-float img
|
118
|
+
{
|
119
|
+
border-style: none;
|
120
|
+
}
|
121
|
+
div.gallery-spacer
|
122
|
+
{
|
123
|
+
clear: both;
|
124
|
+
}
|
125
|
+
|
126
|
+
a, a:visited
|
127
|
+
{
|
128
|
+
text-decoration: none;
|
129
|
+
/* tango:sky blue 2 */
|
130
|
+
color: #3465a4;
|
131
|
+
}
|
132
|
+
a:hover
|
133
|
+
{
|
134
|
+
text-decoration: underline;
|
135
|
+
/* tango:sky blue 1 */
|
136
|
+
color: #729fcf;
|
137
|
+
}
|
138
|
+
|
139
|
+
div.table table
|
140
|
+
{
|
141
|
+
border-collapse: collapse;
|
142
|
+
border-spacing: 0px;
|
143
|
+
/* tango:aluminium 3 */
|
144
|
+
border: solid 1px #babdb6;
|
145
|
+
}
|
146
|
+
|
147
|
+
div.table table td, div.table table th
|
148
|
+
{
|
149
|
+
/* tango:aluminium 3 */
|
150
|
+
border: solid 1px #babdb6;
|
151
|
+
padding: 3px;
|
152
|
+
vertical-align: top;
|
153
|
+
}
|
154
|
+
|
155
|
+
div.table table th
|
156
|
+
{
|
157
|
+
/* tango:aluminium 2 */
|
158
|
+
background-color: #d3d7cf;
|
159
|
+
}
|
160
|
+
|
161
|
+
hr
|
162
|
+
{
|
163
|
+
/* tango:aluminium 1 */
|
164
|
+
color: #d3d7cf;
|
165
|
+
background: #d3d7cf;
|
166
|
+
border: none 0px;
|
167
|
+
height: 1px;
|
168
|
+
clear: both;
|
169
|
+
}
|
170
|
+
|
171
|
+
dl.toc dt
|
172
|
+
{
|
173
|
+
padding-bottom: 0.25em;
|
174
|
+
}
|
175
|
+
|
176
|
+
dl.toc > dd > dl > dt
|
177
|
+
{
|
178
|
+
padding-top: 0.25em;
|
179
|
+
padding-bottom: 0.25em;
|
180
|
+
}
|
181
|
+
|
182
|
+
dl.toc > dt
|
183
|
+
{
|
184
|
+
padding-top: 1em;
|
185
|
+
padding-bottom: 0.5em;
|
186
|
+
font-weight: bold;
|
187
|
+
}
|
188
|
+
|
189
|
+
.parameter
|
190
|
+
{
|
191
|
+
font-style: normal;
|
192
|
+
}
|
193
|
+
|
194
|
+
.footer
|
195
|
+
{
|
196
|
+
padding-top: 3.5em;
|
197
|
+
/* tango:aluminium 3 */
|
198
|
+
color: #babdb6;
|
199
|
+
text-align: center;
|
200
|
+
font-size: 80%;
|
201
|
+
}
|
202
|
+
|
203
|
+
.informalfigure,
|
204
|
+
.figure
|
205
|
+
{
|
206
|
+
margin: 2em;
|
207
|
+
}
|
208
|
+
|
209
|
+
.informalexample,
|
210
|
+
.example
|
211
|
+
{
|
212
|
+
margin: 2em;
|
213
|
+
}
|
214
|
+
|
215
|
+
.warning
|
216
|
+
{
|
217
|
+
/* tango:orange 0/1 */
|
218
|
+
background: #ffeed9;
|
219
|
+
border-color: #ffb04f;
|
220
|
+
}
|
221
|
+
.note
|
222
|
+
{
|
223
|
+
/* tango:chameleon 0/0.5 */
|
224
|
+
background: #d8ffb2;
|
225
|
+
border-color: #abf562;
|
226
|
+
}
|
227
|
+
.note, .warning
|
228
|
+
{
|
229
|
+
padding: 0.5em;
|
230
|
+
border-width: 1px;
|
231
|
+
border-style: solid;
|
232
|
+
margin: 2em;
|
233
|
+
}
|
234
|
+
.note h3, .warning h3
|
235
|
+
{
|
236
|
+
margin-top: 0.0em
|
237
|
+
}
|
238
|
+
.note p, .warning p
|
239
|
+
{
|
240
|
+
margin-bottom: 0.0em
|
241
|
+
}
|
242
|
+
|
243
|
+
p + div.section
|
244
|
+
{
|
245
|
+
margin-top: 2.5em;
|
246
|
+
}
|
247
|
+
|
248
|
+
div.refnamediv,
|
249
|
+
div.refsynopsisdiv,
|
250
|
+
div.refsect1,
|
251
|
+
div.refsect2,
|
252
|
+
div.toc,
|
253
|
+
div.section
|
254
|
+
{
|
255
|
+
margin-bottom: 2.5em;
|
256
|
+
}
|
257
|
+
|
258
|
+
/* blob links */
|
259
|
+
h2 .extralinks, h3 .extralinks
|
260
|
+
{
|
261
|
+
float: right;
|
262
|
+
/* tango:aluminium 3 */
|
263
|
+
color: #babdb6;
|
264
|
+
font-size: 80%;
|
265
|
+
font-weight: normal;
|
266
|
+
}
|
267
|
+
|
268
|
+
.annotation
|
269
|
+
{
|
270
|
+
/* tango:aluminium 5 */
|
271
|
+
color: #555753;
|
272
|
+
font-size: 80%;
|
273
|
+
font-weight: normal;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* code listings */
|
277
|
+
|
278
|
+
.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
|
279
|
+
.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
|
280
|
+
.listing_code .programlisting .function { color: #000000; font-weight: bold; }
|
281
|
+
.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
|
282
|
+
.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
|
283
|
+
.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
|
284
|
+
.listing_code .programlisting .normal { color: #000000; }
|
285
|
+
.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
|
286
|
+
.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
|
287
|
+
.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
|
288
|
+
.listing_code .programlisting .type { color: #000000; }
|
289
|
+
.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
|
290
|
+
.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
|
291
|
+
|
292
|
+
.listing_frame {
|
293
|
+
/* tango:sky blue 1 */
|
294
|
+
border: solid 1px #729fcf;
|
295
|
+
padding: 0px;
|
296
|
+
}
|
297
|
+
|
298
|
+
.listing_lines, .listing_code {
|
299
|
+
margin-top: 0px;
|
300
|
+
margin-bottom: 0px;
|
301
|
+
padding: 0.5em;
|
302
|
+
}
|
303
|
+
.listing_lines {
|
304
|
+
/* tango:sky blue 0.5 */
|
305
|
+
background: #a6c5e3;
|
306
|
+
/* tango:aluminium 6 */
|
307
|
+
color: #2e3436;
|
308
|
+
}
|
309
|
+
.listing_code {
|
310
|
+
/* tango:sky blue 0 */
|
311
|
+
background: #e6f3ff;
|
312
|
+
}
|
313
|
+
.listing_code .programlisting {
|
314
|
+
/* override from previous */
|
315
|
+
border: none 0px;
|
316
|
+
padding: 0px;
|
317
|
+
}
|
318
|
+
.listing_lines pre, .listing_code pre {
|
319
|
+
margin: 0px;
|
320
|
+
}
|
321
|
+
|
Binary file
|
Binary file
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="pango-Engines.html" title="Engines">
|
10
10
|
<link rel="next" href="PangoEngineShape.html" title="PangoEngineShape">
|
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">
|
@@ -119,8 +119,7 @@ allow tailoring the breaking results.</td>
|
|
119
119
|
<pre class="programlisting">#define PANGO_ENGINE_TYPE_LANG "PangoEngineLang"
|
120
120
|
</pre>
|
121
121
|
<p>
|
122
|
-
A string constant defining the engine type
|
123
|
-
for language engines.
|
122
|
+
A string constant defining the engine type for language engines.
|
124
123
|
These engines derive from <a class="link" href="PangoEngineLang.html" title="PangoEngineLang"><span class="type">PangoEngineLang</span></a>.
|
125
124
|
</p>
|
126
125
|
</div>
|
@@ -195,6 +194,6 @@ function can create instances of the object as follows:
|
|
195
194
|
</div>
|
196
195
|
<div class="footer">
|
197
196
|
<hr>
|
198
|
-
Generated by GTK-Doc V1.
|
197
|
+
Generated by GTK-Doc V1.19</div>
|
199
198
|
</body>
|
200
199
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="PangoEngineLang.html" title="PangoEngineLang">
|
10
10
|
<link rel="next" href="pango-Modules.html" title="Modules">
|
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">
|
@@ -146,8 +146,7 @@ font itself unmodified.</td>
|
|
146
146
|
<pre class="programlisting">#define PANGO_ENGINE_TYPE_SHAPE "PangoEngineShape"
|
147
147
|
</pre>
|
148
148
|
<p>
|
149
|
-
A string constant defining the engine type
|
150
|
-
for shaping engines.
|
149
|
+
A string constant defining the engine type for shaping engines.
|
151
150
|
These engines derive from <a class="link" href="PangoEngineShape.html" title="PangoEngineShape"><span class="type">PangoEngineShape</span></a>.
|
152
151
|
</p>
|
153
152
|
</div>
|
@@ -222,6 +221,6 @@ function can create instances of the object as follows:
|
|
222
221
|
</div>
|
223
222
|
<div class="footer">
|
224
223
|
<hr>
|
225
|
-
Generated by GTK-Doc V1.
|
224
|
+
Generated by GTK-Doc V1.19</div>
|
226
225
|
</body>
|
227
226
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="PangoFcFont.html" title="PangoFcFont">
|
10
10
|
<link rel="next" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">
|
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">
|
@@ -198,6 +198,6 @@ covered by the font.</td>
|
|
198
198
|
</div>
|
199
199
|
<div class="footer">
|
200
200
|
<hr>
|
201
|
-
Generated by GTK-Doc V1.
|
201
|
+
Generated by GTK-Doc V1.19</div>
|
202
202
|
</body>
|
203
203
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="PangoFcFontMap.html" title="PangoFcFontMap">
|
10
10
|
<link rel="next" href="PangoFcDecoder.html" title="PangoFcDecoder">
|
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">
|
@@ -374,8 +374,6 @@ kerning information in <em class="parameter"><code>font</code></em>.
|
|
374
374
|
</div>
|
375
375
|
<div class="refsect1">
|
376
376
|
<a name="PangoFcFont.see-also"></a><h2>See Also</h2>
|
377
|
-
<p>
|
378
|
-
</p>
|
379
377
|
<div class="variablelist"><table border="0" class="variablelist">
|
380
378
|
<colgroup>
|
381
379
|
<col align="left" valign="top">
|
@@ -383,18 +381,15 @@ kerning information in <em class="parameter"><code>font</code></em>.
|
|
383
381
|
</colgroup>
|
384
382
|
<tbody><tr>
|
385
383
|
<td><p><span class="term"><a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap"><span class="type">PangoFcFontMap</span></a></span></p></td>
|
386
|
-
<td
|
384
|
+
<td>The base class for font maps; creating a new
|
387
385
|
Fontconfig-based backend involves deriving from both
|
388
|
-
<a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap"><span class="type">PangoFcFontMap</span></a> and <a class="link" href="PangoFcFont.html" title="PangoFcFont"><span class="type">PangoFcFont</span></a
|
389
|
-
.</p></td>
|
386
|
+
<a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap"><span class="type">PangoFcFontMap</span></a> and <a class="link" href="PangoFcFont.html" title="PangoFcFont"><span class="type">PangoFcFont</span></a>.</td>
|
390
387
|
</tr></tbody>
|
391
388
|
</table></div>
|
392
|
-
<p>
|
393
|
-
</p>
|
394
389
|
</div>
|
395
390
|
</div>
|
396
391
|
<div class="footer">
|
397
392
|
<hr>
|
398
|
-
Generated by GTK-Doc V1.
|
393
|
+
Generated by GTK-Doc V1.19</div>
|
399
394
|
</body>
|
400
395
|
</html>
|