pango 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (208) hide show
  1. checksums.yaml +7 -0
  2. data/README +2 -2
  3. data/Rakefile +7 -5
  4. data/ext/pango/extconf.rb +4 -4
  5. data/ext/pango/rbpango.c +0 -9
  6. data/ext/pango/rbpango.h +2 -10
  7. data/ext/pango/rbpangoanalysis.c +0 -4
  8. data/ext/pango/rbpangoattribute.c +1 -26
  9. data/ext/pango/rbpangoattrlist.c +0 -4
  10. data/ext/pango/rbpangocairo.c +13 -12
  11. data/ext/pango/rbpangocairocontext.c +6 -26
  12. data/ext/pango/rbpangocontext.c +2 -14
  13. data/ext/pango/rbpangofont.c +0 -12
  14. data/ext/pango/rbpangofontdescription.c +0 -5
  15. data/ext/pango/rbpangofontface.c +0 -6
  16. data/ext/pango/rbpangofontfamily.c +0 -3
  17. data/ext/pango/rbpangofontmap.c +0 -4
  18. data/ext/pango/rbpangofontmetrics.c +1 -4
  19. data/ext/pango/rbpangofontset.c +0 -4
  20. data/ext/pango/rbpangoglyphitem.c +0 -8
  21. data/ext/pango/rbpangoglyphstring.c +0 -4
  22. data/ext/pango/rbpangoitem.c +0 -16
  23. data/ext/pango/rbpangolanguage.c +0 -5
  24. data/ext/pango/rbpangolayout.c +36 -19
  25. data/ext/pango/rbpangolayoutline.c +0 -33
  26. data/ext/pango/rbpangologattr.c +0 -5
  27. data/ext/pango/rbpangomatrix.c +0 -10
  28. data/ext/pango/rbpangoprivate.h +0 -4
  29. data/ext/pango/rbpangorenderer.c +0 -6
  30. data/ext/pango/rbpangoscript.c +0 -4
  31. data/ext/pango/rbpangoscriptiter.c +0 -5
  32. data/lib/1.9/pango.so +0 -0
  33. data/lib/2.0/pango.so +0 -0
  34. data/test/{test_layout.rb → test-layout.rb} +14 -0
  35. data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
  36. data/vendor/local/bin/hb-shape.exe +0 -0
  37. data/vendor/local/bin/hb-view.exe +0 -0
  38. data/vendor/local/bin/libharfbuzz-0.dll +0 -0
  39. data/vendor/local/bin/libpango-1.0-0.dll +0 -0
  40. data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
  41. data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
  42. data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
  43. data/vendor/local/bin/libstdc++-6.dll +0 -0
  44. data/vendor/local/bin/pango-querymodules.exe +0 -0
  45. data/vendor/local/bin/pango-view.exe +0 -0
  46. data/vendor/local/include/harfbuzz/hb-buffer.h +10 -10
  47. data/vendor/local/include/harfbuzz/hb-common.h +147 -131
  48. data/vendor/local/include/harfbuzz/{hb-uniscribe.h → hb-deprecated.h} +15 -13
  49. data/vendor/local/include/harfbuzz/hb-face.h +117 -0
  50. data/vendor/local/include/harfbuzz/hb-font.h +130 -77
  51. data/vendor/local/include/harfbuzz/hb-ot-layout.h +6 -0
  52. data/vendor/local/include/harfbuzz/hb-set.h +2 -0
  53. data/vendor/local/include/harfbuzz/hb-unicode.h +97 -9
  54. data/vendor/local/include/harfbuzz/hb-version.h +2 -2
  55. data/vendor/local/include/harfbuzz/hb.h +2 -0
  56. data/vendor/local/include/pango-1.0/pango/pango-attributes.h +213 -4
  57. data/vendor/local/include/pango-1.0/pango/pango-break.h +53 -0
  58. data/vendor/local/include/pango-1.0/pango/pango-coverage.h +21 -0
  59. data/vendor/local/include/pango-1.0/pango/pango-engine.h +46 -0
  60. data/vendor/local/include/pango-1.0/pango/pango-features.h +2 -2
  61. data/vendor/local/include/pango-1.0/pango/pango-font.h +234 -0
  62. data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +68 -0
  63. data/vendor/local/include/pango-1.0/pango/pango-fontset.h +42 -0
  64. data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +64 -0
  65. data/vendor/local/include/pango-1.0/pango/pango-glyph.h +55 -0
  66. data/vendor/local/include/pango-1.0/pango/pango-item.h +28 -0
  67. data/vendor/local/include/pango-1.0/pango/pango-language.h +5 -0
  68. data/vendor/local/include/pango-1.0/pango/pango-layout.h +43 -0
  69. data/vendor/local/include/pango-1.0/pango/pango-modules.h +11 -0
  70. data/vendor/local/include/pango-1.0/pango/pango-ot.h +149 -0
  71. data/vendor/local/include/pango-1.0/pango/pango-script.h +102 -0
  72. data/vendor/local/include/pango-1.0/pango/pango-tabs.h +11 -0
  73. data/vendor/local/include/pango-1.0/pango/pango-types.h +102 -2
  74. data/vendor/local/include/pango-1.0/pango/pango-utils.h +44 -0
  75. data/vendor/local/include/pango-1.0/pango/pangocairo.h +14 -0
  76. data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +2 -2
  77. data/vendor/local/include/pango-1.0/pango/pangoft2.h +13 -0
  78. data/vendor/local/include/pango-1.0/pango/pangowin32.h +6 -0
  79. data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
  80. data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
  81. data/vendor/local/lib/libharfbuzz.dll.a +0 -0
  82. data/vendor/local/lib/libharfbuzz.la +5 -5
  83. data/vendor/local/lib/libpango-1.0.dll.a +0 -0
  84. data/vendor/local/lib/libpango-1.0.la +2 -2
  85. data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
  86. data/vendor/local/lib/libpangocairo-1.0.la +4 -4
  87. data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
  88. data/vendor/local/lib/libpangoft2-1.0.la +3 -3
  89. data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
  90. data/vendor/local/lib/libpangowin32-1.0.la +2 -2
  91. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll +0 -0
  92. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll.a +0 -0
  93. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll +0 -0
  94. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll.a +0 -0
  95. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.la +1 -1
  96. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll +0 -0
  97. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll.a +0 -0
  98. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll +0 -0
  99. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll.a +0 -0
  100. data/vendor/local/lib/pkgconfig/harfbuzz.pc +5 -5
  101. data/vendor/local/lib/pkgconfig/pango.pc +1 -1
  102. data/vendor/local/lib/pkgconfig/pangocairo.pc +1 -1
  103. data/vendor/local/lib/pkgconfig/pangoft2.pc +1 -1
  104. data/vendor/local/lib/pkgconfig/pangowin32.pc +1 -1
  105. data/vendor/local/share/gir-1.0/Pango-1.0.gir +1824 -1434
  106. data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +109 -103
  107. data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +18 -15
  108. data/vendor/local/share/gtk-doc/html/harfbuzz/annotation-glossary.html +71 -0
  109. data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +1419 -0
  110. data/vendor/local/share/gtk-doc/html/harfbuzz/ch01.html +98 -0
  111. data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +48 -0
  112. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html +415 -0
  113. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html +1045 -0
  114. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html +1073 -0
  115. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html +67 -0
  116. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html +90 -0
  117. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html +344 -0
  118. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +1617 -0
  119. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html +130 -0
  120. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html +75 -0
  121. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +52 -0
  122. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +76 -0
  123. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html +75 -0
  124. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +544 -0
  125. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html +105 -0
  126. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html +67 -0
  127. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html +540 -0
  128. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +264 -0
  129. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html +194 -0
  130. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html +1180 -0
  131. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html +67 -0
  132. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +156 -0
  133. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb.html +52 -0
  134. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +591 -0
  135. data/vendor/local/share/gtk-doc/html/harfbuzz/home.png +0 -0
  136. data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +105 -0
  137. data/vendor/local/share/gtk-doc/html/harfbuzz/index.sgml +650 -0
  138. data/vendor/local/share/gtk-doc/html/harfbuzz/left-insensitive.png +0 -0
  139. data/vendor/local/share/gtk-doc/html/harfbuzz/left.png +0 -0
  140. data/vendor/local/share/gtk-doc/html/harfbuzz/object-tree.html +32 -0
  141. data/vendor/local/share/gtk-doc/html/harfbuzz/right-insensitive.png +0 -0
  142. data/vendor/local/share/gtk-doc/html/harfbuzz/right.png +0 -0
  143. data/vendor/local/share/gtk-doc/html/harfbuzz/style.css +321 -0
  144. data/vendor/local/share/gtk-doc/html/harfbuzz/up-insensitive.png +0 -0
  145. data/vendor/local/share/gtk-doc/html/harfbuzz/up.png +0 -0
  146. data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +3 -4
  147. data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +3 -4
  148. data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +2 -2
  149. data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +4 -9
  150. data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +8 -13
  151. data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +2 -2
  152. data/vendor/local/share/gtk-doc/html/pango/{pango-pango-renderer.html → PangoRenderer.html} +99 -102
  153. data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +20 -29
  154. data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +2 -2
  155. data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +2 -2
  156. data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +2 -2
  157. data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +6 -2
  158. data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +2 -2
  159. data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +2 -2
  160. data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +4 -11
  161. data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +15 -4
  163. data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +4 -4
  164. data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +6 -6
  165. data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +42 -0
  166. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +58 -0
  167. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +6 -5
  168. data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +41 -0
  169. data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +2 -2
  170. data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +2 -2
  171. data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +19 -19
  172. data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +2 -2
  173. data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +31 -27
  174. data/vendor/local/share/gtk-doc/html/pango/index.html +7 -5
  175. data/vendor/local/share/gtk-doc/html/pango/index.sgml +38 -38
  176. data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +5 -5
  177. data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +6 -9
  178. data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +113 -66
  179. data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +2 -2
  180. data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +8 -12
  181. data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +5 -8
  182. data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +90 -53
  183. data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +10 -10
  184. data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +21 -8
  185. data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +44 -15
  186. data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +2 -2
  187. data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +2 -2
  188. data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +12 -12
  189. data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +87 -90
  190. data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +2 -5
  191. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +38 -31
  192. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +10 -18
  193. data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +10 -11
  194. data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +4 -6
  195. data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +3 -4
  196. data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +12 -12
  197. data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +4 -4
  198. data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +2 -2
  199. data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +34 -31
  200. data/vendor/local/share/gtk-doc/html/pango/pango.html +2 -2
  201. data/vendor/local/share/gtk-doc/html/pango/rendering.html +2 -2
  202. data/vendor/local/share/gtk-doc/html/pango/tools.html +2 -2
  203. data/vendor/local/share/man/man1/pango-querymodules.1 +2 -2
  204. data/vendor/local/share/man/man1/pango-view.1 +2 -2
  205. metadata +57 -24
  206. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  207. data/vendor/local/include/harfbuzz/hb-gobject.h +0 -69
  208. 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="rendering.html" title="Rendering with Pango">
