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="pango.html" title="Basic Pango Interfaces">
9
9
  <link rel="prev" href="pango-Text-Processing.html" title="Rendering">
10
10
  <link rel="next" href="pango-Fonts.html" title="Fonts">
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">
@@ -1029,7 +1029,7 @@ A <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph">
1029
1029
  </pre>
1030
1030
  <p>
1031
1031
  The <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-EMPTY:CAPS" title="PANGO_GLYPH_EMPTY"><code class="literal">PANGO_GLYPH_EMPTY</code></a> macro represents a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that has a
1032
- special meaning, which is a zero-width empty glyph. This is useful for
1032
+ special meaning, which is a zero-width empty glyph. This is useful for
1033
1033
  example in shaper modules, to use as the glyph for various zero-width
1034
1034
  Unicode characters (those passing <a class="link" href="pango-Miscellaneous-Utilities.html#pango-is-zero-width" title="pango_is_zero_width ()"><code class="function">pango_is_zero_width()</code></a>).
1035
1035
  </p>
@@ -1040,10 +1040,12 @@ Unicode characters (those passing <a class="link" href="pango-Miscellaneous-Util
1040
1040
  <pre class="programlisting">#define PANGO_GLYPH_INVALID_INPUT ((PangoGlyph)0xFFFFFFFF)
1041
1041
  </pre>
1042
1042
  <p>
1043
- The <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-EMPTY:CAPS" title="PANGO_GLYPH_EMPTY"><code class="literal">PANGO_GLYPH_EMPTY</code></a> macro represents a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that has a
1043
+ The <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-INVALID-INPUT:CAPS" title="PANGO_GLYPH_INVALID_INPUT"><code class="literal">PANGO_GLYPH_INVALID_INPUT</code></a> macro represents a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that has a
1044
1044
  special meaning of invalid input. <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> produces one such glyph
1045
1045
  per invalid input UTF-8 byte and such a glyph is rendered as a crossed
1046
1046
  box.
1047
+ </p>
1048
+ <p>
1047
1049
  Note that this value is defined such that it has the <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-UNKNOWN-FLAG:CAPS" title="PANGO_GLYPH_UNKNOWN_FLAG"><code class="literal">PANGO_GLYPH_UNKNOWN_FLAG</code></a>
1048
1050
  on.
1049
1051
  </p>
@@ -1066,7 +1068,6 @@ value, representing an unknown-character glyph for the respective <a href="/home
1066
1068
  <pre class="programlisting">#define PANGO_GET_UNKNOWN_GLYPH(wc) ((PangoGlyph)(wc)|PANGO_GLYPH_UNKNOWN_FLAG)
1067
1069
  </pre>
1068
1070
  <p>
1069
- Returns a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that means no glyph was found for <em class="parameter"><code>wc</code></em>.
1070
1071
  The way this unknown glyphs are rendered is backend specific. For example,
1071
1072
  a box with the hexadecimal Unicode code-point of the character written in it
1072
1073
  is what is done in the most common backends.
@@ -1076,10 +1077,16 @@ is what is done in the most common backends.
1076
1077
  <col align="left" valign="top">
1077
1078
  <col>
1078
1079
  </colgroup>
1079
- <tbody><tr>
1080
+ <tbody>
1081
+ <tr>
1080
1082
  <td><p><span class="term"><em class="parameter"><code>wc</code></em> :</span></p></td>
1081
1083
  <td>a Unicode character</td>
1082
- </tr></tbody>
1084
+ </tr>
1085
+ <tr>
1086
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1087
+ <td>a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that means no glyph was found for <em class="parameter"><code>wc</code></em>.</td>
1088
+ </tr>
1089
+ </tbody>
1083
1090
  </table></div>
1084
1091
  </div>
1085
1092
  <hr>
@@ -1256,6 +1263,8 @@ iterator is the logical direction of text. That is, with increasing
1256
1263
  (that is, if <code class="literal"><em class="parameter"><code>glyph_item-&gt;item-&gt;analysis.level</code></em></code> is odd),
1257
1264
  then <em class="parameter"><code>start_glyph</code></em> decreases as the iterator moves forward. Moreover,
1258
1265
  in right-to-left cases, <em class="parameter"><code>start_glyph</code></em> is greater than <em class="parameter"><code>end_glyph</code></em>.
1266
+ </p>
1267
+ <p>
1259
1268
  An iterator should be initialized using either of
1260
1269
  <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-start" title="pango_glyph_item_iter_init_start ()"><code class="function">pango_glyph_item_iter_init_start()</code></a> and
1261
1270
  <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-end" title="pango_glyph_item_iter_init_end ()"><code class="function">pango_glyph_item_iter_init_end()</code></a>, for forward and backward iteration
@@ -1267,6 +1276,7 @@ forward iteration over the clusters is:
1267
1276
  <pre class="programlisting">
1268
1277
  PangoGlyphItemIter cluster_iter;
1269
1278
  gboolean have_cluster;
1279
+
1270
1280
  for (have_cluster = pango_glyph_item_iter_init_start (&amp;cluster_iter,
1271
1281
  glyph_item, text);
1272
1282
  have_cluster;
@@ -1276,6 +1286,8 @@ for (have_cluster = pango_glyph_item_iter_init_start (&amp;cluster_iter,
1276
1286
  }
1277
1287
  </pre>
1278
1288
  <p>
1289
+ </p>
1290
+ <p>
1279
1291
  Note that <em class="parameter"><code>text</code></em> is the start of the text for layout, which is then
1280
1292
  indexed by <code class="literal"><em class="parameter"><code>glyph_item-&gt;item-&gt;offset</code></em></code> to get to the
1281
1293
  text of <em class="parameter"><code>glyph_item</code></em>. The <em class="parameter"><code>start_index</code></em> and <em class="parameter"><code>end_index</code></em> values can directly
@@ -1283,6 +1295,8 @@ index into <em class="parameter"><code>text</code></em>. The <em class="paramet
1283
1295
  values however are zero-based for the <em class="parameter"><code>glyph_item</code></em>. For each cluster, the
1284
1296
  item pointed at by the start variables is included in the cluster while
1285
1297
  the one pointed at by end variables is not.
1298
+ </p>
1299
+ <p>
1286
1300
  None of the members of a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> should be modified manually.
1287
1301
  </p>
1288
1302
  <p class="since">Since 1.22</p>
@@ -1693,7 +1707,6 @@ with the resulting character widths. <span class="annotation">[<acronym title="P
1693
1707
  <p>
1694
1708
  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-Glyph-Storage.html#PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>.
1695
1709
  </p>
1696
- <p class="since">Since 1.20</p>
1697
1710
  </div>
1698
1711
  <hr>
1699
1712
  <div class="refsect2">
@@ -2135,6 +2148,6 @@ first cluster.</td>
2135
2148
  </div>
2136
2149
  <div class="footer">
2137
2150
  <hr>
2138
- Generated by GTK-Doc V1.18.1</div>
2151
+ Generated by GTK-Doc V1.19</div>
2139
2152
  </body>
2140
2153
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pango.html" title="Basic Pango Interfaces">
9
9
  <link rel="prev" href="PangoMarkupFormat.html" title="Text Attribute Markup">
10
10
  <link rel="next" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">
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">
@@ -279,11 +279,15 @@ of a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="t
279
279
  It is possible, as well, to ignore the 2-D setup, and simply
280
280
  treat the results of a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> as a list of lines.
281
281
  </p>
282
+ <p>
283
+ </p>
282
284
  <div class="figure">
283
285
  <a name="parameters"></a><p class="title"><b>Figure 1. Adjustable parameters for a PangoLayout</b></p>
284
286
  <div class="figure-contents"><div><img src="layout.gif" alt="Adjustable parameters for a PangoLayout"></div></div>
285
287
  </div>
286
- <br class="figure-break"><p>
288
+ <p><br class="figure-break">
289
+ </p>
290
+ <p>
287
291
  The <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> structure is opaque, and has no user-visible
288
292
  fields.
289
293
  </p>
@@ -653,7 +657,7 @@ References <em class="parameter"><code>attrs</code></em>, so the caller can unre
653
657
  </tr>
654
658
  <tr>
655
659
  <td><p><span class="term"><em class="parameter"><code>attrs</code></em> :</span></p></td>
656
- <td>a <a class="link" href="pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a>, can be <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>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
660
+ <td>a <a class="link" href="pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a>, can be <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>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
657
661
  </td>
658
662
  </tr>
659
663
  </tbody>
@@ -998,7 +1002,7 @@ A <a class="link" href="pango-Layout-Objects.html#PangoWrapMode"><span class="ty
998
1002
  </tr>
999
1003
  <tr>
1000
1004
  <td><p><a name="PANGO-WRAP-WORD-CHAR:CAPS"></a><span class="term"><code class="literal">PANGO_WRAP_WORD_CHAR</code></span></p></td>
1001
- <td>wrap lines at word boundaries, but fall back to character boundaries if there is not
1005
+ <td>wrap lines at word boundaries, but fall back to character boundaries if there is not
1002
1006
  enough space for a full word.
1003
1007
  </td>
1004
1008
  </tr>
@@ -1010,9 +1014,6 @@ enough space for a full word.
1010
1014
  <a name="PANGO-TYPE-WRAP-MODE:CAPS"></a><h3>PANGO_TYPE_WRAP_MODE</h3>
1011
1015
  <pre class="programlisting">#define PANGO_TYPE_WRAP_MODE (pango_wrap_mode_get_type ())
1012
1016
  </pre>
1013
- <p>
1014
- 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-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a>.
1015
- </p>
1016
1017
  </div>
1017
1018
  <hr>
1018
1019
  <div class="refsect2">
@@ -1167,9 +1168,6 @@ with an ellipsis.
1167
1168
  <a name="PANGO-TYPE-ELLIPSIZE-MODE:CAPS"></a><h3>PANGO_TYPE_ELLIPSIZE_MODE</h3>
1168
1169
  <pre class="programlisting">#define PANGO_TYPE_ELLIPSIZE_MODE (pango_ellipsize_mode_get_type ())
1169
1170
  </pre>
1170
- <p>
1171
- 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-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a>.
1172
- </p>
1173
1171
  </div>
1174
1172
  <hr>
1175
1173
  <div class="refsect2">
@@ -1627,9 +1625,6 @@ using <a class="link" href="pango-Layout-Objects.html#pango-layout-set-justify"
1627
1625
  <a name="PANGO-TYPE-ALIGNMENT:CAPS"></a><h3>PANGO_TYPE_ALIGNMENT</h3>
1628
1626
  <pre class="programlisting">#define PANGO_TYPE_ALIGNMENT (pango_alignment_get_type ())
1629
1627
  </pre>
1630
- <p>
1631
- 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-Layout-Objects.html#PangoAlignment"><span class="type">PangoAlignment</span></a>.
1632
- </p>
1633
1628
  </div>
1634
1629
  <hr>
1635
1630
  <div class="refsect2">
@@ -1852,7 +1847,7 @@ index to the character at that logical position. If the
1852
1847
  Y position is not inside the layout, the closest position is chosen
1853
1848
  (the position will be clamped inside the layout). If the
1854
1849
  X position is not within the layout, then the start or the
1855
- end of the line is chosen as described for <code class="function">pango_layout_x_to_index()</code>.
1850
+ end of the line is chosen as described for <a class="link" href="pango-Layout-Objects.html#pango-layout-xy-to-index" title="pango_layout_xy_to_index ()"><code class="function">pango_layout_xy_to_index()</code></a>.
1856
1851
  If either the X or Y positions were not inside the layout, then the
1857
1852
  function returns <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>; on an exact hit, it 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>.
1858
1853
  </p>
@@ -3037,6 +3032,40 @@ parent <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class=
3037
3032
  Routines for rendering PangoLayout objects are provided in
3038
3033
  code specific to each rendering system.
3039
3034
  </p>
3035
+ <div class="variablelist"><table border="0" class="variablelist">
3036
+ <colgroup>
3037
+ <col align="left" valign="top">
3038
+ <col>
3039
+ </colgroup>
3040
+ <tbody>
3041
+ <tr>
3042
+ <td><p><span class="term"><a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> *<em class="structfield"><code><a name="PangoLayoutLine-struct.layout"></a>layout</code></em>;</span></p></td>
3043
+ <td></td>
3044
+ </tr>
3045
+ <tr>
3046
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="PangoLayoutLine-struct.start-index"></a>start_index</code></em>;</span></p></td>
3047
+ <td>start of line as byte index into layout-&gt;text</td>
3048
+ </tr>
3049
+ <tr>
3050
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="PangoLayoutLine-struct.length"></a>length</code></em>;</span></p></td>
3051
+ <td>length of line in bytes</td>
3052
+ </tr>
3053
+ <tr>
3054
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="type">GSList</span></a> *<em class="structfield"><code><a name="PangoLayoutLine-struct.runs"></a>runs</code></em>;</span></p></td>
3055
+ <td></td>
3056
+ </tr>
3057
+ <tr>
3058
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoLayoutLine-struct.is-paragraph-start"></a>is_paragraph_start</code></em> : 1;</span></p></td>
3059
+ <td>
3060
+ <a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> if this is the first line of the paragraph</td>
3061
+ </tr>
3062
+ <tr>
3063
+ <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoLayoutLine-struct.resolved-dir"></a>resolved_dir</code></em> : 3;</span></p></td>
3064
+ <td>
3065
+ <span class="type">Resolved</span> PangoDirection of line</td>
3066
+ </tr>
3067
+ </tbody>
3068
+ </table></div>
3040
3069
  </div>
3041
3070
  <hr>
3042
3071
  <div class="refsect2">
@@ -3332,6 +3361,6 @@ to the layout and are in Pango units. <span class="annotation">[<acronym title="
3332
3361
  </div>
3333
3362
  <div class="footer">
3334
3363
  <hr>
3335
- Generated by GTK-Doc V1.18.1</div>
3364
+ Generated by GTK-Doc V1.19</div>
3336
3365
  </body>
3337
3366
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="lowlevel.html" title="Low Level Functionality">
9
9
  <link rel="prev" href="pango-Modules.html" title="Modules">
10
10
  <link rel="next" href="pango-Version-Checking.html" title="Version Checking">
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">
@@ -775,6 +775,6 @@ of rounding.
775
775
  </div>
776
776
  <div class="footer">
777
777
  <hr>
778
- Generated by GTK-Doc V1.18.1</div>
778
+ Generated by GTK-Doc V1.19</div>
779
779
  </body>
780
780
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="lowlevel.html" title="Low Level Functionality">
9
9
  <link rel="prev" href="PangoEngineShape.html" title="PangoEngineShape">
10
10
  <link rel="next" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">
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">
@@ -260,6 +260,6 @@ module.
260
260
  </div>
261
261
  <div class="footer">
262
262
  <hr>
263
- Generated by GTK-Doc V1.18.1</div>
263
+ Generated by GTK-Doc V1.19</div>
264
264
  </body>
265
265
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="lowlevel.html" title="Low Level Functionality">
9
9
  <link rel="prev" href="PangoFcDecoder.html" title="PangoFcDecoder">
10
10
  <link rel="next" href="pango-Coverage-Maps.html" title="Coverage Maps">
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">
@@ -174,7 +174,7 @@ shaping engines
174
174
  <pre class="programlisting">typedef guint32 PangoOTTag;
175
175
  </pre>
176
176
  <p>
177
- The <span class="type">PangoOTTag</span> typedef is used to represent TrueType and OpenType
177
+ The <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTTag" title="PangoOTTag"><span class="type">PangoOTTag</span></a> typedef is used to represent TrueType and OpenType
178
178
  four letter tags inside Pango. Use <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-TAG-MAKE:CAPS" title="PANGO_OT_TAG_MAKE()"><code class="function">PANGO_OT_TAG_MAKE()</code></a>
179
179
  or <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-TAG-MAKE-FROM-STRING:CAPS" title="PANGO_OT_TAG_MAKE_FROM_STRING()"><code class="function">PANGO_OT_TAG_MAKE_FROM_STRING()</code></a> macros to create <span class="type">PangoOTTag</span>s manually.
180
180
  </p>
@@ -188,7 +188,7 @@ The <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTInfo"><span c
188
188
  tables associated with an OpenType font. It contains only private fields and
189
189
  should only be accessed via the <code class="function">pango_ot_info_*</code> functions
190
190
  which are documented below. To obtain a <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTInfo"><span class="type">PangoOTInfo</span></a>,
191
- use <code class="function">pango_ot_info_new()</code>.
191
+ use <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-get" title="pango_ot_info_get ()"><code class="function">pango_ot_info_get()</code></a>.
192
192
  </p>
193
193
  </div>
194
194
  <hr>
@@ -234,7 +234,7 @@ It contains the following fields.
234
234
  <tr>
235
235
  <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoOTGlyph.properties"></a>properties</code></em>;</span></p></td>
236
236
  <td>the properties value, identifying which features should be
237
- applied on this glyph. See <code class="function">pango_ruleset_add_feature()</code>.</td>
237
+ applied on this glyph. See <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-add-feature" title="pango_ot_ruleset_add_feature ()"><code class="function">pango_ot_ruleset_add_feature()</code></a>.</td>
238
238
  </tr>
239
239
  <tr>
240
240
  <td><p><span class="term"><a href="/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoOTGlyph.cluster"></a>cluster</code></em>;</span></p></td>
@@ -377,7 +377,7 @@ identify the various OpenType tables in the
377
377
  };
378
378
  </pre>
379
379
  <p>
380
- The <span class="type">PangoOTFeatureMap</span> typedef is used to represent an OpenType
380
+ The <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTFeatureMap" title="struct PangoOTFeatureMap"><span class="type">PangoOTFeatureMap</span></a> typedef is used to represent an OpenType
381
381
  feature with the property bit associated with it. The feature tag is
382
382
  represented as a char array instead of a <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTTag" title="PangoOTTag"><span class="type">PangoOTTag</span></a> for convenience.
383
383
  </p>
@@ -407,8 +407,7 @@ represented as a char array instead of a <a class="link" href="pango-OpenType-Fo
407
407
  </pre>
408
408
  <p>
409
409
  Creates a <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTTag" title="PangoOTTag"><span class="type">PangoOTTag</span></a> from four characters. This is similar and
410
- compatible with the <code class="function"><code class="function">FT_MAKE_TAG()</code></code> macro from
411
- FreeType.
410
+ compatible with the <code class="function"><code class="function">FT_MAKE_TAG()</code></code> macro from FreeType.
412
411
  </p>
413
412
  <div class="variablelist"><table border="0" class="variablelist">
414
413
  <colgroup>
@@ -476,9 +475,8 @@ feature should be applied to all glyphs.
476
475
  <p>
477
476
  This is used as a feature index that represent no feature, that is, should be
478
477
  skipped. It may be returned as feature index by <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-find-feature" title="pango_ot_info_find_feature ()"><code class="function">pango_ot_info_find_feature()</code></a>
479
- if the feature is not found, and <code class="function">pango_ot_rulset_add_feature()</code> function
480
- automatically skips this value, so no special handling is required by the
481
- user.
478
+ if the feature is not found, and <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-add-feature" title="pango_ot_ruleset_add_feature ()"><code class="function">pango_ot_ruleset_add_feature()</code></a> function
479
+ automatically skips this value, so no special handling is required by the user.
482
480
  </p>
483
481
  <p class="since">Since 1.18</p>
484
482
  </div>
@@ -505,6 +503,8 @@ this value, so no special handling is required by the user.
505
503
  <p>
506
504
  This is used as the language index in <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-find-feature" title="pango_ot_info_find_feature ()"><code class="function">pango_ot_info_find_feature()</code></a> when
507
505
  the default language system of the script is desired.
506
+ </p>
507
+ <p>
508
508
  It is also returned by <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-find-language" title="pango_ot_info_find_language ()"><code class="function">pango_ot_info_find_language()</code></a> if the requested language
509
509
  is not found, or the requested language tag was PANGO_OT_TAG_DEFAULT_LANGUAGE.
510
510
  The end result is that one can always call <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-tag-from-language" title="pango_ot_tag_from_language ()"><code class="function">pango_ot_tag_from_language()</code></a>
@@ -926,7 +926,7 @@ Empties a <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTBuffer"
926
926
  <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#guint"><span class="type">guint</span></a> cluster</code></em>);</pre>
927
927
  <p>
928
928
  Appends a glyph to a <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTBuffer" title="PangoOTBuffer"><span class="type">PangoOTBuffer</span></a>, with <em class="parameter"><code>properties</code></em> identifying which
929
- features should be applied on this glyph. See <code class="function">pango_ruleset_add_feature()</code>.
929
+ features should be applied on this glyph. See <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-add-feature" title="pango_ot_ruleset_add_feature ()"><code class="function">pango_ot_ruleset_add_feature()</code></a>.
930
930
  </p>
931
931
  <div class="variablelist"><table border="0" class="variablelist">
932
932
  <colgroup>
@@ -1743,6 +1743,6 @@ This function will return <a class="link" href="pango-Scripts-and-Languages.html
1743
1743
  </div>
1744
1744
  <div class="footer">
1745
1745
  <hr>
1746
- Generated by GTK-Doc V1.18.1</div>
1746
+ Generated by GTK-Doc V1.19</div>
1747
1747
  </body>
1748
1748
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pango.html" title="Basic Pango Interfaces">
9
9
  <link rel="prev" href="pango-Layout-Objects.html" title="Layout Objects">
10
10
  <link rel="next" href="pango-Bidirectional-Text.html" title="Bidirectional Text">
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">
@@ -222,12 +222,12 @@ to handle unknown values. This enumeration is interchangeable with
222
222
  <tr>
223
223
  <td><p><a name="PANGO-SCRIPT-INHERITED:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_INHERITED</code></span></p></td>
224
224
  <td>a mark glyph that takes its script from the
225
- base glyph to which it is attached
225
+ base glyph to which it is attached
226
226
  </td>
227
227
  </tr>
228
228
  <tr>
229
229
  <td><p><a name="PANGO-SCRIPT-ARABIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_ARABIC</code></span></p></td>
230
- <td> Arabic
230
+ <td>Arabic
231
231
  </td>
232
232
  </tr>
233
233
  <tr>
@@ -237,7 +237,7 @@ to handle unknown values. This enumeration is interchangeable with
237
237
  </tr>
238
238
  <tr>
239
239
  <td><p><a name="PANGO-SCRIPT-BENGALI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_BENGALI</code></span></p></td>
240
- <td> Bengali
240
+ <td>Bengali
241
241
  </td>
242
242
  </tr>
243
243
  <tr>
@@ -247,327 +247,327 @@ to handle unknown values. This enumeration is interchangeable with
247
247
  </tr>
248
248
  <tr>
249
249
  <td><p><a name="PANGO-SCRIPT-CHEROKEE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CHEROKEE</code></span></p></td>
250
- <td> Cherokee
250
+ <td>Cherokee
251
251
  </td>
252
252
  </tr>
253
253
  <tr>
254
254
  <td><p><a name="PANGO-SCRIPT-COPTIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_COPTIC</code></span></p></td>
255
- <td> Coptic
255
+ <td>Coptic
256
256
  </td>
257
257
  </tr>
258
258
  <tr>
259
259
  <td><p><a name="PANGO-SCRIPT-CYRILLIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CYRILLIC</code></span></p></td>
260
- <td> Cyrillic
260
+ <td>Cyrillic
261
261
  </td>
262
262
  </tr>
263
263
  <tr>
264
264
  <td><p><a name="PANGO-SCRIPT-DESERET:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_DESERET</code></span></p></td>
265
- <td> Deseret
265
+ <td>Deseret
266
266
  </td>
267
267
  </tr>
268
268
  <tr>
269
269
  <td><p><a name="PANGO-SCRIPT-DEVANAGARI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_DEVANAGARI</code></span></p></td>
270
- <td> Devanagari
270
+ <td>Devanagari
271
271
  </td>
272
272
  </tr>
273
273
  <tr>
274
274
  <td><p><a name="PANGO-SCRIPT-ETHIOPIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_ETHIOPIC</code></span></p></td>
275
- <td> Ethiopic
275
+ <td>Ethiopic
276
276
  </td>
277
277
  </tr>
278
278
  <tr>
279
279
  <td><p><a name="PANGO-SCRIPT-GEORGIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_GEORGIAN</code></span></p></td>
280
- <td> Georgian
280
+ <td>Georgian
281
281
  </td>
282
282
  </tr>
283
283
  <tr>
284
284
  <td><p><a name="PANGO-SCRIPT-GOTHIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_GOTHIC</code></span></p></td>
285
- <td> Gothic
285
+ <td>Gothic
286
286
  </td>
287
287
  </tr>
288
288
  <tr>
289
289
  <td><p><a name="PANGO-SCRIPT-GREEK:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_GREEK</code></span></p></td>
290
- <td> Greek
290
+ <td>Greek
291
291
  </td>
292
292
  </tr>
293
293
  <tr>
294
294
  <td><p><a name="PANGO-SCRIPT-GUJARATI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_GUJARATI</code></span></p></td>
295
- <td> Gujarati
295
+ <td>Gujarati
296
296
  </td>
297
297
  </tr>
298
298
  <tr>
299
299
  <td><p><a name="PANGO-SCRIPT-GURMUKHI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_GURMUKHI</code></span></p></td>
300
- <td> Gurmukhi
300
+ <td>Gurmukhi
301
301
  </td>
302
302
  </tr>
303
303
  <tr>
304
304
  <td><p><a name="PANGO-SCRIPT-HAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_HAN</code></span></p></td>
305
- <td> Han
305
+ <td>Han
306
306
  </td>
307
307
  </tr>
308
308
  <tr>
309
309
  <td><p><a name="PANGO-SCRIPT-HANGUL:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_HANGUL</code></span></p></td>
310
- <td> Hangul
310
+ <td>Hangul
311
311
  </td>
312
312
  </tr>
313
313
  <tr>
314
314
  <td><p><a name="PANGO-SCRIPT-HEBREW:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_HEBREW</code></span></p></td>
315
- <td> Hebrew
315
+ <td>Hebrew
316
316
  </td>
317
317
  </tr>
318
318
  <tr>
319
319
  <td><p><a name="PANGO-SCRIPT-HIRAGANA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_HIRAGANA</code></span></p></td>
320
- <td> Hiragana
320
+ <td>Hiragana
321
321
  </td>
322
322
  </tr>
323
323
  <tr>
324
324
  <td><p><a name="PANGO-SCRIPT-KANNADA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_KANNADA</code></span></p></td>
325
- <td> Kannada
325
+ <td>Kannada
326
326
  </td>
327
327
  </tr>
328
328
  <tr>
329
329
  <td><p><a name="PANGO-SCRIPT-KATAKANA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_KATAKANA</code></span></p></td>
330
- <td> Katakana
330
+ <td>Katakana
331
331
  </td>
332
332
  </tr>
333
333
  <tr>
334
334
  <td><p><a name="PANGO-SCRIPT-KHMER:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_KHMER</code></span></p></td>
335
- <td> Khmer
335
+ <td>Khmer
336
336
  </td>
337
337
  </tr>
338
338
  <tr>
339
339
  <td><p><a name="PANGO-SCRIPT-LAO:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_LAO</code></span></p></td>
340
- <td> Lao
340
+ <td>Lao
341
341
  </td>
342
342
  </tr>
343
343
  <tr>
344
344
  <td><p><a name="PANGO-SCRIPT-LATIN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_LATIN</code></span></p></td>
345
- <td> Latin
345
+ <td>Latin
346
346
  </td>
347
347
  </tr>
348
348
  <tr>
349
349
  <td><p><a name="PANGO-SCRIPT-MALAYALAM:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_MALAYALAM</code></span></p></td>
350
- <td> Malayalam
350
+ <td>Malayalam
351
351
  </td>
352
352
  </tr>
353
353
  <tr>
354
354
  <td><p><a name="PANGO-SCRIPT-MONGOLIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_MONGOLIAN</code></span></p></td>
355
- <td> Mongolian
355
+ <td>Mongolian
356
356
  </td>
357
357
  </tr>
358
358
  <tr>
359
359
  <td><p><a name="PANGO-SCRIPT-MYANMAR:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_MYANMAR</code></span></p></td>
360
- <td> Myanmar
360
+ <td>Myanmar
361
361
  </td>
362
362
  </tr>
363
363
  <tr>
364
364
  <td><p><a name="PANGO-SCRIPT-OGHAM:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_OGHAM</code></span></p></td>
365
- <td> Ogham
365
+ <td>Ogham
366
366
  </td>
367
367
  </tr>
368
368
  <tr>
369
369
  <td><p><a name="PANGO-SCRIPT-OLD-ITALIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_OLD_ITALIC</code></span></p></td>
370
- <td> Old Italic
370
+ <td>Old Italic
371
371
  </td>
372
372
  </tr>
373
373
  <tr>
374
374
  <td><p><a name="PANGO-SCRIPT-ORIYA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_ORIYA</code></span></p></td>
375
- <td> Oriya
375
+ <td>Oriya
376
376
  </td>
377
377
  </tr>
378
378
  <tr>
379
379
  <td><p><a name="PANGO-SCRIPT-RUNIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_RUNIC</code></span></p></td>
380
- <td> Runic
380
+ <td>Runic
381
381
  </td>
382
382
  </tr>
383
383
  <tr>
384
384
  <td><p><a name="PANGO-SCRIPT-SINHALA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_SINHALA</code></span></p></td>
385
- <td> Sinhala
385
+ <td>Sinhala
386
386
  </td>
387
387
  </tr>
388
388
  <tr>
389
389
  <td><p><a name="PANGO-SCRIPT-SYRIAC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_SYRIAC</code></span></p></td>
390
- <td> Syriac
390
+ <td>Syriac
391
391
  </td>
392
392
  </tr>
393
393
  <tr>
394
394
  <td><p><a name="PANGO-SCRIPT-TAMIL:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TAMIL</code></span></p></td>
395
- <td> Tamil
395
+ <td>Tamil
396
396
  </td>
397
397
  </tr>
398
398
  <tr>
399
399
  <td><p><a name="PANGO-SCRIPT-TELUGU:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TELUGU</code></span></p></td>
400
- <td> Telugu
400
+ <td>Telugu
401
401
  </td>
402
402
  </tr>
403
403
  <tr>
404
404
  <td><p><a name="PANGO-SCRIPT-THAANA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_THAANA</code></span></p></td>
405
- <td> Thaana
405
+ <td>Thaana
406
406
  </td>
407
407
  </tr>
408
408
  <tr>
409
409
  <td><p><a name="PANGO-SCRIPT-THAI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_THAI</code></span></p></td>
410
- <td> Thai
410
+ <td>Thai
411
411
  </td>
412
412
  </tr>
413
413
  <tr>
414
414
  <td><p><a name="PANGO-SCRIPT-TIBETAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TIBETAN</code></span></p></td>
415
- <td> Tibetan
415
+ <td>Tibetan
416
416
  </td>
417
417
  </tr>
418
418
  <tr>
419
419
  <td><p><a name="PANGO-SCRIPT-CANADIAN-ABORIGINAL:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CANADIAN_ABORIGINAL</code></span></p></td>
420
- <td> Canadian Aboriginal
420
+ <td>Canadian Aboriginal
421
421
  </td>
422
422
  </tr>
423
423
  <tr>
424
424
  <td><p><a name="PANGO-SCRIPT-YI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_YI</code></span></p></td>
425
- <td> Yi
425
+ <td>Yi
426
426
  </td>
427
427
  </tr>
428
428
  <tr>
429
429
  <td><p><a name="PANGO-SCRIPT-TAGALOG:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TAGALOG</code></span></p></td>
430
- <td> Tagalog
430
+ <td>Tagalog
431
431
  </td>
432
432
  </tr>
433
433
  <tr>
434
434
  <td><p><a name="PANGO-SCRIPT-HANUNOO:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_HANUNOO</code></span></p></td>
435
- <td> Hanunoo
435
+ <td>Hanunoo
436
436
  </td>
437
437
  </tr>
438
438
  <tr>
439
439
  <td><p><a name="PANGO-SCRIPT-BUHID:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_BUHID</code></span></p></td>
440
- <td> Buhid
440
+ <td>Buhid
441
441
  </td>
442
442
  </tr>
443
443
  <tr>
444
444
  <td><p><a name="PANGO-SCRIPT-TAGBANWA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TAGBANWA</code></span></p></td>
445
- <td> Tagbanwa
445
+ <td>Tagbanwa
446
446
  </td>
447
447
  </tr>
448
448
  <tr>
449
449
  <td><p><a name="PANGO-SCRIPT-BRAILLE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_BRAILLE</code></span></p></td>
450
- <td> Braille
450
+ <td>Braille
451
451
  </td>
452
452
  </tr>
453
453
  <tr>
454
454
  <td><p><a name="PANGO-SCRIPT-CYPRIOT:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CYPRIOT</code></span></p></td>
455
- <td> Cypriot
455
+ <td>Cypriot
456
456
  </td>
457
457
  </tr>
458
458
  <tr>
459
459
  <td><p><a name="PANGO-SCRIPT-LIMBU:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_LIMBU</code></span></p></td>
460
- <td> Limbu
460
+ <td>Limbu
461
461
  </td>
462
462
  </tr>
463
463
  <tr>
464
464
  <td><p><a name="PANGO-SCRIPT-OSMANYA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_OSMANYA</code></span></p></td>
465
- <td> Osmanya
465
+ <td>Osmanya
466
466
  </td>
467
467
  </tr>
468
468
  <tr>
469
469
  <td><p><a name="PANGO-SCRIPT-SHAVIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_SHAVIAN</code></span></p></td>
470
- <td> Shavian
470
+ <td>Shavian
471
471
  </td>
472
472
  </tr>
473
473
  <tr>
474
474
  <td><p><a name="PANGO-SCRIPT-LINEAR-B:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_LINEAR_B</code></span></p></td>
475
- <td> Linear B
475
+ <td>Linear B
476
476
  </td>
477
477
  </tr>
478
478
  <tr>
479
479
  <td><p><a name="PANGO-SCRIPT-TAI-LE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TAI_LE</code></span></p></td>
480
- <td> Tai Le
480
+ <td>Tai Le
481
481
  </td>
482
482
  </tr>
483
483
  <tr>
484
484
  <td><p><a name="PANGO-SCRIPT-UGARITIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_UGARITIC</code></span></p></td>
485
- <td> Ugaritic
485
+ <td>Ugaritic
486
486
  </td>
487
487
  </tr>
488
488
  <tr>
489
489
  <td><p><a name="PANGO-SCRIPT-NEW-TAI-LUE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_NEW_TAI_LUE</code></span></p></td>
490
- <td> New Tai Lue. Since 1.10
490
+ <td>New Tai Lue. Since 1.10
491
491
  </td>
492
492
  </tr>
493
493
  <tr>
494
494
  <td><p><a name="PANGO-SCRIPT-BUGINESE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_BUGINESE</code></span></p></td>
495
- <td> Buginese. Since 1.10
495
+ <td>Buginese. Since 1.10
496
496
  </td>
497
497
  </tr>
498
498
  <tr>
499
499
  <td><p><a name="PANGO-SCRIPT-GLAGOLITIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_GLAGOLITIC</code></span></p></td>
500
- <td> Glagolitic. Since 1.10
500
+ <td>Glagolitic. Since 1.10
501
501
  </td>
502
502
  </tr>
503
503
  <tr>
504
504
  <td><p><a name="PANGO-SCRIPT-TIFINAGH:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TIFINAGH</code></span></p></td>
505
- <td> Tifinagh. Since 1.10
505
+ <td>Tifinagh. Since 1.10
506
506
  </td>
507
507
  </tr>
508
508
  <tr>
509
509
  <td><p><a name="PANGO-SCRIPT-SYLOTI-NAGRI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_SYLOTI_NAGRI</code></span></p></td>
510
- <td> Syloti Nagri. Since 1.10
510
+ <td>Syloti Nagri. Since 1.10
511
511
  </td>
512
512
  </tr>
513
513
  <tr>
514
514
  <td><p><a name="PANGO-SCRIPT-OLD-PERSIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_OLD_PERSIAN</code></span></p></td>
515
- <td> Old Persian. Since 1.10
515
+ <td>Old Persian. Since 1.10
516
516
  </td>
517
517
  </tr>
518
518
  <tr>
519
519
  <td><p><a name="PANGO-SCRIPT-KHAROSHTHI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_KHAROSHTHI</code></span></p></td>
520
- <td> Kharoshthi. Since 1.10
520
+ <td>Kharoshthi. Since 1.10
521
521
  </td>
522
522
  </tr>
523
523
  <tr>
524
524
  <td><p><a name="PANGO-SCRIPT-UNKNOWN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_UNKNOWN</code></span></p></td>
525
- <td> an unassigned code point. Since 1.14
525
+ <td>an unassigned code point. Since 1.14
526
526
  </td>
527
527
  </tr>
528
528
  <tr>
529
529
  <td><p><a name="PANGO-SCRIPT-BALINESE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_BALINESE</code></span></p></td>
530
- <td> Balinese. Since 1.14
530
+ <td>Balinese. Since 1.14
531
531
  </td>
532
532
  </tr>
533
533
  <tr>
534
534
  <td><p><a name="PANGO-SCRIPT-CUNEIFORM:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CUNEIFORM</code></span></p></td>
535
- <td> Cuneiform. Since 1.14
535
+ <td>Cuneiform. Since 1.14
536
536
  </td>
537
537
  </tr>
538
538
  <tr>
539
539
  <td><p><a name="PANGO-SCRIPT-PHOENICIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_PHOENICIAN</code></span></p></td>
540
- <td> Phoenician. Since 1.14
540
+ <td>Phoenician. Since 1.14
541
541
  </td>
542
542
  </tr>
543
543
  <tr>
544
544
  <td><p><a name="PANGO-SCRIPT-PHAGS-PA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_PHAGS_PA</code></span></p></td>
545
- <td> Phags-pa. Since 1.14
545
+ <td>Phags-pa. Since 1.14
546
546
  </td>
547
547
  </tr>
548
548
  <tr>
549
549
  <td><p><a name="PANGO-SCRIPT-NKO:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_NKO</code></span></p></td>
550
- <td> N'Ko. Since 1.14
550
+ <td>N'Ko. Since 1.14
551
551
  </td>
552
552
  </tr>
553
553
  <tr>
554
554
  <td><p><a name="PANGO-SCRIPT-KAYAH-LI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_KAYAH_LI</code></span></p></td>
555
- <td> Kayah Li. Since 1.20.1
555
+ <td>Kayah Li. Since 1.20.1
556
556
  </td>
557
557
  </tr>
558
558
  <tr>
559
559
  <td><p><a name="PANGO-SCRIPT-LEPCHA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_LEPCHA</code></span></p></td>
560
- <td> Lepcha. Since 1.20.1
560
+ <td>Lepcha. Since 1.20.1
561
561
  </td>
562
562
  </tr>
563
563
  <tr>
564
564
  <td><p><a name="PANGO-SCRIPT-REJANG:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_REJANG</code></span></p></td>
565
- <td> Rejang. Since 1.20.1
565
+ <td>Rejang. Since 1.20.1
566
566
  </td>
567
567
  </tr>
568
568
  <tr>
569
569
  <td><p><a name="PANGO-SCRIPT-SUNDANESE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_SUNDANESE</code></span></p></td>
570
- <td> Sundanese. Since 1.20.1
570
+ <td>Sundanese. Since 1.20.1
571
571
  </td>
572
572
  </tr>
573
573
  <tr>
@@ -577,57 +577,57 @@ to handle unknown values. This enumeration is interchangeable with
577
577
  </tr>
578
578
  <tr>
579
579
  <td><p><a name="PANGO-SCRIPT-CHAM:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CHAM</code></span></p></td>
580
- <td> Cham. Since 1.20.1
580
+ <td>Cham. Since 1.20.1
581
581
  </td>
582
582
  </tr>
583
583
  <tr>
584
584
  <td><p><a name="PANGO-SCRIPT-OL-CHIKI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_OL_CHIKI</code></span></p></td>
585
- <td> Ol Chiki. Since 1.20.1
585
+ <td>Ol Chiki. Since 1.20.1
586
586
  </td>
587
587
  </tr>
588
588
  <tr>
589
589
  <td><p><a name="PANGO-SCRIPT-VAI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_VAI</code></span></p></td>
590
- <td> Vai. Since 1.20.1
590
+ <td>Vai. Since 1.20.1
591
591
  </td>
592
592
  </tr>
593
593
  <tr>
594
594
  <td><p><a name="PANGO-SCRIPT-CARIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CARIAN</code></span></p></td>
595
- <td> Carian. Since 1.20.1
595
+ <td>Carian. Since 1.20.1
596
596
  </td>
597
597
  </tr>
598
598
  <tr>
599
599
  <td><p><a name="PANGO-SCRIPT-LYCIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_LYCIAN</code></span></p></td>
600
- <td> Lycian. Since 1.20.1
600
+ <td>Lycian. Since 1.20.1
601
601
  </td>
602
602
  </tr>
603
603
  <tr>
604
604
  <td><p><a name="PANGO-SCRIPT-LYDIAN:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_LYDIAN</code></span></p></td>
605
- <td> Lydian. Since 1.20.1
605
+ <td>Lydian. Since 1.20.1
606
606
  </td>
607
607
  </tr>
608
608
  <tr>
609
609
  <td><p><a name="PANGO-SCRIPT-BATAK:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_BATAK</code></span></p></td>
610
- <td> Batak. Since 1.32
610
+ <td>Batak. Since 1.32
611
611
  </td>
612
612
  </tr>
613
613
  <tr>
614
614
  <td><p><a name="PANGO-SCRIPT-BRAHMI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_BRAHMI</code></span></p></td>
615
- <td> Brahmi. Since 1.32
615
+ <td>Brahmi. Since 1.32
616
616
  </td>
617
617
  </tr>
618
618
  <tr>
619
619
  <td><p><a name="PANGO-SCRIPT-MANDAIC:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_MANDAIC</code></span></p></td>
620
- <td> Mandaic. Since 1.32
620
+ <td>Mandaic. Since 1.32
621
621
  </td>
622
622
  </tr>
623
623
  <tr>
624
624
  <td><p><a name="PANGO-SCRIPT-CHAKMA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_CHAKMA</code></span></p></td>
625
- <td> Chakma. Since: 1.32
625
+ <td>Chakma. Since: 1.32
626
626
  </td>
627
627
  </tr>
628
628
  <tr>
629
629
  <td><p><a name="PANGO-SCRIPT-MEROITIC-CURSIVE:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_MEROITIC_CURSIVE</code></span></p></td>
630
- <td> Meroitic Cursive. Since: 1.32
630
+ <td>Meroitic Cursive. Since: 1.32
631
631
  </td>
632
632
  </tr>
633
633
  <tr>
@@ -637,22 +637,22 @@ to handle unknown values. This enumeration is interchangeable with
637
637
  </tr>
638
638
  <tr>
639
639
  <td><p><a name="PANGO-SCRIPT-MIAO:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_MIAO</code></span></p></td>
640
- <td> Miao. Since: 1.32
640
+ <td>Miao. Since: 1.32
641
641
  </td>
642
642
  </tr>
643
643
  <tr>
644
644
  <td><p><a name="PANGO-SCRIPT-SHARADA:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_SHARADA</code></span></p></td>
645
- <td> Sharada. Since: 1.32
645
+ <td>Sharada. Since: 1.32
646
646
  </td>
647
647
  </tr>
648
648
  <tr>
649
649
  <td><p><a name="PANGO-SCRIPT-SORA-SOMPENG:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_SORA_SOMPENG</code></span></p></td>
650
- <td> Sora Sompeng. Since: 1.32
650
+ <td>Sora Sompeng. Since: 1.32
651
651
  </td>
652
652
  </tr>
653
653
  <tr>
654
654
  <td><p><a name="PANGO-SCRIPT-TAKRI:CAPS"></a><span class="term"><code class="literal">PANGO_SCRIPT_TAKRI</code></span></p></td>
655
- <td> Takri. Since: 1.32
655
+ <td>Takri. Since: 1.32
656
656
  </td>
657
657
  </tr>
658
658
  </tbody>
@@ -663,9 +663,6 @@ to handle unknown values. This enumeration is interchangeable with
663
663
  <a name="PANGO-TYPE-SCRIPT:CAPS"></a><h3>PANGO_TYPE_SCRIPT</h3>
664
664
  <pre class="programlisting">#define PANGO_TYPE_SCRIPT (pango_script_get_type ())
665
665
  </pre>
666
- <p>
667
- 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-Scripts-and-Languages.html#PangoScript"><span class="type">PangoScript</span></a>
668
- </p>
669
666
  </div>
670
667
  <hr>
671
668
  <div class="refsect2">
@@ -682,7 +679,7 @@ and identify ranges in different scripts.
682
679
  <pre class="programlisting"><a class="link" href="pango-Scripts-and-Languages.html#PangoScript"><span class="returnvalue">PangoScript</span></a> pango_script_for_unichar (<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> ch</code></em>);</pre>
683
680
  <p>
684
681
  Looks up the <a class="link" href="pango-Scripts-and-Languages.html#PangoScript"><span class="type">PangoScript</span></a> for a particular character (as defined by
685
- Unicode Standard Annex <span class="type">24</span>). No check is made for <em class="parameter"><code>ch</code></em> being a
682
+ Unicode Standard Annex #24). No check is made for <em class="parameter"><code>ch</code></em> being a
686
683
  valid Unicode character; if you pass in invalid character, the
687
684
  result is undefined.
688
685
  </p>
@@ -1160,7 +1157,7 @@ either said environment variables or the thread's current locale.
1160
1157
  <p>
1161
1158
  Your application should call <code class="literal">setlocale(LC_ALL, "");</code>
1162
1159
  for the user settings to take effect. Gtk+ does this in its initialization
1163
- functions automatically (by calling <a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-set-locale"><code class="function">gtk_set_locale()</code></a>).
1160
+ functions automatically (by calling <code class="function">gtk_set_locale()</code>).
1164
1161
  See <code class="literal">man setlocale</code> for more details.
1165
1162
  </p>
1166
1163
  <div class="variablelist"><table border="0" class="variablelist">
@@ -1237,6 +1234,6 @@ and should not be freed.</td>
1237
1234
  </div>
1238
1235
  <div class="footer">
1239
1236
  <hr>
1240
- Generated by GTK-Doc V1.18.1</div>
1237
+ Generated by GTK-Doc V1.19</div>
1241
1238
  </body>
1242
1239
  </html>