pango 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (530) hide show
  1. checksums.yaml +7 -0
  2. data/README +33 -0
  3. data/Rakefile +65 -0
  4. data/ext/pango/depend +12 -0
  5. data/ext/pango/extconf.rb +90 -0
  6. data/ext/pango/pango.def +18 -0
  7. data/ext/pango/rbpango.c +318 -0
  8. data/ext/pango/rbpango.h +96 -0
  9. data/ext/pango/rbpangoanalysis.c +218 -0
  10. data/ext/pango/rbpangoattribute.c +499 -0
  11. data/ext/pango/rbpangoattriterator.c +141 -0
  12. data/ext/pango/rbpangoattrlist.c +101 -0
  13. data/ext/pango/rbpangocairo.c +122 -0
  14. data/ext/pango/rbpangocairocontext.c +131 -0
  15. data/ext/pango/rbpangocolor.c +120 -0
  16. data/ext/pango/rbpangocontext.c +309 -0
  17. data/ext/pango/rbpangoconversions.h +111 -0
  18. data/ext/pango/rbpangocoverage.c +106 -0
  19. data/ext/pango/rbpangoengine.c +73 -0
  20. data/ext/pango/rbpangofont.c +110 -0
  21. data/ext/pango/rbpangofontdescription.c +282 -0
  22. data/ext/pango/rbpangofontface.c +73 -0
  23. data/ext/pango/rbpangofontfamily.c +79 -0
  24. data/ext/pango/rbpangofontmap.c +102 -0
  25. data/ext/pango/rbpangofontmetrics.c +85 -0
  26. data/ext/pango/rbpangofontset.c +69 -0
  27. data/ext/pango/rbpangofontsetsimple.c +60 -0
  28. data/ext/pango/rbpangoglyphinfo.c +123 -0
  29. data/ext/pango/rbpangoglyphitem.c +125 -0
  30. data/ext/pango/rbpangoglyphstring.c +151 -0
  31. data/ext/pango/rbpangogravity.c +54 -0
  32. data/ext/pango/rbpangoitem.c +95 -0
  33. data/ext/pango/rbpangolanguage.c +86 -0
  34. data/ext/pango/rbpangolayout.c +572 -0
  35. data/ext/pango/rbpangolayoutiter.c +189 -0
  36. data/ext/pango/rbpangolayoutline.c +239 -0
  37. data/ext/pango/rbpangologattr.c +109 -0
  38. data/ext/pango/rbpangomatrix.c +143 -0
  39. data/ext/pango/rbpangoprivate.h +49 -0
  40. data/ext/pango/rbpangorectangle.c +170 -0
  41. data/ext/pango/rbpangorenderer.c +193 -0
  42. data/ext/pango/rbpangoscript.c +84 -0
  43. data/ext/pango/rbpangoscriptiter.c +92 -0
  44. data/ext/pango/rbpangotabarray.c +128 -0
  45. data/extconf.rb +49 -0
  46. data/lib/2.0/pango.so +0 -0
  47. data/lib/2.1/pango.so +0 -0
  48. data/lib/2.2/pango.so +0 -0
  49. data/lib/pango.rb +79 -0
  50. data/sample/attribute.rb +82 -0
  51. data/sample/break.rb +28 -0
  52. data/sample/gdk_layout.rb +27 -0
  53. data/sample/glyphstring.rb +61 -0
  54. data/sample/item.rb +37 -0
  55. data/sample/label.rb +23 -0
  56. data/sample/layout.rb +102 -0
  57. data/sample/pango_cairo.rb +66 -0
  58. data/sample/parse.rb +33 -0
  59. data/sample/sample.txt +10 -0
  60. data/sample/script.rb +23 -0
  61. data/test/pango-test-utils.rb +9 -0
  62. data/test/run-test.rb +28 -0
  63. data/test/test-analysis.rb +26 -0
  64. data/test/test-attribute.rb +19 -0
  65. data/test/test-color.rb +47 -0
  66. data/test/test-language.rb +7 -0
  67. data/test/test-layout.rb +34 -0
  68. data/test/test-log-attr.rb +26 -0
  69. data/test/test-matrix.rb +26 -0
  70. data/test/test-rectangle.rb +26 -0
  71. data/vendor/local/bin/derb.exe +0 -0
  72. data/vendor/local/bin/genbrk.exe +0 -0
  73. data/vendor/local/bin/genccode.exe +0 -0
  74. data/vendor/local/bin/gencfu.exe +0 -0
  75. data/vendor/local/bin/gencmn.exe +0 -0
  76. data/vendor/local/bin/gencnval.exe +0 -0
  77. data/vendor/local/bin/gendict.exe +0 -0
  78. data/vendor/local/bin/gennorm2.exe +0 -0
  79. data/vendor/local/bin/genrb.exe +0 -0
  80. data/vendor/local/bin/gensprep.exe +0 -0
  81. data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
  82. data/vendor/local/bin/hb-shape.exe +0 -0
  83. data/vendor/local/bin/hb-view.exe +0 -0
  84. data/vendor/local/bin/icu-config +820 -0
  85. data/vendor/local/bin/icuinfo.exe +0 -0
  86. data/vendor/local/bin/icupkg.exe +0 -0
  87. data/vendor/local/bin/libharfbuzz-0.dll +0 -0
  88. data/vendor/local/bin/libpango-1.0-0.dll +0 -0
  89. data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
  90. data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
  91. data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
  92. data/vendor/local/bin/makeconv.exe +0 -0
  93. data/vendor/local/bin/pango-querymodules.exe +0 -0
  94. data/vendor/local/bin/pango-view.exe +0 -0
  95. data/vendor/local/bin/pkgdata.exe +0 -0
  96. data/vendor/local/bin/uconv.exe +0 -0
  97. data/vendor/local/etc/pango/pango.modules +19 -0
  98. data/vendor/local/include/harfbuzz/hb-blob.h +126 -0
  99. data/vendor/local/include/harfbuzz/hb-buffer.h +344 -0
  100. data/vendor/local/include/harfbuzz/hb-common.h +344 -0
  101. data/vendor/local/include/harfbuzz/hb-deprecated.h +51 -0
  102. data/vendor/local/include/harfbuzz/hb-face.h +117 -0
  103. data/vendor/local/include/harfbuzz/hb-font.h +507 -0
  104. data/vendor/local/include/harfbuzz/hb-ft.h +62 -0
  105. data/vendor/local/include/harfbuzz/hb-glib.h +52 -0
  106. data/vendor/local/include/harfbuzz/hb-icu.h +52 -0
  107. data/vendor/local/include/harfbuzz/hb-ot-font.h +41 -0
  108. data/vendor/local/include/harfbuzz/hb-ot-layout.h +302 -0
  109. data/vendor/local/include/harfbuzz/hb-ot-shape.h +53 -0
  110. data/vendor/local/include/harfbuzz/hb-ot-tag.h +59 -0
  111. data/vendor/local/include/harfbuzz/hb-ot.h +43 -0
  112. data/vendor/local/include/harfbuzz/hb-set.h +154 -0
  113. data/vendor/local/include/harfbuzz/hb-shape-plan.h +89 -0
  114. data/vendor/local/include/harfbuzz/hb-shape.h +81 -0
  115. data/vendor/local/include/harfbuzz/hb-unicode.h +445 -0
  116. data/vendor/local/include/harfbuzz/hb-version.h +66 -0
  117. data/vendor/local/include/harfbuzz/hb.h +47 -0
  118. data/vendor/local/include/layout/LEFontInstance.h +550 -0
  119. data/vendor/local/include/layout/LEGlyphFilter.h +45 -0
  120. data/vendor/local/include/layout/LEGlyphStorage.h +546 -0
  121. data/vendor/local/include/layout/LEInsertionList.h +177 -0
  122. data/vendor/local/include/layout/LELanguages.h +112 -0
  123. data/vendor/local/include/layout/LEScripts.h +263 -0
  124. data/vendor/local/include/layout/LESwaps.h +100 -0
  125. data/vendor/local/include/layout/LETableReference.h +418 -0
  126. data/vendor/local/include/layout/LETypes.h +728 -0
  127. data/vendor/local/include/layout/LayoutEngine.h +518 -0
  128. data/vendor/local/include/layout/ParagraphLayout.h +747 -0
  129. data/vendor/local/include/layout/RunArrays.h +676 -0
  130. data/vendor/local/include/layout/loengine.h +225 -0
  131. data/vendor/local/include/layout/playout.h +466 -0
  132. data/vendor/local/include/layout/plruns.h +441 -0
  133. data/vendor/local/include/pango-1.0/pango/pango-attributes.h +514 -0
  134. data/vendor/local/include/pango-1.0/pango/pango-bidi-type.h +136 -0
  135. data/vendor/local/include/pango-1.0/pango/pango-break.h +173 -0
  136. data/vendor/local/include/pango-1.0/pango/pango-context.h +112 -0
  137. data/vendor/local/include/pango-1.0/pango/pango-coverage.h +79 -0
  138. data/vendor/local/include/pango-1.0/pango/pango-engine.h +429 -0
  139. data/vendor/local/include/pango-1.0/pango/pango-enum-types.h +69 -0
  140. data/vendor/local/include/pango-1.0/pango/pango-features.h +12 -0
  141. data/vendor/local/include/pango-1.0/pango/pango-font.h +622 -0
  142. data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +167 -0
  143. data/vendor/local/include/pango-1.0/pango/pango-fontset.h +169 -0
  144. data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +158 -0
  145. data/vendor/local/include/pango-1.0/pango/pango-glyph.h +197 -0
  146. data/vendor/local/include/pango-1.0/pango/pango-gravity.h +128 -0
  147. data/vendor/local/include/pango-1.0/pango/pango-item.h +109 -0
  148. data/vendor/local/include/pango-1.0/pango/pango-language.h +61 -0
  149. data/vendor/local/include/pango-1.0/pango/pango-layout.h +340 -0
  150. data/vendor/local/include/pango-1.0/pango/pango-matrix.h +117 -0
  151. data/vendor/local/include/pango-1.0/pango/pango-modules.h +71 -0
  152. data/vendor/local/include/pango-1.0/pango/pango-ot.h +391 -0
  153. data/vendor/local/include/pango-1.0/pango/pango-renderer.h +260 -0
  154. data/vendor/local/include/pango-1.0/pango/pango-script.h +260 -0
  155. data/vendor/local/include/pango-1.0/pango/pango-tabs.h +87 -0
  156. data/vendor/local/include/pango-1.0/pango/pango-types.h +200 -0
  157. data/vendor/local/include/pango-1.0/pango/pango-utils.h +189 -0
  158. data/vendor/local/include/pango-1.0/pango/pango.h +48 -0
  159. data/vendor/local/include/pango-1.0/pango/pangocairo.h +169 -0
  160. data/vendor/local/include/pango-1.0/pango/pangofc-decoder.h +110 -0
  161. data/vendor/local/include/pango-1.0/pango/pangofc-font.h +153 -0
  162. data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +289 -0
  163. data/vendor/local/include/pango-1.0/pango/pangoft2.h +133 -0
  164. data/vendor/local/include/pango-1.0/pango/pangowin32.h +128 -0
  165. data/vendor/local/include/unicode/alphaindex.h +752 -0
  166. data/vendor/local/include/unicode/appendable.h +232 -0
  167. data/vendor/local/include/unicode/basictz.h +214 -0
  168. data/vendor/local/include/unicode/brkiter.h +655 -0
  169. data/vendor/local/include/unicode/bytestream.h +257 -0
  170. data/vendor/local/include/unicode/bytestrie.h +519 -0
  171. data/vendor/local/include/unicode/bytestriebuilder.h +181 -0
  172. data/vendor/local/include/unicode/calendar.h +2519 -0
  173. data/vendor/local/include/unicode/caniter.h +208 -0
  174. data/vendor/local/include/unicode/chariter.h +722 -0
  175. data/vendor/local/include/unicode/choicfmt.h +594 -0
  176. data/vendor/local/include/unicode/coleitr.h +404 -0
  177. data/vendor/local/include/unicode/coll.h +1267 -0
  178. data/vendor/local/include/unicode/compactdecimalformat.h +330 -0
  179. data/vendor/local/include/unicode/curramt.h +130 -0
  180. data/vendor/local/include/unicode/currpinf.h +258 -0
  181. data/vendor/local/include/unicode/currunit.h +110 -0
  182. data/vendor/local/include/unicode/datefmt.h +883 -0
  183. data/vendor/local/include/unicode/dbbi.h +40 -0
  184. data/vendor/local/include/unicode/dcfmtsym.h +482 -0
  185. data/vendor/local/include/unicode/decimfmt.h +2479 -0
  186. data/vendor/local/include/unicode/docmain.h +215 -0
  187. data/vendor/local/include/unicode/dtfmtsym.h +912 -0
  188. data/vendor/local/include/unicode/dtintrv.h +158 -0
  189. data/vendor/local/include/unicode/dtitvfmt.h +985 -0
  190. data/vendor/local/include/unicode/dtitvinf.h +514 -0
  191. data/vendor/local/include/unicode/dtptngen.h +498 -0
  192. data/vendor/local/include/unicode/dtrule.h +250 -0
  193. data/vendor/local/include/unicode/enumset.h +64 -0
  194. data/vendor/local/include/unicode/errorcode.h +137 -0
  195. data/vendor/local/include/unicode/fieldpos.h +291 -0
  196. data/vendor/local/include/unicode/filteredbrk.h +131 -0
  197. data/vendor/local/include/unicode/fmtable.h +760 -0
  198. data/vendor/local/include/unicode/format.h +305 -0
  199. data/vendor/local/include/unicode/fpositer.h +117 -0
  200. data/vendor/local/include/unicode/gender.h +111 -0
  201. data/vendor/local/include/unicode/gregocal.h +777 -0
  202. data/vendor/local/include/unicode/icudataver.h +41 -0
  203. data/vendor/local/include/unicode/icuplug.h +371 -0
  204. data/vendor/local/include/unicode/idna.h +323 -0
  205. data/vendor/local/include/unicode/listformatter.h +167 -0
  206. data/vendor/local/include/unicode/localpointer.h +304 -0
  207. data/vendor/local/include/unicode/locdspnm.h +204 -0
  208. data/vendor/local/include/unicode/locid.h +815 -0
  209. data/vendor/local/include/unicode/measfmt.h +389 -0
  210. data/vendor/local/include/unicode/measunit.h +1443 -0
  211. data/vendor/local/include/unicode/measure.h +159 -0
  212. data/vendor/local/include/unicode/messagepattern.h +943 -0
  213. data/vendor/local/include/unicode/msgfmt.h +1093 -0
  214. data/vendor/local/include/unicode/normalizer2.h +658 -0
  215. data/vendor/local/include/unicode/normlzr.h +797 -0
  216. data/vendor/local/include/unicode/numfmt.h +1187 -0
  217. data/vendor/local/include/unicode/numsys.h +208 -0
  218. data/vendor/local/include/unicode/parseerr.h +92 -0
  219. data/vendor/local/include/unicode/parsepos.h +230 -0
  220. data/vendor/local/include/unicode/platform.h +751 -0
  221. data/vendor/local/include/unicode/plurfmt.h +615 -0
  222. data/vendor/local/include/unicode/plurrule.h +501 -0
  223. data/vendor/local/include/unicode/ptypes.h +126 -0
  224. data/vendor/local/include/unicode/putil.h +181 -0
  225. data/vendor/local/include/unicode/rbbi.h +782 -0
  226. data/vendor/local/include/unicode/rbnf.h +1032 -0
  227. data/vendor/local/include/unicode/rbtz.h +362 -0
  228. data/vendor/local/include/unicode/regex.h +1857 -0
  229. data/vendor/local/include/unicode/region.h +228 -0
  230. data/vendor/local/include/unicode/reldatefmt.h +498 -0
  231. data/vendor/local/include/unicode/rep.h +261 -0
  232. data/vendor/local/include/unicode/resbund.h +490 -0
  233. data/vendor/local/include/unicode/schriter.h +187 -0
  234. data/vendor/local/include/unicode/scientificformathelper.h +139 -0
  235. data/vendor/local/include/unicode/search.h +575 -0
  236. data/vendor/local/include/unicode/selfmt.h +367 -0
  237. data/vendor/local/include/unicode/simpletz.h +928 -0
  238. data/vendor/local/include/unicode/smpdtfmt.h +1592 -0
  239. data/vendor/local/include/unicode/sortkey.h +338 -0
  240. data/vendor/local/include/unicode/std_string.h +37 -0
  241. data/vendor/local/include/unicode/strenum.h +276 -0
  242. data/vendor/local/include/unicode/stringpiece.h +224 -0
  243. data/vendor/local/include/unicode/stringtriebuilder.h +402 -0
  244. data/vendor/local/include/unicode/stsearch.h +504 -0
  245. data/vendor/local/include/unicode/symtable.h +112 -0
  246. data/vendor/local/include/unicode/tblcoll.h +873 -0
  247. data/vendor/local/include/unicode/timezone.h +948 -0
  248. data/vendor/local/include/unicode/tmunit.h +129 -0
  249. data/vendor/local/include/unicode/tmutamt.h +168 -0
  250. data/vendor/local/include/unicode/tmutfmt.h +243 -0
  251. data/vendor/local/include/unicode/translit.h +1342 -0
  252. data/vendor/local/include/unicode/tzfmt.h +1098 -0
  253. data/vendor/local/include/unicode/tznames.h +404 -0
  254. data/vendor/local/include/unicode/tzrule.h +828 -0
  255. data/vendor/local/include/unicode/tztrans.h +195 -0
  256. data/vendor/local/include/unicode/ubidi.h +2186 -0
  257. data/vendor/local/include/unicode/ubrk.h +540 -0
  258. data/vendor/local/include/unicode/ucal.h +1560 -0
  259. data/vendor/local/include/unicode/ucasemap.h +423 -0
  260. data/vendor/local/include/unicode/ucat.h +158 -0
  261. data/vendor/local/include/unicode/uchar.h +3426 -0
  262. data/vendor/local/include/unicode/ucharstrie.h +576 -0
  263. data/vendor/local/include/unicode/ucharstriebuilder.h +185 -0
  264. data/vendor/local/include/unicode/uchriter.h +381 -0
  265. data/vendor/local/include/unicode/uclean.h +258 -0
  266. data/vendor/local/include/unicode/ucnv.h +2036 -0
  267. data/vendor/local/include/unicode/ucnv_cb.h +162 -0
  268. data/vendor/local/include/unicode/ucnv_err.h +463 -0
  269. data/vendor/local/include/unicode/ucnvsel.h +187 -0
  270. data/vendor/local/include/unicode/ucol.h +1474 -0
  271. data/vendor/local/include/unicode/ucoleitr.h +266 -0
  272. data/vendor/local/include/unicode/uconfig.h +430 -0
  273. data/vendor/local/include/unicode/ucsdet.h +413 -0
  274. data/vendor/local/include/unicode/ucurr.h +424 -0
  275. data/vendor/local/include/unicode/udat.h +1536 -0
  276. data/vendor/local/include/unicode/udata.h +430 -0
  277. data/vendor/local/include/unicode/udateintervalformat.h +181 -0
  278. data/vendor/local/include/unicode/udatpg.h +588 -0
  279. data/vendor/local/include/unicode/udisplaycontext.h +150 -0
  280. data/vendor/local/include/unicode/uenum.h +206 -0
  281. data/vendor/local/include/unicode/uformattable.h +280 -0
  282. data/vendor/local/include/unicode/ugender.h +82 -0
  283. data/vendor/local/include/unicode/uidna.h +762 -0
  284. data/vendor/local/include/unicode/uiter.h +707 -0
  285. data/vendor/local/include/unicode/uldnames.h +302 -0
  286. data/vendor/local/include/unicode/uloc.h +1256 -0
  287. data/vendor/local/include/unicode/ulocdata.h +277 -0
  288. data/vendor/local/include/unicode/umachine.h +356 -0
  289. data/vendor/local/include/unicode/umisc.h +60 -0
  290. data/vendor/local/include/unicode/umsg.h +623 -0
  291. data/vendor/local/include/unicode/unifilt.h +120 -0
  292. data/vendor/local/include/unicode/unifunct.h +125 -0
  293. data/vendor/local/include/unicode/unimatch.h +163 -0
  294. data/vendor/local/include/unicode/unirepl.h +97 -0
  295. data/vendor/local/include/unicode/uniset.h +1691 -0
  296. data/vendor/local/include/unicode/unistr.h +4470 -0
  297. data/vendor/local/include/unicode/unorm.h +561 -0
  298. data/vendor/local/include/unicode/unorm2.h +528 -0
  299. data/vendor/local/include/unicode/unum.h +1328 -0
  300. data/vendor/local/include/unicode/unumsys.h +170 -0
  301. data/vendor/local/include/unicode/uobject.h +320 -0
  302. data/vendor/local/include/unicode/upluralrules.h +145 -0
  303. data/vendor/local/include/unicode/uregex.h +1591 -0
  304. data/vendor/local/include/unicode/uregion.h +248 -0
  305. data/vendor/local/include/unicode/urename.h +1784 -0
  306. data/vendor/local/include/unicode/urep.h +155 -0
  307. data/vendor/local/include/unicode/ures.h +887 -0
  308. data/vendor/local/include/unicode/uscript.h +642 -0
  309. data/vendor/local/include/unicode/usearch.h +885 -0
  310. data/vendor/local/include/unicode/uset.h +1126 -0
  311. data/vendor/local/include/unicode/usetiter.h +318 -0
  312. data/vendor/local/include/unicode/ushape.h +474 -0
  313. data/vendor/local/include/unicode/uspoof.h +1064 -0
  314. data/vendor/local/include/unicode/usprep.h +269 -0
  315. data/vendor/local/include/unicode/ustdio.h +1018 -0
  316. data/vendor/local/include/unicode/ustream.h +68 -0
  317. data/vendor/local/include/unicode/ustring.h +1700 -0
  318. data/vendor/local/include/unicode/ustringtrie.h +95 -0
  319. data/vendor/local/include/unicode/utext.h +1600 -0
  320. data/vendor/local/include/unicode/utf.h +223 -0
  321. data/vendor/local/include/unicode/utf16.h +623 -0
  322. data/vendor/local/include/unicode/utf32.h +23 -0
  323. data/vendor/local/include/unicode/utf8.h +824 -0
  324. data/vendor/local/include/unicode/utf_old.h +1169 -0
  325. data/vendor/local/include/unicode/utmscale.h +481 -0
  326. data/vendor/local/include/unicode/utrace.h +359 -0
  327. data/vendor/local/include/unicode/utrans.h +658 -0
  328. data/vendor/local/include/unicode/utypes.h +723 -0
  329. data/vendor/local/include/unicode/uvernum.h +170 -0
  330. data/vendor/local/include/unicode/uversion.h +193 -0
  331. data/vendor/local/include/unicode/vtzone.h +455 -0
  332. data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
  333. data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
  334. data/vendor/local/lib/girepository-1.0/PangoFT2-1.0.typelib +0 -0
  335. data/vendor/local/lib/icu/54.1/Makefile.inc +293 -0
  336. data/vendor/local/lib/icu/54.1/pkgdata.inc +17 -0
  337. data/vendor/local/lib/icu/Makefile.inc +293 -0
  338. data/vendor/local/lib/icu/pkgdata.inc +17 -0
  339. data/vendor/local/lib/icudt.dll +0 -0
  340. data/vendor/local/lib/icudt54.dll +0 -0
  341. data/vendor/local/lib/icuin.dll +0 -0
  342. data/vendor/local/lib/icuin54.dll +0 -0
  343. data/vendor/local/lib/icuio.dll +0 -0
  344. data/vendor/local/lib/icuio54.dll +0 -0
  345. data/vendor/local/lib/icule.dll +0 -0
  346. data/vendor/local/lib/icule54.dll +0 -0
  347. data/vendor/local/lib/iculx.dll +0 -0
  348. data/vendor/local/lib/iculx54.dll +0 -0
  349. data/vendor/local/lib/icutest.dll +0 -0
  350. data/vendor/local/lib/icutest54.dll +0 -0
  351. data/vendor/local/lib/icutu.dll +0 -0
  352. data/vendor/local/lib/icutu54.dll +0 -0
  353. data/vendor/local/lib/icuuc.dll +0 -0
  354. data/vendor/local/lib/icuuc54.dll +0 -0
  355. data/vendor/local/lib/libharfbuzz-icu.a +0 -0
  356. data/vendor/local/lib/libharfbuzz-icu.la +41 -0
  357. data/vendor/local/lib/libharfbuzz.dll.a +0 -0
  358. data/vendor/local/lib/libharfbuzz.la +41 -0
  359. data/vendor/local/lib/libicudt.dll.a +0 -0
  360. data/vendor/local/lib/libicuin.dll.a +0 -0
  361. data/vendor/local/lib/libicuio.dll.a +0 -0
  362. data/vendor/local/lib/libicule.dll.a +0 -0
  363. data/vendor/local/lib/libiculx.dll.a +0 -0
  364. data/vendor/local/lib/libicutest.dll.a +0 -0
  365. data/vendor/local/lib/libicutu.dll.a +0 -0
  366. data/vendor/local/lib/libicuuc.dll.a +0 -0
  367. data/vendor/local/lib/libpango-1.0.dll.a +0 -0
  368. data/vendor/local/lib/libpango-1.0.la +41 -0
  369. data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
  370. data/vendor/local/lib/libpangocairo-1.0.la +41 -0
  371. data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
  372. data/vendor/local/lib/libpangoft2-1.0.la +41 -0
  373. data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
  374. data/vendor/local/lib/libpangowin32-1.0.la +41 -0
  375. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll +0 -0
  376. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll.a +0 -0
  377. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.la +41 -0
  378. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll +0 -0
  379. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll.a +0 -0
  380. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.la +41 -0
  381. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll +0 -0
  382. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll.a +0 -0
  383. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.la +41 -0
  384. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll +0 -0
  385. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll.a +0 -0
  386. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.la +41 -0
  387. data/vendor/local/lib/pkgconfig/harfbuzz-icu.pc +13 -0
  388. data/vendor/local/lib/pkgconfig/harfbuzz.pc +11 -0
  389. data/vendor/local/lib/pkgconfig/icu-i18n.pc +38 -0
  390. data/vendor/local/lib/pkgconfig/icu-io.pc +38 -0
  391. data/vendor/local/lib/pkgconfig/icu-le.pc +38 -0
  392. data/vendor/local/lib/pkgconfig/icu-lx.pc +38 -0
  393. data/vendor/local/lib/pkgconfig/icu-uc.pc +38 -0
  394. data/vendor/local/lib/pkgconfig/pango.pc +14 -0
  395. data/vendor/local/lib/pkgconfig/pangocairo.pc +11 -0
  396. data/vendor/local/lib/pkgconfig/pangoft2.pc +12 -0
  397. data/vendor/local/lib/pkgconfig/pangowin32.pc +11 -0
  398. data/vendor/local/share/gir-1.0/Pango-1.0.gir +13329 -0
  399. data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +833 -0
  400. data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +354 -0
  401. data/vendor/local/share/gtk-doc/html/harfbuzz/annotation-glossary.html +75 -0
  402. data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +1449 -0
  403. data/vendor/local/share/gtk-doc/html/harfbuzz/ch01.html +98 -0
  404. data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +46 -0
  405. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html +610 -0
  406. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html +1780 -0
  407. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html +1337 -0
  408. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html +144 -0
  409. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html +99 -0
  410. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html +630 -0
  411. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +2529 -0
  412. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html +188 -0
  413. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html +120 -0
  414. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +50 -0
  415. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +120 -0
  416. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html +120 -0
  417. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +771 -0
  418. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html +172 -0
  419. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html +50 -0
  420. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html +966 -0
  421. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +405 -0
  422. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html +286 -0
  423. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html +1523 -0
  424. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html +100 -0
  425. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +182 -0
  426. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb.html +50 -0
  427. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +378 -0
  428. data/vendor/local/share/gtk-doc/html/harfbuzz/home.png +0 -0
  429. data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +105 -0
  430. data/vendor/local/share/gtk-doc/html/harfbuzz/index.sgml +496 -0
  431. data/vendor/local/share/gtk-doc/html/harfbuzz/left-insensitive.png +0 -0
  432. data/vendor/local/share/gtk-doc/html/harfbuzz/left.png +0 -0
  433. data/vendor/local/share/gtk-doc/html/harfbuzz/object-tree.html +59 -0
  434. data/vendor/local/share/gtk-doc/html/harfbuzz/right-insensitive.png +0 -0
  435. data/vendor/local/share/gtk-doc/html/harfbuzz/right.png +0 -0
  436. data/vendor/local/share/gtk-doc/html/harfbuzz/style.css +476 -0
  437. data/vendor/local/share/gtk-doc/html/harfbuzz/up-insensitive.png +0 -0
  438. data/vendor/local/share/gtk-doc/html/harfbuzz/up.png +0 -0
  439. data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +224 -0
  440. data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +255 -0
  441. data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +246 -0
  442. data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +500 -0
  443. data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +1001 -0
  444. data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +301 -0
  445. data/vendor/local/share/gtk-doc/html/pango/PangoRenderer.html +1219 -0
  446. data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +89 -0
  447. data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +135 -0
  448. data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +49 -0
  449. data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +64 -0
  450. data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +228 -0
  451. data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +152 -0
  452. data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +122 -0
  453. data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +87 -0
  454. data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +124 -0
  455. data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +97 -0
  456. data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +46 -0
  457. data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +39 -0
  458. data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +39 -0
  459. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +53 -0
  460. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +42 -0
  461. data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +38 -0
  462. data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +201 -0
  463. data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +165 -0
  464. data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +171 -0
  465. data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +284 -0
  466. data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +2968 -0
  467. data/vendor/local/share/gtk-doc/html/pango/home.png +0 -0
  468. data/vendor/local/share/gtk-doc/html/pango/index.html +146 -0
  469. data/vendor/local/share/gtk-doc/html/pango/index.sgml +957 -0
  470. data/vendor/local/share/gtk-doc/html/pango/layout.gif +0 -0
  471. data/vendor/local/share/gtk-doc/html/pango/left-insensitive.png +0 -0
  472. data/vendor/local/share/gtk-doc/html/pango/left.png +0 -0
  473. data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +68 -0
  474. data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +514 -0
  475. data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +1632 -0
  476. data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +115 -0
  477. data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +508 -0
  478. data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +358 -0
  479. data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +4154 -0
  480. data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +956 -0
  481. data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +2627 -0
  482. data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +4153 -0
  483. data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +965 -0
  484. data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +331 -0
  485. data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +2202 -0
  486. data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +1430 -0
  487. data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +582 -0
  488. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +3356 -0
  489. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +2079 -0
  490. data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +325 -0
  491. data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +523 -0
  492. data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +1028 -0
  493. data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +1275 -0
  494. data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +91 -0
  495. data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +131 -0
  496. data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +786 -0
  497. data/vendor/local/share/gtk-doc/html/pango/pango.html +63 -0
  498. data/vendor/local/share/gtk-doc/html/pango/rendering.html +47 -0
  499. data/vendor/local/share/gtk-doc/html/pango/right-insensitive.png +0 -0
  500. data/vendor/local/share/gtk-doc/html/pango/right.png +0 -0
  501. data/vendor/local/share/gtk-doc/html/pango/rotated-text.png +0 -0
  502. data/vendor/local/share/gtk-doc/html/pango/style.css +476 -0
  503. data/vendor/local/share/gtk-doc/html/pango/tools.html +33 -0
  504. data/vendor/local/share/gtk-doc/html/pango/up-insensitive.png +0 -0
  505. data/vendor/local/share/gtk-doc/html/pango/up.png +0 -0
  506. data/vendor/local/share/icu/54.1/config/mh-mingw64 +158 -0
  507. data/vendor/local/share/icu/54.1/install-sh +251 -0
  508. data/vendor/local/share/icu/54.1/license.html +385 -0
  509. data/vendor/local/share/icu/54.1/mkinstalldirs +43 -0
  510. data/vendor/local/share/license/harfbuzz/AUTHORS +9 -0
  511. data/vendor/local/share/license/harfbuzz/COPYING +36 -0
  512. data/vendor/local/share/license/pango/AUTHORS +2 -0
  513. data/vendor/local/share/license/pango/COPYING +482 -0
  514. data/vendor/local/share/man/man1/derb.1 +196 -0
  515. data/vendor/local/share/man/man1/genbrk.1 +112 -0
  516. data/vendor/local/share/man/man1/gencfu.1 +91 -0
  517. data/vendor/local/share/man/man1/gencnval.1 +91 -0
  518. data/vendor/local/share/man/man1/gendict.1 +131 -0
  519. data/vendor/local/share/man/man1/genrb.1 +146 -0
  520. data/vendor/local/share/man/man1/icu-config.1 +288 -0
  521. data/vendor/local/share/man/man1/makeconv.1 +112 -0
  522. data/vendor/local/share/man/man1/pango-querymodules.1 +106 -0
  523. data/vendor/local/share/man/man1/pango-view.1 +1 -0
  524. data/vendor/local/share/man/man1/pkgdata.1 +258 -0
  525. data/vendor/local/share/man/man1/uconv.1 +443 -0
  526. data/vendor/local/share/man/man8/genccode.8 +106 -0
  527. data/vendor/local/share/man/man8/gencmn.8 +129 -0
  528. data/vendor/local/share/man/man8/gensprep.8 +102 -0
  529. data/vendor/local/share/man/man8/icupkg.8 +204 -0
  530. metadata +599 -0