9
9
  <link rel="prev" href="pango-Cairo-Rendering.html" title="Cairo Rendering">
10
10
  <link rel="next" href="lowlevel.html" title="Low Level Functionality">
11
- <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
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">
@@ -89,6 +89,6 @@ Returns the CTFontRef of a font.
89
89
  </div>
90
90
  <div class="footer">
91
91
  <hr>
92
- Generated by GTK-Doc V1.18.1</div>
92
+ Generated by GTK-Doc V1.19</div>
93
93
  </body>
94
94
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="lowlevel.html" title="Low Level Functionality">
9
9
  <link rel="prev" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">
10
10
  <link rel="next" href="pango-Engines.html" title="Engines">
11
- <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
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">
@@ -106,17 +106,16 @@ character point for a particular script.
106
106
  <tr>
107
107
  <td><p><a name="PANGO-COVERAGE-FALLBACK:CAPS"></a><span class="term"><code class="literal">PANGO_COVERAGE_FALLBACK</code></span></p></td>
108
108
  <td>The character is represented in a way that may be
109
- comprehensible but is not the correct graphical form.
110
- For instance, a Hangul character represented as a
111
- a sequence of Jamos, or a Latin transliteration of
112
- a Cyrillic word.
109
+ comprehensible but is not the correct graphical form.
110
+ For instance, a Hangul character represented as a
111
+ a sequence of Jamos, or a Latin transliteration of a Cyrillic word.
113
112
  </td>
