pango 2.0.0-x86-mingw32 → 2.0.1-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.
- data/Rakefile +29 -3
- data/ext/pango/extconf.rb +7 -0
- data/ext/pango/rbpangocairo.c +12 -0
- data/ext/pango/rbpangofontmap.c +22 -3
- data/lib/1.9/pango.so +0 -0
- data/lib/2.0/pango.so +0 -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/libgcc_s_sjlj-1.dll +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/etc/pango/pango.modules +1 -0
- data/vendor/local/include/harfbuzz/hb-blob.h +127 -0
- data/vendor/local/include/harfbuzz/hb-buffer.h +323 -0
- data/vendor/local/include/harfbuzz/hb-common.h +317 -0
- data/vendor/local/include/harfbuzz/hb-font.h +454 -0
- data/vendor/local/include/harfbuzz/hb-ft.h +62 -0
- data/vendor/local/include/harfbuzz/hb-glib.h +52 -0
- data/vendor/local/include/harfbuzz/hb-gobject.h +69 -0
- data/vendor/local/include/harfbuzz/hb-ot-layout.h +293 -0
- data/vendor/local/include/harfbuzz/hb-ot-tag.h +59 -0
- data/vendor/local/include/harfbuzz/hb-ot.h +49 -0
- data/vendor/local/include/harfbuzz/hb-set.h +152 -0
- data/vendor/local/include/harfbuzz/hb-shape-plan.h +89 -0
- data/vendor/local/include/harfbuzz/hb-shape.h +81 -0
- data/vendor/local/include/harfbuzz/hb-unicode.h +357 -0
- data/vendor/local/include/harfbuzz/hb-uniscribe.h +49 -0
- data/vendor/local/include/harfbuzz/hb-version.h +66 -0
- data/vendor/local/include/harfbuzz/hb.h +45 -0
- data/vendor/local/include/pango-1.0/pango/pango-attributes.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pango-features.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pango-ot.h +242 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-decoder.h +110 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-font.h +153 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +289 -0
- data/vendor/local/include/pango-1.0/pango/pangoft2.h +120 -0
- data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/PangoFT2-1.0.typelib +0 -0
- data/vendor/local/lib/libharfbuzz.dll.a +0 -0
- data/vendor/local/lib/libharfbuzz.la +41 -0
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.la +1 -1
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.la +2 -2
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.la +41 -0
- data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.la +1 -1
- 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 +41 -0
- 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 +11 -0
- data/vendor/local/lib/pkgconfig/pango.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangocairo.pc +2 -2
- data/vendor/local/lib/pkgconfig/pangoft2.pc +12 -0
- data/vendor/local/lib/pkgconfig/pangowin32.pc +1 -1
- data/vendor/local/share/gir-1.0/Pango-1.0.gir +1 -1
- data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +22 -1
- data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +349 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +5 -5
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +4 -4
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +17 -17
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +22 -22
- data/vendor/local/share/gtk-doc/html/pango/index.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +15 -15
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +30 -30
- data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +7 -7
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +11 -11
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +123 -123
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +15 -15
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +56 -56
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +130 -130
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +76 -76
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +9 -9
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +101 -101
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +38 -38
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +35 -35
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +135 -135
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +75 -75
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +8 -8
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +22 -22
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +35 -35
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-pango-renderer.html +11 -11
- data/vendor/local/share/license/harfbuzz/AUTHORS +8 -0
- data/vendor/local/share/license/harfbuzz/COPYING +36 -0
- data/vendor/local/share/man/man1/pango-querymodules.1 +2 -2
- data/vendor/local/share/man/man1/pango-view.1 +1 -1
- metadata +50 -8
@@ -126,7 +126,7 @@ The minor component of the version of Pango available at compile-time.
|
|
126
126
|
<hr>
|
127
127
|
<div class="refsect2">
|
128
128
|
<a name="PANGO-VERSION-MICRO:CAPS"></a><h3>PANGO_VERSION_MICRO</h3>
|
129
|
-
<pre class="programlisting">#define PANGO_VERSION_MICRO
|
129
|
+
<pre class="programlisting">#define PANGO_VERSION_MICRO 1
|
130
130
|
</pre>
|
131
131
|
<p>
|
132
132
|
The micro component of the version of Pango available at compile-time.
|
@@ -135,7 +135,7 @@ The micro component of the version of Pango available at compile-time.
|
|
135
135
|
<hr>
|
136
136
|
<div class="refsect2">
|
137
137
|
<a name="PANGO-VERSION-STRING:CAPS"></a><h3>PANGO_VERSION_STRING</h3>
|
138
|
-
<pre class="programlisting">#define PANGO_VERSION_STRING "1.34.
|
138
|
+
<pre class="programlisting">#define PANGO_VERSION_STRING "1.34.1"
|
139
139
|
</pre>
|
140
140
|
<p>
|
141
141
|
A string literal containing the version of Pango available at compile-time.
|
@@ -266,7 +266,7 @@ For compile-time version checking use <a class="link" href="pango-Version-Checki
|
|
266
266
|
<tr>
|
267
267
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
268
268
|
<td>
|
269
|
-
<code class="literal">NULL</code> if the Pango library is compatible with the
|
269
|
+
<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> if the Pango library is compatible with the
|
270
270
|
given version, or a string describing the version mismatch.
|
271
271
|
The returned string is owned by Pango and should not be modified
|
272
272
|
or freed.</td>
|
@@ -49,7 +49,7 @@ enum <a class="link" href="pango-Vertical-Text.html#PangoGravityH
|
|
49
49
|
<em class="parameter"><code><a class="link" href="pango-Vertical-Text.html#PangoGravityHint"><span class="type">PangoGravityHint</span></a> hint</code></em>);
|
50
50
|
<a class="link" href="pango-Vertical-Text.html#PangoGravity"><span class="returnvalue">PangoGravity</span></a> <a class="link" href="pango-Vertical-Text.html#pango-gravity-get-for-script-and-width" title="pango_gravity_get_for_script_and_width ()">pango_gravity_get_for_script_and_width</a>
|
51
51
|
(<em class="parameter"><code><a class="link" href="pango-Scripts-and-Languages.html#PangoScript"><span class="type">PangoScript</span></a> script</code></em>,
|
52
|
-
<em class="parameter"><code><span class="type">gboolean</span> wide</code></em>,
|
52
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> wide</code></em>,
|
53
53
|
<em class="parameter"><code><a class="link" href="pango-Vertical-Text.html#PangoGravity"><span class="type">PangoGravity</span></a> base_gravity</code></em>,
|
54
54
|
<em class="parameter"><code><a class="link" href="pango-Vertical-Text.html#PangoGravityHint"><span class="type">PangoGravityHint</span></a> hint</code></em>);
|
55
55
|
<span class="returnvalue">double</span> <a class="link" href="pango-Vertical-Text.html#pango-gravity-to-rotation" title="pango_gravity_to_rotation ()">pango_gravity_to_rotation</a> (<em class="parameter"><code><a class="link" href="pango-Vertical-Text.html#PangoGravity"><span class="type">PangoGravity</span></a> gravity</code></em>);
|
@@ -247,8 +247,8 @@ Whether a <a class="link" href="pango-Vertical-Text.html#PangoGravity"><span cla
|
|
247
247
|
<tr>
|
248
248
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
249
249
|
<td>
|
250
|
-
<code class="literal">TRUE</code> if <em class="parameter"><code>gravity</code></em> is <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-WEST:CAPS"><code class="literal">PANGO_GRAVITY_WEST</code></a> or <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-NORTH:CAPS"><code class="literal">PANGO_GRAVITY_NORTH</code></a>,
|
251
|
-
<code class="literal">FALSE</code> otherwise.</td>
|
250
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gravity</code></em> is <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-WEST:CAPS"><code class="literal">PANGO_GRAVITY_WEST</code></a> or <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-NORTH:CAPS"><code class="literal">PANGO_GRAVITY_NORTH</code></a>,
|
251
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
|
252
252
|
</tr>
|
253
253
|
</tbody>
|
254
254
|
</table></div>
|
@@ -274,8 +274,8 @@ Whether a <a class="link" href="pango-Vertical-Text.html#PangoGravity"><span cla
|
|
274
274
|
<tr>
|
275
275
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
276
276
|
<td>
|
277
|
-
<code class="literal">TRUE</code> if <em class="parameter"><code>gravity</code></em> is <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-EAST:CAPS"><code class="literal">PANGO_GRAVITY_EAST</code></a> or <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-WEST:CAPS"><code class="literal">PANGO_GRAVITY_WEST</code></a>,
|
278
|
-
<code class="literal">FALSE</code> otherwise.</td>
|
277
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gravity</code></em> is <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-EAST:CAPS"><code class="literal">PANGO_GRAVITY_EAST</code></a> or <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-WEST:CAPS"><code class="literal">PANGO_GRAVITY_WEST</code></a>,
|
278
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
|
279
279
|
</tr>
|
280
280
|
</tbody>
|
281
281
|
</table></div>
|
@@ -303,7 +303,7 @@ in a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="ty
|
|
303
303
|
<tr>
|
304
304
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
305
305
|
<td>the gravity of <em class="parameter"><code>matrix</code></em>, which will never be
|
306
|
-
<a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-AUTO:CAPS"><code class="literal">PANGO_GRAVITY_AUTO</code></a>, or <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-SOUTH:CAPS"><code class="literal">PANGO_GRAVITY_SOUTH</code></a> if <em class="parameter"><code>matrix</code></em> is <code class="literal">NULL</code>
|
306
|
+
<a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-AUTO:CAPS"><code class="literal">PANGO_GRAVITY_AUTO</code></a>, or <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-SOUTH:CAPS"><code class="literal">PANGO_GRAVITY_SOUTH</code></a> if <em class="parameter"><code>matrix</code></em> is <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>
|
307
307
|
</td>
|
308
308
|
</tr>
|
309
309
|
</tbody>
|
@@ -358,7 +358,7 @@ with <em class="parameter"><code>script</code></em>.</td>
|
|
358
358
|
<a name="pango-gravity-get-for-script-and-width"></a><h3>pango_gravity_get_for_script_and_width ()</h3>
|
359
359
|
<pre class="programlisting"><a class="link" href="pango-Vertical-Text.html#PangoGravity"><span class="returnvalue">PangoGravity</span></a> pango_gravity_get_for_script_and_width
|
360
360
|
(<em class="parameter"><code><a class="link" href="pango-Scripts-and-Languages.html#PangoScript"><span class="type">PangoScript</span></a> script</code></em>,
|
361
|
-
<em class="parameter"><code><span class="type">gboolean</span> wide</code></em>,
|
361
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> wide</code></em>,
|
362
362
|
<em class="parameter"><code><a class="link" href="pango-Vertical-Text.html#PangoGravity"><span class="type">PangoGravity</span></a> base_gravity</code></em>,
|
363
363
|
<em class="parameter"><code><a class="link" href="pango-Vertical-Text.html#PangoGravityHint"><span class="type">PangoGravityHint</span></a> hint</code></em>);</pre>
|
364
364
|
<p>
|
@@ -392,7 +392,7 @@ preferred gravity of <em class="parameter"><code>script</code></em>.
|
|
392
392
|
<tr>
|
393
393
|
<td><p><span class="term"><em class="parameter"><code>wide</code></em> :</span></p></td>
|
394
394
|
<td>
|
395
|
-
<code class="literal">TRUE</code> for wide characters as returned by <code class="function">g_unichar_iswide()</code>
|
395
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for wide characters as returned by <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#g-unichar-iswide"><code class="function">g_unichar_iswide()</code></a>
|
396
396
|
</td>
|
397
397
|
</tr>
|
398
398
|
<tr>
|
@@ -42,8 +42,8 @@
|
|
42
42
|
<span class="returnvalue">void</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-render" title="pango_win32_render ()">pango_win32_render</a> (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>,
|
43
43
|
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
44
44
|
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
45
|
-
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
46
|
-
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
45
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
46
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
|
47
47
|
<span class="returnvalue">void</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-render-transformed" title="pango_win32_render_transformed ()">pango_win32_render_transformed</a> (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>,
|
48
48
|
<em class="parameter"><code>const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a> *matrix</code></em>,
|
49
49
|
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
@@ -59,14 +59,14 @@
|
|
59
59
|
<em class="parameter"><code><span class="type">int</span> x</code></em>,
|
60
60
|
<em class="parameter"><code><span class="type">int</span> y</code></em>);
|
61
61
|
<a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-unknown-glyph" title="pango_win32_get_unknown_glyph ()">pango_win32_get_unknown_glyph</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
62
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);
|
63
|
-
<span class="returnvalue">gint</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-get-glyph-index" title="pango_win32_font_get_glyph_index ()">pango_win32_font_get_glyph_index</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
64
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);
|
65
|
-
<span class="returnvalue">gboolean</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-select-font" title="pango_win32_font_select_font ()">pango_win32_font_select_font</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
62
|
+
<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>);
|
63
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-get-glyph-index" title="pango_win32_font_get_glyph_index ()">pango_win32_font_get_glyph_index</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
64
|
+
<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>);
|
65
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-select-font" title="pango_win32_font_select_font ()">pango_win32_font_select_font</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
66
66
|
<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>);
|
67
67
|
<span class="returnvalue">void</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-done-font" title="pango_win32_font_done_font ()">pango_win32_font_done_font</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);
|
68
68
|
<span class="returnvalue">double</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-get-metrics-factor" title="pango_win32_font_get_metrics_factor ()">pango_win32_font_get_metrics_factor</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);
|
69
|
-
<span class="returnvalue">gboolean</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-debug-flag" title="pango_win32_get_debug_flag ()">pango_win32_get_debug_flag</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
69
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-debug-flag" title="pango_win32_get_debug_flag ()">pango_win32_get_debug_flag</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
70
70
|
<span class="returnvalue">HDC</span> <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-dc" title="pango_win32_get_dc ()">pango_win32_get_dc</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
71
71
|
<a class="link" href="pango-Win32-Fonts-and-Rendering.html#PangoWin32FontCache" title="PangoWin32FontCache">PangoWin32FontCache</a>;
|
72
72
|
<a class="link" href="pango-Win32-Fonts-and-Rendering.html#PangoWin32FontCache" title="PangoWin32FontCache"><span class="returnvalue">PangoWin32FontCache</span></a> * <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-new" title="pango_win32_font_cache_new ()">pango_win32_font_cache_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
@@ -104,7 +104,7 @@ Win32 systems and to render text in conjunction with Win32 APIs.
|
|
104
104
|
</pre>
|
105
105
|
<p>
|
106
106
|
A string constant identifying the Win32 renderer. The associated quark (see
|
107
|
-
<code class="function">g_quark_from_string()</code>) is used to identify the renderer in <a class="link" href="pango-Modules.html#pango-find-map" title="pango_find_map ()"><code class="function">pango_find_map()</code></a>.
|
107
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html#g-quark-from-string"><code class="function">g_quark_from_string()</code></a>) is used to identify the renderer in <a class="link" href="pango-Modules.html#pango-find-map" title="pango_find_map ()"><code class="function">pango_find_map()</code></a>.
|
108
108
|
</p>
|
109
109
|
</div>
|
110
110
|
<hr>
|
@@ -137,8 +137,8 @@ Retrieves a <a class="link" href="pango-Text-Processing.html#PangoContext"><span
|
|
137
137
|
<pre class="programlisting"><span class="returnvalue">void</span> pango_win32_render (<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>,
|
138
138
|
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
139
139
|
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
140
|
-
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
141
|
-
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
140
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
141
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
142
142
|
<p>
|
143
143
|
Render a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> onto a Windows DC
|
144
144
|
</p>
|
@@ -200,7 +200,7 @@ transformation matrix to that passed in to this function.
|
|
200
200
|
</tr>
|
201
201
|
<tr>
|
202
202
|
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
203
|
-
<td>a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a>, or <code class="literal">NULL</code> to use an identity transformation</td>
|
203
|
+
<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>
|
204
204
|
</tr>
|
205
205
|
<tr>
|
206
206
|
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
@@ -301,7 +301,7 @@ Render a <a class="link" href="pango-Layout-Objects.html#PangoLayoutLine"><span
|
|
301
301
|
<div class="refsect2">
|
302
302
|
<a name="pango-win32-get-unknown-glyph"></a><h3>pango_win32_get_unknown_glyph ()</h3>
|
303
303
|
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a> pango_win32_get_unknown_glyph (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
304
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);</pre>
|
304
|
+
<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>);</pre>
|
305
305
|
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
306
306
|
<h3 class="title">Warning</h3>
|
307
307
|
<p><code class="literal">pango_win32_get_unknown_glyph</code> is deprecated and should not be used in newly-written code.</p>
|
@@ -339,8 +339,8 @@ Use <a class="link" href="pango-Glyph-Storage.html#PANGO-GET-UNKNOWN-GLYPH:CAPS"
|
|
339
339
|
<hr>
|
340
340
|
<div class="refsect2">
|
341
341
|
<a name="pango-win32-font-get-glyph-index"></a><h3>pango_win32_font_get_glyph_index ()</h3>
|
342
|
-
<pre class="programlisting"><span class="returnvalue">gint</span> pango_win32_font_get_glyph_index (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
343
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);</pre>
|
342
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> pango_win32_font_get_glyph_index (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
343
|
+
<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>);</pre>
|
344
344
|
<p>
|
345
345
|
Obtains the index of the glyph for <em class="parameter"><code>wc</code></em> in <em class="parameter"><code>font</code></em>, or 0, if not
|
346
346
|
covered.
|
@@ -369,7 +369,7 @@ covered.
|
|
369
369
|
<hr>
|
370
370
|
<div class="refsect2">
|
371
371
|
<a name="pango-win32-font-select-font"></a><h3>pango_win32_font_select_font ()</h3>
|
372
|
-
<pre class="programlisting"><span class="returnvalue">gboolean</span> pango_win32_font_select_font (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
372
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_win32_font_select_font (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
373
373
|
<em class="parameter"><code><span class="type">HDC</span> hdc</code></em>);</pre>
|
374
374
|
<p>
|
375
375
|
Selects the font into the specified DC and changes the mapping mode
|
@@ -400,7 +400,7 @@ into Pango units.
|
|
400
400
|
<tr>
|
401
401
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
402
402
|
<td>
|
403
|
-
<code class="literal">TRUE</code> if the operation succeeded.</td>
|
403
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the operation succeeded.</td>
|
404
404
|
</tr>
|
405
405
|
</tbody>
|
406
406
|
</table></div>
|
@@ -453,7 +453,7 @@ units.</td>
|
|
453
453
|
<hr>
|
454
454
|
<div class="refsect2">
|
455
455
|
<a name="pango-win32-get-debug-flag"></a><h3>pango_win32_get_debug_flag ()</h3>
|
456
|
-
<pre class="programlisting"><span class="returnvalue">gboolean</span> pango_win32_get_debug_flag (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
456
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_win32_get_debug_flag (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
457
457
|
<p>
|
458
458
|
Returns whether debugging is turned on.
|
459
459
|
</p>
|
@@ -465,7 +465,7 @@ Returns whether debugging is turned on.
|
|
465
465
|
<tbody><tr>
|
466
466
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
467
467
|
<td>
|
468
|
-
<code class="literal">TRUE</code> if debugging is turned on.</td>
|
468
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if debugging is turned on.</td>
|
469
469
|
</tr></tbody>
|
470
470
|
</table></div>
|
471
471
|
<p class="since">Since 1.2</p>
|
@@ -563,7 +563,7 @@ stored
|
|
563
563
|
</tr>
|
564
564
|
<tr>
|
565
565
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
566
|
-
<td>The font structure, or <code class="literal">NULL</code> if the font could
|
566
|
+
<td>The font structure, 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> if the font could
|
567
567
|
not be loaded. In order to free this structure, you must call
|
568
568
|
<a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-unload" title="pango_win32_font_cache_unload ()"><code class="function">pango_win32_font_cache_unload()</code></a>.</td>
|
569
569
|
</tr>
|
@@ -597,7 +597,7 @@ stored
|
|
597
597
|
</tr>
|
598
598
|
<tr>
|
599
599
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
600
|
-
<td>The font structure, or <code class="literal">NULL</code> if the font could
|
600
|
+
<td>The font structure, 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> if the font could
|
601
601
|
not be loaded. In order to free this structure, you must call
|
602
602
|
<a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-unload" title="pango_win32_font_cache_unload ()"><code class="function">pango_win32_font_cache_unload()</code></a>.</td>
|
603
603
|
</tr>
|
@@ -710,7 +710,7 @@ to come across fonts with odd names.
|
|
710
710
|
<tr>
|
711
711
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
712
712
|
<td>A newly allocated LOGFONTA struct. It must be
|
713
|
-
freed with <code class="function">g_free()</code>.</td>
|
713
|
+
freed with <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
|
714
714
|
</tr>
|
715
715
|
</tbody>
|
716
716
|
</table></div>
|
@@ -735,7 +735,7 @@ Determine the LOGFONTW struct for the specified font.
|
|
735
735
|
<tr>
|
736
736
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
737
737
|
<td>A newly allocated LOGFONTW struct. It must be
|
738
|
-
freed with <code class="function">g_free()</code>.</td>
|
738
|
+
freed with <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
|
739
739
|
</tr>
|
740
740
|
</tbody>
|
741
741
|
</table></div>
|
@@ -51,24 +51,24 @@
|
|
51
51
|
<span class="returnvalue">void</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-set-default-substitute" title="pango_xft_set_default_substitute ()">pango_xft_set_default_substitute</a> (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
52
52
|
<em class="parameter"><code><span class="type">int</span> screen</code></em>,
|
53
53
|
<em class="parameter"><code><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftSubstituteFunc" title="PangoXftSubstituteFunc ()"><span class="type">PangoXftSubstituteFunc</span></a> func</code></em>,
|
54
|
-
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
|
55
|
-
<em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);
|
54
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
55
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> notify</code></em>);
|
56
56
|
<span class="returnvalue">void</span> (<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftSubstituteFunc" title="PangoXftSubstituteFunc ()">*PangoXftSubstituteFunc</a>) (<em class="parameter"><code><span class="type">FcPattern</span> *pattern</code></em>,
|
57
|
-
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
|
57
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
|
58
58
|
<span class="returnvalue">void</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-substitute-changed" title="pango_xft_substitute_changed ()">pango_xft_substitute_changed</a> (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
59
59
|
<em class="parameter"><code><span class="type">int</span> screen</code></em>);
|
60
60
|
<span class="returnvalue">void</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-shutdown-display" title="pango_xft_shutdown_display ()">pango_xft_shutdown_display</a> (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
61
61
|
<em class="parameter"><code><span class="type">int</span> screen</code></em>);
|
62
62
|
<span class="returnvalue">XftFont</span> * <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-font" title="pango_xft_font_get_font ()">pango_xft_font_get_font</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);
|
63
63
|
<span class="returnvalue">Display</span> * <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-display" title="pango_xft_font_get_display ()">pango_xft_font_get_display</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);
|
64
|
-
<span class="returnvalue">gboolean</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-has-char" title="pango_xft_font_has_char ()">pango_xft_font_has_char</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
65
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);
|
64
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-has-char" title="pango_xft_font_has_char ()">pango_xft_font_has_char</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
65
|
+
<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>);
|
66
66
|
<span class="returnvalue">FT_Face</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-lock-face" title="pango_xft_font_lock_face ()">pango_xft_font_lock_face</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);
|
67
67
|
<span class="returnvalue">void</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-unlock-face" title="pango_xft_font_unlock_face ()">pango_xft_font_unlock_face</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);
|
68
|
-
<span class="returnvalue">guint</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-glyph" title="pango_xft_font_get_glyph ()">pango_xft_font_get_glyph</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
69
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);
|
68
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-glyph" title="pango_xft_font_get_glyph ()">pango_xft_font_get_glyph</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
69
|
+
<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>);
|
70
70
|
<a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-unknown-glyph" title="pango_xft_font_get_unknown_glyph ()">pango_xft_font_get_unknown_glyph</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
71
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);
|
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
74
|
<a class="link" href="pango-pango-renderer.html#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>,
|
@@ -82,15 +82,15 @@ struct <a class="link" href="pango-Xft-Fonts-and-Rendering.html#Pan
|
|
82
82
|
<em class="parameter"><code><span class="type">XftColor</span> *color</code></em>,
|
83
83
|
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
84
84
|
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
85
|
-
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
86
|
-
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
85
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
86
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
|
87
87
|
<span class="returnvalue">void</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-picture-render" title="pango_xft_picture_render ()">pango_xft_picture_render</a> (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
88
88
|
<em class="parameter"><code><span class="type">Picture</span> src_picture</code></em>,
|
89
89
|
<em class="parameter"><code><span class="type">Picture</span> dest_picture</code></em>,
|
90
90
|
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
91
91
|
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
92
|
-
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
93
|
-
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
92
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
93
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
|
94
94
|
<span class="returnvalue">void</span> <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-transformed" title="pango_xft_render_transformed ()">pango_xft_render_transformed</a> (<em class="parameter"><code><span class="type">XftDraw</span> *draw</code></em>,
|
95
95
|
<em class="parameter"><code><span class="type">XftColor</span> *color</code></em>,
|
96
96
|
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a> *matrix</code></em>,
|
@@ -113,19 +113,19 @@ struct <a class="link" href="pango-Xft-Fonts-and-Rendering.html#Pan
|
|
113
113
|
<div class="refsect1">
|
114
114
|
<a name="pango-Xft-Fonts-and-Rendering.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
115
115
|
<pre class="synopsis">
|
116
|
-
GObject
|
116
|
+
<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>
|
117
117
|
+----<a class="link" href="pango-Fonts.html#PangoFont">PangoFont</a>
|
118
118
|
+----<a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
|
119
119
|
+----PangoXftFont
|
120
120
|
</pre>
|
121
121
|
<pre class="synopsis">
|
122
|
-
GObject
|
122
|
+
<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>
|
123
123
|
+----<a class="link" href="pango-Fonts.html#PangoFontMap">PangoFontMap</a>
|
124
124
|
+----<a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
|
125
125
|
+----PangoXftFontMap
|
126
126
|
</pre>
|
127
127
|
<pre class="synopsis">
|
128
|
-
GObject
|
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
129
|
+----<a class="link" href="pango-pango-renderer.html#PangoRenderer">PangoRenderer</a>
|
130
130
|
+----PangoXftRenderer
|
131
131
|
</pre>
|
@@ -133,8 +133,8 @@ struct <a class="link" href="pango-Xft-Fonts-and-Rendering.html#Pan
|
|
133
133
|
<div class="refsect1">
|
134
134
|
<a name="pango-Xft-Fonts-and-Rendering.properties"></a><h2>Properties</h2>
|
135
135
|
<pre class="synopsis">
|
136
|
-
"<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--display" title='The "display" property'>display</a>" <span class="type">gpointer</span> : Write / Construct Only
|
137
|
-
"<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--screen" title='The "screen" property'>screen</a>" <span class="type">gint</span> : Write / Construct Only
|
136
|
+
"<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--display" title='The "display" property'>display</a>" <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Write / Construct Only
|
137
|
+
"<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--screen" title='The "screen" property'>screen</a>" <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Write / Construct Only
|
138
138
|
</pre>
|
139
139
|
</div>
|
140
140
|
<div class="refsect1">
|
@@ -277,8 +277,8 @@ the display is closed.
|
|
277
277
|
<pre class="programlisting"><span class="returnvalue">void</span> pango_xft_set_default_substitute (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
278
278
|
<em class="parameter"><code><span class="type">int</span> screen</code></em>,
|
279
279
|
<em class="parameter"><code><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftSubstituteFunc" title="PangoXftSubstituteFunc ()"><span class="type">PangoXftSubstituteFunc</span></a> func</code></em>,
|
280
|
-
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
|
281
|
-
<em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);</pre>
|
280
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
281
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> notify</code></em>);</pre>
|
282
282
|
<p>
|
283
283
|
Sets a function that will be called to do final configuration
|
284
284
|
substitution on a <span class="type">FcPattern</span> before it is used to load
|
@@ -322,7 +322,7 @@ on <span class="type">FcPattern</span> objects.</td>
|
|
322
322
|
<div class="refsect2">
|
323
323
|
<a name="PangoXftSubstituteFunc"></a><h3>PangoXftSubstituteFunc ()</h3>
|
324
324
|
<pre class="programlisting"><span class="returnvalue">void</span> (*PangoXftSubstituteFunc) (<em class="parameter"><code><span class="type">FcPattern</span> *pattern</code></em>,
|
325
|
-
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
|
325
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
326
326
|
<p>
|
327
327
|
Function type for doing final config tweaking on prepared FcPatterns.
|
328
328
|
</p>
|
@@ -423,7 +423,7 @@ Returns the XftFont of a font.
|
|
423
423
|
</tr>
|
424
424
|
<tr>
|
425
425
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
426
|
-
<td>the XftFont associated to <em class="parameter"><code>font</code></em>, or <code class="literal">NULL</code> if <em class="parameter"><code>font</code></em> is <code class="literal">NULL</code>.</td>
|
426
|
+
<td>the XftFont associated to <em class="parameter"><code>font</code></em>, 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> if <em class="parameter"><code>font</code></em> is <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>.</td>
|
427
427
|
</tr>
|
428
428
|
</tbody>
|
429
429
|
</table></div>
|
@@ -455,8 +455,8 @@ Returns the X display of the XftFont of a font.
|
|
455
455
|
<hr>
|
456
456
|
<div class="refsect2">
|
457
457
|
<a name="pango-xft-font-has-char"></a><h3>pango_xft_font_has_char ()</h3>
|
458
|
-
<pre class="programlisting"><span class="returnvalue">gboolean</span> pango_xft_font_has_char (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
459
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);</pre>
|
458
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_xft_font_has_char (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
459
|
+
<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>);</pre>
|
460
460
|
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
461
461
|
<h3 class="title">Warning</h3>
|
462
462
|
<p><code class="literal">pango_xft_font_has_char</code> is deprecated and should not be used in newly-written code.</p>
|
@@ -484,7 +484,7 @@ Use <a class="link" href="PangoFcFont.html#pango-fc-font-has-char" title="pango_
|
|
484
484
|
<tr>
|
485
485
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
486
486
|
<td>
|
487
|
-
<code class="literal">TRUE</code> if <em class="parameter"><code>font</code></em> has the requested codepoint.</td>
|
487
|
+
<a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>font</code></em> has the requested codepoint.</td>
|
488
488
|
</tr>
|
489
489
|
</tbody>
|
490
490
|
</table></div>
|
@@ -554,8 +554,8 @@ Use <a class="link" href="PangoFcFont.html#pango-fc-font-unlock-face" title="pan
|
|
554
554
|
<hr>
|
555
555
|
<div class="refsect2">
|
556
556
|
<a name="pango-xft-font-get-glyph"></a><h3>pango_xft_font_get_glyph ()</h3>
|
557
|
-
<pre class="programlisting"><span class="returnvalue">guint</span> pango_xft_font_get_glyph (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
558
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);</pre>
|
557
|
+
<pre class="programlisting"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> pango_xft_font_get_glyph (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
558
|
+
<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>);</pre>
|
559
559
|
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
560
560
|
<h3 class="title">Warning</h3>
|
561
561
|
<p><code class="literal">pango_xft_font_get_glyph</code> is deprecated and should not be used in newly-written code.</p>
|
@@ -595,7 +595,7 @@ character does not exist in the font.</td>
|
|
595
595
|
<div class="refsect2">
|
596
596
|
<a name="pango-xft-font-get-unknown-glyph"></a><h3>pango_xft_font_get_unknown_glyph ()</h3>
|
597
597
|
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a> pango_xft_font_get_unknown_glyph (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
598
|
-
<em class="parameter"><code><span class="type">gunichar</span> wc</code></em>);</pre>
|
598
|
+
<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>);</pre>
|
599
599
|
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
600
600
|
<h3 class="title">Warning</h3>
|
601
601
|
<p><code class="literal">pango_xft_font_get_unknown_glyph</code> is deprecated and should not be used in newly-written code.</p>
|
@@ -706,7 +706,7 @@ using the renderer.
|
|
706
706
|
<tr>
|
707
707
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
708
708
|
<td>the newly created <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a>, which should
|
709
|
-
be freed with <code class="function">g_object_unref()</code>.</td>
|
709
|
+
be freed with <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</td>
|
710
710
|
</tr>
|
711
711
|
</tbody>
|
712
712
|
</table></div>
|
@@ -776,8 +776,8 @@ Sets the default foreground color for a <span class="type">XftRenderer</span>.
|
|
776
776
|
<em class="parameter"><code><span class="type">XftColor</span> *color</code></em>,
|
777
777
|
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
778
778
|
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
779
|
-
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
780
|
-
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
779
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
780
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
781
781
|
<p>
|
782
782
|
Renders a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> onto an <span class="type">XftDraw</span> object wrapping an X drawable.
|
783
783
|
</p>
|
@@ -822,8 +822,8 @@ Renders a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span
|
|
822
822
|
<em class="parameter"><code><span class="type">Picture</span> dest_picture</code></em>,
|
823
823
|
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
824
824
|
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
825
|
-
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
826
|
-
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
825
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
826
|
+
<em class="parameter"><code><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
827
827
|
<p>
|
828
828
|
Renders a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> onto an Xrender <span class="type">Picture</span> object.
|
829
829
|
</p>
|
@@ -899,7 +899,7 @@ transformation matrix to that passed in to this function.
|
|
899
899
|
</tr>
|
900
900
|
<tr>
|
901
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 <code class="literal">NULL</code> to use an identity transformation</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
903
|
</tr>
|
904
904
|
<tr>
|
905
905
|
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
@@ -1016,13 +1016,13 @@ Render a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span clas
|
|
1016
1016
|
<a name="pango-Xft-Fonts-and-Rendering.property-details"></a><h2>Property Details</h2>
|
1017
1017
|
<div class="refsect2">
|
1018
1018
|
<a name="PangoXftRenderer--display"></a><h3>The <code class="literal">"display"</code> property</h3>
|
1019
|
-
<pre class="programlisting"> "display" <span class="type">gpointer</span> : Write / Construct Only</pre>
|
1019
|
+
<pre class="programlisting"> "display" <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Write / Construct Only</pre>
|
1020
1020
|
<p>The display being rendered to.</p>
|
1021
1021
|
</div>
|
1022
1022
|
<hr>
|
1023
1023
|
<div class="refsect2">
|
1024
1024
|
<a name="PangoXftRenderer--screen"></a><h3>The <code class="literal">"screen"</code> property</h3>
|
1025
|
-
<pre class="programlisting"> "screen" <span class="type">gint</span> : Write / Construct Only</pre>
|
1025
|
+
<pre class="programlisting"> "screen" <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Write / Construct Only</pre>
|
1026
1026
|
<p>The screen being rendered to.</p>
|
1027
1027
|
<p>Allowed values: >= 0</p>
|
1028
1028
|
<p>Default value: 0</p>
|
@@ -23,7 +23,7 @@
|
|
23
23
|
<div class="titlepage"><div><div><h1 class="title">
|
24
24
|
<a name="pango-hierarchy"></a>Object Hierarchy</h1></div></div></div>
|
25
25
|
<pre class="screen">
|
26
|
-
GObject
|
26
|
+
<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>
|
27
27
|
<a class="link" href="pango-Fonts.html#PangoFontMap">PangoFontMap</a>
|
28
28
|
<a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
|
29
29
|
<a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2FontMap">PangoFT2FontMap</a>
|