@@ -0,0 +1,2968 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>Pango Reference Manual: Index of all symbols</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="Pango Reference Manual">
8
+ <link rel="up" href="index.html" title="Pango Reference Manual">
9
+ <link rel="prev" href="annotation-glossary.html" title="Annotation Glossary">
10
+ <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>
17
+  <span class="dim">|</span> 
18
+ <a class="shortcut" href="#idxB">B</a>
19
+  <span class="dim">|</span> 
20
+ <a class="shortcut" href="#idxC">C</a>
21
+  <span class="dim">|</span> 
22
+ <a class="shortcut" href="#idxD">D</a>
23
+  <span class="dim">|</span> 
24
+ <a class="shortcut" href="#idxE">E</a>
25
+  <span class="dim">|</span> 
26
+ <a class="shortcut" href="#idxF">F</a>
27
+  <span class="dim">|</span> 
28
+ <a class="shortcut" href="#idxG">G</a>
29
+  <span class="dim">|</span> 
30
+ <a class="shortcut" href="#idxI">I</a>
31
+  <span class="dim">|</span> 
32
+ <a class="shortcut" href="#idxL">L</a>
33
+  <span class="dim">|</span> 
34
+ <a class="shortcut" href="#idxM">M</a>
35
+  <span class="dim">|</span> 
36
+ <a class="shortcut" href="#idxO">O</a>
37
+  <span class="dim">|</span> 
38
+ <a class="shortcut" href="#idxP">P</a>
39
+  <span class="dim">|</span> 
40
+ <a class="shortcut" href="#idxQ">Q</a>
41
+  <span class="dim">|</span> 
42
+ <a class="shortcut" href="#idxR">R</a>
43
+  <span class="dim">|</span> 
44
+ <a class="shortcut" href="#idxS">S</a>
45
+  <span class="dim">|</span> 
46
+ <a class="shortcut" href="#idxT">T</a>
47
+  <span class="dim">|</span> 
48
+ <a class="shortcut" href="#idxU">U</a>
49
+  <span class="dim">|</span> 
50
+ <a class="shortcut" href="#idxV">V</a>
51
+  <span class="dim">|</span> 
52
+ <a class="shortcut" href="#idxW">W</a>
53
+  <span class="dim">|</span> 
54
+ <a class="shortcut" href="#idxX">X</a></span></td>
55
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
56
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
57
+ <td><a accesskey="p" href="annotation-glossary.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
58
+ <td><a accesskey="n" href="api-index-deprecated.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
59
+ </tr></table>
60
+ <div class="index">
61
+ <div class="titlepage"><div><div><h1 class="title">
62
+ <a name="api-index-full"></a>Index of all symbols</h1></div></div></div>
63
+ <a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
64
+ <dt>
65
+ <a class="link" href="pango-Layout-Objects.html#PangoAlignment" title="enum PangoAlignment">PangoAlignment</a>, enum in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
66
+ </dt>
67
+ <dd></dd>
68
+ <dt>
69
+ <a class="link" href="pango-Text-Processing.html#PangoAnalysis" title="struct PangoAnalysis">PangoAnalysis</a>, struct in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
70
+ </dt>
71
+ <dd></dd>
72
+ <dt>
73
+ <a class="link" href="pango-Text-Processing.html#PANGO-ANALYSIS-FLAG-CENTERED-BASELINE:CAPS" title="PANGO_ANALYSIS_FLAG_CENTERED_BASELINE">PANGO_ANALYSIS_FLAG_CENTERED_BASELINE</a>, macro in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
74
+ </dt>
75
+ <dd></dd>
76
+ <dt>
77
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-ASCENT:CAPS" title="PANGO_ASCENT()">PANGO_ASCENT</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
78
+ </dt>
79
+ <dd></dd>
80
+ <dt>
81
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrClass" title="struct PangoAttrClass">PangoAttrClass</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
82
+ </dt>
83
+ <dd></dd>
84
+ <dt>
85
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrColor" title="struct PangoAttrColor">PangoAttrColor</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
86
+ </dt>
87
+ <dd></dd>
88
+ <dt>
89
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrDataCopyFunc" title="PangoAttrDataCopyFunc ()">PangoAttrDataCopyFunc</a>, user_function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
90
+ </dt>
91
+ <dd></dd>
92
+ <dt>
93
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrFilterFunc" title="PangoAttrFilterFunc ()">PangoAttrFilterFunc</a>, user_function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
94
+ </dt>
95
+ <dd></dd>
96
+ <dt>
97
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrFloat" title="struct PangoAttrFloat">PangoAttrFloat</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
98
+ </dt>
99
+ <dd></dd>
100
+ <dt>
101
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrFontDesc" title="struct PangoAttrFontDesc">PangoAttrFontDesc</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
102
+ </dt>
103
+ <dd></dd>
104
+ <dt>
105
+ <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="struct PangoAttribute">PangoAttribute</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
106
+ </dt>
107
+ <dd></dd>
108
+ <dt>
109
+ <a class="link" href="pango-Text-Attributes.html#pango-attribute-copy" title="pango_attribute_copy ()">pango_attribute_copy</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
110
+ </dt>
111
+ <dd></dd>
112
+ <dt>
113
+ <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()">pango_attribute_destroy</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
114
+ </dt>
115
+ <dd></dd>
116
+ <dt>
117
+ <a class="link" href="pango-Text-Attributes.html#pango-attribute-equal" title="pango_attribute_equal ()">pango_attribute_equal</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
118
+ </dt>
119
+ <dd></dd>
120
+ <dt>
121
+ <a class="link" href="pango-Text-Attributes.html#pango-attribute-init" title="pango_attribute_init ()">pango_attribute_init</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
122
+ </dt>
123
+ <dd></dd>
124
+ <dt>
125
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="struct PangoAttrInt">PangoAttrInt</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
126
+ </dt>
127
+ <dd></dd>
128
+ <dt>
129
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator">PangoAttrIterator</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
130
+ </dt>
131
+ <dd></dd>
132
+ <dt>
133
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrLanguage" title="struct PangoAttrLanguage">PangoAttrLanguage</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
134
+ </dt>
135
+ <dd></dd>
136
+ <dt>
137
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrList-struct" title="PangoAttrList">PangoAttrList</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
138
+ </dt>
139
+ <dd></dd>
140
+ <dt>
141
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrShape" title="struct PangoAttrShape">PangoAttrShape</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
142
+ </dt>
143
+ <dd></dd>
144
+ <dt>
145
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrSize" title="struct PangoAttrSize">PangoAttrSize</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
146
+ </dt>
147
+ <dd></dd>
148
+ <dt>
149
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrString" title="struct PangoAttrString">PangoAttrString</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
150
+ </dt>
151
+ <dd></dd>
152
+ <dt>
153
+ <a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType">PangoAttrType</a>, enum in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
154
+ </dt>
155
+ <dd></dd>
156
+ <dt>
157
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-background-new" title="pango_attr_background_new ()">pango_attr_background_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
158
+ </dt>
159
+ <dd></dd>
160
+ <dt>
161
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-fallback-new" title="pango_attr_fallback_new ()">pango_attr_fallback_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
162
+ </dt>
163
+ <dd></dd>
164
+ <dt>
165
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-family-new" title="pango_attr_family_new ()">pango_attr_family_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
166
+ </dt>
167
+ <dd></dd>
168
+ <dt>
169
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-font-desc-new" title="pango_attr_font_desc_new ()">pango_attr_font_desc_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
170
+ </dt>
171
+ <dd></dd>
172
+ <dt>
173
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-foreground-new" title="pango_attr_foreground_new ()">pango_attr_foreground_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
174
+ </dt>
175
+ <dd></dd>
176
+ <dt>
177
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-gravity-hint-new" title="pango_attr_gravity_hint_new ()">pango_attr_gravity_hint_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
178
+ </dt>
179
+ <dd></dd>
180
+ <dt>
181
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-gravity-new" title="pango_attr_gravity_new ()">pango_attr_gravity_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
182
+ </dt>
183
+ <dd></dd>
184
+ <dt>
185
+ <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-FROM-TEXT-BEGINNING:CAPS" title="PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING">PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
186
+ </dt>
187
+ <dd></dd>
188
+ <dt>
189
+ <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-TO-TEXT-END:CAPS" title="PANGO_ATTR_INDEX_TO_TEXT_END">PANGO_ATTR_INDEX_TO_TEXT_END</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
190
+ </dt>
191
+ <dd></dd>
192
+ <dt>
193
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-copy" title="pango_attr_iterator_copy ()">pango_attr_iterator_copy</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
194
+ </dt>
195
+ <dd></dd>
196
+ <dt>
197
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-destroy" title="pango_attr_iterator_destroy ()">pango_attr_iterator_destroy</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
198
+ </dt>
199
+ <dd></dd>
200
+ <dt>
201
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-get" title="pango_attr_iterator_get ()">pango_attr_iterator_get</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
202
+ </dt>
203
+ <dd></dd>
204
+ <dt>
205
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-get-attrs" title="pango_attr_iterator_get_attrs ()">pango_attr_iterator_get_attrs</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
206
+ </dt>
207
+ <dd></dd>
208
+ <dt>
209
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-get-font" title="pango_attr_iterator_get_font ()">pango_attr_iterator_get_font</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
210
+ </dt>
211
+ <dd></dd>
212
+ <dt>
213
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-next" title="pango_attr_iterator_next ()">pango_attr_iterator_next</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
214
+ </dt>
215
+ <dd></dd>
216
+ <dt>
217
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-range" title="pango_attr_iterator_range ()">pango_attr_iterator_range</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
218
+ </dt>
219
+ <dd></dd>
220
+ <dt>
221
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-language-new" title="pango_attr_language_new ()">pango_attr_language_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
222
+ </dt>
223
+ <dd></dd>
224
+ <dt>
225
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-letter-spacing-new" title="pango_attr_letter_spacing_new ()">pango_attr_letter_spacing_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
226
+ </dt>
227
+ <dd></dd>
228
+ <dt>
229
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-change" title="pango_attr_list_change ()">pango_attr_list_change</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
230
+ </dt>
231
+ <dd></dd>
232
+ <dt>
233
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-copy" title="pango_attr_list_copy ()">pango_attr_list_copy</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
234
+ </dt>
235
+ <dd></dd>
236
+ <dt>
237
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-filter" title="pango_attr_list_filter ()">pango_attr_list_filter</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
238
+ </dt>
239
+ <dd></dd>
240
+ <dt>
241
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-get-iterator" title="pango_attr_list_get_iterator ()">pango_attr_list_get_iterator</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
242
+ </dt>
243
+ <dd></dd>
244
+ <dt>
245
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-insert" title="pango_attr_list_insert ()">pango_attr_list_insert</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
246
+ </dt>
247
+ <dd></dd>
248
+ <dt>
249
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-insert-before" title="pango_attr_list_insert_before ()">pango_attr_list_insert_before</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
250
+ </dt>
251
+ <dd></dd>
252
+ <dt>
253
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-new" title="pango_attr_list_new ()">pango_attr_list_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
254
+ </dt>
255
+ <dd></dd>
256
+ <dt>
257
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-ref" title="pango_attr_list_ref ()">pango_attr_list_ref</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
258
+ </dt>
259
+ <dd></dd>
260
+ <dt>
261
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-splice" title="pango_attr_list_splice ()">pango_attr_list_splice</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
262
+ </dt>
263
+ <dd></dd>
264
+ <dt>
265
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-list-unref" title="pango_attr_list_unref ()">pango_attr_list_unref</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
266
+ </dt>
267
+ <dd></dd>
268
+ <dt>
269
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-rise-new" title="pango_attr_rise_new ()">pango_attr_rise_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
270
+ </dt>
271
+ <dd></dd>
272
+ <dt>
273
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-scale-new" title="pango_attr_scale_new ()">pango_attr_scale_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
274
+ </dt>
275
+ <dd></dd>
276
+ <dt>
277
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-shape-new" title="pango_attr_shape_new ()">pango_attr_shape_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
278
+ </dt>
279
+ <dd></dd>
280
+ <dt>
281
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-shape-new-with-data" title="pango_attr_shape_new_with_data ()">pango_attr_shape_new_with_data</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
282
+ </dt>
283
+ <dd></dd>
284
+ <dt>
285
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-size-new" title="pango_attr_size_new ()">pango_attr_size_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
286
+ </dt>
287
+ <dd></dd>
288
+ <dt>
289
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-size-new-absolute" title="pango_attr_size_new_absolute ()">pango_attr_size_new_absolute</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
290
+ </dt>
291
+ <dd></dd>
292
+ <dt>
293
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-stretch-new" title="pango_attr_stretch_new ()">pango_attr_stretch_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
294
+ </dt>
295
+ <dd></dd>
296
+ <dt>
297
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-strikethrough-color-new" title="pango_attr_strikethrough_color_new ()">pango_attr_strikethrough_color_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
298
+ </dt>
299
+ <dd></dd>
300
+ <dt>
301
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-strikethrough-new" title="pango_attr_strikethrough_new ()">pango_attr_strikethrough_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
302
+ </dt>
303
+ <dd></dd>
304
+ <dt>
305
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-style-new" title="pango_attr_style_new ()">pango_attr_style_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
306
+ </dt>
307
+ <dd></dd>
308
+ <dt>
309
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-type-get-name" title="pango_attr_type_get_name ()">pango_attr_type_get_name</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
310
+ </dt>
311
+ <dd></dd>
312
+ <dt>
313
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-type-register" title="pango_attr_type_register ()">pango_attr_type_register</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
314
+ </dt>
315
+ <dd></dd>
316
+ <dt>
317
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-underline-color-new" title="pango_attr_underline_color_new ()">pango_attr_underline_color_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
318
+ </dt>
319
+ <dd></dd>
320
+ <dt>
321
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-underline-new" title="pango_attr_underline_new ()">pango_attr_underline_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
322
+ </dt>
323
+ <dd></dd>
324
+ <dt>
325
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-variant-new" title="pango_attr_variant_new ()">pango_attr_variant_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
326
+ </dt>
327
+ <dd></dd>
328
+ <dt>
329
+ <a class="link" href="pango-Text-Attributes.html#pango-attr-weight-new" title="pango_attr_weight_new ()">pango_attr_weight_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
330
+ </dt>
331
+ <dd></dd>
332
+ <a name="idxB"></a><h3 class="title">B</h3>
333
+ <dt>
334
+ <a class="link" href="pango-Bidirectional-Text.html#PangoBidiType" title="enum PangoBidiType">PangoBidiType</a>, enum in <a class="link" href="pango-Bidirectional-Text.html" title="Bidirectional Text">Bidirectional Text</a>
335
+ </dt>
336
+ <dd></dd>
337
+ <dt>
338
+ <a class="link" href="pango-Bidirectional-Text.html#pango-bidi-type-for-unichar" title="pango_bidi_type_for_unichar ()">pango_bidi_type_for_unichar</a>, function in <a class="link" href="pango-Bidirectional-Text.html" title="Bidirectional Text">Bidirectional Text</a>
339
+ </dt>
340
+ <dd></dd>
341
+ <dt>
342
+ <a class="link" href="pango-Text-Processing.html#pango-break" title="pango_break ()">pango_break</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
343
+ </dt>
344
+ <dd></dd>
345
+ <a name="idxC"></a><h3 class="title">C</h3>
346
+ <dt>
347
+ <a class="link" href="pango-Cairo-Rendering.html#PangoCairoFont-struct" title="PangoCairoFont">PangoCairoFont</a>, struct in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
348
+ </dt>
349
+ <dd></dd>
350
+ <dt>
351
+ <a class="link" href="pango-Cairo-Rendering.html#PangoCairoFontMap-struct" title="PangoCairoFontMap">PangoCairoFontMap</a>, struct in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
352
+ </dt>
353
+ <dd></dd>
354
+ <dt>
355
+ <a class="link" href="pango-Cairo-Rendering.html#PangoCairoShapeRendererFunc" title="PangoCairoShapeRendererFunc ()">PangoCairoShapeRendererFunc</a>, user_function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
356
+ </dt>
357
+ <dd></dd>
358
+ <dt>
359
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-get-font-options" title="pango_cairo_context_get_font_options ()">pango_cairo_context_get_font_options</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
360
+ </dt>
361
+ <dd></dd>
362
+ <dt>
363
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-get-resolution" title="pango_cairo_context_get_resolution ()">pango_cairo_context_get_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
364
+ </dt>
365
+ <dd></dd>
366
+ <dt>
367
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-get-shape-renderer" title="pango_cairo_context_get_shape_renderer ()">pango_cairo_context_get_shape_renderer</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
368
+ </dt>
369
+ <dd></dd>
370
+ <dt>
371
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-set-font-options" title="pango_cairo_context_set_font_options ()">pango_cairo_context_set_font_options</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
372
+ </dt>
373
+ <dd></dd>
374
+ <dt>
375
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-set-resolution" title="pango_cairo_context_set_resolution ()">pango_cairo_context_set_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
376
+ </dt>
377
+ <dd></dd>
378
+ <dt>
379
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-set-shape-renderer" title="pango_cairo_context_set_shape_renderer ()">pango_cairo_context_set_shape_renderer</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
380
+ </dt>
381
+ <dd></dd>
382
+ <dt>
383
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-create-context" title="pango_cairo_create_context ()">pango_cairo_create_context</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
384
+ </dt>
385
+ <dd></dd>
386
+ <dt>
387
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-create-layout" title="pango_cairo_create_layout ()">pango_cairo_create_layout</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
388
+ </dt>
389
+ <dd></dd>
390
+ <dt>
391
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-error-underline-path" title="pango_cairo_error_underline_path ()">pango_cairo_error_underline_path</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
392
+ </dt>
393
+ <dd></dd>
394
+ <dt>
395
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-get-scaled-font" title="pango_cairo_font_get_scaled_font ()">pango_cairo_font_get_scaled_font</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
396
+ </dt>
397
+ <dd></dd>
398
+ <dt>
399
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-create-context" title="pango_cairo_font_map_create_context ()">pango_cairo_font_map_create_context</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
400
+ </dt>
401
+ <dd></dd>
402
+ <dt>
403
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-get-default" title="pango_cairo_font_map_get_default ()">pango_cairo_font_map_get_default</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
404
+ </dt>
405
+ <dd></dd>
406
+ <dt>
407
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-get-font-type" title="pango_cairo_font_map_get_font_type ()">pango_cairo_font_map_get_font_type</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
408
+ </dt>
409
+ <dd></dd>
410
+ <dt>
411
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-get-resolution" title="pango_cairo_font_map_get_resolution ()">pango_cairo_font_map_get_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
412
+ </dt>
413
+ <dd></dd>
414
+ <dt>
415
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-new" title="pango_cairo_font_map_new ()">pango_cairo_font_map_new</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
416
+ </dt>
417
+ <dd></dd>
418
+ <dt>
419
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-new-for-font-type" title="pango_cairo_font_map_new_for_font_type ()">pango_cairo_font_map_new_for_font_type</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
420
+ </dt>
421
+ <dd></dd>
422
+ <dt>
423
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-set-default" title="pango_cairo_font_map_set_default ()">pango_cairo_font_map_set_default</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
424
+ </dt>
425
+ <dd></dd>
426
+ <dt>
427
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-set-resolution" title="pango_cairo_font_map_set_resolution ()">pango_cairo_font_map_set_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
428
+ </dt>
429
+ <dd></dd>
430
+ <dt>
431
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-glyph-string-path" title="pango_cairo_glyph_string_path ()">pango_cairo_glyph_string_path</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
432
+ </dt>
433
+ <dd></dd>
434
+ <dt>
435
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-layout-line-path" title="pango_cairo_layout_line_path ()">pango_cairo_layout_line_path</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
436
+ </dt>
437
+ <dd></dd>
438
+ <dt>
439
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-layout-path" title="pango_cairo_layout_path ()">pango_cairo_layout_path</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
440
+ </dt>
441
+ <dd></dd>
442
+ <dt>
443
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-error-underline" title="pango_cairo_show_error_underline ()">pango_cairo_show_error_underline</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
444
+ </dt>
445
+ <dd></dd>
446
+ <dt>
447
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-glyph-item" title="pango_cairo_show_glyph_item ()">pango_cairo_show_glyph_item</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
448
+ </dt>
449
+ <dd></dd>
450
+ <dt>
451
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-glyph-string" title="pango_cairo_show_glyph_string ()">pango_cairo_show_glyph_string</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
452
+ </dt>
453
+ <dd></dd>
454
+ <dt>
455
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-layout" title="pango_cairo_show_layout ()">pango_cairo_show_layout</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
456
+ </dt>
457
+ <dd></dd>
458
+ <dt>
459
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-layout-line" title="pango_cairo_show_layout_line ()">pango_cairo_show_layout_line</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
460
+ </dt>
461
+ <dd></dd>
462
+ <dt>
463
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-update-context" title="pango_cairo_update_context ()">pango_cairo_update_context</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
464
+ </dt>
465
+ <dd></dd>
466
+ <dt>
467
+ <a class="link" href="pango-Cairo-Rendering.html#pango-cairo-update-layout" title="pango_cairo_update_layout ()">pango_cairo_update_layout</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
468
+ </dt>
469
+ <dd></dd>
470
+ <dt>
471
+ <a class="link" href="pango-Text-Attributes.html#PangoColor-struct" title="struct PangoColor">PangoColor</a>, struct in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
472
+ </dt>
473
+ <dd></dd>
474
+ <dt>
475
+ <a class="link" href="pango-Text-Attributes.html#pango-color-copy" title="pango_color_copy ()">pango_color_copy</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
476
+ </dt>
477
+ <dd></dd>
478
+ <dt>
479
+ <a class="link" href="pango-Text-Attributes.html#pango-color-free" title="pango_color_free ()">pango_color_free</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
480
+ </dt>
481
+ <dd></dd>
482
+ <dt>
483
+ <a class="link" href="pango-Text-Attributes.html#pango-color-parse" title="pango_color_parse ()">pango_color_parse</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
484
+ </dt>
485
+ <dd></dd>
486
+ <dt>
487
+ <a class="link" href="pango-Text-Attributes.html#pango-color-to-string" title="pango_color_to_string ()">pango_color_to_string</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
488
+ </dt>
489
+ <dd></dd>
490
+ <dt>
491
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-config-key-get" title="pango_config_key_get ()">pango_config_key_get</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
492
+ </dt>
493
+ <dd></dd>
494
+ <dt>
495
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-config-key-get-system" title="pango_config_key_get_system ()">pango_config_key_get_system</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
496
+ </dt>
497
+ <dd></dd>
498
+ <dt>
499
+ <a class="link" href="pango-Text-Processing.html#PangoContext-struct" title="PangoContext">PangoContext</a>, struct in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
500
+ </dt>
501
+ <dd></dd>
502
+ <dt>
503
+ <a class="link" href="pango-Text-Processing.html#pango-context-changed" title="pango_context_changed ()">pango_context_changed</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
504
+ </dt>
505
+ <dd></dd>
506
+ <dt>
507
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-base-dir" title="pango_context_get_base_dir ()">pango_context_get_base_dir</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
508
+ </dt>
509
+ <dd></dd>
510
+ <dt>
511
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-base-gravity" title="pango_context_get_base_gravity ()">pango_context_get_base_gravity</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
512
+ </dt>
513
+ <dd></dd>
514
+ <dt>
515
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-font-description" title="pango_context_get_font_description ()">pango_context_get_font_description</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
516
+ </dt>
517
+ <dd></dd>
518
+ <dt>
519
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-font-map" title="pango_context_get_font_map ()">pango_context_get_font_map</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
520
+ </dt>
521
+ <dd></dd>
522
+ <dt>
523
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-gravity" title="pango_context_get_gravity ()">pango_context_get_gravity</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
524
+ </dt>
525
+ <dd></dd>
526
+ <dt>
527
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-gravity-hint" title="pango_context_get_gravity_hint ()">pango_context_get_gravity_hint</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
528
+ </dt>
529
+ <dd></dd>
530
+ <dt>
531
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-language" title="pango_context_get_language ()">pango_context_get_language</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
532
+ </dt>
533
+ <dd></dd>
534
+ <dt>
535
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-matrix" title="pango_context_get_matrix ()">pango_context_get_matrix</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
536
+ </dt>
537
+ <dd></dd>
538
+ <dt>
539
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-metrics" title="pango_context_get_metrics ()">pango_context_get_metrics</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
540
+ </dt>
541
+ <dd></dd>
542
+ <dt>
543
+ <a class="link" href="pango-Text-Processing.html#pango-context-get-serial" title="pango_context_get_serial ()">pango_context_get_serial</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
544
+ </dt>
545
+ <dd></dd>
546
+ <dt>
547
+ <a class="link" href="pango-Text-Processing.html#pango-context-list-families" title="pango_context_list_families ()">pango_context_list_families</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
548
+ </dt>
549
+ <dd></dd>
550
+ <dt>
551
+ <a class="link" href="pango-Text-Processing.html#pango-context-load-font" title="pango_context_load_font ()">pango_context_load_font</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
552
+ </dt>
553
+ <dd></dd>
554
+ <dt>
555
+ <a class="link" href="pango-Text-Processing.html#pango-context-load-fontset" title="pango_context_load_fontset ()">pango_context_load_fontset</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
556
+ </dt>
557
+ <dd></dd>
558
+ <dt>
559
+ <a class="link" href="pango-Text-Processing.html#pango-context-new" title="pango_context_new ()">pango_context_new</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
560
+ </dt>
561
+ <dd></dd>
562
+ <dt>
563
+ <a class="link" href="pango-Text-Processing.html#pango-context-set-base-dir" title="pango_context_set_base_dir ()">pango_context_set_base_dir</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
564
+ </dt>
565
+ <dd></dd>
566
+ <dt>
567
+ <a class="link" href="pango-Text-Processing.html#pango-context-set-base-gravity" title="pango_context_set_base_gravity ()">pango_context_set_base_gravity</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
568
+ </dt>
569
+ <dd></dd>
570
+ <dt>
571
+ <a class="link" href="pango-Text-Processing.html#pango-context-set-font-description" title="pango_context_set_font_description ()">pango_context_set_font_description</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
572
+ </dt>
573
+ <dd></dd>
574
+ <dt>
575
+ <a class="link" href="pango-Text-Processing.html#pango-context-set-font-map" title="pango_context_set_font_map ()">pango_context_set_font_map</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
576
+ </dt>
577
+ <dd></dd>
578
+ <dt>
579
+ <a class="link" href="pango-Text-Processing.html#pango-context-set-gravity-hint" title="pango_context_set_gravity_hint ()">pango_context_set_gravity_hint</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
580
+ </dt>
581
+ <dd></dd>
582
+ <dt>
583
+ <a class="link" href="pango-Text-Processing.html#pango-context-set-language" title="pango_context_set_language ()">pango_context_set_language</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
584
+ </dt>
585
+ <dd></dd>
586
+ <dt>
587
+ <a class="link" href="pango-Text-Processing.html#pango-context-set-matrix" title="pango_context_set_matrix ()">pango_context_set_matrix</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
588
+ </dt>
589
+ <dd></dd>
590
+ <dt>
591
+ <a class="link" href="pango-CoreText-Fonts.html#pango-core-text-font-get-ctfont" title="pango_core_text_font_get_ctfont ()">pango_core_text_font_get_ctfont</a>, function in <a class="link" href="pango-CoreText-Fonts.html" title="CoreText Fonts">CoreText Fonts</a>
592
+ </dt>
593
+ <dd></dd>
594
+ <dt>
595
+ <a class="link" href="pango-Coverage-Maps.html#PangoCoverage" title="PangoCoverage">PangoCoverage</a>, struct in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
596
+ </dt>
597
+ <dd></dd>
598
+ <dt>
599
+ <a class="link" href="pango-Coverage-Maps.html#PangoCoverageLevel" title="enum PangoCoverageLevel">PangoCoverageLevel</a>, enum in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
600
+ </dt>
601
+ <dd></dd>
602
+ <dt>
603
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-copy" title="pango_coverage_copy ()">pango_coverage_copy</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
604
+ </dt>
605
+ <dd></dd>
606
+ <dt>
607
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-from-bytes" title="pango_coverage_from_bytes ()">pango_coverage_from_bytes</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
608
+ </dt>
609
+ <dd></dd>
610
+ <dt>
611
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-get" title="pango_coverage_get ()">pango_coverage_get</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
612
+ </dt>
613
+ <dd></dd>
614
+ <dt>
615
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-max" title="pango_coverage_max ()">pango_coverage_max</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
616
+ </dt>
617
+ <dd></dd>
618
+ <dt>
619
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-new" title="pango_coverage_new ()">pango_coverage_new</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
620
+ </dt>
621
+ <dd></dd>
622
+ <dt>
623
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-ref" title="pango_coverage_ref ()">pango_coverage_ref</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
624
+ </dt>
625
+ <dd></dd>
626
+ <dt>
627
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-set" title="pango_coverage_set ()">pango_coverage_set</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
628
+ </dt>
629
+ <dd></dd>
630
+ <dt>
631
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-to-bytes" title="pango_coverage_to_bytes ()">pango_coverage_to_bytes</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
632
+ </dt>
633
+ <dd></dd>
634
+ <dt>
635
+ <a class="link" href="pango-Coverage-Maps.html#pango-coverage-unref" title="pango_coverage_unref ()">pango_coverage_unref</a>, function in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
636
+ </dt>
637
+ <dd></dd>
638
+ <a name="idxD"></a><h3 class="title">D</h3>
639
+ <dt>
640
+ <a class="link" href="pango-Text-Processing.html#pango-default-break" title="pango_default_break ()">pango_default_break</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
641
+ </dt>
642
+ <dd></dd>
643
+ <dt>
644
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-DESCENT:CAPS" title="PANGO_DESCENT()">PANGO_DESCENT</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
645
+ </dt>
646
+ <dd></dd>
647
+ <dt>
648
+ <a class="link" href="pango-Bidirectional-Text.html#PangoDirection" title="enum PangoDirection">PangoDirection</a>, enum in <a class="link" href="pango-Bidirectional-Text.html" title="Bidirectional Text">Bidirectional Text</a>
649
+ </dt>
650
+ <dd></dd>
651
+ <a name="idxE"></a><h3 class="title">E</h3>
652
+ <dt>
653
+ <a class="link" href="pango-Layout-Objects.html#PangoEllipsizeMode" title="enum PangoEllipsizeMode">PangoEllipsizeMode</a>, enum in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
654
+ </dt>
655
+ <dd></dd>
656
+ <dt>
657
+ <a class="link" href="pango-Engines.html#PangoEngine-struct" title="struct PangoEngine">PangoEngine</a>, struct in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
658
+ </dt>
659
+ <dd></dd>
660
+ <dt>
661
+ <a class="link" href="pango-Engines.html#PangoEngineClass" title="struct PangoEngineClass">PangoEngineClass</a>, struct in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
662
+ </dt>
663
+ <dd></dd>
664
+ <dt>
665
+ <a class="link" href="pango-Engines.html#PangoEngineInfo" title="struct PangoEngineInfo">PangoEngineInfo</a>, struct in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
666
+ </dt>
667
+ <dd></dd>
668
+ <dt>
669
+ <a class="link" href="PangoEngineLang.html#PangoEngineLang-struct" title="PangoEngineLang">PangoEngineLang</a>, struct in <a class="link" href="PangoEngineLang.html" title="PangoEngineLang">PangoEngineLang</a>
670
+ </dt>
671
+ <dd></dd>
672
+ <dt>
673
+ <a class="link" href="PangoEngineLang.html#PangoEngineLangClass" title="struct PangoEngineLangClass">PangoEngineLangClass</a>, struct in <a class="link" href="PangoEngineLang.html" title="PangoEngineLang">PangoEngineLang</a>
674
+ </dt>
675
+ <dd></dd>
676
+ <dt>
677
+ <a class="link" href="pango-Engines.html#PangoEngineScriptInfo" title="struct PangoEngineScriptInfo">PangoEngineScriptInfo</a>, struct in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
678
+ </dt>
679
+ <dd></dd>
680
+ <dt>
681
+ <a class="link" href="PangoEngineShape.html#PangoEngineShape-struct" title="PangoEngineShape">PangoEngineShape</a>, struct in <a class="link" href="PangoEngineShape.html" title="PangoEngineShape">PangoEngineShape</a>
682
+ </dt>
683
+ <dd></dd>
684
+ <dt>
685
+ <a class="link" href="PangoEngineShape.html#PangoEngineShapeClass" title="struct PangoEngineShapeClass">PangoEngineShapeClass</a>, struct in <a class="link" href="PangoEngineShape.html" title="PangoEngineShape">PangoEngineShape</a>
686
+ </dt>
687
+ <dd></dd>
688
+ <dt>
689
+ <a class="link" href="PangoEngineLang.html#PANGO-ENGINE-LANG-DEFINE-TYPE:CAPS" title="PANGO_ENGINE_LANG_DEFINE_TYPE()">PANGO_ENGINE_LANG_DEFINE_TYPE</a>, macro in <a class="link" href="PangoEngineLang.html" title="PangoEngineLang">PangoEngineLang</a>
690
+ </dt>
691
+ <dd></dd>
692
+ <dt>
693
+ <a class="link" href="PangoEngineShape.html#PANGO-ENGINE-SHAPE-DEFINE-TYPE:CAPS" title="PANGO_ENGINE_SHAPE_DEFINE_TYPE()">PANGO_ENGINE_SHAPE_DEFINE_TYPE</a>, macro in <a class="link" href="PangoEngineShape.html" title="PangoEngineShape">PangoEngineShape</a>
694
+ </dt>
695
+ <dd></dd>
696
+ <dt>
697
+ <a class="link" href="PangoEngineLang.html#PANGO-ENGINE-TYPE-LANG:CAPS" title="PANGO_ENGINE_TYPE_LANG">PANGO_ENGINE_TYPE_LANG</a>, macro in <a class="link" href="PangoEngineLang.html" title="PangoEngineLang">PangoEngineLang</a>
698
+ </dt>
699
+ <dd></dd>
700
+ <dt>
701
+ <a class="link" href="PangoEngineShape.html#PANGO-ENGINE-TYPE-SHAPE:CAPS" title="PANGO_ENGINE_TYPE_SHAPE">PANGO_ENGINE_TYPE_SHAPE</a>, macro in <a class="link" href="PangoEngineShape.html" title="PangoEngineShape">PangoEngineShape</a>
702
+ </dt>
703
+ <dd></dd>
704
+ <dt>
705
+ <a class="link" href="pango-Glyph-Storage.html#pango-extents-to-pixels" title="pango_extents_to_pixels ()">pango_extents_to_pixels</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
706
+ </dt>
707
+ <dd></dd>
708
+ <a name="idxF"></a><h3 class="title">F</h3>
709
+ <dt>
710
+ <a class="link" href="PangoFcDecoder.html#PangoFcDecoder-struct" title="struct PangoFcDecoder">PangoFcDecoder</a>, struct in <a class="link" href="PangoFcDecoder.html" title="PangoFcDecoder">PangoFcDecoder</a>
711
+ </dt>
712
+ <dd></dd>
713
+ <dt>
714
+ <a class="link" href="PangoFcDecoder.html#PangoFcDecoderClass" title="struct PangoFcDecoderClass">PangoFcDecoderClass</a>, struct in <a class="link" href="PangoFcDecoder.html" title="PangoFcDecoder">PangoFcDecoder</a>
715
+ </dt>
716
+ <dd></dd>
717
+ <dt>
718
+ <a class="link" href="PangoFcFontMap.html#PangoFcDecoderFindFunc" title="PangoFcDecoderFindFunc ()">PangoFcDecoderFindFunc</a>, user_function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
719
+ </dt>
720
+ <dd></dd>
721
+ <dt>
722
+ <a class="link" href="PangoFcFont.html#PangoFcFont-struct" title="struct PangoFcFont">PangoFcFont</a>, struct in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
723
+ </dt>
724
+ <dd></dd>
725
+ <dt>
726
+ <a class="link" href="PangoFcFont.html#PangoFcFont--fontmap" title="The “fontmap” property">PangoFcFont:fontmap</a>, object property in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
727
+ </dt>
728
+ <dd></dd>
729
+ <dt>
730
+ <a class="link" href="PangoFcFont.html#PangoFcFont--pattern" title="The “pattern” property">PangoFcFont:pattern</a>, object property in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
731
+ </dt>
732
+ <dd></dd>
733
+ <dt>
734
+ <a class="link" href="PangoFcFont.html#PangoFcFontClass" title="struct PangoFcFontClass">PangoFcFontClass</a>, struct in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
735
+ </dt>
736
+ <dd></dd>
737
+ <dt>
738
+ <a class="link" href="PangoFcFontMap.html#PangoFcFontKey" title="PangoFcFontKey">PangoFcFontKey</a>, struct in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
739
+ </dt>
740
+ <dd></dd>
741
+ <dt>
742
+ <a class="link" href="PangoFcFontMap.html#PangoFcFontMap-struct" title="struct PangoFcFontMap">PangoFcFontMap</a>, struct in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
743
+ </dt>
744
+ <dd></dd>
745
+ <dt>
746
+ <a class="link" href="PangoFcFontMap.html#PangoFcFontMapClass" title="struct PangoFcFontMapClass">PangoFcFontMapClass</a>, struct in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
747
+ </dt>
748
+ <dd></dd>
749
+ <dt>
750
+ <a class="link" href="PangoFcFontMap.html#PangoFcFontsetKey" title="PangoFcFontsetKey">PangoFcFontsetKey</a>, struct in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
751
+ </dt>
752
+ <dd></dd>
753
+ <dt>
754
+ <a class="link" href="PangoFcDecoder.html#pango-fc-decoder-get-charset" title="pango_fc_decoder_get_charset ()">pango_fc_decoder_get_charset</a>, function in <a class="link" href="PangoFcDecoder.html" title="PangoFcDecoder">PangoFcDecoder</a>
755
+ </dt>
756
+ <dd></dd>
757
+ <dt>
758
+ <a class="link" href="PangoFcDecoder.html#pango-fc-decoder-get-glyph" title="pango_fc_decoder_get_glyph ()">pango_fc_decoder_get_glyph</a>, function in <a class="link" href="PangoFcDecoder.html" title="PangoFcDecoder">PangoFcDecoder</a>
759
+ </dt>
760
+ <dd></dd>
761
+ <dt>
762
+ <a class="link" href="PangoFcFontMap.html#pango-fc-fontset-key-get-absolute-size" title="pango_fc_fontset_key_get_absolute_size ()">pango_fc_fontset_key_get_absolute_size</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
763
+ </dt>
764
+ <dd></dd>
765
+ <dt>
766
+ <a class="link" href="PangoFcFontMap.html#pango-fc-fontset-key-get-context-key" title="pango_fc_fontset_key_get_context_key ()">pango_fc_fontset_key_get_context_key</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
767
+ </dt>
768
+ <dd></dd>
769
+ <dt>
770
+ <a class="link" href="PangoFcFontMap.html#pango-fc-fontset-key-get-description" title="pango_fc_fontset_key_get_description ()">pango_fc_fontset_key_get_description</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
771
+ </dt>
772
+ <dd></dd>
773
+ <dt>
774
+ <a class="link" href="PangoFcFontMap.html#pango-fc-fontset-key-get-language" title="pango_fc_fontset_key_get_language ()">pango_fc_fontset_key_get_language</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
775
+ </dt>
776
+ <dd></dd>
777
+ <dt>
778
+ <a class="link" href="PangoFcFontMap.html#pango-fc-fontset-key-get-matrix" title="pango_fc_fontset_key_get_matrix ()">pango_fc_fontset_key_get_matrix</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
779
+ </dt>
780
+ <dd></dd>
781
+ <dt>
782
+ <a class="link" href="PangoFcFontMap.html#pango-fc-fontset-key-get-resolution" title="pango_fc_fontset_key_get_resolution ()">pango_fc_fontset_key_get_resolution</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
783
+ </dt>
784
+ <dd></dd>
785
+ <dt>
786
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-description-from-pattern" title="pango_fc_font_description_from_pattern ()">pango_fc_font_description_from_pattern</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
787
+ </dt>
788
+ <dd></dd>
789
+ <dt>
790
+ <a class="link" href="PangoFcFontMap.html#PANGO-FC-FONT-FEATURES:CAPS" title="PANGO_FC_FONT_FEATURES">PANGO_FC_FONT_FEATURES</a>, macro in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
791
+ </dt>
792
+ <dd></dd>
793
+ <dt>
794
+ <a class="link" href="PangoFcFont.html#pango-fc-font-get-glyph" title="pango_fc_font_get_glyph ()">pango_fc_font_get_glyph</a>, function in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
795
+ </dt>
796
+ <dd></dd>
797
+ <dt>
798
+ <a class="link" href="PangoFcFont.html#pango-fc-font-get-unknown-glyph" title="pango_fc_font_get_unknown_glyph ()">pango_fc_font_get_unknown_glyph</a>, function in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
799
+ </dt>
800
+ <dd></dd>
801
+ <dt>
802
+ <a class="link" href="PangoFcFont.html#pango-fc-font-has-char" title="pango_fc_font_has_char ()">pango_fc_font_has_char</a>, function in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
803
+ </dt>
804
+ <dd></dd>
805
+ <dt>
806
+ <a class="link" href="PangoFcFont.html#pango-fc-font-kern-glyphs" title="pango_fc_font_kern_glyphs ()">pango_fc_font_kern_glyphs</a>, function in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
807
+ </dt>
808
+ <dd></dd>
809
+ <dt>
810
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-key-get-context-key" title="pango_fc_font_key_get_context_key ()">pango_fc_font_key_get_context_key</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
811
+ </dt>
812
+ <dd></dd>
813
+ <dt>
814
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-key-get-matrix" title="pango_fc_font_key_get_matrix ()">pango_fc_font_key_get_matrix</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
815
+ </dt>
816
+ <dd></dd>
817
+ <dt>
818
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-key-get-pattern" title="pango_fc_font_key_get_pattern ()">pango_fc_font_key_get_pattern</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
819
+ </dt>
820
+ <dd></dd>
821
+ <dt>
822
+ <a class="link" href="PangoFcFont.html#pango-fc-font-lock-face" title="pango_fc_font_lock_face ()">pango_fc_font_lock_face</a>, function in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
823
+ </dt>
824
+ <dd></dd>
825
+ <dt>
826
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-map-add-decoder-find-func" title="pango_fc_font_map_add_decoder_find_func ()">pango_fc_font_map_add_decoder_find_func</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
827
+ </dt>
828
+ <dd></dd>
829
+ <dt>
830
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-map-cache-clear" title="pango_fc_font_map_cache_clear ()">pango_fc_font_map_cache_clear</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
831
+ </dt>
832
+ <dd></dd>
833
+ <dt>
834
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-map-create-context" title="pango_fc_font_map_create_context ()">pango_fc_font_map_create_context</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
835
+ </dt>
836
+ <dd></dd>
837
+ <dt>
838
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-map-find-decoder" title="pango_fc_font_map_find_decoder ()">pango_fc_font_map_find_decoder</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
839
+ </dt>
840
+ <dd></dd>
841
+ <dt>
842
+ <a class="link" href="PangoFcFontMap.html#pango-fc-font-map-shutdown" title="pango_fc_font_map_shutdown ()">pango_fc_font_map_shutdown</a>, function in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
843
+ </dt>
844
+ <dd></dd>
845
+ <dt>
846
+ <a class="link" href="PangoFcFont.html#pango-fc-font-unlock-face" title="pango_fc_font_unlock_face ()">pango_fc_font_unlock_face</a>, function in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
847
+ </dt>
848
+ <dd></dd>
849
+ <dt>
850
+ <a class="link" href="PangoFcFontMap.html#PANGO-FC-GRAVITY:CAPS" title="PANGO_FC_GRAVITY">PANGO_FC_GRAVITY</a>, macro in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
851
+ </dt>
852
+ <dd></dd>
853
+ <dt>
854
+ <a class="link" href="PangoFcFontMap.html#PANGO-FC-PRGNAME:CAPS" title="PANGO_FC_PRGNAME">PANGO_FC_PRGNAME</a>, macro in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
855
+ </dt>
856
+ <dd></dd>
857
+ <dt>
858
+ <a class="link" href="PangoFcFontMap.html#PANGO-FC-VERSION:CAPS" title="PANGO_FC_VERSION">PANGO_FC_VERSION</a>, macro in <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
859
+ </dt>
860
+ <dd></dd>
861
+ <dt>
862
+ <a class="link" href="pango-Bidirectional-Text.html#pango-find-base-dir" title="pango_find_base_dir ()">pango_find_base_dir</a>, function in <a class="link" href="pango-Bidirectional-Text.html" title="Bidirectional Text">Bidirectional Text</a>
863
+ </dt>
864
+ <dd></dd>
865
+ <dt>
866
+ <a class="link" href="pango-Modules.html#pango-find-map" title="pango_find_map ()">pango_find_map</a>, function in <a class="link" href="pango-Modules.html" title="Modules">Modules</a>
867
+ </dt>
868
+ <dd></dd>
869
+ <dt>
870
+ <a class="link" href="pango-Text-Processing.html#pango-find-paragraph-boundary" title="pango_find_paragraph_boundary ()">pango_find_paragraph_boundary</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
871
+ </dt>
872
+ <dd></dd>
873
+ <dt>
874
+ <a class="link" href="pango-Fonts.html#PANGO-FONT:CAPS" title="PANGO_FONT()">PANGO_FONT</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
875
+ </dt>
876
+ <dd></dd>
877
+ <dt>
878
+ <a class="link" href="pango-Fonts.html#PangoFont-struct" title="PangoFont">PangoFont</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
879
+ </dt>
880
+ <dd></dd>
881
+ <dt>
882
+ <a class="link" href="pango-Fonts.html#PangoFontDescription-struct" title="PangoFontDescription">PangoFontDescription</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
883
+ </dt>
884
+ <dd></dd>
885
+ <dt>
886
+ <a class="link" href="pango-Fonts.html#PangoFontFace-struct" title="struct PangoFontFace">PangoFontFace</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
887
+ </dt>
888
+ <dd></dd>
889
+ <dt>
890
+ <a class="link" href="pango-Fonts.html#PangoFontFamily-struct" title="struct PangoFontFamily">PangoFontFamily</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
891
+ </dt>
892
+ <dd></dd>
893
+ <dt>
894
+ <a class="link" href="pango-Fonts.html#PangoFontMap-struct" title="PangoFontMap">PangoFontMap</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
895
+ </dt>
896
+ <dd></dd>
897
+ <dt>
898
+ <a class="link" href="pango-Fonts.html#PangoFontMapClass" title="struct PangoFontMapClass">PangoFontMapClass</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
899
+ </dt>
900
+ <dd></dd>
901
+ <dt>
902
+ <a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask">PangoFontMask</a>, enum in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
903
+ </dt>
904
+ <dd></dd>
905
+ <dt>
906
+ <a class="link" href="pango-Fonts.html#PangoFontMetrics-struct" title="struct PangoFontMetrics">PangoFontMetrics</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
907
+ </dt>
908
+ <dd></dd>
909
+ <dt>
910
+ <a class="link" href="pango-Fonts.html#PangoFontset-struct" title="struct PangoFontset">PangoFontset</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
911
+ </dt>
912
+ <dd></dd>
913
+ <dt>
914
+ <a class="link" href="pango-Fonts.html#PangoFontsetClass" title="struct PangoFontsetClass">PangoFontsetClass</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
915
+ </dt>
916
+ <dd></dd>
917
+ <dt>
918
+ <a class="link" href="pango-Fonts.html#PangoFontsetForeachFunc" title="PangoFontsetForeachFunc ()">PangoFontsetForeachFunc</a>, user_function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
919
+ </dt>
920
+ <dd></dd>
921
+ <dt>
922
+ <a class="link" href="pango-Fonts.html#PangoFontsetSimple-struct" title="PangoFontsetSimple">PangoFontsetSimple</a>, struct in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
923
+ </dt>
924
+ <dd></dd>
925
+ <dt>
926
+ <a class="link" href="pango-Fonts.html#pango-fontset-foreach" title="pango_fontset_foreach ()">pango_fontset_foreach</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
927
+ </dt>
928
+ <dd></dd>
929
+ <dt>
930
+ <a class="link" href="pango-Fonts.html#pango-fontset-get-font" title="pango_fontset_get_font ()">pango_fontset_get_font</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
931
+ </dt>
932
+ <dd></dd>
933
+ <dt>
934
+ <a class="link" href="pango-Fonts.html#pango-fontset-get-metrics" title="pango_fontset_get_metrics ()">pango_fontset_get_metrics</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
935
+ </dt>
936
+ <dd></dd>
937
+ <dt>
938
+ <a class="link" href="pango-Fonts.html#pango-fontset-simple-append" title="pango_fontset_simple_append ()">pango_fontset_simple_append</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
939
+ </dt>
940
+ <dd></dd>
941
+ <dt>
942
+ <a class="link" href="pango-Fonts.html#pango-fontset-simple-new" title="pango_fontset_simple_new ()">pango_fontset_simple_new</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
943
+ </dt>
944
+ <dd></dd>
945
+ <dt>
946
+ <a class="link" href="pango-Fonts.html#pango-fontset-simple-size" title="pango_fontset_simple_size ()">pango_fontset_simple_size</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
947
+ </dt>
948
+ <dd></dd>
949
+ <dt>
950
+ <a class="link" href="pango-Fonts.html#pango-font-describe" title="pango_font_describe ()">pango_font_describe</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
951
+ </dt>
952
+ <dd></dd>
953
+ <dt>
954
+ <a class="link" href="pango-Fonts.html#pango-font-describe-with-absolute-size" title="pango_font_describe_with_absolute_size ()">pango_font_describe_with_absolute_size</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
955
+ </dt>
956
+ <dd></dd>
957
+ <dt>
958
+ <a class="link" href="pango-Fonts.html#pango-font-descriptions-free" title="pango_font_descriptions_free ()">pango_font_descriptions_free</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
959
+ </dt>
960
+ <dd></dd>
961
+ <dt>
962
+ <a class="link" href="pango-Fonts.html#pango-font-description-better-match" title="pango_font_description_better_match ()">pango_font_description_better_match</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
963
+ </dt>
964
+ <dd></dd>
965
+ <dt>
966
+ <a class="link" href="pango-Fonts.html#pango-font-description-copy" title="pango_font_description_copy ()">pango_font_description_copy</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
967
+ </dt>
968
+ <dd></dd>
969
+ <dt>
970
+ <a class="link" href="pango-Fonts.html#pango-font-description-copy-static" title="pango_font_description_copy_static ()">pango_font_description_copy_static</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
971
+ </dt>
972
+ <dd></dd>
973
+ <dt>
974
+ <a class="link" href="pango-Fonts.html#pango-font-description-equal" title="pango_font_description_equal ()">pango_font_description_equal</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
975
+ </dt>
976
+ <dd></dd>
977
+ <dt>
978
+ <a class="link" href="pango-Fonts.html#pango-font-description-free" title="pango_font_description_free ()">pango_font_description_free</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
979
+ </dt>
980
+ <dd></dd>
981
+ <dt>
982
+ <a class="link" href="pango-Fonts.html#pango-font-description-from-string" title="pango_font_description_from_string ()">pango_font_description_from_string</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
983
+ </dt>
984
+ <dd></dd>
985
+ <dt>
986
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-family" title="pango_font_description_get_family ()">pango_font_description_get_family</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
987
+ </dt>
988
+ <dd></dd>
989
+ <dt>
990
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-gravity" title="pango_font_description_get_gravity ()">pango_font_description_get_gravity</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
991
+ </dt>
992
+ <dd></dd>
993
+ <dt>
994
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()">pango_font_description_get_set_fields</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
995
+ </dt>
996
+ <dd></dd>
997
+ <dt>
998
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-size" title="pango_font_description_get_size ()">pango_font_description_get_size</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
999
+ </dt>
1000
+ <dd></dd>
1001
+ <dt>
1002
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-size-is-absolute" title="pango_font_description_get_size_is_absolute ()">pango_font_description_get_size_is_absolute</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1003
+ </dt>
1004
+ <dd></dd>
1005
+ <dt>
1006
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-stretch" title="pango_font_description_get_stretch ()">pango_font_description_get_stretch</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1007
+ </dt>
1008
+ <dd></dd>
1009
+ <dt>
1010
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-style" title="pango_font_description_get_style ()">pango_font_description_get_style</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1011
+ </dt>
1012
+ <dd></dd>
1013
+ <dt>
1014
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-variant" title="pango_font_description_get_variant ()">pango_font_description_get_variant</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1015
+ </dt>
1016
+ <dd></dd>
1017
+ <dt>
1018
+ <a class="link" href="pango-Fonts.html#pango-font-description-get-weight" title="pango_font_description_get_weight ()">pango_font_description_get_weight</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1019
+ </dt>
1020
+ <dd></dd>
1021
+ <dt>
1022
+ <a class="link" href="pango-Fonts.html#pango-font-description-hash" title="pango_font_description_hash ()">pango_font_description_hash</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1023
+ </dt>
1024
+ <dd></dd>
1025
+ <dt>
1026
+ <a class="link" href="pango-Fonts.html#pango-font-description-merge" title="pango_font_description_merge ()">pango_font_description_merge</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1027
+ </dt>
1028
+ <dd></dd>
1029
+ <dt>
1030
+ <a class="link" href="pango-Fonts.html#pango-font-description-merge-static" title="pango_font_description_merge_static ()">pango_font_description_merge_static</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1031
+ </dt>
1032
+ <dd></dd>
1033
+ <dt>
1034
+ <a class="link" href="pango-Fonts.html#pango-font-description-new" title="pango_font_description_new ()">pango_font_description_new</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1035
+ </dt>
1036
+ <dd></dd>
1037
+ <dt>
1038
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-absolute-size" title="pango_font_description_set_absolute_size ()">pango_font_description_set_absolute_size</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1039
+ </dt>
1040
+ <dd></dd>
1041
+ <dt>
1042
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-family" title="pango_font_description_set_family ()">pango_font_description_set_family</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1043
+ </dt>
1044
+ <dd></dd>
1045
+ <dt>
1046
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-family-static" title="pango_font_description_set_family_static ()">pango_font_description_set_family_static</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1047
+ </dt>
1048
+ <dd></dd>
1049
+ <dt>
1050
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-gravity" title="pango_font_description_set_gravity ()">pango_font_description_set_gravity</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1051
+ </dt>
1052
+ <dd></dd>
1053
+ <dt>
1054
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-size" title="pango_font_description_set_size ()">pango_font_description_set_size</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1055
+ </dt>
1056
+ <dd></dd>
1057
+ <dt>
1058
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-stretch" title="pango_font_description_set_stretch ()">pango_font_description_set_stretch</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1059
+ </dt>
1060
+ <dd></dd>
1061
+ <dt>
1062
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-style" title="pango_font_description_set_style ()">pango_font_description_set_style</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1063
+ </dt>
1064
+ <dd></dd>
1065
+ <dt>
1066
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-variant" title="pango_font_description_set_variant ()">pango_font_description_set_variant</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1067
+ </dt>
1068
+ <dd></dd>
1069
+ <dt>
1070
+ <a class="link" href="pango-Fonts.html#pango-font-description-set-weight" title="pango_font_description_set_weight ()">pango_font_description_set_weight</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1071
+ </dt>
1072
+ <dd></dd>
1073
+ <dt>
1074
+ <a class="link" href="pango-Fonts.html#pango-font-description-to-filename" title="pango_font_description_to_filename ()">pango_font_description_to_filename</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1075
+ </dt>
1076
+ <dd></dd>
1077
+ <dt>
1078
+ <a class="link" href="pango-Fonts.html#pango-font-description-to-string" title="pango_font_description_to_string ()">pango_font_description_to_string</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1079
+ </dt>
1080
+ <dd></dd>
1081
+ <dt>
1082
+ <a class="link" href="pango-Fonts.html#pango-font-description-unset-fields" title="pango_font_description_unset_fields ()">pango_font_description_unset_fields</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1083
+ </dt>
1084
+ <dd></dd>
1085
+ <dt>
1086
+ <a class="link" href="pango-Fonts.html#PANGO-FONT-FACE:CAPS" title="PANGO_FONT_FACE()">PANGO_FONT_FACE</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1087
+ </dt>
1088
+ <dd></dd>
1089
+ <dt>
1090
+ <a class="link" href="pango-Fonts.html#pango-font-face-describe" title="pango_font_face_describe ()">pango_font_face_describe</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1091
+ </dt>
1092
+ <dd></dd>
1093
+ <dt>
1094
+ <a class="link" href="pango-Fonts.html#pango-font-face-get-face-name" title="pango_font_face_get_face_name ()">pango_font_face_get_face_name</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1095
+ </dt>
1096
+ <dd></dd>
1097
+ <dt>
1098
+ <a class="link" href="pango-Fonts.html#pango-font-face-is-synthesized" title="pango_font_face_is_synthesized ()">pango_font_face_is_synthesized</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1099
+ </dt>
1100
+ <dd></dd>
1101
+ <dt>
1102
+ <a class="link" href="pango-Fonts.html#pango-font-face-list-sizes" title="pango_font_face_list_sizes ()">pango_font_face_list_sizes</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1103
+ </dt>
1104
+ <dd></dd>
1105
+ <dt>
1106
+ <a class="link" href="pango-Fonts.html#PANGO-FONT-FAMILY:CAPS" title="PANGO_FONT_FAMILY()">PANGO_FONT_FAMILY</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1107
+ </dt>
1108
+ <dd></dd>
1109
+ <dt>
1110
+ <a class="link" href="pango-Fonts.html#pango-font-family-get-name" title="pango_font_family_get_name ()">pango_font_family_get_name</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1111
+ </dt>
1112
+ <dd></dd>
1113
+ <dt>
1114
+ <a class="link" href="pango-Fonts.html#pango-font-family-is-monospace" title="pango_font_family_is_monospace ()">pango_font_family_is_monospace</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1115
+ </dt>
1116
+ <dd></dd>
1117
+ <dt>
1118
+ <a class="link" href="pango-Fonts.html#pango-font-family-list-faces" title="pango_font_family_list_faces ()">pango_font_family_list_faces</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1119
+ </dt>
1120
+ <dd></dd>
1121
+ <dt>
1122
+ <a class="link" href="pango-Fonts.html#pango-font-find-shaper" title="pango_font_find_shaper ()">pango_font_find_shaper</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1123
+ </dt>
1124
+ <dd></dd>
1125
+ <dt>
1126
+ <a class="link" href="pango-Fonts.html#pango-font-get-coverage" title="pango_font_get_coverage ()">pango_font_get_coverage</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1127
+ </dt>
1128
+ <dd></dd>
1129
+ <dt>
1130
+ <a class="link" href="pango-Fonts.html#pango-font-get-font-map" title="pango_font_get_font_map ()">pango_font_get_font_map</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1131
+ </dt>
1132
+ <dd></dd>
1133
+ <dt>
1134
+ <a class="link" href="pango-Fonts.html#pango-font-get-glyph-extents" title="pango_font_get_glyph_extents ()">pango_font_get_glyph_extents</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1135
+ </dt>
1136
+ <dd></dd>
1137
+ <dt>
1138
+ <a class="link" href="pango-Fonts.html#pango-font-get-metrics" title="pango_font_get_metrics ()">pango_font_get_metrics</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1139
+ </dt>
1140
+ <dd></dd>
1141
+ <dt>
1142
+ <a class="link" href="pango-Fonts.html#PANGO-FONT-MAP:CAPS" title="PANGO_FONT_MAP()">PANGO_FONT_MAP</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1143
+ </dt>
1144
+ <dd></dd>
1145
+ <dt>
1146
+ <a class="link" href="pango-Fonts.html#pango-font-map-changed" title="pango_font_map_changed ()">pango_font_map_changed</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1147
+ </dt>
1148
+ <dd></dd>
1149
+ <dt>
1150
+ <a class="link" href="pango-Fonts.html#PANGO-FONT-MAP-CLASS:CAPS" title="PANGO_FONT_MAP_CLASS()">PANGO_FONT_MAP_CLASS</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1151
+ </dt>
1152
+ <dd></dd>
1153
+ <dt>
1154
+ <a class="link" href="pango-Fonts.html#pango-font-map-create-context" title="pango_font_map_create_context ()">pango_font_map_create_context</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1155
+ </dt>
1156
+ <dd></dd>
1157
+ <dt>
1158
+ <a class="link" href="pango-Fonts.html#PANGO-FONT-MAP-GET-CLASS:CAPS" title="PANGO_FONT_MAP_GET_CLASS()">PANGO_FONT_MAP_GET_CLASS</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1159
+ </dt>
1160
+ <dd></dd>
1161
+ <dt>
1162
+ <a class="link" href="pango-Fonts.html#pango-font-map-get-serial" title="pango_font_map_get_serial ()">pango_font_map_get_serial</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1163
+ </dt>
1164
+ <dd></dd>
1165
+ <dt>
1166
+ <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>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1167
+ </dt>
1168
+ <dd></dd>
1169
+ <dt>
1170
+ <a class="link" href="pango-Fonts.html#pango-font-map-list-families" title="pango_font_map_list_families ()">pango_font_map_list_families</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1171
+ </dt>
1172
+ <dd></dd>
1173
+ <dt>
1174
+ <a class="link" href="pango-Fonts.html#pango-font-map-load-font" title="pango_font_map_load_font ()">pango_font_map_load_font</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1175
+ </dt>
1176
+ <dd></dd>
1177
+ <dt>
1178
+ <a class="link" href="pango-Fonts.html#pango-font-map-load-fontset" title="pango_font_map_load_fontset ()">pango_font_map_load_fontset</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1179
+ </dt>
1180
+ <dd></dd>
1181
+ <dt>
1182
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-approximate-char-width" title="pango_font_metrics_get_approximate_char_width ()">pango_font_metrics_get_approximate_char_width</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1183
+ </dt>
1184
+ <dd></dd>
1185
+ <dt>
1186
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-approximate-digit-width" title="pango_font_metrics_get_approximate_digit_width ()">pango_font_metrics_get_approximate_digit_width</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1187
+ </dt>
1188
+ <dd></dd>
1189
+ <dt>
1190
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-ascent" title="pango_font_metrics_get_ascent ()">pango_font_metrics_get_ascent</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1191
+ </dt>
1192
+ <dd></dd>
1193
+ <dt>
1194
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-descent" title="pango_font_metrics_get_descent ()">pango_font_metrics_get_descent</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1195
+ </dt>
1196
+ <dd></dd>
1197
+ <dt>
1198
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-strikethrough-position" title="pango_font_metrics_get_strikethrough_position ()">pango_font_metrics_get_strikethrough_position</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1199
+ </dt>
1200
+ <dd></dd>
1201
+ <dt>
1202
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-strikethrough-thickness" title="pango_font_metrics_get_strikethrough_thickness ()">pango_font_metrics_get_strikethrough_thickness</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1203
+ </dt>
1204
+ <dd></dd>
1205
+ <dt>
1206
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-underline-position" title="pango_font_metrics_get_underline_position ()">pango_font_metrics_get_underline_position</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1207
+ </dt>
1208
+ <dd></dd>
1209
+ <dt>
1210
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-get-underline-thickness" title="pango_font_metrics_get_underline_thickness ()">pango_font_metrics_get_underline_thickness</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1211
+ </dt>
1212
+ <dd></dd>
1213
+ <dt>
1214
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-ref" title="pango_font_metrics_ref ()">pango_font_metrics_ref</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1215
+ </dt>
1216
+ <dd></dd>
1217
+ <dt>
1218
+ <a class="link" href="pango-Fonts.html#pango-font-metrics-unref" title="pango_font_metrics_unref ()">pango_font_metrics_unref</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1219
+ </dt>
1220
+ <dd></dd>
1221
+ <dt>
1222
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2FontMap-struct" title="PangoFT2FontMap">PangoFT2FontMap</a>, struct in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1223
+ </dt>
1224
+ <dd></dd>
1225
+ <dt>
1226
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2SubstituteFunc" title="PangoFT2SubstituteFunc ()">PangoFT2SubstituteFunc</a>, user_function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1227
+ </dt>
1228
+ <dd></dd>
1229
+ <dt>
1230
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-get-coverage" title="pango_ft2_font_get_coverage ()">pango_ft2_font_get_coverage</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1231
+ </dt>
1232
+ <dd></dd>
1233
+ <dt>
1234
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-get-face" title="pango_ft2_font_get_face ()">pango_ft2_font_get_face</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1235
+ </dt>
1236
+ <dd></dd>
1237
+ <dt>
1238
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-get-kerning" title="pango_ft2_font_get_kerning ()">pango_ft2_font_get_kerning</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1239
+ </dt>
1240
+ <dd></dd>
1241
+ <dt>
1242
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-map-create-context" title="pango_ft2_font_map_create_context ()">pango_ft2_font_map_create_context</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1243
+ </dt>
1244
+ <dd></dd>
1245
+ <dt>
1246
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-map-for-display" title="pango_ft2_font_map_for_display ()">pango_ft2_font_map_for_display</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1247
+ </dt>
1248
+ <dd></dd>
1249
+ <dt>
1250
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-map-new" title="pango_ft2_font_map_new ()">pango_ft2_font_map_new</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1251
+ </dt>
1252
+ <dd></dd>
1253
+ <dt>
1254
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-map-set-default-substitute" title="pango_ft2_font_map_set_default_substitute ()">pango_ft2_font_map_set_default_substitute</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1255
+ </dt>
1256
+ <dd></dd>
1257
+ <dt>
1258
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-map-set-resolution" title="pango_ft2_font_map_set_resolution ()">pango_ft2_font_map_set_resolution</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1259
+ </dt>
1260
+ <dd></dd>
1261
+ <dt>
1262
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-font-map-substitute-changed" title="pango_ft2_font_map_substitute_changed ()">pango_ft2_font_map_substitute_changed</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1263
+ </dt>
1264
+ <dd></dd>
1265
+ <dt>
1266
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-get-context" title="pango_ft2_get_context ()">pango_ft2_get_context</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1267
+ </dt>
1268
+ <dd></dd>
1269
+ <dt>
1270
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-get-unknown-glyph" title="pango_ft2_get_unknown_glyph ()">pango_ft2_get_unknown_glyph</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1271
+ </dt>
1272
+ <dd></dd>
1273
+ <dt>
1274
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-render" title="pango_ft2_render ()">pango_ft2_render</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1275
+ </dt>
1276
+ <dd></dd>
1277
+ <dt>
1278
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-render-layout" title="pango_ft2_render_layout ()">pango_ft2_render_layout</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1279
+ </dt>
1280
+ <dd></dd>
1281
+ <dt>
1282
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-render-layout-line" title="pango_ft2_render_layout_line ()">pango_ft2_render_layout_line</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1283
+ </dt>
1284
+ <dd></dd>
1285
+ <dt>
1286
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-render-layout-line-subpixel" title="pango_ft2_render_layout_line_subpixel ()">pango_ft2_render_layout_line_subpixel</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1287
+ </dt>
1288
+ <dd></dd>
1289
+ <dt>
1290
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-render-layout-subpixel" title="pango_ft2_render_layout_subpixel ()">pango_ft2_render_layout_subpixel</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1291
+ </dt>
1292
+ <dd></dd>
1293
+ <dt>
1294
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-render-transformed" title="pango_ft2_render_transformed ()">pango_ft2_render_transformed</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1295
+ </dt>
1296
+ <dd></dd>
1297
+ <dt>
1298
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#pango-ft2-shutdown-display" title="pango_ft2_shutdown_display ()">pango_ft2_shutdown_display</a>, function in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
1299
+ </dt>
1300
+ <dd></dd>
1301
+ <a name="idxG"></a><h3 class="title">G</h3>
1302
+ <dt>
1303
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-get-lib-subdirectory" title="pango_get_lib_subdirectory ()">pango_get_lib_subdirectory</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
1304
+ </dt>
1305
+ <dd></dd>
1306
+ <dt>
1307
+ <a class="link" href="pango-Text-Processing.html#pango-get-log-attrs" title="pango_get_log_attrs ()">pango_get_log_attrs</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1308
+ </dt>
1309
+ <dd></dd>
1310
+ <dt>
1311
+ <a class="link" href="pango-Bidirectional-Text.html#pango-get-mirror-char" title="pango_get_mirror_char ()">pango_get_mirror_char</a>, function in <a class="link" href="pango-Bidirectional-Text.html" title="Bidirectional Text">Bidirectional Text</a>
1312
+ </dt>
1313
+ <dd></dd>
1314
+ <dt>
1315
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-get-sysconf-subdirectory" title="pango_get_sysconf_subdirectory ()">pango_get_sysconf_subdirectory</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
1316
+ </dt>
1317
+ <dd></dd>
1318
+ <dt>
1319
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-GET-UNKNOWN-GLYPH:CAPS" title="PANGO_GET_UNKNOWN_GLYPH()">PANGO_GET_UNKNOWN_GLYPH</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1320
+ </dt>
1321
+ <dd></dd>
1322
+ <dt>
1323
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph">PangoGlyph</a>, typedef in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1324
+ </dt>
1325
+ <dd></dd>
1326
+ <dt>
1327
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyphGeometry" title="struct PangoGlyphGeometry">PangoGlyphGeometry</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1328
+ </dt>
1329
+ <dd></dd>
1330
+ <dt>
1331
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyphInfo" title="struct PangoGlyphInfo">PangoGlyphInfo</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1332
+ </dt>
1333
+ <dd></dd>
1334
+ <dt>
1335
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem-struct" title="struct PangoGlyphItem">PangoGlyphItem</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1336
+ </dt>
1337
+ <dd></dd>
1338
+ <dt>
1339
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter-struct" title="struct PangoGlyphItemIter">PangoGlyphItemIter</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1340
+ </dt>
1341
+ <dd></dd>
1342
+ <dt>
1343
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString-struct" title="struct PangoGlyphString">PangoGlyphString</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1344
+ </dt>
1345
+ <dd></dd>
1346
+ <dt>
1347
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyphUnit" title="PangoGlyphUnit">PangoGlyphUnit</a>, typedef in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1348
+ </dt>
1349
+ <dd></dd>
1350
+ <dt>
1351
+ <a class="link" href="pango-Glyph-Storage.html#PangoGlyphVisAttr" title="struct PangoGlyphVisAttr">PangoGlyphVisAttr</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1352
+ </dt>
1353
+ <dd></dd>
1354
+ <dt>
1355
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-EMPTY:CAPS" title="PANGO_GLYPH_EMPTY">PANGO_GLYPH_EMPTY</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1356
+ </dt>
1357
+ <dd></dd>
1358
+ <dt>
1359
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-INVALID-INPUT:CAPS" title="PANGO_GLYPH_INVALID_INPUT">PANGO_GLYPH_INVALID_INPUT</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1360
+ </dt>
1361
+ <dd></dd>
1362
+ <dt>
1363
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-apply-attrs" title="pango_glyph_item_apply_attrs ()">pango_glyph_item_apply_attrs</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1364
+ </dt>
1365
+ <dd></dd>
1366
+ <dt>
1367
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-copy" title="pango_glyph_item_copy ()">pango_glyph_item_copy</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1368
+ </dt>
1369
+ <dd></dd>
1370
+ <dt>
1371
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-free" title="pango_glyph_item_free ()">pango_glyph_item_free</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1372
+ </dt>
1373
+ <dd></dd>
1374
+ <dt>
1375
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-get-logical-widths" title="pango_glyph_item_get_logical_widths ()">pango_glyph_item_get_logical_widths</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1376
+ </dt>
1377
+ <dd></dd>
1378
+ <dt>
1379
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-copy" title="pango_glyph_item_iter_copy ()">pango_glyph_item_iter_copy</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1380
+ </dt>
1381
+ <dd></dd>
1382
+ <dt>
1383
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-free" title="pango_glyph_item_iter_free ()">pango_glyph_item_iter_free</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1384
+ </dt>
1385
+ <dd></dd>
1386
+ <dt>
1387
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-end" title="pango_glyph_item_iter_init_end ()">pango_glyph_item_iter_init_end</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1388
+ </dt>
1389
+ <dd></dd>
1390
+ <dt>
1391
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-start" title="pango_glyph_item_iter_init_start ()">pango_glyph_item_iter_init_start</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1392
+ </dt>
1393
+ <dd></dd>
1394
+ <dt>
1395
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-next-cluster" title="pango_glyph_item_iter_next_cluster ()">pango_glyph_item_iter_next_cluster</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1396
+ </dt>
1397
+ <dd></dd>
1398
+ <dt>
1399
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-prev-cluster" title="pango_glyph_item_iter_prev_cluster ()">pango_glyph_item_iter_prev_cluster</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1400
+ </dt>
1401
+ <dd></dd>
1402
+ <dt>
1403
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-letter-space" title="pango_glyph_item_letter_space ()">pango_glyph_item_letter_space</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1404
+ </dt>
1405
+ <dd></dd>
1406
+ <dt>
1407
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-split" title="pango_glyph_item_split ()">pango_glyph_item_split</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1408
+ </dt>
1409
+ <dd></dd>
1410
+ <dt>
1411
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-copy" title="pango_glyph_string_copy ()">pango_glyph_string_copy</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1412
+ </dt>
1413
+ <dd></dd>
1414
+ <dt>
1415
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-extents" title="pango_glyph_string_extents ()">pango_glyph_string_extents</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1416
+ </dt>
1417
+ <dd></dd>
1418
+ <dt>
1419
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-extents-range" title="pango_glyph_string_extents_range ()">pango_glyph_string_extents_range</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1420
+ </dt>
1421
+ <dd></dd>
1422
+ <dt>
1423
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-free" title="pango_glyph_string_free ()">pango_glyph_string_free</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1424
+ </dt>
1425
+ <dd></dd>
1426
+ <dt>
1427
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-get-logical-widths" title="pango_glyph_string_get_logical_widths ()">pango_glyph_string_get_logical_widths</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1428
+ </dt>
1429
+ <dd></dd>
1430
+ <dt>
1431
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-get-width" title="pango_glyph_string_get_width ()">pango_glyph_string_get_width</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1432
+ </dt>
1433
+ <dd></dd>
1434
+ <dt>
1435
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-index-to-x" title="pango_glyph_string_index_to_x ()">pango_glyph_string_index_to_x</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1436
+ </dt>
1437
+ <dd></dd>
1438
+ <dt>
1439
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-new" title="pango_glyph_string_new ()">pango_glyph_string_new</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1440
+ </dt>
1441
+ <dd></dd>
1442
+ <dt>
1443
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-set-size" title="pango_glyph_string_set_size ()">pango_glyph_string_set_size</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1444
+ </dt>
1445
+ <dd></dd>
1446
+ <dt>
1447
+ <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-x-to-index" title="pango_glyph_string_x_to_index ()">pango_glyph_string_x_to_index</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1448
+ </dt>
1449
+ <dd></dd>
1450
+ <dt>
1451
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-UNKNOWN-FLAG:CAPS" title="PANGO_GLYPH_UNKNOWN_FLAG">PANGO_GLYPH_UNKNOWN_FLAG</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1452
+ </dt>
1453
+ <dd></dd>
1454
+ <dt>
1455
+ <a class="link" href="pango-Vertical-Text.html#PangoGravity" title="enum PangoGravity">PangoGravity</a>, enum in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1456
+ </dt>
1457
+ <dd></dd>
1458
+ <dt>
1459
+ <a class="link" href="pango-Vertical-Text.html#PangoGravityHint" title="enum PangoGravityHint">PangoGravityHint</a>, enum in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1460
+ </dt>
1461
+ <dd></dd>
1462
+ <dt>
1463
+ <a class="link" href="pango-Vertical-Text.html#pango-gravity-get-for-matrix" title="pango_gravity_get_for_matrix ()">pango_gravity_get_for_matrix</a>, function in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1464
+ </dt>
1465
+ <dd></dd>
1466
+ <dt>
1467
+ <a class="link" href="pango-Vertical-Text.html#pango-gravity-get-for-script" title="pango_gravity_get_for_script ()">pango_gravity_get_for_script</a>, function in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1468
+ </dt>
1469
+ <dd></dd>
1470
+ <dt>
1471
+ <a class="link" href="pango-Vertical-Text.html#pango-gravity-get-for-script-and-width" title="pango_gravity_get_for_script_and_width ()">pango_gravity_get_for_script_and_width</a>, function in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1472
+ </dt>
1473
+ <dd></dd>
1474
+ <dt>
1475
+ <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-IS-IMPROPER:CAPS" title="PANGO_GRAVITY_IS_IMPROPER()">PANGO_GRAVITY_IS_IMPROPER</a>, macro in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1476
+ </dt>
1477
+ <dd></dd>
1478
+ <dt>
1479
+ <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-IS-VERTICAL:CAPS" title="PANGO_GRAVITY_IS_VERTICAL()">PANGO_GRAVITY_IS_VERTICAL</a>, macro in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1480
+ </dt>
1481
+ <dd></dd>
1482
+ <dt>
1483
+ <a class="link" href="pango-Vertical-Text.html#pango-gravity-to-rotation" title="pango_gravity_to_rotation ()">pango_gravity_to_rotation</a>, function in <a class="link" href="pango-Vertical-Text.html" title="Vertical Text">Vertical Text</a>
1484
+ </dt>
1485
+ <dd></dd>
1486
+ <a name="idxI"></a><h3 class="title">I</h3>
1487
+ <dt>
1488
+ <a class="link" href="pango-Modules.html#PangoIncludedModule" title="struct PangoIncludedModule">PangoIncludedModule</a>, struct in <a class="link" href="pango-Modules.html" title="Modules">Modules</a>
1489
+ </dt>
1490
+ <dd></dd>
1491
+ <dt>
1492
+ <a class="link" href="pango-Fonts.html#PANGO-IS-FONT:CAPS" title="PANGO_IS_FONT()">PANGO_IS_FONT</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1493
+ </dt>
1494
+ <dd></dd>
1495
+ <dt>
1496
+ <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-FACE:CAPS" title="PANGO_IS_FONT_FACE()">PANGO_IS_FONT_FACE</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1497
+ </dt>
1498
+ <dd></dd>
1499
+ <dt>
1500
+ <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-FAMILY:CAPS" title="PANGO_IS_FONT_FAMILY()">PANGO_IS_FONT_FAMILY</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1501
+ </dt>
1502
+ <dd></dd>
1503
+ <dt>
1504
+ <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-MAP:CAPS" title="PANGO_IS_FONT_MAP()">PANGO_IS_FONT_MAP</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1505
+ </dt>
1506
+ <dd></dd>
1507
+ <dt>
1508
+ <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-MAP-CLASS:CAPS" title="PANGO_IS_FONT_MAP_CLASS()">PANGO_IS_FONT_MAP_CLASS</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
1509
+ </dt>
1510
+ <dd></dd>
1511
+ <dt>
1512
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-is-zero-width" title="pango_is_zero_width ()">pango_is_zero_width</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
1513
+ </dt>
1514
+ <dd></dd>
1515
+ <dt>
1516
+ <a class="link" href="pango-Text-Processing.html#PangoItem-struct" title="struct PangoItem">PangoItem</a>, struct in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1517
+ </dt>
1518
+ <dd></dd>
1519
+ <dt>
1520
+ <a class="link" href="pango-Text-Processing.html#pango-itemize" title="pango_itemize ()">pango_itemize</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1521
+ </dt>
1522
+ <dd></dd>
1523
+ <dt>
1524
+ <a class="link" href="pango-Text-Processing.html#pango-itemize-with-base-dir" title="pango_itemize_with_base_dir ()">pango_itemize_with_base_dir</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1525
+ </dt>
1526
+ <dd></dd>
1527
+ <dt>
1528
+ <a class="link" href="pango-Text-Processing.html#pango-item-copy" title="pango_item_copy ()">pango_item_copy</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1529
+ </dt>
1530
+ <dd></dd>
1531
+ <dt>
1532
+ <a class="link" href="pango-Text-Processing.html#pango-item-free" title="pango_item_free ()">pango_item_free</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1533
+ </dt>
1534
+ <dd></dd>
1535
+ <dt>
1536
+ <a class="link" href="pango-Text-Processing.html#pango-item-new" title="pango_item_new ()">pango_item_new</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1537
+ </dt>
1538
+ <dd></dd>
1539
+ <dt>
1540
+ <a class="link" href="pango-Text-Processing.html#pango-item-split" title="pango_item_split ()">pango_item_split</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1541
+ </dt>
1542
+ <dd></dd>
1543
+ <a name="idxL"></a><h3 class="title">L</h3>
1544
+ <dt>
1545
+ <a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage-struct" title="PangoLanguage">PangoLanguage</a>, struct in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1546
+ </dt>
1547
+ <dd></dd>
1548
+ <dt>
1549
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-language-from-string" title="pango_language_from_string ()">pango_language_from_string</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1550
+ </dt>
1551
+ <dd></dd>
1552
+ <dt>
1553
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-language-get-default" title="pango_language_get_default ()">pango_language_get_default</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1554
+ </dt>
1555
+ <dd></dd>
1556
+ <dt>
1557
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-language-get-sample-string" title="pango_language_get_sample_string ()">pango_language_get_sample_string</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1558
+ </dt>
1559
+ <dd></dd>
1560
+ <dt>
1561
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-language-get-scripts" title="pango_language_get_scripts ()">pango_language_get_scripts</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1562
+ </dt>
1563
+ <dd></dd>
1564
+ <dt>
1565
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-language-includes-script" title="pango_language_includes_script ()">pango_language_includes_script</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1566
+ </dt>
1567
+ <dd></dd>
1568
+ <dt>
1569
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-language-matches" title="pango_language_matches ()">pango_language_matches</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1570
+ </dt>
1571
+ <dd></dd>
1572
+ <dt>
1573
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-language-to-string" title="pango_language_to_string ()">pango_language_to_string</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
1574
+ </dt>
1575
+ <dd></dd>
1576
+ <dt>
1577
+ <a class="link" href="pango-Layout-Objects.html#PangoLayout-struct" title="PangoLayout">PangoLayout</a>, struct in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1578
+ </dt>
1579
+ <dd></dd>
1580
+ <dt>
1581
+ <a class="link" href="pango-Layout-Objects.html#PangoLayoutIter-struct" title="PangoLayoutIter">PangoLayoutIter</a>, struct in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1582
+ </dt>
1583
+ <dd></dd>
1584
+ <dt>
1585
+ <a class="link" href="pango-Layout-Objects.html#PangoLayoutLine-struct" title="struct PangoLayoutLine">PangoLayoutLine</a>, struct in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1586
+ </dt>
1587
+ <dd></dd>
1588
+ <dt>
1589
+ <a class="link" href="pango-Layout-Objects.html#PangoLayoutRun" title="PangoLayoutRun">PangoLayoutRun</a>, typedef in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1590
+ </dt>
1591
+ <dd></dd>
1592
+ <dt>
1593
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-context-changed" title="pango_layout_context_changed ()">pango_layout_context_changed</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1594
+ </dt>
1595
+ <dd></dd>
1596
+ <dt>
1597
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-copy" title="pango_layout_copy ()">pango_layout_copy</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1598
+ </dt>
1599
+ <dd></dd>
1600
+ <dt>
1601
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-alignment" title="pango_layout_get_alignment ()">pango_layout_get_alignment</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1602
+ </dt>
1603
+ <dd></dd>
1604
+ <dt>
1605
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-attributes" title="pango_layout_get_attributes ()">pango_layout_get_attributes</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1606
+ </dt>
1607
+ <dd></dd>
1608
+ <dt>
1609
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-auto-dir" title="pango_layout_get_auto_dir ()">pango_layout_get_auto_dir</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1610
+ </dt>
1611
+ <dd></dd>
1612
+ <dt>
1613
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-baseline" title="pango_layout_get_baseline ()">pango_layout_get_baseline</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1614
+ </dt>
1615
+ <dd></dd>
1616
+ <dt>
1617
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-character-count" title="pango_layout_get_character_count ()">pango_layout_get_character_count</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1618
+ </dt>
1619
+ <dd></dd>
1620
+ <dt>
1621
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-context" title="pango_layout_get_context ()">pango_layout_get_context</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1622
+ </dt>
1623
+ <dd></dd>
1624
+ <dt>
1625
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-cursor-pos" title="pango_layout_get_cursor_pos ()">pango_layout_get_cursor_pos</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1626
+ </dt>
1627
+ <dd></dd>
1628
+ <dt>
1629
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-ellipsize" title="pango_layout_get_ellipsize ()">pango_layout_get_ellipsize</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1630
+ </dt>
1631
+ <dd></dd>
1632
+ <dt>
1633
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-extents" title="pango_layout_get_extents ()">pango_layout_get_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1634
+ </dt>
1635
+ <dd></dd>
1636
+ <dt>
1637
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-font-description" title="pango_layout_get_font_description ()">pango_layout_get_font_description</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1638
+ </dt>
1639
+ <dd></dd>
1640
+ <dt>
1641
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-height" title="pango_layout_get_height ()">pango_layout_get_height</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1642
+ </dt>
1643
+ <dd></dd>
1644
+ <dt>
1645
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-indent" title="pango_layout_get_indent ()">pango_layout_get_indent</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1646
+ </dt>
1647
+ <dd></dd>
1648
+ <dt>
1649
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-iter" title="pango_layout_get_iter ()">pango_layout_get_iter</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1650
+ </dt>
1651
+ <dd></dd>
1652
+ <dt>
1653
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-justify" title="pango_layout_get_justify ()">pango_layout_get_justify</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1654
+ </dt>
1655
+ <dd></dd>
1656
+ <dt>
1657
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-line" title="pango_layout_get_line ()">pango_layout_get_line</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1658
+ </dt>
1659
+ <dd></dd>
1660
+ <dt>
1661
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-lines" title="pango_layout_get_lines ()">pango_layout_get_lines</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1662
+ </dt>
1663
+ <dd></dd>
1664
+ <dt>
1665
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-lines-readonly" title="pango_layout_get_lines_readonly ()">pango_layout_get_lines_readonly</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1666
+ </dt>
1667
+ <dd></dd>
1668
+ <dt>
1669
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-line-count" title="pango_layout_get_line_count ()">pango_layout_get_line_count</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1670
+ </dt>
1671
+ <dd></dd>
1672
+ <dt>
1673
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-line-readonly" title="pango_layout_get_line_readonly ()">pango_layout_get_line_readonly</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1674
+ </dt>
1675
+ <dd></dd>
1676
+ <dt>
1677
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-log-attrs" title="pango_layout_get_log_attrs ()">pango_layout_get_log_attrs</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1678
+ </dt>
1679
+ <dd></dd>
1680
+ <dt>
1681
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-log-attrs-readonly" title="pango_layout_get_log_attrs_readonly ()">pango_layout_get_log_attrs_readonly</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1682
+ </dt>
1683
+ <dd></dd>
1684
+ <dt>
1685
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-pixel-extents" title="pango_layout_get_pixel_extents ()">pango_layout_get_pixel_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1686
+ </dt>
1687
+ <dd></dd>
1688
+ <dt>
1689
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-pixel-size" title="pango_layout_get_pixel_size ()">pango_layout_get_pixel_size</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1690
+ </dt>
1691
+ <dd></dd>
1692
+ <dt>
1693
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-serial" title="pango_layout_get_serial ()">pango_layout_get_serial</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1694
+ </dt>
1695
+ <dd></dd>
1696
+ <dt>
1697
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-single-paragraph-mode" title="pango_layout_get_single_paragraph_mode ()">pango_layout_get_single_paragraph_mode</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1698
+ </dt>
1699
+ <dd></dd>
1700
+ <dt>
1701
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-size" title="pango_layout_get_size ()">pango_layout_get_size</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1702
+ </dt>
1703
+ <dd></dd>
1704
+ <dt>
1705
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-spacing" title="pango_layout_get_spacing ()">pango_layout_get_spacing</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1706
+ </dt>
1707
+ <dd></dd>
1708
+ <dt>
1709
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-tabs" title="pango_layout_get_tabs ()">pango_layout_get_tabs</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1710
+ </dt>
1711
+ <dd></dd>
1712
+ <dt>
1713
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-text" title="pango_layout_get_text ()">pango_layout_get_text</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1714
+ </dt>
1715
+ <dd></dd>
1716
+ <dt>
1717
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-unknown-glyphs-count" title="pango_layout_get_unknown_glyphs_count ()">pango_layout_get_unknown_glyphs_count</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1718
+ </dt>
1719
+ <dd></dd>
1720
+ <dt>
1721
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-width" title="pango_layout_get_width ()">pango_layout_get_width</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1722
+ </dt>
1723
+ <dd></dd>
1724
+ <dt>
1725
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-get-wrap" title="pango_layout_get_wrap ()">pango_layout_get_wrap</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1726
+ </dt>
1727
+ <dd></dd>
1728
+ <dt>
1729
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-index-to-line-x" title="pango_layout_index_to_line_x ()">pango_layout_index_to_line_x</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1730
+ </dt>
1731
+ <dd></dd>
1732
+ <dt>
1733
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-index-to-pos" title="pango_layout_index_to_pos ()">pango_layout_index_to_pos</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1734
+ </dt>
1735
+ <dd></dd>
1736
+ <dt>
1737
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-is-ellipsized" title="pango_layout_is_ellipsized ()">pango_layout_is_ellipsized</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1738
+ </dt>
1739
+ <dd></dd>
1740
+ <dt>
1741
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-is-wrapped" title="pango_layout_is_wrapped ()">pango_layout_is_wrapped</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1742
+ </dt>
1743
+ <dd></dd>
1744
+ <dt>
1745
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-at-last-line" title="pango_layout_iter_at_last_line ()">pango_layout_iter_at_last_line</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1746
+ </dt>
1747
+ <dd></dd>
1748
+ <dt>
1749
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-copy" title="pango_layout_iter_copy ()">pango_layout_iter_copy</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1750
+ </dt>
1751
+ <dd></dd>
1752
+ <dt>
1753
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-free" title="pango_layout_iter_free ()">pango_layout_iter_free</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1754
+ </dt>
1755
+ <dd></dd>
1756
+ <dt>
1757
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-baseline" title="pango_layout_iter_get_baseline ()">pango_layout_iter_get_baseline</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1758
+ </dt>
1759
+ <dd></dd>
1760
+ <dt>
1761
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-char-extents" title="pango_layout_iter_get_char_extents ()">pango_layout_iter_get_char_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1762
+ </dt>
1763
+ <dd></dd>
1764
+ <dt>
1765
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-cluster-extents" title="pango_layout_iter_get_cluster_extents ()">pango_layout_iter_get_cluster_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1766
+ </dt>
1767
+ <dd></dd>
1768
+ <dt>
1769
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-index" title="pango_layout_iter_get_index ()">pango_layout_iter_get_index</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1770
+ </dt>
1771
+ <dd></dd>
1772
+ <dt>
1773
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-layout" title="pango_layout_iter_get_layout ()">pango_layout_iter_get_layout</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1774
+ </dt>
1775
+ <dd></dd>
1776
+ <dt>
1777
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-layout-extents" title="pango_layout_iter_get_layout_extents ()">pango_layout_iter_get_layout_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1778
+ </dt>
1779
+ <dd></dd>
1780
+ <dt>
1781
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-line" title="pango_layout_iter_get_line ()">pango_layout_iter_get_line</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1782
+ </dt>
1783
+ <dd></dd>
1784
+ <dt>
1785
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-line-extents" title="pango_layout_iter_get_line_extents ()">pango_layout_iter_get_line_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1786
+ </dt>
1787
+ <dd></dd>
1788
+ <dt>
1789
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-line-readonly" title="pango_layout_iter_get_line_readonly ()">pango_layout_iter_get_line_readonly</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1790
+ </dt>
1791
+ <dd></dd>
1792
+ <dt>
1793
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-line-yrange" title="pango_layout_iter_get_line_yrange ()">pango_layout_iter_get_line_yrange</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1794
+ </dt>
1795
+ <dd></dd>
1796
+ <dt>
1797
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-run" title="pango_layout_iter_get_run ()">pango_layout_iter_get_run</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1798
+ </dt>
1799
+ <dd></dd>
1800
+ <dt>
1801
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-run-extents" title="pango_layout_iter_get_run_extents ()">pango_layout_iter_get_run_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1802
+ </dt>
1803
+ <dd></dd>
1804
+ <dt>
1805
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-get-run-readonly" title="pango_layout_iter_get_run_readonly ()">pango_layout_iter_get_run_readonly</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1806
+ </dt>
1807
+ <dd></dd>
1808
+ <dt>
1809
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-next-char" title="pango_layout_iter_next_char ()">pango_layout_iter_next_char</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1810
+ </dt>
1811
+ <dd></dd>
1812
+ <dt>
1813
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-next-cluster" title="pango_layout_iter_next_cluster ()">pango_layout_iter_next_cluster</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1814
+ </dt>
1815
+ <dd></dd>
1816
+ <dt>
1817
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-next-line" title="pango_layout_iter_next_line ()">pango_layout_iter_next_line</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1818
+ </dt>
1819
+ <dd></dd>
1820
+ <dt>
1821
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-iter-next-run" title="pango_layout_iter_next_run ()">pango_layout_iter_next_run</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1822
+ </dt>
1823
+ <dd></dd>
1824
+ <dt>
1825
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-line-get-extents" title="pango_layout_line_get_extents ()">pango_layout_line_get_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1826
+ </dt>
1827
+ <dd></dd>
1828
+ <dt>
1829
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-line-get-pixel-extents" title="pango_layout_line_get_pixel_extents ()">pango_layout_line_get_pixel_extents</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1830
+ </dt>
1831
+ <dd></dd>
1832
+ <dt>
1833
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-line-get-x-ranges" title="pango_layout_line_get_x_ranges ()">pango_layout_line_get_x_ranges</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1834
+ </dt>
1835
+ <dd></dd>
1836
+ <dt>
1837
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-line-index-to-x" title="pango_layout_line_index_to_x ()">pango_layout_line_index_to_x</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1838
+ </dt>
1839
+ <dd></dd>
1840
+ <dt>
1841
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-line-ref" title="pango_layout_line_ref ()">pango_layout_line_ref</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1842
+ </dt>
1843
+ <dd></dd>
1844
+ <dt>
1845
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-line-unref" title="pango_layout_line_unref ()">pango_layout_line_unref</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1846
+ </dt>
1847
+ <dd></dd>
1848
+ <dt>
1849
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-line-x-to-index" title="pango_layout_line_x_to_index ()">pango_layout_line_x_to_index</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1850
+ </dt>
1851
+ <dd></dd>
1852
+ <dt>
1853
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-move-cursor-visually" title="pango_layout_move_cursor_visually ()">pango_layout_move_cursor_visually</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1854
+ </dt>
1855
+ <dd></dd>
1856
+ <dt>
1857
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-new" title="pango_layout_new ()">pango_layout_new</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1858
+ </dt>
1859
+ <dd></dd>
1860
+ <dt>
1861
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-alignment" title="pango_layout_set_alignment ()">pango_layout_set_alignment</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1862
+ </dt>
1863
+ <dd></dd>
1864
+ <dt>
1865
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-attributes" title="pango_layout_set_attributes ()">pango_layout_set_attributes</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1866
+ </dt>
1867
+ <dd></dd>
1868
+ <dt>
1869
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-auto-dir" title="pango_layout_set_auto_dir ()">pango_layout_set_auto_dir</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1870
+ </dt>
1871
+ <dd></dd>
1872
+ <dt>
1873
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-ellipsize" title="pango_layout_set_ellipsize ()">pango_layout_set_ellipsize</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1874
+ </dt>
1875
+ <dd></dd>
1876
+ <dt>
1877
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-font-description" title="pango_layout_set_font_description ()">pango_layout_set_font_description</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1878
+ </dt>
1879
+ <dd></dd>
1880
+ <dt>
1881
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-height" title="pango_layout_set_height ()">pango_layout_set_height</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1882
+ </dt>
1883
+ <dd></dd>
1884
+ <dt>
1885
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-indent" title="pango_layout_set_indent ()">pango_layout_set_indent</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1886
+ </dt>
1887
+ <dd></dd>
1888
+ <dt>
1889
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-justify" title="pango_layout_set_justify ()">pango_layout_set_justify</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1890
+ </dt>
1891
+ <dd></dd>
1892
+ <dt>
1893
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-markup" title="pango_layout_set_markup ()">pango_layout_set_markup</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1894
+ </dt>
1895
+ <dd></dd>
1896
+ <dt>
1897
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-markup-with-accel" title="pango_layout_set_markup_with_accel ()">pango_layout_set_markup_with_accel</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1898
+ </dt>
1899
+ <dd></dd>
1900
+ <dt>
1901
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-single-paragraph-mode" title="pango_layout_set_single_paragraph_mode ()">pango_layout_set_single_paragraph_mode</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1902
+ </dt>
1903
+ <dd></dd>
1904
+ <dt>
1905
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-spacing" title="pango_layout_set_spacing ()">pango_layout_set_spacing</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1906
+ </dt>
1907
+ <dd></dd>
1908
+ <dt>
1909
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-tabs" title="pango_layout_set_tabs ()">pango_layout_set_tabs</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1910
+ </dt>
1911
+ <dd></dd>
1912
+ <dt>
1913
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-text" title="pango_layout_set_text ()">pango_layout_set_text</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1914
+ </dt>
1915
+ <dd></dd>
1916
+ <dt>
1917
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-width" title="pango_layout_set_width ()">pango_layout_set_width</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1918
+ </dt>
1919
+ <dd></dd>
1920
+ <dt>
1921
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-set-wrap" title="pango_layout_set_wrap ()">pango_layout_set_wrap</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1922
+ </dt>
1923
+ <dd></dd>
1924
+ <dt>
1925
+ <a class="link" href="pango-Layout-Objects.html#pango-layout-xy-to-index" title="pango_layout_xy_to_index ()">pango_layout_xy_to_index</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
1926
+ </dt>
1927
+ <dd></dd>
1928
+ <dt>
1929
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-LBEARING:CAPS" title="PANGO_LBEARING()">PANGO_LBEARING</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1930
+ </dt>
1931
+ <dd></dd>
1932
+ <dt>
1933
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-log2vis-get-embedding-levels" title="pango_log2vis_get_embedding_levels ()">pango_log2vis_get_embedding_levels</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
1934
+ </dt>
1935
+ <dd></dd>
1936
+ <dt>
1937
+ <a class="link" href="pango-Text-Processing.html#PangoLogAttr" title="PangoLogAttr">PangoLogAttr</a>, struct in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
1938
+ </dt>
1939
+ <dd></dd>
1940
+ <dt>
1941
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-lookup-aliases" title="pango_lookup_aliases ()">pango_lookup_aliases</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
1942
+ </dt>
1943
+ <dd></dd>
1944
+ <a name="idxM"></a><h3 class="title">M</h3>
1945
+ <dt>
1946
+ <a class="link" href="pango-Modules.html#PangoMap" title="PangoMap">PangoMap</a>, struct in <a class="link" href="pango-Modules.html" title="Modules">Modules</a>
1947
+ </dt>
1948
+ <dd></dd>
1949
+ <dt>
1950
+ <a class="link" href="pango-Modules.html#PangoMapEntry" title="PangoMapEntry">PangoMapEntry</a>, struct in <a class="link" href="pango-Modules.html" title="Modules">Modules</a>
1951
+ </dt>
1952
+ <dd></dd>
1953
+ <dt>
1954
+ <a class="link" href="pango-Modules.html#pango-map-get-engine" title="pango_map_get_engine ()">pango_map_get_engine</a>, function in <a class="link" href="pango-Modules.html" title="Modules">Modules</a>
1955
+ </dt>
1956
+ <dd></dd>
1957
+ <dt>
1958
+ <a class="link" href="pango-Modules.html#pango-map-get-engines" title="pango_map_get_engines ()">pango_map_get_engines</a>, function in <a class="link" href="pango-Modules.html" title="Modules">Modules</a>
1959
+ </dt>
1960
+ <dd></dd>
1961
+ <dt>
1962
+ <a class="link" href="pango-Text-Attributes.html#pango-markup-parser-finish" title="pango_markup_parser_finish ()">pango_markup_parser_finish</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
1963
+ </dt>
1964
+ <dd></dd>
1965
+ <dt>
1966
+ <a class="link" href="pango-Text-Attributes.html#pango-markup-parser-new" title="pango_markup_parser_new ()">pango_markup_parser_new</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
1967
+ </dt>
1968
+ <dd></dd>
1969
+ <dt>
1970
+ <a class="link" href="pango-Glyph-Storage.html#PangoMatrix-struct" title="struct PangoMatrix">PangoMatrix</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1971
+ </dt>
1972
+ <dd></dd>
1973
+ <dt>
1974
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-concat" title="pango_matrix_concat ()">pango_matrix_concat</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1975
+ </dt>
1976
+ <dd></dd>
1977
+ <dt>
1978
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-copy" title="pango_matrix_copy ()">pango_matrix_copy</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1979
+ </dt>
1980
+ <dd></dd>
1981
+ <dt>
1982
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-free" title="pango_matrix_free ()">pango_matrix_free</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1983
+ </dt>
1984
+ <dd></dd>
1985
+ <dt>
1986
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-get-font-scale-factor" title="pango_matrix_get_font_scale_factor ()">pango_matrix_get_font_scale_factor</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1987
+ </dt>
1988
+ <dd></dd>
1989
+ <dt>
1990
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-MATRIX-INIT:CAPS" title="PANGO_MATRIX_INIT">PANGO_MATRIX_INIT</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1991
+ </dt>
1992
+ <dd></dd>
1993
+ <dt>
1994
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-rotate" title="pango_matrix_rotate ()">pango_matrix_rotate</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1995
+ </dt>
1996
+ <dd></dd>
1997
+ <dt>
1998
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-scale" title="pango_matrix_scale ()">pango_matrix_scale</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
1999
+ </dt>
2000
+ <dd></dd>
2001
+ <dt>
2002
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-distance" title="pango_matrix_transform_distance ()">pango_matrix_transform_distance</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2003
+ </dt>
2004
+ <dd></dd>
2005
+ <dt>
2006
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-pixel-rectangle" title="pango_matrix_transform_pixel_rectangle ()">pango_matrix_transform_pixel_rectangle</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2007
+ </dt>
2008
+ <dd></dd>
2009
+ <dt>
2010
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-point" title="pango_matrix_transform_point ()">pango_matrix_transform_point</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2011
+ </dt>
2012
+ <dd></dd>
2013
+ <dt>
2014
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-rectangle" title="pango_matrix_transform_rectangle ()">pango_matrix_transform_rectangle</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2015
+ </dt>
2016
+ <dd></dd>
2017
+ <dt>
2018
+ <a class="link" href="pango-Glyph-Storage.html#pango-matrix-translate" title="pango_matrix_translate ()">pango_matrix_translate</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2019
+ </dt>
2020
+ <dd></dd>
2021
+ <dt>
2022
+ <a class="link" href="pango-Modules.html#pango-module-register" title="pango_module_register ()">pango_module_register</a>, function in <a class="link" href="pango-Modules.html" title="Modules">Modules</a>
2023
+ </dt>
2024
+ <dd></dd>
2025
+ <a name="idxO"></a><h3 class="title">O</h3>
2026
+ <dt>
2027
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTBuffer" title="PangoOTBuffer">PangoOTBuffer</a>, struct in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2028
+ </dt>
2029
+ <dd></dd>
2030
+ <dt>
2031
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTFeatureMap" title="struct PangoOTFeatureMap">PangoOTFeatureMap</a>, struct in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2032
+ </dt>
2033
+ <dd></dd>
2034
+ <dt>
2035
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTGlyph" title="struct PangoOTGlyph">PangoOTGlyph</a>, struct in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2036
+ </dt>
2037
+ <dd></dd>
2038
+ <dt>
2039
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTInfo-struct" title="PangoOTInfo">PangoOTInfo</a>, struct in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2040
+ </dt>
2041
+ <dd></dd>
2042
+ <dt>
2043
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTRuleset-struct" title="PangoOTRuleset">PangoOTRuleset</a>, struct in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2044
+ </dt>
2045
+ <dd></dd>
2046
+ <dt>
2047
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTRulesetDescription" title="struct PangoOTRulesetDescription">PangoOTRulesetDescription</a>, struct in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2048
+ </dt>
2049
+ <dd></dd>
2050
+ <dt>
2051
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTTableType" title="enum PangoOTTableType">PangoOTTableType</a>, enum in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2052
+ </dt>
2053
+ <dd></dd>
2054
+ <dt>
2055
+ <a class="link" href="pango-OpenType-Font-Handling.html#PangoOTTag" title="PangoOTTag">PangoOTTag</a>, typedef in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2056
+ </dt>
2057
+ <dd></dd>
2058
+ <dt>
2059
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-ALL-GLYPHS:CAPS" title="PANGO_OT_ALL_GLYPHS">PANGO_OT_ALL_GLYPHS</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2060
+ </dt>
2061
+ <dd></dd>
2062
+ <dt>
2063
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-add-glyph" title="pango_ot_buffer_add_glyph ()">pango_ot_buffer_add_glyph</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2064
+ </dt>
2065
+ <dd></dd>
2066
+ <dt>
2067
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-clear" title="pango_ot_buffer_clear ()">pango_ot_buffer_clear</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2068
+ </dt>
2069
+ <dd></dd>
2070
+ <dt>
2071
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-destroy" title="pango_ot_buffer_destroy ()">pango_ot_buffer_destroy</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2072
+ </dt>
2073
+ <dd></dd>
2074
+ <dt>
2075
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-get-glyphs" title="pango_ot_buffer_get_glyphs ()">pango_ot_buffer_get_glyphs</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2076
+ </dt>
2077
+ <dd></dd>
2078
+ <dt>
2079
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-new" title="pango_ot_buffer_new ()">pango_ot_buffer_new</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2080
+ </dt>
2081
+ <dd></dd>
2082
+ <dt>
2083
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-output" title="pango_ot_buffer_output ()">pango_ot_buffer_output</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2084
+ </dt>
2085
+ <dd></dd>
2086
+ <dt>
2087
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-set-rtl" title="pango_ot_buffer_set_rtl ()">pango_ot_buffer_set_rtl</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2088
+ </dt>
2089
+ <dd></dd>
2090
+ <dt>
2091
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-buffer-set-zero-width-marks" title="pango_ot_buffer_set_zero_width_marks ()">pango_ot_buffer_set_zero_width_marks</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2092
+ </dt>
2093
+ <dd></dd>
2094
+ <dt>
2095
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-DEFAULT-LANGUAGE:CAPS" title="PANGO_OT_DEFAULT_LANGUAGE">PANGO_OT_DEFAULT_LANGUAGE</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2096
+ </dt>
2097
+ <dd></dd>
2098
+ <dt>
2099
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-find-feature" title="pango_ot_info_find_feature ()">pango_ot_info_find_feature</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2100
+ </dt>
2101
+ <dd></dd>
2102
+ <dt>
2103
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-find-language" title="pango_ot_info_find_language ()">pango_ot_info_find_language</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2104
+ </dt>
2105
+ <dd></dd>
2106
+ <dt>
2107
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-find-script" title="pango_ot_info_find_script ()">pango_ot_info_find_script</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2108
+ </dt>
2109
+ <dd></dd>
2110
+ <dt>
2111
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-get" title="pango_ot_info_get ()">pango_ot_info_get</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2112
+ </dt>
2113
+ <dd></dd>
2114
+ <dt>
2115
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-list-features" title="pango_ot_info_list_features ()">pango_ot_info_list_features</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2116
+ </dt>
2117
+ <dd></dd>
2118
+ <dt>
2119
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-list-languages" title="pango_ot_info_list_languages ()">pango_ot_info_list_languages</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2120
+ </dt>
2121
+ <dd></dd>
2122
+ <dt>
2123
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-info-list-scripts" title="pango_ot_info_list_scripts ()">pango_ot_info_list_scripts</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2124
+ </dt>
2125
+ <dd></dd>
2126
+ <dt>
2127
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-NO-FEATURE:CAPS" title="PANGO_OT_NO_FEATURE">PANGO_OT_NO_FEATURE</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2128
+ </dt>
2129
+ <dd></dd>
2130
+ <dt>
2131
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-NO-SCRIPT:CAPS" title="PANGO_OT_NO_SCRIPT">PANGO_OT_NO_SCRIPT</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2132
+ </dt>
2133
+ <dd></dd>
2134
+ <dt>
2135
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-add-feature" title="pango_ot_ruleset_add_feature ()">pango_ot_ruleset_add_feature</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2136
+ </dt>
2137
+ <dd></dd>
2138
+ <dt>
2139
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-description-copy" title="pango_ot_ruleset_description_copy ()">pango_ot_ruleset_description_copy</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2140
+ </dt>
2141
+ <dd></dd>
2142
+ <dt>
2143
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-description-equal" title="pango_ot_ruleset_description_equal ()">pango_ot_ruleset_description_equal</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2144
+ </dt>
2145
+ <dd></dd>
2146
+ <dt>
2147
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-description-free" title="pango_ot_ruleset_description_free ()">pango_ot_ruleset_description_free</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2148
+ </dt>
2149
+ <dd></dd>
2150
+ <dt>
2151
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-description-hash" title="pango_ot_ruleset_description_hash ()">pango_ot_ruleset_description_hash</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2152
+ </dt>
2153
+ <dd></dd>
2154
+ <dt>
2155
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-get-feature-count" title="pango_ot_ruleset_get_feature_count ()">pango_ot_ruleset_get_feature_count</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2156
+ </dt>
2157
+ <dd></dd>
2158
+ <dt>
2159
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-get-for-description" title="pango_ot_ruleset_get_for_description ()">pango_ot_ruleset_get_for_description</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2160
+ </dt>
2161
+ <dd></dd>
2162
+ <dt>
2163
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-maybe-add-feature" title="pango_ot_ruleset_maybe_add_feature ()">pango_ot_ruleset_maybe_add_feature</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2164
+ </dt>
2165
+ <dd></dd>
2166
+ <dt>
2167
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-maybe-add-features" title="pango_ot_ruleset_maybe_add_features ()">pango_ot_ruleset_maybe_add_features</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2168
+ </dt>
2169
+ <dd></dd>
2170
+ <dt>
2171
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-new" title="pango_ot_ruleset_new ()">pango_ot_ruleset_new</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2172
+ </dt>
2173
+ <dd></dd>
2174
+ <dt>
2175
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-new-for" title="pango_ot_ruleset_new_for ()">pango_ot_ruleset_new_for</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2176
+ </dt>
2177
+ <dd></dd>
2178
+ <dt>
2179
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-new-from-description" title="pango_ot_ruleset_new_from_description ()">pango_ot_ruleset_new_from_description</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2180
+ </dt>
2181
+ <dd></dd>
2182
+ <dt>
2183
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-position" title="pango_ot_ruleset_position ()">pango_ot_ruleset_position</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2184
+ </dt>
2185
+ <dd></dd>
2186
+ <dt>
2187
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-ruleset-substitute" title="pango_ot_ruleset_substitute ()">pango_ot_ruleset_substitute</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2188
+ </dt>
2189
+ <dd></dd>
2190
+ <dt>
2191
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-TAG-DEFAULT-LANGUAGE:CAPS" title="PANGO_OT_TAG_DEFAULT_LANGUAGE">PANGO_OT_TAG_DEFAULT_LANGUAGE</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2192
+ </dt>
2193
+ <dd></dd>
2194
+ <dt>
2195
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-TAG-DEFAULT-SCRIPT:CAPS" title="PANGO_OT_TAG_DEFAULT_SCRIPT">PANGO_OT_TAG_DEFAULT_SCRIPT</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2196
+ </dt>
2197
+ <dd></dd>
2198
+ <dt>
2199
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-tag-from-language" title="pango_ot_tag_from_language ()">pango_ot_tag_from_language</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2200
+ </dt>
2201
+ <dd></dd>
2202
+ <dt>
2203
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-tag-from-script" title="pango_ot_tag_from_script ()">pango_ot_tag_from_script</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2204
+ </dt>
2205
+ <dd></dd>
2206
+ <dt>
2207
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-TAG-MAKE:CAPS" title="PANGO_OT_TAG_MAKE()">PANGO_OT_TAG_MAKE</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2208
+ </dt>
2209
+ <dd></dd>
2210
+ <dt>
2211
+ <a class="link" href="pango-OpenType-Font-Handling.html#PANGO-OT-TAG-MAKE-FROM-STRING:CAPS" title="PANGO_OT_TAG_MAKE_FROM_STRING()">PANGO_OT_TAG_MAKE_FROM_STRING</a>, macro in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2212
+ </dt>
2213
+ <dd></dd>
2214
+ <dt>
2215
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-tag-to-language" title="pango_ot_tag_to_language ()">pango_ot_tag_to_language</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2216
+ </dt>
2217
+ <dd></dd>
2218
+ <dt>
2219
+ <a class="link" href="pango-OpenType-Font-Handling.html#pango-ot-tag-to-script" title="pango_ot_tag_to_script ()">pango_ot_tag_to_script</a>, function in <a class="link" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">OpenType Font Handling</a>
2220
+ </dt>
2221
+ <dd></dd>
2222
+ <a name="idxP"></a><h3 class="title">P</h3>
2223
+ <dt>
2224
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-parse-enum" title="pango_parse_enum ()">pango_parse_enum</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2225
+ </dt>
2226
+ <dd></dd>
2227
+ <dt>
2228
+ <a class="link" href="pango-Text-Attributes.html#pango-parse-markup" title="pango_parse_markup ()">pango_parse_markup</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2229
+ </dt>
2230
+ <dd></dd>
2231
+ <dt>
2232
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-parse-stretch" title="pango_parse_stretch ()">pango_parse_stretch</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2233
+ </dt>
2234
+ <dd></dd>
2235
+ <dt>
2236
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-parse-style" title="pango_parse_style ()">pango_parse_style</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2237
+ </dt>
2238
+ <dd></dd>
2239
+ <dt>
2240
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-parse-variant" title="pango_parse_variant ()">pango_parse_variant</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2241
+ </dt>
2242
+ <dd></dd>
2243
+ <dt>
2244
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-parse-weight" title="pango_parse_weight ()">pango_parse_weight</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2245
+ </dt>
2246
+ <dd></dd>
2247
+ <dt>
2248
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-PIXELS:CAPS" title="PANGO_PIXELS()">PANGO_PIXELS</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2249
+ </dt>
2250
+ <dd></dd>
2251
+ <dt>
2252
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-PIXELS-CEIL:CAPS" title="PANGO_PIXELS_CEIL()">PANGO_PIXELS_CEIL</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2253
+ </dt>
2254
+ <dd></dd>
2255
+ <dt>
2256
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-PIXELS-FLOOR:CAPS" title="PANGO_PIXELS_FLOOR()">PANGO_PIXELS_FLOOR</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2257
+ </dt>
2258
+ <dd></dd>
2259
+ <a name="idxQ"></a><h3 class="title">Q</h3>
2260
+ <dt>
2261
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-quantize-line-geometry" title="pango_quantize_line_geometry ()">pango_quantize_line_geometry</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2262
+ </dt>
2263
+ <dd></dd>
2264
+ <a name="idxR"></a><h3 class="title">R</h3>
2265
+ <dt>
2266
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-RBEARING:CAPS" title="PANGO_RBEARING()">PANGO_RBEARING</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2267
+ </dt>
2268
+ <dd></dd>
2269
+ <dt>
2270
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-read-line" title="pango_read_line ()">pango_read_line</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2271
+ </dt>
2272
+ <dd></dd>
2273
+ <dt>
2274
+ <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="struct PangoRectangle">PangoRectangle</a>, struct in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2275
+ </dt>
2276
+ <dd></dd>
2277
+ <dt>
2278
+ <a class="link" href="PangoRenderer.html#PangoRenderer-struct" title="struct PangoRenderer">PangoRenderer</a>, struct in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2279
+ </dt>
2280
+ <dd></dd>
2281
+ <dt>
2282
+ <a class="link" href="PangoRenderer.html#PangoRendererClass" title="struct PangoRendererClass">PangoRendererClass</a>, struct in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2283
+ </dt>
2284
+ <dd></dd>
2285
+ <dt>
2286
+ <a class="link" href="PangoRenderer.html#pango-renderer-activate" title="pango_renderer_activate ()">pango_renderer_activate</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2287
+ </dt>
2288
+ <dd></dd>
2289
+ <dt>
2290
+ <a class="link" href="PangoRenderer.html#pango-renderer-deactivate" title="pango_renderer_deactivate ()">pango_renderer_deactivate</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2291
+ </dt>
2292
+ <dd></dd>
2293
+ <dt>
2294
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-error-underline" title="pango_renderer_draw_error_underline ()">pango_renderer_draw_error_underline</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2295
+ </dt>
2296
+ <dd></dd>
2297
+ <dt>
2298
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-glyph" title="pango_renderer_draw_glyph ()">pango_renderer_draw_glyph</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2299
+ </dt>
2300
+ <dd></dd>
2301
+ <dt>
2302
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-glyphs" title="pango_renderer_draw_glyphs ()">pango_renderer_draw_glyphs</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2303
+ </dt>
2304
+ <dd></dd>
2305
+ <dt>
2306
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-glyph-item" title="pango_renderer_draw_glyph_item ()">pango_renderer_draw_glyph_item</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2307
+ </dt>
2308
+ <dd></dd>
2309
+ <dt>
2310
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-layout" title="pango_renderer_draw_layout ()">pango_renderer_draw_layout</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2311
+ </dt>
2312
+ <dd></dd>
2313
+ <dt>
2314
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-layout-line" title="pango_renderer_draw_layout_line ()">pango_renderer_draw_layout_line</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2315
+ </dt>
2316
+ <dd></dd>
2317
+ <dt>
2318
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-rectangle" title="pango_renderer_draw_rectangle ()">pango_renderer_draw_rectangle</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2319
+ </dt>
2320
+ <dd></dd>
2321
+ <dt>
2322
+ <a class="link" href="PangoRenderer.html#pango-renderer-draw-trapezoid" title="pango_renderer_draw_trapezoid ()">pango_renderer_draw_trapezoid</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2323
+ </dt>
2324
+ <dd></dd>
2325
+ <dt>
2326
+ <a class="link" href="PangoRenderer.html#pango-renderer-get-color" title="pango_renderer_get_color ()">pango_renderer_get_color</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2327
+ </dt>
2328
+ <dd></dd>
2329
+ <dt>
2330
+ <a class="link" href="PangoRenderer.html#pango-renderer-get-layout" title="pango_renderer_get_layout ()">pango_renderer_get_layout</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2331
+ </dt>
2332
+ <dd></dd>
2333
+ <dt>
2334
+ <a class="link" href="PangoRenderer.html#pango-renderer-get-layout-line" title="pango_renderer_get_layout_line ()">pango_renderer_get_layout_line</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2335
+ </dt>
2336
+ <dd></dd>
2337
+ <dt>
2338
+ <a class="link" href="PangoRenderer.html#pango-renderer-get-matrix" title="pango_renderer_get_matrix ()">pango_renderer_get_matrix</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2339
+ </dt>
2340
+ <dd></dd>
2341
+ <dt>
2342
+ <a class="link" href="PangoRenderer.html#pango-renderer-part-changed" title="pango_renderer_part_changed ()">pango_renderer_part_changed</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2343
+ </dt>
2344
+ <dd></dd>
2345
+ <dt>
2346
+ <a class="link" href="PangoRenderer.html#pango-renderer-set-color" title="pango_renderer_set_color ()">pango_renderer_set_color</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2347
+ </dt>
2348
+ <dd></dd>
2349
+ <dt>
2350
+ <a class="link" href="PangoRenderer.html#pango-renderer-set-matrix" title="pango_renderer_set_matrix ()">pango_renderer_set_matrix</a>, function in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2351
+ </dt>
2352
+ <dd></dd>
2353
+ <dt>
2354
+ <a class="link" href="PangoRenderer.html#PangoRenderPart" title="enum PangoRenderPart">PangoRenderPart</a>, enum in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2355
+ </dt>
2356
+ <dd></dd>
2357
+ <dt>
2358
+ <a class="link" href="pango-CoreText-Fonts.html#PANGO-RENDER-TYPE-CORE-TEXT:CAPS" title="PANGO_RENDER_TYPE_CORE_TEXT">PANGO_RENDER_TYPE_CORE_TEXT</a>, macro in <a class="link" href="pango-CoreText-Fonts.html" title="CoreText Fonts">CoreText Fonts</a>
2359
+ </dt>
2360
+ <dd></dd>
2361
+ <dt>
2362
+ <a class="link" href="PangoFcFont.html#PANGO-RENDER-TYPE-FC:CAPS" title="PANGO_RENDER_TYPE_FC">PANGO_RENDER_TYPE_FC</a>, macro in <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
2363
+ </dt>
2364
+ <dd></dd>
2365
+ <dt>
2366
+ <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PANGO-RENDER-TYPE-FT2:CAPS" title="PANGO_RENDER_TYPE_FT2">PANGO_RENDER_TYPE_FT2</a>, macro in <a class="link" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">FreeType Fonts and Rendering</a>
2367
+ </dt>
2368
+ <dd></dd>
2369
+ <dt>
2370
+ <a class="link" href="pango-Engines.html#PANGO-RENDER-TYPE-NONE:CAPS" title="PANGO_RENDER_TYPE_NONE">PANGO_RENDER_TYPE_NONE</a>, macro in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
2371
+ </dt>
2372
+ <dd></dd>
2373
+ <dt>
2374
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#PANGO-RENDER-TYPE-WIN32:CAPS" title="PANGO_RENDER_TYPE_WIN32">PANGO_RENDER_TYPE_WIN32</a>, macro in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2375
+ </dt>
2376
+ <dd></dd>
2377
+ <dt>
2378
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PANGO-RENDER-TYPE-XFT:CAPS" title="PANGO_RENDER_TYPE_XFT">PANGO_RENDER_TYPE_XFT</a>, macro in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2379
+ </dt>
2380
+ <dd></dd>
2381
+ <dt>
2382
+ <a class="link" href="pango-Text-Processing.html#pango-reorder-items" title="pango_reorder_items ()">pango_reorder_items</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
2383
+ </dt>
2384
+ <dd></dd>
2385
+ <a name="idxS"></a><h3 class="title">S</h3>
2386
+ <dt>
2387
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE">PANGO_SCALE</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2388
+ </dt>
2389
+ <dd></dd>
2390
+ <dt>
2391
+ <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-LARGE:CAPS" title="PANGO_SCALE_LARGE">PANGO_SCALE_LARGE</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2392
+ </dt>
2393
+ <dd></dd>
2394
+ <dt>
2395
+ <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-MEDIUM:CAPS" title="PANGO_SCALE_MEDIUM">PANGO_SCALE_MEDIUM</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2396
+ </dt>
2397
+ <dd></dd>
2398
+ <dt>
2399
+ <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-SMALL:CAPS" title="PANGO_SCALE_SMALL">PANGO_SCALE_SMALL</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2400
+ </dt>
2401
+ <dd></dd>
2402
+ <dt>
2403
+ <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-XX-LARGE:CAPS" title="PANGO_SCALE_XX_LARGE">PANGO_SCALE_XX_LARGE</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2404
+ </dt>
2405
+ <dd></dd>
2406
+ <dt>
2407
+ <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-XX-SMALL:CAPS" title="PANGO_SCALE_XX_SMALL">PANGO_SCALE_XX_SMALL</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2408
+ </dt>
2409
+ <dd></dd>
2410
+ <dt>
2411
+ <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-X-LARGE:CAPS" title="PANGO_SCALE_X_LARGE">PANGO_SCALE_X_LARGE</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2412
+ </dt>
2413
+ <dd></dd>
2414
+ <dt>
2415
+ <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-X-SMALL:CAPS" title="PANGO_SCALE_X_SMALL">PANGO_SCALE_X_SMALL</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2416
+ </dt>
2417
+ <dd></dd>
2418
+ <dt>
2419
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-scan-int" title="pango_scan_int ()">pango_scan_int</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2420
+ </dt>
2421
+ <dd></dd>
2422
+ <dt>
2423
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-scan-string" title="pango_scan_string ()">pango_scan_string</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2424
+ </dt>
2425
+ <dd></dd>
2426
+ <dt>
2427
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-scan-word" title="pango_scan_word ()">pango_scan_word</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2428
+ </dt>
2429
+ <dd></dd>
2430
+ <dt>
2431
+ <a class="link" href="pango-Scripts-and-Languages.html#PangoScript" title="enum PangoScript">PangoScript</a>, enum in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2432
+ </dt>
2433
+ <dd></dd>
2434
+ <dt>
2435
+ <a class="link" href="pango-Scripts-and-Languages.html#PangoScriptIter" title="PangoScriptIter">PangoScriptIter</a>, struct in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2436
+ </dt>
2437
+ <dd></dd>
2438
+ <dt>
2439
+ <a class="link" href="pango-Engines.html#script-engine-create" title="script_engine_create ()">script_engine_create</a>, function in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
2440
+ </dt>
2441
+ <dd></dd>
2442
+ <dt>
2443
+ <a class="link" href="pango-Engines.html#script-engine-exit" title="script_engine_exit ()">script_engine_exit</a>, function in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
2444
+ </dt>
2445
+ <dd></dd>
2446
+ <dt>
2447
+ <a class="link" href="pango-Engines.html#script-engine-init" title="script_engine_init ()">script_engine_init</a>, function in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
2448
+ </dt>
2449
+ <dd></dd>
2450
+ <dt>
2451
+ <a class="link" href="pango-Engines.html#script-engine-list" title="script_engine_list ()">script_engine_list</a>, function in <a class="link" href="pango-Engines.html" title="Engines">Engines</a>
2452
+ </dt>
2453
+ <dd></dd>
2454
+ <dt>
2455
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-script-for-unichar" title="pango_script_for_unichar ()">pango_script_for_unichar</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2456
+ </dt>
2457
+ <dd></dd>
2458
+ <dt>
2459
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-script-get-sample-language" title="pango_script_get_sample_language ()">pango_script_get_sample_language</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2460
+ </dt>
2461
+ <dd></dd>
2462
+ <dt>
2463
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-script-iter-free" title="pango_script_iter_free ()">pango_script_iter_free</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2464
+ </dt>
2465
+ <dd></dd>
2466
+ <dt>
2467
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-script-iter-get-range" title="pango_script_iter_get_range ()">pango_script_iter_get_range</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2468
+ </dt>
2469
+ <dd></dd>
2470
+ <dt>
2471
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-script-iter-new" title="pango_script_iter_new ()">pango_script_iter_new</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2472
+ </dt>
2473
+ <dd></dd>
2474
+ <dt>
2475
+ <a class="link" href="pango-Scripts-and-Languages.html#pango-script-iter-next" title="pango_script_iter_next ()">pango_script_iter_next</a>, function in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2476
+ </dt>
2477
+ <dd></dd>
2478
+ <dt>
2479
+ <a class="link" href="pango-Text-Processing.html#pango-shape" title="pango_shape ()">pango_shape</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
2480
+ </dt>
2481
+ <dd></dd>
2482
+ <dt>
2483
+ <a class="link" href="pango-Text-Processing.html#pango-shape-full" title="pango_shape_full ()">pango_shape_full</a>, function in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
2484
+ </dt>
2485
+ <dd></dd>
2486
+ <dt>
2487
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-skip-space" title="pango_skip_space ()">pango_skip_space</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2488
+ </dt>
2489
+ <dd></dd>
2490
+ <dt>
2491
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-split-file-list" title="pango_split_file_list ()">pango_split_file_list</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2492
+ </dt>
2493
+ <dd></dd>
2494
+ <dt>
2495
+ <a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch">PangoStretch</a>, enum in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2496
+ </dt>
2497
+ <dd></dd>
2498
+ <dt>
2499
+ <a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle">PangoStyle</a>, enum in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2500
+ </dt>
2501
+ <dd></dd>
2502
+ <a name="idxT"></a><h3 class="title">T</h3>
2503
+ <dt>
2504
+ <a class="link" href="pango-Tab-Stops.html#PangoTabAlign" title="enum PangoTabAlign">PangoTabAlign</a>, enum in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2505
+ </dt>
2506
+ <dd></dd>
2507
+ <dt>
2508
+ <a class="link" href="pango-Tab-Stops.html#PangoTabArray-struct" title="PangoTabArray">PangoTabArray</a>, struct in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2509
+ </dt>
2510
+ <dd></dd>
2511
+ <dt>
2512
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-copy" title="pango_tab_array_copy ()">pango_tab_array_copy</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2513
+ </dt>
2514
+ <dd></dd>
2515
+ <dt>
2516
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-free" title="pango_tab_array_free ()">pango_tab_array_free</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2517
+ </dt>
2518
+ <dd></dd>
2519
+ <dt>
2520
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-get-positions-in-pixels" title="pango_tab_array_get_positions_in_pixels ()">pango_tab_array_get_positions_in_pixels</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2521
+ </dt>
2522
+ <dd></dd>
2523
+ <dt>
2524
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-get-size" title="pango_tab_array_get_size ()">pango_tab_array_get_size</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2525
+ </dt>
2526
+ <dd></dd>
2527
+ <dt>
2528
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-get-tab" title="pango_tab_array_get_tab ()">pango_tab_array_get_tab</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2529
+ </dt>
2530
+ <dd></dd>
2531
+ <dt>
2532
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-get-tabs" title="pango_tab_array_get_tabs ()">pango_tab_array_get_tabs</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2533
+ </dt>
2534
+ <dd></dd>
2535
+ <dt>
2536
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-new" title="pango_tab_array_new ()">pango_tab_array_new</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2537
+ </dt>
2538
+ <dd></dd>
2539
+ <dt>
2540
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-new-with-positions" title="pango_tab_array_new_with_positions ()">pango_tab_array_new_with_positions</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2541
+ </dt>
2542
+ <dd></dd>
2543
+ <dt>
2544
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-resize" title="pango_tab_array_resize ()">pango_tab_array_resize</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2545
+ </dt>
2546
+ <dd></dd>
2547
+ <dt>
2548
+ <a class="link" href="pango-Tab-Stops.html#pango-tab-array-set-tab" title="pango_tab_array_set_tab ()">pango_tab_array_set_tab</a>, function in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2549
+ </dt>
2550
+ <dd></dd>
2551
+ <dt>
2552
+ <a class="link" href="pango-Miscellaneous-Utilities.html#pango-trim-string" title="pango_trim_string ()">pango_trim_string</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
2553
+ </dt>
2554
+ <dd></dd>
2555
+ <dt>
2556
+ <a class="link" href="pango-Layout-Objects.html#PANGO-TYPE-ALIGNMENT:CAPS" title="PANGO_TYPE_ALIGNMENT">PANGO_TYPE_ALIGNMENT</a>, macro in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
2557
+ </dt>
2558
+ <dd></dd>
2559
+ <dt>
2560
+ <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-ATTR-LIST:CAPS" title="PANGO_TYPE_ATTR_LIST">PANGO_TYPE_ATTR_LIST</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2561
+ </dt>
2562
+ <dd></dd>
2563
+ <dt>
2564
+ <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-ATTR-TYPE:CAPS" title="PANGO_TYPE_ATTR_TYPE">PANGO_TYPE_ATTR_TYPE</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2565
+ </dt>
2566
+ <dd></dd>
2567
+ <dt>
2568
+ <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-COLOR:CAPS" title="PANGO_TYPE_COLOR">PANGO_TYPE_COLOR</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2569
+ </dt>
2570
+ <dd></dd>
2571
+ <dt>
2572
+ <a class="link" href="pango-Coverage-Maps.html#PANGO-TYPE-COVERAGE-LEVEL:CAPS" title="PANGO_TYPE_COVERAGE_LEVEL">PANGO_TYPE_COVERAGE_LEVEL</a>, macro in <a class="link" href="pango-Coverage-Maps.html" title="Coverage Maps">Coverage Maps</a>
2573
+ </dt>
2574
+ <dd></dd>
2575
+ <dt>
2576
+ <a class="link" href="pango-Text-Processing.html#PANGO-TYPE-DIRECTION:CAPS" title="PANGO_TYPE_DIRECTION">PANGO_TYPE_DIRECTION</a>, macro in <a class="link" href="pango-Text-Processing.html" title="Rendering">Text Processing</a>
2577
+ </dt>
2578
+ <dd></dd>
2579
+ <dt>
2580
+ <a class="link" href="pango-Layout-Objects.html#PANGO-TYPE-ELLIPSIZE-MODE:CAPS" title="PANGO_TYPE_ELLIPSIZE_MODE">PANGO_TYPE_ELLIPSIZE_MODE</a>, macro in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
2581
+ </dt>
2582
+ <dd></dd>
2583
+ <dt>
2584
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT:CAPS" title="PANGO_TYPE_FONT">PANGO_TYPE_FONT</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2585
+ </dt>
2586
+ <dd></dd>
2587
+ <dt>
2588
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONTSET:CAPS" title="PANGO_TYPE_FONTSET">PANGO_TYPE_FONTSET</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2589
+ </dt>
2590
+ <dd></dd>
2591
+ <dt>
2592
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONTSET-SIMPLE:CAPS" title="PANGO_TYPE_FONTSET_SIMPLE">PANGO_TYPE_FONTSET_SIMPLE</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2593
+ </dt>
2594
+ <dd></dd>
2595
+ <dt>
2596
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-DESCRIPTION:CAPS" title="PANGO_TYPE_FONT_DESCRIPTION">PANGO_TYPE_FONT_DESCRIPTION</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2597
+ </dt>
2598
+ <dd></dd>
2599
+ <dt>
2600
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-FACE:CAPS" title="PANGO_TYPE_FONT_FACE">PANGO_TYPE_FONT_FACE</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2601
+ </dt>
2602
+ <dd></dd>
2603
+ <dt>
2604
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-FAMILY:CAPS" title="PANGO_TYPE_FONT_FAMILY">PANGO_TYPE_FONT_FAMILY</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2605
+ </dt>
2606
+ <dd></dd>
2607
+ <dt>
2608
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-MAP:CAPS" title="PANGO_TYPE_FONT_MAP">PANGO_TYPE_FONT_MAP</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2609
+ </dt>
2610
+ <dd></dd>
2611
+ <dt>
2612
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-MASK:CAPS" title="PANGO_TYPE_FONT_MASK">PANGO_TYPE_FONT_MASK</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2613
+ </dt>
2614
+ <dd></dd>
2615
+ <dt>
2616
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-METRICS:CAPS" title="PANGO_TYPE_FONT_METRICS">PANGO_TYPE_FONT_METRICS</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2617
+ </dt>
2618
+ <dd></dd>
2619
+ <dt>
2620
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-GLYPH-ITEM:CAPS" title="PANGO_TYPE_GLYPH_ITEM">PANGO_TYPE_GLYPH_ITEM</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2621
+ </dt>
2622
+ <dd></dd>
2623
+ <dt>
2624
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-GLYPH-ITEM-ITER:CAPS" title="PANGO_TYPE_GLYPH_ITEM_ITER">PANGO_TYPE_GLYPH_ITEM_ITER</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2625
+ </dt>
2626
+ <dd></dd>
2627
+ <dt>
2628
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-GLYPH-STRING:CAPS" title="PANGO_TYPE_GLYPH_STRING">PANGO_TYPE_GLYPH_STRING</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2629
+ </dt>
2630
+ <dd></dd>
2631
+ <dt>
2632
+ <a class="link" href="pango-Scripts-and-Languages.html#PANGO-TYPE-LANGUAGE:CAPS" title="PANGO_TYPE_LANGUAGE">PANGO_TYPE_LANGUAGE</a>, macro in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2633
+ </dt>
2634
+ <dd></dd>
2635
+ <dt>
2636
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-MATRIX:CAPS" title="PANGO_TYPE_MATRIX">PANGO_TYPE_MATRIX</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2637
+ </dt>
2638
+ <dd></dd>
2639
+ <dt>
2640
+ <a class="link" href="PangoRenderer.html#PANGO-TYPE-RENDER-PART:CAPS" title="PANGO_TYPE_RENDER_PART">PANGO_TYPE_RENDER_PART</a>, macro in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
2641
+ </dt>
2642
+ <dd></dd>
2643
+ <dt>
2644
+ <a class="link" href="pango-Scripts-and-Languages.html#PANGO-TYPE-SCRIPT:CAPS" title="PANGO_TYPE_SCRIPT">PANGO_TYPE_SCRIPT</a>, macro in <a class="link" href="pango-Scripts-and-Languages.html" title="Scripts and Languages">Scripts and Languages</a>
2645
+ </dt>
2646
+ <dd></dd>
2647
+ <dt>
2648
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-STRETCH:CAPS" title="PANGO_TYPE_STRETCH">PANGO_TYPE_STRETCH</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2649
+ </dt>
2650
+ <dd></dd>
2651
+ <dt>
2652
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-STYLE:CAPS" title="PANGO_TYPE_STYLE">PANGO_TYPE_STYLE</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2653
+ </dt>
2654
+ <dd></dd>
2655
+ <dt>
2656
+ <a class="link" href="pango-Tab-Stops.html#PANGO-TYPE-TAB-ALIGN:CAPS" title="PANGO_TYPE_TAB_ALIGN">PANGO_TYPE_TAB_ALIGN</a>, macro in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2657
+ </dt>
2658
+ <dd></dd>
2659
+ <dt>
2660
+ <a class="link" href="pango-Tab-Stops.html#PANGO-TYPE-TAB-ARRAY:CAPS" title="PANGO_TYPE_TAB_ARRAY">PANGO_TYPE_TAB_ARRAY</a>, macro in <a class="link" href="pango-Tab-Stops.html" title="Tab Stops">Tab Stops</a>
2661
+ </dt>
2662
+ <dd></dd>
2663
+ <dt>
2664
+ <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-UNDERLINE:CAPS" title="PANGO_TYPE_UNDERLINE">PANGO_TYPE_UNDERLINE</a>, macro in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2665
+ </dt>
2666
+ <dd></dd>
2667
+ <dt>
2668
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-VARIANT:CAPS" title="PANGO_TYPE_VARIANT">PANGO_TYPE_VARIANT</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2669
+ </dt>
2670
+ <dd></dd>
2671
+ <dt>
2672
+ <a class="link" href="pango-Fonts.html#PANGO-TYPE-WEIGHT:CAPS" title="PANGO_TYPE_WEIGHT">PANGO_TYPE_WEIGHT</a>, macro in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2673
+ </dt>
2674
+ <dd></dd>
2675
+ <dt>
2676
+ <a class="link" href="pango-Layout-Objects.html#PANGO-TYPE-WRAP-MODE:CAPS" title="PANGO_TYPE_WRAP_MODE">PANGO_TYPE_WRAP_MODE</a>, macro in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
2677
+ </dt>
2678
+ <dd></dd>
2679
+ <a name="idxU"></a><h3 class="title">U</h3>
2680
+ <dt>
2681
+ <a class="link" href="pango-Text-Attributes.html#PangoUnderline" title="enum PangoUnderline">PangoUnderline</a>, enum in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
2682
+ </dt>
2683
+ <dd></dd>
2684
+ <dt>
2685
+ <a class="link" href="pango-Bidirectional-Text.html#pango-unichar-direction" title="pango_unichar_direction ()">pango_unichar_direction</a>, function in <a class="link" href="pango-Bidirectional-Text.html" title="Bidirectional Text">Bidirectional Text</a>
2686
+ </dt>
2687
+ <dd></dd>
2688
+ <dt>
2689
+ <a class="link" href="pango-Glyph-Storage.html#pango-units-from-double" title="pango_units_from_double ()">pango_units_from_double</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2690
+ </dt>
2691
+ <dd></dd>
2692
+ <dt>
2693
+ <a class="link" href="pango-Glyph-Storage.html#PANGO-UNITS-ROUND:CAPS" title="PANGO_UNITS_ROUND()">PANGO_UNITS_ROUND</a>, macro in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2694
+ </dt>
2695
+ <dd></dd>
2696
+ <dt>
2697
+ <a class="link" href="pango-Glyph-Storage.html#pango-units-to-double" title="pango_units_to_double ()">pango_units_to_double</a>, function in <a class="link" href="pango-Glyph-Storage.html" title="Glyph Storage">Glyph Storage</a>
2698
+ </dt>
2699
+ <dd></dd>
2700
+ <a name="idxV"></a><h3 class="title">V</h3>
2701
+ <dt>
2702
+ <a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant">PangoVariant</a>, enum in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2703
+ </dt>
2704
+ <dd></dd>
2705
+ <dt>
2706
+ <a class="link" href="pango-Version-Checking.html#pango-version" title="pango_version ()">pango_version</a>, function in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2707
+ </dt>
2708
+ <dd></dd>
2709
+ <dt>
2710
+ <a class="link" href="pango-Version-Checking.html#PANGO-VERSION:CAPS" title="PANGO_VERSION">PANGO_VERSION</a>, macro in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2711
+ </dt>
2712
+ <dd></dd>
2713
+ <dt>
2714
+ <a class="link" href="pango-Version-Checking.html#PANGO-VERSION-CHECK:CAPS" title="PANGO_VERSION_CHECK()">PANGO_VERSION_CHECK</a>, macro in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2715
+ </dt>
2716
+ <dd></dd>
2717
+ <dt>
2718
+ <a class="link" href="pango-Version-Checking.html#pango-version-check" title="pango_version_check ()">pango_version_check</a>, function in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2719
+ </dt>
2720
+ <dd></dd>
2721
+ <dt>
2722
+ <a class="link" href="pango-Version-Checking.html#PANGO-VERSION-ENCODE:CAPS" title="PANGO_VERSION_ENCODE()">PANGO_VERSION_ENCODE</a>, macro in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2723
+ </dt>
2724
+ <dd></dd>
2725
+ <dt>
2726
+ <a class="link" href="pango-Version-Checking.html#PANGO-VERSION-MAJOR:CAPS" title="PANGO_VERSION_MAJOR">PANGO_VERSION_MAJOR</a>, macro in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2727
+ </dt>
2728
+ <dd></dd>
2729
+ <dt>
2730
+ <a class="link" href="pango-Version-Checking.html#PANGO-VERSION-MICRO:CAPS" title="PANGO_VERSION_MICRO">PANGO_VERSION_MICRO</a>, macro in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2731
+ </dt>
2732
+ <dd></dd>
2733
+ <dt>
2734
+ <a class="link" href="pango-Version-Checking.html#PANGO-VERSION-MINOR:CAPS" title="PANGO_VERSION_MINOR">PANGO_VERSION_MINOR</a>, macro in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2735
+ </dt>
2736
+ <dd></dd>
2737
+ <dt>
2738
+ <a class="link" href="pango-Version-Checking.html#pango-version-string" title="pango_version_string ()">pango_version_string</a>, function in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2739
+ </dt>
2740
+ <dd></dd>
2741
+ <dt>
2742
+ <a class="link" href="pango-Version-Checking.html#PANGO-VERSION-STRING:CAPS" title="PANGO_VERSION_STRING">PANGO_VERSION_STRING</a>, macro in <a class="link" href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
2743
+ </dt>
2744
+ <dd></dd>
2745
+ <a name="idxW"></a><h3 class="title">W</h3>
2746
+ <dt>
2747
+ <a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight">PangoWeight</a>, enum in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
2748
+ </dt>
2749
+ <dd></dd>
2750
+ <dt>
2751
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#PangoWin32FontCache" title="PangoWin32FontCache">PangoWin32FontCache</a>, struct in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2752
+ </dt>
2753
+ <dd></dd>
2754
+ <dt>
2755
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-free" title="pango_win32_font_cache_free ()">pango_win32_font_cache_free</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2756
+ </dt>
2757
+ <dd></dd>
2758
+ <dt>
2759
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-load" title="pango_win32_font_cache_load ()">pango_win32_font_cache_load</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2760
+ </dt>
2761
+ <dd></dd>
2762
+ <dt>
2763
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-loadw" title="pango_win32_font_cache_loadw ()">pango_win32_font_cache_loadw</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2764
+ </dt>
2765
+ <dd></dd>
2766
+ <dt>
2767
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-new" title="pango_win32_font_cache_new ()">pango_win32_font_cache_new</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2768
+ </dt>
2769
+ <dd></dd>
2770
+ <dt>
2771
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-cache-unload" title="pango_win32_font_cache_unload ()">pango_win32_font_cache_unload</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2772
+ </dt>
2773
+ <dd></dd>
2774
+ <dt>
2775
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-description-from-logfont" title="pango_win32_font_description_from_logfont ()">pango_win32_font_description_from_logfont</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2776
+ </dt>
2777
+ <dd></dd>
2778
+ <dt>
2779
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-description-from-logfontw" title="pango_win32_font_description_from_logfontw ()">pango_win32_font_description_from_logfontw</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2780
+ </dt>
2781
+ <dd></dd>
2782
+ <dt>
2783
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-done-font" title="pango_win32_font_done_font ()">pango_win32_font_done_font</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2784
+ </dt>
2785
+ <dd></dd>
2786
+ <dt>
2787
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-get-glyph-index" title="pango_win32_font_get_glyph_index ()">pango_win32_font_get_glyph_index</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2788
+ </dt>
2789
+ <dd></dd>
2790
+ <dt>
2791
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-get-metrics-factor" title="pango_win32_font_get_metrics_factor ()">pango_win32_font_get_metrics_factor</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2792
+ </dt>
2793
+ <dd></dd>
2794
+ <dt>
2795
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-logfont" title="pango_win32_font_logfont ()">pango_win32_font_logfont</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2796
+ </dt>
2797
+ <dd></dd>
2798
+ <dt>
2799
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-logfontw" title="pango_win32_font_logfontw ()">pango_win32_font_logfontw</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2800
+ </dt>
2801
+ <dd></dd>
2802
+ <dt>
2803
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-map-for-display" title="pango_win32_font_map_for_display ()">pango_win32_font_map_for_display</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2804
+ </dt>
2805
+ <dd></dd>
2806
+ <dt>
2807
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-map-get-font-cache" title="pango_win32_font_map_get_font_cache ()">pango_win32_font_map_get_font_cache</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2808
+ </dt>
2809
+ <dd></dd>
2810
+ <dt>
2811
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-font-select-font" title="pango_win32_font_select_font ()">pango_win32_font_select_font</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2812
+ </dt>
2813
+ <dd></dd>
2814
+ <dt>
2815
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-context" title="pango_win32_get_context ()">pango_win32_get_context</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2816
+ </dt>
2817
+ <dd></dd>
2818
+ <dt>
2819
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-dc" title="pango_win32_get_dc ()">pango_win32_get_dc</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2820
+ </dt>
2821
+ <dd></dd>
2822
+ <dt>
2823
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-debug-flag" title="pango_win32_get_debug_flag ()">pango_win32_get_debug_flag</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2824
+ </dt>
2825
+ <dd></dd>
2826
+ <dt>
2827
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-get-unknown-glyph" title="pango_win32_get_unknown_glyph ()">pango_win32_get_unknown_glyph</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2828
+ </dt>
2829
+ <dd></dd>
2830
+ <dt>
2831
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-render" title="pango_win32_render ()">pango_win32_render</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2832
+ </dt>
2833
+ <dd></dd>
2834
+ <dt>
2835
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-render-layout" title="pango_win32_render_layout ()">pango_win32_render_layout</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2836
+ </dt>
2837
+ <dd></dd>
2838
+ <dt>
2839
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-render-layout-line" title="pango_win32_render_layout_line ()">pango_win32_render_layout_line</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2840
+ </dt>
2841
+ <dd></dd>
2842
+ <dt>
2843
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-render-transformed" title="pango_win32_render_transformed ()">pango_win32_render_transformed</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2844
+ </dt>
2845
+ <dd></dd>
2846
+ <dt>
2847
+ <a class="link" href="pango-Win32-Fonts-and-Rendering.html#pango-win32-shutdown-display" title="pango_win32_shutdown_display ()">pango_win32_shutdown_display</a>, function in <a class="link" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">Win32 Fonts and Rendering</a>
2848
+ </dt>
2849
+ <dd></dd>
2850
+ <dt>
2851
+ <a class="link" href="pango-Layout-Objects.html#PangoWrapMode" title="enum PangoWrapMode">PangoWrapMode</a>, enum in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
2852
+ </dt>
2853
+ <dd></dd>
2854
+ <a name="idxX"></a><h3 class="title">X</h3>
2855
+ <dt>
2856
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFont-struct" title="PangoXftFont">PangoXftFont</a>, struct in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2857
+ </dt>
2858
+ <dd></dd>
2859
+ <dt>
2860
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFontMap-struct" title="PangoXftFontMap">PangoXftFontMap</a>, struct in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2861
+ </dt>
2862
+ <dd></dd>
2863
+ <dt>
2864
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer-struct" title="struct PangoXftRenderer">PangoXftRenderer</a>, struct in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2865
+ </dt>
2866
+ <dd></dd>
2867
+ <dt>
2868
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--display" title="The “display” property">PangoXftRenderer:display</a>, object property in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2869
+ </dt>
2870
+ <dd></dd>
2871
+ <dt>
2872
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--screen" title="The “screen” property">PangoXftRenderer:screen</a>, object property in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2873
+ </dt>
2874
+ <dd></dd>
2875
+ <dt>
2876
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRendererClass" title="struct PangoXftRendererClass">PangoXftRendererClass</a>, struct in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2877
+ </dt>
2878
+ <dd></dd>
2879
+ <dt>
2880
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftSubstituteFunc" title="PangoXftSubstituteFunc ()">PangoXftSubstituteFunc</a>, user_function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2881
+ </dt>
2882
+ <dd></dd>
2883
+ <dt>
2884
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-display" title="pango_xft_font_get_display ()">pango_xft_font_get_display</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2885
+ </dt>
2886
+ <dd></dd>
2887
+ <dt>
2888
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-font" title="pango_xft_font_get_font ()">pango_xft_font_get_font</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2889
+ </dt>
2890
+ <dd></dd>
2891
+ <dt>
2892
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-glyph" title="pango_xft_font_get_glyph ()">pango_xft_font_get_glyph</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2893
+ </dt>
2894
+ <dd></dd>
2895
+ <dt>
2896
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-unknown-glyph" title="pango_xft_font_get_unknown_glyph ()">pango_xft_font_get_unknown_glyph</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2897
+ </dt>
2898
+ <dd></dd>
2899
+ <dt>
2900
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-has-char" title="pango_xft_font_has_char ()">pango_xft_font_has_char</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2901
+ </dt>
2902
+ <dd></dd>
2903
+ <dt>
2904
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-lock-face" title="pango_xft_font_lock_face ()">pango_xft_font_lock_face</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2905
+ </dt>
2906
+ <dd></dd>
2907
+ <dt>
2908
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-unlock-face" title="pango_xft_font_unlock_face ()">pango_xft_font_unlock_face</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2909
+ </dt>
2910
+ <dd></dd>
2911
+ <dt>
2912
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-get-context" title="pango_xft_get_context ()">pango_xft_get_context</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2913
+ </dt>
2914
+ <dd></dd>
2915
+ <dt>
2916
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-get-font-map" title="pango_xft_get_font_map ()">pango_xft_get_font_map</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2917
+ </dt>
2918
+ <dd></dd>
2919
+ <dt>
2920
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-picture-render" title="pango_xft_picture_render ()">pango_xft_picture_render</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2921
+ </dt>
2922
+ <dd></dd>
2923
+ <dt>
2924
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render" title="pango_xft_render ()">pango_xft_render</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2925
+ </dt>
2926
+ <dd></dd>
2927
+ <dt>
2928
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-new" title="pango_xft_renderer_new ()">pango_xft_renderer_new</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2929
+ </dt>
2930
+ <dd></dd>
2931
+ <dt>
2932
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-set-default-color" title="pango_xft_renderer_set_default_color ()">pango_xft_renderer_set_default_color</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2933
+ </dt>
2934
+ <dd></dd>
2935
+ <dt>
2936
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-set-draw" title="pango_xft_renderer_set_draw ()">pango_xft_renderer_set_draw</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2937
+ </dt>
2938
+ <dd></dd>
2939
+ <dt>
2940
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-layout" title="pango_xft_render_layout ()">pango_xft_render_layout</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2941
+ </dt>
2942
+ <dd></dd>
2943
+ <dt>
2944
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-layout-line" title="pango_xft_render_layout_line ()">pango_xft_render_layout_line</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2945
+ </dt>
2946
+ <dd></dd>
2947
+ <dt>
2948
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-transformed" title="pango_xft_render_transformed ()">pango_xft_render_transformed</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2949
+ </dt>
2950
+ <dd></dd>
2951
+ <dt>
2952
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-set-default-substitute" title="pango_xft_set_default_substitute ()">pango_xft_set_default_substitute</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2953
+ </dt>
2954
+ <dd></dd>
2955
+ <dt>
2956
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-shutdown-display" title="pango_xft_shutdown_display ()">pango_xft_shutdown_display</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2957
+ </dt>
2958
+ <dd></dd>
2959
+ <dt>
2960
+ <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-substitute-changed" title="pango_xft_substitute_changed ()">pango_xft_substitute_changed</a>, function in <a class="link" href="pango-Xft-Fonts-and-Rendering.html" title="Xft Fonts and Rendering">Xft Fonts and Rendering</a>
2961
+ </dt>
2962
+ <dd></dd>
2963
+ </div>
2964
+ <div class="footer">
2965
+ <hr>
2966
+ Generated by GTK-Doc V1.21.1</div>
2967
+ </body>
2968
+ </html>