114
113
  </tr>
115
114
  <tr>
116
115
  <td><p><a name="PANGO-COVERAGE-APPROXIMATE:CAPS"></a><span class="term"><code class="literal">PANGO_COVERAGE_APPROXIMATE</code></span></p></td>
117
116
  <td>The character is represented as basically the correct
118
- graphical form, but with a stylistic variant inappropriate for
119
- the current script.
117
+ graphical form, but with a stylistic variant inappropriate for
118
+ the current script.
120
119
  </td>
121
120
  </tr>
122
121
  <tr>
@@ -132,9 +131,6 @@ character point for a particular script.
132
131
  <a name="PANGO-TYPE-COVERAGE-LEVEL:CAPS"></a><h3>PANGO_TYPE_COVERAGE_LEVEL</h3>
133
132
  <pre class="programlisting">#define PANGO_TYPE_COVERAGE_LEVEL (pango_coverage_level_get_type ())
134
133
  </pre>
135
- <p>
136
- 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-Coverage-Maps.html#PangoCoverageLevel"><span class="type">PangoCoverageLevel</span></a>.
137
- </p>
138
134
  </div>
139
135
  <hr>
140
136
  <div class="refsect2">
@@ -370,7 +366,7 @@ Convert a <a class="link" href="pango-Coverage-Maps.html#PangoCoverage" title="P
370
366
  <pre class="programlisting"><a class="link" href="pango-Coverage-Maps.html#PangoCoverage" title="PangoCoverage"><span class="returnvalue">PangoCoverage</span></a> * pango_coverage_from_bytes (<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#guchar"><span class="type">guchar</span></a> *bytes</code></em>,
371
367
  <em class="parameter"><code><span class="type">int</span> n_bytes</code></em>);</pre>
