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="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Text-Attributes.html" title="Text Attributes">
|
10
10
|
<link rel="next" href="PangoMarkupFormat.html" title="Text Attribute Markup">
|
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">
|
@@ -142,9 +142,6 @@ A <a class="link" href="pango-Tab-Stops.html#PangoTabAlign"><span class="type">P
|
|
142
142
|
<a name="PANGO-TYPE-TAB-ALIGN:CAPS"></a><h3>PANGO_TYPE_TAB_ALIGN</h3>
|
143
143
|
<pre class="programlisting">#define PANGO_TYPE_TAB_ALIGN (pango_tab_align_get_type ())
|
144
144
|
</pre>
|
145
|
-
<p>
|
146
|
-
The <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Tab-Stops.html#PangoTabAlign"><span class="type">PangoTabAlign</span></a>.
|
147
|
-
</p>
|
148
145
|
</div>
|
149
146
|
<hr>
|
150
147
|
<div class="refsect2">
|
@@ -467,6 +464,6 @@ in Pango units.
|
|
467
464
|
</div>
|
468
465
|
<div class="footer">
|
469
466
|
<hr>
|
470
|
-
Generated by GTK-Doc V1.
|
467
|
+
Generated by GTK-Doc V1.19</div>
|
471
468
|
</body>
|
472
469
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Fonts.html" title="Fonts">
|
10
10
|
<link rel="next" href="pango-Tab-Stops.html" title="Tab Stops">
|
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">
|
@@ -363,9 +363,6 @@ attribute is listed in parentheses after the description.
|
|
363
363
|
<a name="PANGO-TYPE-ATTR-TYPE:CAPS"></a><h3>PANGO_TYPE_ATTR_TYPE</h3>
|
364
364
|
<pre class="programlisting">#define PANGO_TYPE_ATTR_TYPE (pango_attr_type_get_type ())
|
365
365
|
</pre>
|
366
|
-
<p>
|
367
|
-
The <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Text-Attributes.html#PangoAttrType"><span class="type">PangoAttrType</span></a>.
|
368
|
-
</p>
|
369
366
|
</div>
|
370
367
|
<hr>
|
371
368
|
<div class="refsect2">
|
@@ -456,7 +453,8 @@ is not included in the range.</td>
|
|
456
453
|
This value can be used to set the start_index member of a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="struct PangoAttribute"><span class="type">PangoAttribute</span></a>
|
457
454
|
such that the attribute covers from the beginning of the text.
|
458
455
|
</p>
|
459
|
-
Since
|
456
|
+
<p class="since">Since 1.24</p>
|
457
|
+
</div>
|
460
458
|
<hr>
|
461
459
|
<div class="refsect2">
|
462
460
|
<a name="PANGO-ATTR-INDEX-TO-TEXT-END:CAPS"></a><h3>PANGO_ATTR_INDEX_TO_TEXT_END</h3>
|
@@ -466,7 +464,8 @@ Since: 1.24</div>
|
|
466
464
|
This value can be used to set the end_index member of a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="struct PangoAttribute"><span class="type">PangoAttribute</span></a>
|
467
465
|
such that the attribute covers to the end of the text.
|
468
466
|
</p>
|
469
|
-
Since
|
467
|
+
<p class="since">Since 1.24</p>
|
468
|
+
</div>
|
470
469
|
<hr>
|
471
470
|
<div class="refsect2">
|
472
471
|
<a name="PangoAttrString"></a><h3>struct PangoAttrString</h3>
|
@@ -701,7 +700,7 @@ impose shape restrictions.
|
|
701
700
|
};
|
702
701
|
</pre>
|
703
702
|
<p>
|
704
|
-
The <a class="link" href="pango-Text-Attributes.html#
|
703
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrSize" title="struct PangoAttrSize"><span class="type">PangoAttrSize</span></a> structure is used to represent attributes which
|
705
704
|
set font size.
|
706
705
|
</p>
|
707
706
|
<div class="variablelist"><table border="0" class="variablelist">
|
@@ -992,7 +991,7 @@ to the entire text by default.
|
|
992
991
|
</tr>
|
993
992
|
<tr>
|
994
993
|
<td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
|
995
|
-
<td>a <span class="type">
|
994
|
+
<td>a <a class="link" href="pango-Text-Attributes.html#PangoAttrClass" title="struct PangoAttrClass"><span class="type">PangoAttrClass</span></a>
|
996
995
|
</td>
|
997
996
|
</tr>
|
998
997
|
</tbody>
|
@@ -1529,7 +1528,7 @@ which should be freed with <a class="link" href="pango-Text-Attributes.html#pang
|
|
1529
1528
|
} PangoUnderline;
|
1530
1529
|
</pre>
|
1531
1530
|
<p>
|
1532
|
-
|
1531
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoUnderline"><span class="type">PangoUnderline</span></a> enumeration is used to specify
|
1533
1532
|
whether text should be underlined, and if so, the type
|
1534
1533
|
of underlining.
|
1535
1534
|
</p>
|
@@ -1557,21 +1556,20 @@ of underlining.
|
|
1557
1556
|
<tr>
|
1558
1557
|
<td><p><a name="PANGO-UNDERLINE-LOW:CAPS"></a><span class="term"><code class="literal">PANGO_UNDERLINE_LOW</code></span></p></td>
|
1559
1558
|
<td>a single underline should be drawn at a position
|
1560
|
-
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1559
|
+
beneath the ink extents of the text being
|
1560
|
+
underlined. This should be used only for underlining
|
1561
|
+
single characters, such as for keyboard
|
1562
|
+
accelerators. <a class="link" href="pango-Text-Attributes.html#PANGO-UNDERLINE-SINGLE:CAPS"><code class="literal">PANGO_UNDERLINE_SINGLE</code></a> should
|
1563
|
+
be used for extended portions of text.
|
1565
1564
|
</td>
|
1566
1565
|
</tr>
|
1567
1566
|
<tr>
|
1568
1567
|
<td><p><a name="PANGO-UNDERLINE-ERROR:CAPS"></a><span class="term"><code class="literal">PANGO_UNDERLINE_ERROR</code></span></p></td>
|
1569
1568
|
<td>a wavy underline should be drawn below.
|
1570
|
-
|
1571
|
-
|
1572
|
-
|
1573
|
-
|
1574
|
-
since Pango 1.4.
|
1569
|
+
This underline is typically used to indicate
|
1570
|
+
an error such as a possilble mispelling; in some
|
1571
|
+
cases a contrasting color may automatically
|
1572
|
+
be used. This type of underlining is available since Pango 1.4.
|
1575
1573
|
</td>
|
1576
1574
|
</tr>
|
1577
1575
|
</tbody>
|
@@ -1582,9 +1580,6 @@ of underlining.
|
|
1582
1580
|
<a name="PANGO-TYPE-UNDERLINE:CAPS"></a><h3>PANGO_TYPE_UNDERLINE</h3>
|
1583
1581
|
<pre class="programlisting">#define PANGO_TYPE_UNDERLINE (pango_underline_get_type ())
|
1584
1582
|
</pre>
|
1585
|
-
<p>
|
1586
|
-
The <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Text-Attributes.html#PangoUnderline"><span class="type">PangoUnderline</span></a>.
|
1587
|
-
</p>
|
1588
1583
|
</div>
|
1589
1584
|
<hr>
|
1590
1585
|
<div class="refsect2">
|
@@ -1680,10 +1675,6 @@ freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-dest
|
|
1680
1675
|
<p>
|
1681
1676
|
Type of a function that can duplicate user data for an attribute.
|
1682
1677
|
</p>
|
1683
|
-
<p>
|
1684
|
-
A copy function passed to attribute new functions that take
|
1685
|
-
user data.
|
1686
|
-
</p>
|
1687
1678
|
<div class="variablelist"><table border="0" class="variablelist">
|
1688
1679
|
<colgroup>
|
1689
1680
|
<col align="left" valign="top">
|
@@ -1948,6 +1939,26 @@ which should be freed with <a class="link" href="pango-Text-Attributes.html#pang
|
|
1948
1939
|
The <a class="link" href="pango-Text-Attributes.html#PangoColor"><span class="type">PangoColor</span></a> structure is used to
|
1949
1940
|
represent a color in an uncalibrated RGB color-space.
|
1950
1941
|
</p>
|
1942
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1943
|
+
<colgroup>
|
1944
|
+
<col align="left" valign="top">
|
1945
|
+
<col>
|
1946
|
+
</colgroup>
|
1947
|
+
<tbody>
|
1948
|
+
<tr>
|
1949
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="PangoColor-struct.red"></a>red</code></em>;</span></p></td>
|
1950
|
+
<td>value of red component</td>
|
1951
|
+
</tr>
|
1952
|
+
<tr>
|
1953
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="PangoColor-struct.green"></a>green</code></em>;</span></p></td>
|
1954
|
+
<td>value of green component</td>
|
1955
|
+
</tr>
|
1956
|
+
<tr>
|
1957
|
+
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="PangoColor-struct.blue"></a>blue</code></em>;</span></p></td>
|
1958
|
+
<td>value of blue component</td>
|
1959
|
+
</tr>
|
1960
|
+
</tbody>
|
1961
|
+
</table></div>
|
1951
1962
|
</div>
|
1952
1963
|
<hr>
|
1953
1964
|
<div class="refsect2">
|
@@ -2395,10 +2406,6 @@ no attributes of the given types were found. <span class="annotation">[<acronym
|
|
2395
2406
|
<p>
|
2396
2407
|
Type of a function filtering a list of attributes.
|
2397
2408
|
</p>
|
2398
|
-
<p>
|
2399
|
-
A predicate function used by <a class="link" href="pango-Text-Attributes.html#pango-attr-list-filter" title="pango_attr_list_filter ()"><code class="function">pango_attr_list_filter()</code></a>
|
2400
|
-
to filter out a subset of attributes for a list.
|
2401
|
-
</p>
|
2402
2409
|
<div class="variablelist"><table border="0" class="variablelist">
|
2403
2410
|
<colgroup>
|
2404
2411
|
<col align="left" valign="top">
|
@@ -2692,6 +2699,6 @@ Destroy a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" ti
|
|
2692
2699
|
</div>
|
2693
2700
|
<div class="footer">
|
2694
2701
|
<hr>
|
2695
|
-
Generated by GTK-Doc V1.
|
2702
|
+
Generated by GTK-Doc V1.19</div>
|
2696
2703
|
</body>
|
2697
2704
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango.html" title="Basic Pango Interfaces">
|
10
10
|
<link rel="next" href="pango-Glyph-Storage.html" title="Glyph Storage">
|
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">
|
@@ -180,8 +180,7 @@ used to control the itemization process.
|
|
180
180
|
};
|
181
181
|
</pre>
|
182
182
|
<p>
|
183
|
-
The <a class="link" href="pango-Text-Processing.html#PangoItem"><span class="type">PangoItem</span></a> structure stores information
|
184
|
-
a segment of text. It contains the following fields:
|
183
|
+
The <a class="link" href="pango-Text-Processing.html#PangoItem"><span class="type">PangoItem</span></a> structure stores information abouta segment of text.
|
185
184
|
</p>
|
186
185
|
</div>
|
187
186
|
<hr>
|
@@ -204,8 +203,7 @@ a segment of text. It contains the following fields:
|
|
204
203
|
</pre>
|
205
204
|
<p>
|
206
205
|
The <a class="link" href="pango-Text-Processing.html#PangoAnalysis" title="struct PangoAnalysis"><span class="type">PangoAnalysis</span></a> structure stores information about
|
207
|
-
the properties of a segment of text.
|
208
|
-
fields:
|
206
|
+
the properties of a segment of text.
|
209
207
|
</p>
|
210
208
|
<div class="variablelist"><table border="0" class="variablelist">
|
211
209
|
<colgroup>
|
@@ -260,17 +258,14 @@ fields:
|
|
260
258
|
<p>
|
261
259
|
Whether the segment should be shifted to center around the baseline.
|
262
260
|
Used in vertical writing directions mostly.
|
263
|
-
Since: 1.16
|
264
261
|
</p>
|
262
|
+
<p class="since">Since 1.16</p>
|
265
263
|
</div>
|
266
264
|
<hr>
|
267
265
|
<div class="refsect2">
|
268
266
|
<a name="PANGO-TYPE-DIRECTION:CAPS"></a><h3>PANGO_TYPE_DIRECTION</h3>
|
269
267
|
<pre class="programlisting">#define PANGO_TYPE_DIRECTION (pango_direction_get_type ())
|
270
268
|
</pre>
|
271
|
-
<p>
|
272
|
-
The <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Bidirectional-Text.html#PangoDirection"><span class="type">PangoDirection</span></a>.
|
273
|
-
</p>
|
274
269
|
</div>
|
275
270
|
<hr>
|
276
271
|
<div class="refsect2">
|
@@ -563,7 +558,7 @@ together and hence users are recommended to use that.
|
|
563
558
|
If you are using Pango as part of a higher-level system,
|
564
559
|
that system may have it's own way of create a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>.
|
565
560
|
For instance, the GTK+ toolkit has, among others,
|
566
|
-
<a href="http://
|
561
|
+
<a href="http://developer.gnome.org/gdk2/gdk3-Pango-Interaction.html#gdk-pango-context-get-for-screen"><code class="function">gdk_pango_context_get_for_screen()</code></a>, and
|
567
562
|
<a href="http://developer.gnome.org/gtk2/GtkWidget.html#gtk-widget-get-pango-context"><code class="function">gtk_widget_get_pango_context()</code></a>. Use those instead.
|
568
563
|
</p>
|
569
564
|
<div class="variablelist"><table border="0" class="variablelist">
|
@@ -674,7 +669,7 @@ via one of the recommended methods should already have a suitable font map.
|
|
674
669
|
<a name="pango-context-get-font-map"></a><h3>pango_context_get_font_map ()</h3>
|
675
670
|
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> * pango_context_get_font_map (<em class="parameter"><code><a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> *context</code></em>);</pre>
|
676
671
|
<p>
|
677
|
-
Gets the <span class="type">
|
672
|
+
Gets the <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> used to look up fonts for this context.
|
678
673
|
</p>
|
679
674
|
<div class="variablelist"><table border="0" class="variablelist">
|
680
675
|
<colgroup>
|
@@ -1536,8 +1531,7 @@ inter-sentence whitespace/control/format chars to some sentence,
|
|
1536
1531
|
so all chars are in some sentence; <em class="parameter"><code>is_sentence_boundary</code></em> denotes
|
1537
1532
|
the boundaries there. The second way doesn't assign
|
1538
1533
|
between-sentence spaces, etc. to any sentence, so
|
1539
|
-
<em class="parameter"><code>is_sentence_start</code></em>/<em class="parameter"><code>is_sentence_end</code></em> mark the boundaries
|
1540
|
-
of those sentences.</td>
|
1534
|
+
<em class="parameter"><code>is_sentence_start</code></em>/<em class="parameter"><code>is_sentence_end</code></em> mark the boundaries of those sentences.</td>
|
1541
1535
|
</tr>
|
1542
1536
|
<tr>
|
1543
1537
|
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoLogAttr.is-sentence-start"></a>is_sentence_start</code></em> : 1;</span></p></td>
|
@@ -1562,8 +1556,7 @@ unit, while in others, each decomposed
|
|
1562
1556
|
character in the grapheme is a unit. In the
|
1563
1557
|
default implementation of <a class="link" href="pango-Text-Processing.html#pango-break" title="pango_break ()"><code class="function">pango_break()</code></a>, this
|
1564
1558
|
bit is set on all grapheme boundaries except
|
1565
|
-
those following Latin, Cyrillic or Greek base
|
1566
|
-
characters.</td>
|
1559
|
+
those following Latin, Cyrillic or Greek base characters.</td>
|
1567
1560
|
</tr>
|
1568
1561
|
<tr>
|
1569
1562
|
<td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoLogAttr.is-expandable-space"></a>is_expandable_space</code></em> : 1;</span></p></td>
|
@@ -1579,8 +1572,7 @@ considered word boundaries. This flag is particularly useful when
|
|
1579
1572
|
selecting text word-by-word.
|
1580
1573
|
This flag implements Unicode's
|
1581
1574
|
<a class="ulink" href="http://www.unicode.org/reports/tr29/" target="_top">Word
|
1582
|
-
Boundaries</a> semantics.
|
1583
|
-
(Since: 1.22)</td>
|
1575
|
+
Boundaries</a> semantics. (Since: 1.22)</td>
|
1584
1576
|
</tr>
|
1585
1577
|
</tbody>
|
1586
1578
|
</table></div>
|
@@ -1692,6 +1684,6 @@ text of which <em class="parameter"><code>item_text</code></em> is part of, prov
|
|
1692
1684
|
</div>
|
1693
1685
|
<div class="footer">
|
1694
1686
|
<hr>
|
1695
|
-
Generated by GTK-Doc V1.
|
1687
|
+
Generated by GTK-Doc V1.19</div>
|
1696
1688
|
</body>
|
1697
1689
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">
|
10
10
|
<link rel="next" href="tools.html" title="Pango Tools">
|
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">
|
@@ -58,11 +58,11 @@ const <span class="returnvalue">char</span> * <a class="link" href="pango
|
|
58
58
|
<div class="refsect1">
|
59
59
|
<a name="pango-Version-Checking.description"></a><h2>Description</h2>
|
60
60
|
<p>
|
61
|
-
The capital-letter macros defined here can be used to check the version of
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
at run-time.
|
61
|
+
The capital-letter macros defined here can be used to check the version of Pango
|
62
|
+
at compile-time, and to <em class="firstterm">encode</em> Pango versions into integers.
|
63
|
+
</p>
|
64
|
+
<p>
|
65
|
+
The functions can be used to check the version of the linked Pango library at run-time.
|
66
66
|
</p>
|
67
67
|
</div>
|
68
68
|
<div class="refsect1">
|
@@ -101,8 +101,7 @@ Two encoded version numbers can be compared as integers.
|
|
101
101
|
<a name="PANGO-VERSION:CAPS"></a><h3>PANGO_VERSION</h3>
|
102
102
|
<pre class="programlisting">#define PANGO_VERSION</pre>
|
103
103
|
<p>
|
104
|
-
The version of Pango available at compile-time, encoded using
|
105
|
-
<a class="link" href="pango-Version-Checking.html#PANGO-VERSION-ENCODE:CAPS" title="PANGO_VERSION_ENCODE()"><code class="function">PANGO_VERSION_ENCODE()</code></a>.
|
104
|
+
The version of Pango available at compile-time, encoded using <a class="link" href="pango-Version-Checking.html#PANGO-VERSION-ENCODE:CAPS" title="PANGO_VERSION_ENCODE()"><code class="function">PANGO_VERSION_ENCODE()</code></a>.
|
106
105
|
</p>
|
107
106
|
</div>
|
108
107
|
<hr>
|
@@ -117,7 +116,7 @@ The major component of the version of Pango available at compile-time.
|
|
117
116
|
<hr>
|
118
117
|
<div class="refsect2">
|
119
118
|
<a name="PANGO-VERSION-MINOR:CAPS"></a><h3>PANGO_VERSION_MINOR</h3>
|
120
|
-
<pre class="programlisting">#define PANGO_VERSION_MINOR
|
119
|
+
<pre class="programlisting">#define PANGO_VERSION_MINOR 36
|
121
120
|
</pre>
|
122
121
|
<p>
|
123
122
|
The minor component of the version of Pango available at compile-time.
|
@@ -135,7 +134,7 @@ The micro component of the version of Pango available at compile-time.
|
|
135
134
|
<hr>
|
136
135
|
<div class="refsect2">
|
137
136
|
<a name="PANGO-VERSION-STRING:CAPS"></a><h3>PANGO_VERSION_STRING</h3>
|
138
|
-
<pre class="programlisting">#define PANGO_VERSION_STRING "1.
|
137
|
+
<pre class="programlisting">#define PANGO_VERSION_STRING "1.36.1"
|
139
138
|
</pre>
|
140
139
|
<p>
|
141
140
|
A string literal containing the version of Pango available at compile-time.
|
@@ -279,6 +278,6 @@ or freed.</td>
|
|
279
278
|
</div>
|
280
279
|
<div class="footer">
|
281
280
|
<hr>
|
282
|
-
Generated by GTK-Doc V1.
|
281
|
+
Generated by GTK-Doc V1.19</div>
|
283
282
|
</body>
|
284
283
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Bidirectional-Text.html" title="Bidirectional Text">
|
10
10
|
<link rel="next" href="rendering.html" title="Rendering with Pango">
|
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">
|
@@ -370,7 +370,7 @@ or <a class="link" href="pango-Text-Processing.html#PangoItem"><span class="type
|
|
370
370
|
This function is similar to <a class="link" href="pango-Vertical-Text.html#pango-gravity-get-for-script" title="pango_gravity_get_for_script ()"><code class="function">pango_gravity_get_for_script()</code></a> except
|
371
371
|
that this function makes a distinction between narrow/half-width and
|
372
372
|
wide/full-width characters also. Wide/full-width characters always
|
373
|
-
stand <span
|
373
|
+
stand <span class="emphasis"><em>upright</em></span>, that is, they always take the base gravity,
|
374
374
|
whereas narrow/full-width characters are always rotated in vertical
|
375
375
|
context.
|
376
376
|
</p>
|
@@ -446,8 +446,7 @@ you should multiply it by (180. / G_PI).
|
|
446
446
|
</div>
|
447
447
|
<div class="refsect1">
|
448
448
|
<a name="pango-Vertical-Text.see-also"></a><h2>See Also</h2>
|
449
|
-
|
450
|
-
<a class="link" href="pango-Text-Processing.html#pango-context-get-base-gravity" title="pango_context_get_base_gravity ()"><code class="function">pango_context_get_base_gravity()</code></a>,
|
449
|
+
pango_context_get_base_gravity(),
|
451
450
|
<a class="link" href="pango-Text-Processing.html#pango-context-set-base-gravity" title="pango_context_set_base_gravity ()"><code class="function">pango_context_set_base_gravity()</code></a>,
|
452
451
|
<a class="link" href="pango-Text-Processing.html#pango-context-get-gravity" title="pango_context_get_gravity ()"><code class="function">pango_context_get_gravity()</code></a>,
|
453
452
|
<a class="link" href="pango-Text-Processing.html#pango-context-get-gravity-hint" title="pango_context_get_gravity_hint ()"><code class="function">pango_context_get_gravity_hint()</code></a>,
|
@@ -456,11 +455,10 @@ you should multiply it by (180. / G_PI).
|
|
456
455
|
<a class="link" href="pango-Fonts.html#pango-font-description-get-gravity" title="pango_font_description_get_gravity ()"><code class="function">pango_font_description_get_gravity()</code></a>,
|
457
456
|
<a class="link" href="pango-Text-Attributes.html#pango-attr-gravity-new" title="pango_attr_gravity_new ()"><code class="function">pango_attr_gravity_new()</code></a>,
|
458
457
|
<a class="link" href="pango-Text-Attributes.html#pango-attr-gravity-hint-new" title="pango_attr_gravity_hint_new ()"><code class="function">pango_attr_gravity_hint_new()</code></a>
|
459
|
-
</p>
|
460
458
|
</div>
|
461
459
|
</div>
|
462
460
|
<div class="footer">
|
463
461
|
<hr>
|
464
|
-
Generated by GTK-Doc V1.
|
462
|
+
Generated by GTK-Doc V1.19</div>
|
465
463
|
</body>
|
466
464
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="rendering.html" title="Rendering with Pango">
|
9
9
|
<link rel="prev" href="rendering.html" title="Rendering with Pango">
|
10
10
|
<link rel="next" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">
|
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">
|
@@ -493,8 +493,7 @@ Obtains a handle to the Windows device context that is used by Pango.
|
|
493
493
|
<a name="PangoWin32FontCache"></a><h3>PangoWin32FontCache</h3>
|
494
494
|
<pre class="programlisting">typedef struct _PangoWin32FontCache PangoWin32FontCache;</pre>
|
495
495
|
<p>
|
496
|
-
A <a class="link" href="pango-Win32-Fonts-and-Rendering.html#PangoWin32FontCache" title="PangoWin32FontCache"><span class="type">PangoWin32FontCache</span></a> caches
|
497
|
-
HFONTs by their LOGFONT descriptions.
|
496
|
+
A <a class="link" href="pango-Win32-Fonts-and-Rendering.html#PangoWin32FontCache" title="PangoWin32FontCache"><span class="type">PangoWin32FontCache</span></a> caches HFONTs by their LOGFONT descriptions.
|
498
497
|
</p>
|
499
498
|
</div>
|
500
499
|
<hr>
|
@@ -819,6 +818,6 @@ should be freed using <a class="link" href="pango-Fonts.html#pango-font-descript
|
|
819
818
|
</div>
|
820
819
|
<div class="footer">
|
821
820
|
<hr>
|
822
|
-
Generated by GTK-Doc V1.
|
821
|
+
Generated by GTK-Doc V1.19</div>
|
823
822
|
</body>
|
824
823
|
</html>
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<link rel="up" href="rendering.html" title="Rendering with Pango">
|
9
9
|
<link rel="prev" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">
|
10
10
|
<link rel="next" href="pango-Cairo-Rendering.html" title="Cairo Rendering">
|
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">
|
@@ -71,7 +71,7 @@
|
|
71
71
|
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a> wc</code></em>);
|
72
72
|
struct <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer-struct" title="struct PangoXftRenderer">PangoXftRenderer</a>;
|
73
73
|
struct <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRendererClass" title="struct PangoXftRendererClass">PangoXftRendererClass</a>;
|
74
|
-
<a class="link" href="
|
74
|
+
<a class="link" href="PangoRenderer.html" title="PangoRenderer"><span class="returnvalue">PangoRenderer</span></a> * <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-new" title="pango_xft_renderer_new ()">pango_xft_renderer_new</a> (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
75
75
|
<em class="parameter"><code><span class="type">int</span> screen</code></em>);
|
76
76
|
<span class="returnvalue">void</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-set-draw" title="pango_xft_renderer_set_draw ()">pango_xft_renderer_set_draw</a> (<em class="parameter"><code><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> *xftrenderer</code></em>,
|
77
77
|
<em class="parameter"><code><span class="type">XftDraw</span> *draw</code></em>);
|
@@ -126,7 +126,7 @@ struct <a class="link" href="pango-Xft-Fonts-and-Rendering.html#Pan
|
|
126
126
|
</pre>
|
127
127
|
<pre class="synopsis">
|
128
128
|
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
129
|
-
+----<a class="link" href="
|
129
|
+
+----<a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
|
130
130
|
+----PangoXftRenderer
|
131
131
|
</pre>
|
132
132
|
</div>
|
@@ -161,7 +161,7 @@ individual layout lines and glyphs strings are provided. You can also
|
|
161
161
|
directly create a <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a>. Finally, in some advanced cases, it
|
162
162
|
is useful to derive from <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a>. Deriving from
|
163
163
|
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> is useful for two reasons. One reason is be to
|
164
|
-
support custom attributes by overriding <a class="link" href="
|
164
|
+
support custom attributes by overriding <a class="link" href="PangoRenderer.html#PangoRendererClass" title="struct PangoRendererClass"><span class="type">PangoRendererClass</span></a> virtual
|
165
165
|
functions like 'prepare_run' or 'draw_shape'. The reason is to
|
166
166
|
customize exactly how the final bits are drawn to the destination by
|
167
167
|
overriding the <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRendererClass" title="struct PangoXftRendererClass"><span class="type">PangoXftRendererClass</span></a> virtual functions
|
@@ -243,7 +243,7 @@ Xft fonts on the given screen of the given display.
|
|
243
243
|
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> * pango_xft_get_font_map (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
244
244
|
<em class="parameter"><code><span class="type">int</span> screen</code></em>);</pre>
|
245
245
|
<p>
|
246
|
-
Returns the <span class="type">
|
246
|
+
Returns the <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFontMap"><span class="type">PangoXftFontMap</span></a> for the given display and screen.
|
247
247
|
The fontmap is owned by Pango and will be valid until
|
248
248
|
the display is closed.
|
249
249
|
</p>
|
@@ -633,7 +633,7 @@ Use <a class="link" href="pango-Glyph-Storage.html#PANGO-GET-UNKNOWN-GLYPH:CAPS"
|
|
633
633
|
<a name="PangoXftRenderer-struct"></a><h3>struct PangoXftRenderer</h3>
|
634
634
|
<pre class="programlisting">struct PangoXftRenderer;</pre>
|
635
635
|
<p>
|
636
|
-
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> is a subclass of <a class="link" href="
|
636
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> is a subclass of <a class="link" href="PangoRenderer.html" title="PangoRenderer"><span class="type">PangoRenderer</span></a> used for rendering
|
637
637
|
with Pango's Xft backend. It can be used directly, or it can be
|
638
638
|
further subclassed to modify exactly how drawing of individual
|
639
639
|
elements occurs.
|
@@ -682,7 +682,7 @@ attributes</td>
|
|
682
682
|
<hr>
|
683
683
|
<div class="refsect2">
|
684
684
|
<a name="pango-xft-renderer-new"></a><h3>pango_xft_renderer_new ()</h3>
|
685
|
-
<pre class="programlisting"><a class="link" href="
|
685
|
+
<pre class="programlisting"><a class="link" href="PangoRenderer.html" title="PangoRenderer"><span class="returnvalue">PangoRenderer</span></a> * pango_xft_renderer_new (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
686
686
|
<em class="parameter"><code><span class="type">int</span> screen</code></em>);</pre>
|
687
687
|
<p>
|
688
688
|
Create a new <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> to allow rendering Pango objects
|
@@ -898,14 +898,14 @@ transformation matrix to that passed in to this function.
|
|
898
898
|
<td>the color in which to draw the glyphs</td>
|
899
899
|
</tr>
|
900
900
|
<tr>
|
901
|
-
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
902
|
-
<td>a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use an identity transformation</td>
|
903
|
-
</tr>
|
904
|
-
<tr>
|
905
901
|
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
906
902
|
<td>the font in which to draw the string</td>
|
907
903
|
</tr>
|
908
904
|
<tr>
|
905
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
906
|
+
<td>a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use an identity transformation</td>
|
907
|
+
</tr>
|
908
|
+
<tr>
|
909
909
|
<td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
|
910
910
|
<td>the glyph string to draw</td>
|
911
911
|
</tr>
|
@@ -1031,6 +1031,6 @@ Render a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span clas
|
|
1031
1031
|
</div>
|
1032
1032
|
<div class="footer">
|
1033
1033
|
<hr>
|
1034
|
-
Generated by GTK-Doc V1.
|
1034
|
+
Generated by GTK-Doc V1.19</div>
|
1035
1035
|
</body>
|
1036
1036
|
</html>
|