372
368
  <p>
373
- Convert data generated from <code class="function">pango_converage_to_bytes()</code> back
369
+ Convert data generated from <a class="link" href="pango-Coverage-Maps.html#pango-coverage-to-bytes" title="pango_coverage_to_bytes ()"><code class="function">pango_coverage_to_bytes()</code></a> back
374
370
  to a <a class="link" href="pango-Coverage-Maps.html#PangoCoverage" title="PangoCoverage"><span class="type">PangoCoverage</span></a>
375
371
  </p>
376
372
  <div class="variablelist"><table border="0" class="variablelist">
@@ -402,6 +398,6 @@ representing a <a class="link" href="pango-Coverage-Maps.html#PangoCoverage" tit
402
398
  </div>
403
399
  <div class="footer">
404
400
  <hr>
405
- Generated by GTK-Doc V1.18.1</div>
401
+ Generated by GTK-Doc V1.19</div>
406
402
  </body>
407
403
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="lowlevel.html" title="Low Level Functionality">
9
9
  <link rel="prev" href="pango-Coverage-Maps.html" title="Coverage Maps">
10
10
  <link rel="next" href="PangoEngineLang.html" title="PangoEngineLang">
11
- <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
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">
@@ -68,8 +68,7 @@ and render-system-specific components are provided by loadable
68
68
  modules. Each loadable module supplies one or more
69
69
  <em class="firstterm">engines</em>. Each <em class="firstterm">engine</em>
70
70
  has an associated <em class="firstterm">engine type</em> and
71
- <em class="firstterm">render type</em>. These two types are represented by
72
- strings.
71
+ <em class="firstterm">render type</em>. These two types are represented by strings.
73
72
  </p>
74
73
  <p>
75
74
  Each dynamically-loaded module exports several functions which provide
@@ -135,8 +134,7 @@ engine. It contains the following fields:
135
134
  </pre>
136
135
  <p>
137
136
  The <a class="link" href="pango-Engines.html#PangoEngineScriptInfo" title="struct PangoEngineScriptInfo"><span class="type">PangoEngineScriptInfo</span></a> structure contains
138
- information about how the shaper covers a particular
139
- script.
137
+ information about how the shaper covers a particular script.
140
138
  </p>
141
139
  <div class="variablelist"><table border="0" class="variablelist">
142
140
  <colgroup>
@@ -190,8 +188,7 @@ Class structure for <a class="link" href="pango-Engines.html#PangoEngine"><span
190
188
  </pre>
191
189
  <p>
192
190
  A string constant defining the render type
193
- for engines that are not rendering-system
194
- specific.
191
+ for engines that are not rendering-system specific.
195
192
  </p>
196
193
  </div>
197
194
  <hr>
@@ -288,6 +285,6 @@ bugs in the driver routine are encountered.)</td>
288
285
  </div>
289
286
  <div class="footer">
290
287
  <hr>
291
- Generated by GTK-Doc V1.18.1</div>
288
+ Generated by GTK-Doc V1.19</div>
292
289
  </body>
293
290
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pango.html" title="Basic Pango Interfaces">
9
9
  <link rel="prev" href="pango-Glyph-Storage.html" title="Glyph Storage">
10
10
  <link rel="next" href="pango-Text-Attributes.html" title="Text Attributes">
11
- <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
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">
@@ -192,6 +192,7 @@ struct <a class="link" href="pango-Fonts.html#PangoFontMapClass" ti
192
192
  const <span class="returnvalue">char</span> * <a class="link" href="pango-Fonts.html#pango-font-map-get-shape-engine-type" title="pango_font_map_get_shape_engine_type ()">pango_font_map_get_shape_engine_type</a>
193
193
  (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> *fontmap</code></em>);
194
194
  <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-Fonts.html#pango-font-map-get-serial" title="pango_font_map_get_serial ()">pango_font_map_get_serial</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> *fontmap</code></em>);
195
+ <span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-map-changed" title="pango_font_map_changed ()">pango_font_map_changed</a> (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> *fontmap</code></em>);
195
196
 
196
197
  struct <a class="link" href="pango-Fonts.html#PangoFontset-struct" title="struct PangoFontset">PangoFontset</a>;
197
198
  #define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONTSET:CAPS" title="PANGO_TYPE_FONTSET">PANGO_TYPE_FONTSET</a>
@@ -354,9 +355,6 @@ An enumeration specifying the various slant styles possible for a font.
354
355
  <a name="PANGO-TYPE-STYLE:CAPS"></a><h3>PANGO_TYPE_STYLE</h3>
355
356
  <pre class="programlisting">#define PANGO_TYPE_STYLE (pango_style_get_type ())
356
357
  </pre>
357
- <p>
358
- 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-Fonts.html#PangoStyle"><span class="type">PangoStyle</span></a>.
359
- </p>
360
358
  </div>
361
359
  <hr>
362
360
  <div class="refsect2">
@@ -448,9 +446,6 @@ value ranging from 100 to 900, but there are some predefined values:
448
446
  <a name="PANGO-TYPE-WEIGHT:CAPS"></a><h3>PANGO_TYPE_WEIGHT</h3>
449
447
  <pre class="programlisting">#define PANGO_TYPE_WEIGHT (pango_weight_get_type ())
450
448
  </pre>
451
- <p>
452
- 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-Fonts.html#PangoWeight"><span class="type">PangoWeight</span></a>.
453
- </p>
454
449
  </div>
455
450
  <hr>
456
451
  <div class="refsect2">
@@ -477,7 +472,7 @@ An enumeration specifying capitalization variant of the font.
477
472
  <tr>
478
473
  <td><p><a name="PANGO-VARIANT-SMALL-CAPS"></a><span class="term"><code class="literal">PANGO_VARIANT_SMALL_CAPS</code></span></p></td>
479
474
  <td>A font with the lower case characters
480
- replaced by smaller variants of the capital characters.
475
+ replaced by smaller variants of the capital characters.
481
476
  </td>
482
477
  </tr>
483
478
  </tbody>
@@ -488,9 +483,6 @@ An enumeration specifying capitalization variant of the font.
488
483
  <a name="PANGO-TYPE-VARIANT:CAPS"></a><h3>PANGO_TYPE_VARIANT</h3>
489
484
  <pre class="programlisting">#define PANGO_TYPE_VARIANT (pango_variant_get_type ())
490
485
  </pre>
491
- <p>
492
- 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-Fonts.html#PangoVariant"><span class="type">PangoVariant</span></a>.
493
- </p>
494
486
  </div>
495
487
  <hr>
496
488
  <div class="refsect2">
@@ -570,9 +562,6 @@ within a family.
570
562
  <a name="PANGO-TYPE-STRETCH:CAPS"></a><h3>PANGO_TYPE_STRETCH</h3>
571
563
  <pre class="programlisting">#define PANGO_TYPE_STRETCH (pango_stretch_get_type ())
572
564
  </pre>
573
- <p>
574
- 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-Fonts.html#PangoStretch"><span class="type">PangoStretch</span></a>.
575
- </p>
576
565
  </div>
577
566
  <hr>
578
567
  <div class="refsect2">
@@ -640,9 +629,6 @@ The bits in a <a class="link" href="pango-Fonts.html#PangoFontMask"><span class=
640
629
  <a name="PANGO-TYPE-FONT-MASK:CAPS"></a><h3>PANGO_TYPE_FONT_MASK</h3>
641
630
  <pre class="programlisting">#define PANGO_TYPE_FONT_MASK (pango_font_mask_get_type ())
642
631
  </pre>
643
- <p>
644
- 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-Fonts.html#PangoFontMask"><span class="type">PangoFontMask</span></a>.
645
- </p>
646
632
  </div>
647
633
  <hr>
648
634
  <div class="refsect2">
@@ -1963,18 +1949,22 @@ Casts a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/
1963
1949
  <a name="PANGO-IS-FONT:CAPS"></a><h3>PANGO_IS_FONT()</h3>
1964
1950
  <pre class="programlisting">#define PANGO_IS_FONT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT))
1965
1951
  </pre>
1966
- <p>
1967
- Returns <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.
1968
- </p>
1969
1952
  <div class="variablelist"><table border="0" class="variablelist">
1970
1953
  <colgroup>
1971
1954
  <col align="left" valign="top">
1972
1955
  <col>
1973
1956
  </colgroup>
1974
- <tbody><tr>
1957
+ <tbody>
1958
+ <tr>
1975
1959
  <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
1976
1960
  <td>a <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>.</td>
1977
- </tr></tbody>
1961
+ </tr>
1962
+ <tr>
1963
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1964
+ <td>
1965
+ <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.</td>
1966
+ </tr>
1967
+ </tbody>
1978
1968
  </table></div>
1979
1969
  </div>
1980
1970
  <hr>
@@ -2271,18 +2261,22 @@ Casts a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/
2271
2261
  <a name="PANGO-IS-FONT-FAMILY:CAPS"></a><h3>PANGO_IS_FONT_FAMILY()</h3>
2272
2262
  <pre class="programlisting">#define PANGO_IS_FONT_FAMILY(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT_FAMILY))
2273
2263
  </pre>
2274
- <p>
2275
- Returns <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>.
2276
- </p>
2277
2264
  <div class="variablelist"><table border="0" class="variablelist">
2278
2265
  <colgroup>
2279
2266
  <col align="left" valign="top">
2280
2267
  <col>
2281
2268
  </colgroup>
2282
- <tbody><tr>
2269
+ <tbody>
2270
+ <tr>
2283
2271
  <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
2284
2272
  <td>a <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>.</td>
2285
- </tr></tbody>
2273
+ </tr>
2274
+ <tr>
2275
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2276
+ <td>
2277
+ <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>.</td>
2278
+ </tr>
2279
+ </tbody>
2286
2280
  </table></div>
2287
2281
  </div>
2288
2282
  <hr>
@@ -2431,18 +2425,22 @@ Casts a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/
2431
2425
  <a name="PANGO-IS-FONT-FACE:CAPS"></a><h3>PANGO_IS_FONT_FACE()</h3>
2432
2426
  <pre class="programlisting">#define PANGO_IS_FONT_FACE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT_FACE))
2433
2427
  </pre>
2434
- <p>
2435
- Returns <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>.
2436
- </p>
2437
2428
  <div class="variablelist"><table border="0" class="variablelist">
2438
2429
  <colgroup>
2439
2430
  <col align="left" valign="top">
2440
2431
  <col>
2441
2432
  </colgroup>
2442
- <tbody><tr>
2433
+ <tbody>
2434
+ <tr>
2443
2435
  <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
2444
2436
  <td>a <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>.</td>
2445
- </tr></tbody>
2437
+ </tr>
2438
+ <tr>
2439
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2440
+ <td>
2441
+ <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>.</td>
2442
+ </tr>
2443
+ </tbody>
2446
2444
  </table></div>
2447
2445
  </div>
2448
2446
  <hr>
@@ -2620,18 +2618,22 @@ Casts a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/
2620
2618
  <a name="PANGO-IS-FONT-MAP:CAPS"></a><h3>PANGO_IS_FONT_MAP()</h3>
2621
2619
  <pre class="programlisting">#define PANGO_IS_FONT_MAP(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT_MAP))
2622
2620
  </pre>
2623
- <p>
2624
- Returns <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.
2625
- </p>
2626
2621
  <div class="variablelist"><table border="0" class="variablelist">
2627
2622
  <colgroup>
2628
2623
  <col align="left" valign="top">
2629
2624
  <col>
2630
2625
  </colgroup>
2631
- <tbody><tr>
2626
+ <tbody>
2627
+ <tr>
2632
2628
  <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
2633
2629
  <td>a <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>.</td>
2634
- </tr></tbody>
2630
+ </tr>
2631
+ <tr>
2632
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2633
+ <td>
2634
+ <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>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.</td>
2635
+ </tr>
2636
+ </tbody>
2635
2637
  </table></div>
2636
2638
  </div>
2637
2639
  <hr>
@@ -2684,9 +2686,8 @@ a particular <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="t
2684
2686
  </tr>
2685
2687
  <tr>
2686
2688
  <td><p><span class="term"><em class="structfield"><code><a name="PangoFontMapClass.load-fontset"></a>load_fontset</code></em> ()</span></p></td>
2687
- <td>a function to load a fontset with a given description
2688
- suitable for a particular language. See
2689
- <a class="link" href="pango-Fonts.html#pango-font-map-load-fontset" title="pango_font_map_load_fontset ()"><code class="function">pango_font_map_load_fontset()</code></a>.</td>
2689
+ <td>a function to load a fontset with a given given description
2690
+ suitable for a particular language. See <a class="link" href="pango-Fonts.html#pango-font-map-load-fontset" title="pango_font_map_load_fontset ()"><code class="function">pango_font_map_load_fontset()</code></a>.</td>
2690
2691
  </tr>
2691
2692
  <tr>
2692
2693
  <td><p><span class="term">const <span class="type">char</span> *<em class="structfield"><code><a name="PangoFontMapClass.shape-engine-type"></a>shape_engine_type</code></em>;</span></p></td>
@@ -2700,7 +2701,8 @@ See <a class="link" href="pango-Fonts.html#pango-font-map-get-serial" title="pan
2700
2701
  </tr>
2701
2702
  <tr>
2702
2703
  <td><p><span class="term"><em class="structfield"><code><a name="PangoFontMapClass.changed"></a>changed</code></em> ()</span></p></td>
2703
- <td></td>
2704
+ <td>See <a class="link" href="pango-Fonts.html#pango-font-map-changed" title="pango_font_map_changed ()"><code class="function">pango_font_map_changed()</code></a>
2705
+ </td>
2704
2706
  </tr>
2705
2707
  </tbody>
2706
2708
  </table></div>
@@ -2729,18 +2731,22 @@ Casts a <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/
2729
2731
  <a name="PANGO-IS-FONT-MAP-CLASS:CAPS"></a><h3>PANGO_IS_FONT_MAP_CLASS()</h3>
2730
2732
  <pre class="programlisting">#define PANGO_IS_FONT_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PANGO_TYPE_FONT_MAP))
2731
2733
  </pre>
2732
- <p>
2733
- Returns <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>klass</code></em> is a subtype of <a class="link" href="pango-Fonts.html#PangoFontMapClass" title="struct PangoFontMapClass"><span class="type">PangoFontMapClass</span></a>.
2734
- </p>
2735
2734
  <div class="variablelist"><table border="0" class="variablelist">
2736
2735
  <colgroup>
2737
2736
  <col align="left" valign="top">
2738
2737
  <col>
2739
2738
  </colgroup>
2740
- <tbody><tr>
2739
+ <tbody>
2740
+ <tr>
2741
2741
  <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
2742
2742
  <td>a <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>.</td>
2743
- </tr></tbody>
2743
+ </tr>
2744
+ <tr>
2745
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2746
+ <td>
2747
+ <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>klass</code></em> is a subtype of <a class="link" href="pango-Fonts.html#PangoFontMapClass" title="struct PangoFontMapClass"><span class="type">PangoFontMapClass</span></a>.</td>
2748
+ </tr>
2749
+ </tbody>
2744
2750
  </table></div>
2745
2751
  </div>
2746
2752
  <hr>
@@ -2748,18 +2754,22 @@ Returns <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/
2748
2754
  <a name="PANGO-FONT-MAP-GET-CLASS:CAPS"></a><h3>PANGO_FONT_MAP_GET_CLASS()</h3>
2749
2755
  <pre class="programlisting">#define PANGO_FONT_MAP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PANGO_TYPE_FONT_MAP, PangoFontMapClass))
2750
2756
  </pre>
2751
- <p>
2752
- Returns the type of a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.
2753
- </p>
2754
2757
  <div class="variablelist"><table border="0" class="variablelist">
2755
2758
  <colgroup>
2756
2759
  <col align="left" valign="top">
2757
2760
  <col>
2758
2761
  </colgroup>
2759
- <tbody><tr>
2762
+ <tbody>
2763
+ <tr>
2760
2764
  <td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
2761
2765
  <td>a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.</td>
2762
- </tr></tbody>
2766
+ </tr>
2767
+ <tr>
2768
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2769
+ <td>class of <em class="parameter"><code>obj</code></em>
2770
+ </td>
2771
+ </tr>
2772
+ </tbody>
2763
2773
  </table></div>
2764
2774
  </div>
2765
2775
  <hr>
@@ -2774,7 +2784,7 @@ to <a class="link" href="pango-Text-Processing.html#pango-context-new" title="pa
2774
2784
  If you are using Pango as part of a higher-level system,
2775
2785
  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>.
2776
2786
  For instance, the GTK+ toolkit has, among others,
2777
- <a href="http://library.gnome.org/devel/gdk3/gdk2-Pango-Interaction.html#gdk-pango-context-get-for-screen"><code class="function">gdk_pango_context_get_for_screen()</code></a>, and
2787
+ <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
2778
2788
  <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.
2779
2789
  </p>
2780
2790
  <div class="variablelist"><table border="0" class="variablelist">
@@ -2983,6 +2993,33 @@ in <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="t
2983
2993
  </div>
2984
2994
  <hr>
2985
2995
  <div class="refsect2">
2996
+ <a name="pango-font-map-changed"></a><h3>pango_font_map_changed ()</h3>
2997
+ <pre class="programlisting"><span class="returnvalue">void</span> pango_font_map_changed (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> *fontmap</code></em>);</pre>
2998
+ <p>
2999
+ Forces a change in the context, which will cause any <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>
3000
+ using this fontmap to change.
3001
+ </p>
3002
+ <p>
3003
+ This function is only useful when implementing a new backend
3004
+ for Pango, something applications won't do. Backends should
3005
+ call this function if they have attached extra data to the context
3006
+ and such data is changed.
3007
+ </p>
3008
+ <div class="variablelist"><table border="0" class="variablelist">
3009
+ <colgroup>
3010
+ <col align="left" valign="top">
3011
+ <col>
3012
+ </colgroup>
3013
+ <tbody><tr>
3014
+ <td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
3015
+ <td>a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>
3016
+ </td>
3017
+ </tr></tbody>
3018
+ </table></div>
3019
+ <p class="since">Since 1.34</p>
3020
+ </div>
3021
+ <hr>
3022
+ <div class="refsect2">
2986
3023
  <a name="PangoFontset-struct"></a><h3>struct PangoFontset</h3>
2987
3024
  <pre class="programlisting">struct PangoFontset;</pre>
2988
3025
  <p>
@@ -3286,6 +3323,6 @@ Returns the number of fonts in the fontset.
3286
3323
  </div>
3287
3324
  <div class="footer">
3288
3325
  <hr>
3289
- Generated by GTK-Doc V1.18.1</div>
3326
+ Generated by GTK-Doc V1.19</div>
3290
3327
  </body>
3291
3328
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="rendering.html" title="Rendering with Pango">
9
9
  <link rel="prev" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">
10
10
  <link rel="next" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">
11
- <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
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">
@@ -176,7 +176,7 @@ Sets the horizontal and vertical resolutions for the fontmap.
176
176
  <tbody>
177
177
  <tr>
178
178
  <td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
179
- <td>a <span class="type">PangoFT2Fontmap</span>
179
+ <td>a <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2FontMap"><span class="type">PangoFT2FontMap</span></a>
180
180
  </td>
181
181
  </tr>
182
182
  <tr>
@@ -210,7 +210,7 @@ Create a <a class="link" href="pango-Text-Processing.html#PangoContext"><span cl
210
210
  <tbody>
211
211
  <tr>
212
212
  <td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
213
- <td>a <span class="type">PangoFT2Fontmap</span>
213
+ <td>a <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2FontMap"><span class="type">PangoFT2FontMap</span></a>
214
214
  </td>
215
215
  </tr>
216
216
  <tr>
@@ -308,7 +308,7 @@ results for the same input pattern, you must call this function.
308
308
  </colgroup>
309
309
  <tbody><tr>
310
310
  <td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
311
- <td>a <span class="type">PangoFT2Fontmap</span>
311
+ <td>a <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2FontMap"><span class="type">PangoFT2FontMap</span></a>
312
312
  </td>
313
313
  </tr></tbody>
314
314
  </table></div>
@@ -325,7 +325,7 @@ results for the same input pattern, you must call this function.
325
325
  </div>
326
326
  <p>
327
327
  Retrieves a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> for the default PangoFT2 fontmap
328
- (see <code class="function">pango_ft2_fontmap_get_for_display()</code>) and sets the resolution
328
+ (see <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-map-for-display" title="pango_ft2_font_map_for_display ()"><code class="function">pango_ft2_font_map_for_display()</code></a>) and sets the resolution
329
329
  for the default fontmap to <em class="parameter"><code>dpi_x</code></em> by <em class="parameter"><code>dpi_y</code></em>.
330
330
  </p>
331
331
  <div class="variablelist"><table border="0" class="variablelist">
@@ -418,14 +418,14 @@ transformation matrix to that passed in to this function.
418
418
  <td>the FreeType2 bitmap onto which to draw the string</td>
419
419
  </tr>
420
420
  <tr>
421
- <td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
422
- <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>
423
- </tr>
424
- <tr>
425
421
  <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
426
422
  <td>the font in which to draw the string</td>
427
423
  </tr>
428
424
  <tr>
425
+ <td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
426
+ <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>
427
+ </tr>
428
+ <tr>
429
429
  <td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
430
430
  <td>the glyph string to draw</td>
431
431
  </tr>
@@ -792,6 +792,6 @@ Use of the global PangoFT2 fontmap is deprecated.
792
792
  </div>
793
793
  <div class="footer">
794
794
  <hr>
795
- Generated by GTK-Doc V1.18.1</div>
795
+ Generated by GTK-Doc V1.19</div>
796
796
  </body>
797
797
  </html>