pango 3.1.1-x64-mingw32 → 3.1.2-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +27 -5
- data/ext/pango/depend +2 -2
- data/ext/pango/extconf.rb +32 -28
- data/ext/pango/pango.def +0 -16
- data/ext/pango/rb-pango-attr-list.c +64 -0
- data/ext/pango/rb-pango-attribute.c +147 -0
- data/ext/pango/rb-pango-context.c +79 -0
- data/ext/pango/{rbpangoconversions.h → rb-pango-conversions.h} +4 -6
- data/ext/pango/rb-pango-private.h +27 -0
- data/ext/pango/rb-pango.c +32 -0
- data/ext/pango/rb-pango.h +29 -0
- data/extconf.rb +25 -9
- data/lib/2.2/pango.so +0 -0
- data/lib/2.3/pango.so +0 -0
- data/lib/2.4/pango.so +0 -0
- data/lib/pango.rb +24 -68
- data/lib/pango/cairo-loader.rb +63 -0
- data/lib/pango/color.rb +31 -0
- data/lib/pango/deprecated.rb +37 -0
- data/lib/pango/font-description.rb +29 -0
- data/lib/pango/language.rb +29 -0
- data/lib/pango/layout.rb +41 -0
- data/lib/pango/loader.rb +87 -0
- data/lib/pango/markup.rb +31 -0
- data/lib/pango/matrix.rb +64 -0
- data/lib/pango/rectangle.rb +28 -0
- data/lib/pango/version.rb +30 -0
- data/test/pango-test-utils.rb +7 -7
- data/test/run-test.rb +34 -8
- data/test/test-attr-list.rb +28 -0
- data/test/test-color.rb +1 -3
- data/test/test-context.rb +4 -4
- data/test/test-enum.rb +37 -0
- data/test/test-font-description.rb +31 -0
- data/test/test-language.rb +2 -1
- data/test/test-layout.rb +12 -0
- data/test/test-markup.rb +30 -0
- data/test/test-matrix.rb +131 -5
- data/test/test-rectangle.rb +16 -3
- data/vendor/local/bin/derb.exe +0 -0
- data/vendor/local/bin/genbrk.exe +0 -0
- data/vendor/local/bin/genccode.exe +0 -0
- data/vendor/local/bin/gencfu.exe +0 -0
- data/vendor/local/bin/gencmn.exe +0 -0
- data/vendor/local/bin/gencnval.exe +0 -0
- data/vendor/local/bin/gendict.exe +0 -0
- data/vendor/local/bin/gennorm2.exe +0 -0
- data/vendor/local/bin/genrb.exe +0 -0
- data/vendor/local/bin/gensprep.exe +0 -0
- data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
- data/vendor/local/bin/hb-shape.exe +0 -0
- data/vendor/local/bin/hb-view.exe +0 -0
- data/vendor/local/bin/icuinfo.exe +0 -0
- data/vendor/local/bin/icupkg.exe +0 -0
- data/vendor/local/bin/libgraphene-1.0-0.dll +0 -0
- data/vendor/local/bin/libharfbuzz-0.dll +0 -0
- data/vendor/local/bin/libpango-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
- data/vendor/local/bin/makeconv.exe +0 -0
- data/vendor/local/bin/pango-view.exe +0 -0
- data/vendor/local/bin/pkgdata.exe +0 -0
- data/vendor/local/bin/uconv.exe +0 -0
- data/vendor/local/include/graphene-1.0/graphene-box.h +148 -0
- data/vendor/local/include/graphene-1.0/graphene-euler.h +140 -0
- data/vendor/local/include/graphene-1.0/graphene-frustum.h +93 -0
- data/vendor/local/include/graphene-1.0/graphene-gobject.h +119 -0
- data/vendor/local/include/graphene-1.0/graphene-macros.h +105 -0
- data/vendor/local/include/graphene-1.0/graphene-matrix.h +288 -0
- data/vendor/local/include/graphene-1.0/graphene-plane.h +99 -0
- data/vendor/local/include/graphene-1.0/graphene-point.h +120 -0
- data/vendor/local/include/graphene-1.0/graphene-point3d.h +140 -0
- data/vendor/local/include/graphene-1.0/graphene-quad.h +80 -0
- data/vendor/local/include/graphene-1.0/graphene-quaternion.h +136 -0
- data/vendor/local/include/graphene-1.0/graphene-ray.h +98 -0
- data/vendor/local/include/graphene-1.0/graphene-rect.h +180 -0
- data/vendor/local/include/graphene-1.0/graphene-simd4f.h +1870 -0
- data/vendor/local/include/graphene-1.0/graphene-simd4x4f.h +1045 -0
- data/vendor/local/include/graphene-1.0/graphene-size.h +105 -0
- data/vendor/local/include/graphene-1.0/graphene-sphere.h +97 -0
- data/vendor/local/include/graphene-1.0/graphene-triangle.h +105 -0
- data/vendor/local/include/graphene-1.0/graphene-types.h +88 -0
- data/vendor/local/include/graphene-1.0/graphene-vec2.h +130 -0
- data/vendor/local/include/graphene-1.0/graphene-vec3.h +155 -0
- data/vendor/local/include/graphene-1.0/graphene-vec4.h +156 -0
- data/vendor/local/include/graphene-1.0/graphene-version-macros.h +185 -0
- data/vendor/local/include/graphene-1.0/graphene-version.h +70 -0
- data/vendor/local/include/graphene-1.0/graphene.h +61 -0
- data/vendor/local/include/harfbuzz/hb-common.h +36 -0
- data/vendor/local/include/harfbuzz/hb-font.h +18 -1
- data/vendor/local/include/harfbuzz/hb-ot-var.h +105 -0
- data/vendor/local/include/harfbuzz/hb-ot.h +1 -0
- data/vendor/local/include/harfbuzz/hb-shape.h +0 -16
- data/vendor/local/include/harfbuzz/hb-version.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pango-engine.h +6 -6
- data/vendor/local/include/pango-1.0/pango/pango-features.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pango-layout.h +1 -1
- data/vendor/local/lib/girepository-1.0/Graphene-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
- data/vendor/local/lib/graphene-1.0/include/graphene-config.h +89 -0
- data/vendor/local/lib/icudt.dll +0 -0
- data/vendor/local/lib/icudt58.dll +0 -0
- data/vendor/local/lib/icuin.dll +0 -0
- data/vendor/local/lib/icuin58.dll +0 -0
- data/vendor/local/lib/icuio.dll +0 -0
- data/vendor/local/lib/icuio58.dll +0 -0
- data/vendor/local/lib/icutest.dll +0 -0
- data/vendor/local/lib/icutest58.dll +0 -0
- data/vendor/local/lib/icutu.dll +0 -0
- data/vendor/local/lib/icutu58.dll +0 -0
- data/vendor/local/lib/icuuc.dll +0 -0
- data/vendor/local/lib/icuuc58.dll +0 -0
- data/vendor/local/lib/libgraphene-1.0.dll.a +0 -0
- data/vendor/local/lib/libgraphene-1.0.la +41 -0
- data/vendor/local/lib/libharfbuzz-icu.a +0 -0
- data/vendor/local/lib/libharfbuzz-icu.la +1 -1
- data/vendor/local/lib/libharfbuzz.dll.a +0 -0
- data/vendor/local/lib/libharfbuzz.la +1 -1
- data/vendor/local/lib/libicudt.dll.a +0 -0
- data/vendor/local/lib/libicuin.dll.a +0 -0
- data/vendor/local/lib/libicuio.dll.a +0 -0
- data/vendor/local/lib/libicutest.dll.a +0 -0
- data/vendor/local/lib/libicutu.dll.a +0 -0
- data/vendor/local/lib/libicuuc.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.la +1 -1
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.la +1 -1
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.la +1 -1
- data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.la +1 -1
- data/vendor/local/lib/pkgconfig/graphene-1.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/graphene-gobject-1.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/harfbuzz-icu.pc +1 -1
- data/vendor/local/lib/pkgconfig/harfbuzz.pc +1 -1
- data/vendor/local/lib/pkgconfig/pango.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangocairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangoft2.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangowin32.pc +1 -1
- data/vendor/local/share/gir-1.0/Graphene-1.0.gir +8180 -0
- data/vendor/local/share/gir-1.0/Pango-1.0.gir +12 -16
- data/vendor/local/share/gtk-doc/html/graphene/annotation-glossary.html +57 -0
- data/vendor/local/share/gtk-doc/html/graphene/api-index.html +1985 -0
- data/vendor/local/share/gtk-doc/html/graphene/ch01.html +97 -0
- data/vendor/local/share/gtk-doc/html/graphene/deprecated-api-index.html +34 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Box.html +1252 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Euler.html +886 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Frustum.html +527 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-GObject-integration.html +147 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Matrix.html +2959 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Plane.html +641 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Point.html +689 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Point3D.html +916 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Quad.html +418 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Quaternion.html +1056 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Ray.html +596 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Rectangle.html +1483 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-SIMD-matrix.html +1475 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-SIMD-vector.html +3046 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Size.html +489 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Sphere.html +641 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Triangle.html +705 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Vectors.html +3715 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Versioning-information.html +104 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene.devhelp2 +534 -0
- data/vendor/local/share/gtk-doc/html/graphene/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/index.html +107 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix03.html +1313 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix04.html +582 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix05.html +151 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix06.html +34 -0
- data/vendor/local/share/gtk-doc/html/graphene/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/{pango/api-index-1-40.html → graphene/object-tree.html} +14 -11
- data/vendor/local/share/gtk-doc/html/graphene/rectangle-intersection.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/rectangle-union.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/rectangle.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/style.css +479 -0
- data/vendor/local/share/gtk-doc/html/graphene/triangle-barycentric.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-1-2-3.html +2 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/{api-index-1-4-0.html → api-index-1-3-3.html} +2 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +104 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +9 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-Shaping.html +1 -1
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +156 -40
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +73 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +1 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +49 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-math.html +174 -177
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +40 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +2 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +28 -10
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +1 -1
- data/vendor/local/share/gtk-doc/html/harfbuzz/pt02.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/PangoRenderer.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/index.html +2 -23
- data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +69 -69
- data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +5 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +5 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +8 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +4 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +3 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/rendering.html +1 -1
- data/vendor/local/share/man/man1/pango-view.1 +2 -2
- metadata +119 -78
- data/README +0 -32
- data/ext/pango/rbpango.c +0 -356
- data/ext/pango/rbpango.h +0 -95
- data/ext/pango/rbpangoanalysis.c +0 -218
- data/ext/pango/rbpangoattribute.c +0 -506
- data/ext/pango/rbpangoattriterator.c +0 -141
- data/ext/pango/rbpangoattrlist.c +0 -101
- data/ext/pango/rbpangocairo.c +0 -122
- data/ext/pango/rbpangocairocontext.c +0 -131
- data/ext/pango/rbpangocolor.c +0 -120
- data/ext/pango/rbpangocontext.c +0 -344
- data/ext/pango/rbpangocoverage.c +0 -106
- data/ext/pango/rbpangoengine.c +0 -73
- data/ext/pango/rbpangofont.c +0 -110
- data/ext/pango/rbpangofontdescription.c +0 -282
- data/ext/pango/rbpangofontface.c +0 -73
- data/ext/pango/rbpangofontfamily.c +0 -79
- data/ext/pango/rbpangofontmap.c +0 -102
- data/ext/pango/rbpangofontmetrics.c +0 -85
- data/ext/pango/rbpangofontset.c +0 -69
- data/ext/pango/rbpangofontsetsimple.c +0 -60
- data/ext/pango/rbpangoglyphinfo.c +0 -123
- data/ext/pango/rbpangoglyphitem.c +0 -125
- data/ext/pango/rbpangoglyphstring.c +0 -151
- data/ext/pango/rbpangogravity.c +0 -54
- data/ext/pango/rbpangoitem.c +0 -95
- data/ext/pango/rbpangolanguage.c +0 -94
- data/ext/pango/rbpangolayout.c +0 -583
- data/ext/pango/rbpangolayoutiter.c +0 -189
- data/ext/pango/rbpangolayoutline.c +0 -243
- data/ext/pango/rbpangologattr.c +0 -109
- data/ext/pango/rbpangomatrix.c +0 -143
- data/ext/pango/rbpangoprivate.h +0 -49
- data/ext/pango/rbpangorectangle.c +0 -170
- data/ext/pango/rbpangorenderer.c +0 -193
- data/ext/pango/rbpangoscript.c +0 -84
- data/ext/pango/rbpangoscriptiter.c +0 -92
- data/ext/pango/rbpangotabarray.c +0 -128
- data/sample/attribute.rb +0 -82
- data/sample/break.rb +0 -28
- data/sample/gdk_layout.rb +0 -27
- data/sample/glyphstring.rb +0 -61
- data/sample/item.rb +0 -37
- data/sample/label.rb +0 -23
- data/sample/layout.rb +0 -102
- data/sample/pango_cairo.rb +0 -66
- data/sample/parse.rb +0 -33
- data/sample/sample.txt +0 -10
- data/sample/script.rb +0 -23
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +0 -134
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +0 -48
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +0 -63
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +0 -227
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +0 -151
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +0 -121
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +0 -86
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +0 -123
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +0 -96
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +0 -45
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +0 -38
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +0 -38
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +0 -52
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +0 -41
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +0 -38
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-38.html +0 -79
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +0 -200
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +0 -164
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +0 -170
- data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +0 -441
@@ -1,164 +0,0 @@
|
|
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>Index of new symbols in 1.6: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.79.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="api-index-1-4.html" title="Index of new symbols in 1.4">
|
10
|
-
<link rel="next" href="api-index-1-8.html" title="Index of new symbols in 1.8">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.25.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="#idxC">C</a>
|
19
|
-
<span class="dim">|</span>
|
20
|
-
<a class="shortcut" href="#idxF">F</a>
|
21
|
-
<span class="dim">|</span>
|
22
|
-
<a class="shortcut" href="#idxG">G</a>
|
23
|
-
<span class="dim">|</span>
|
24
|
-
<a class="shortcut" href="#idxL">L</a>
|
25
|
-
<span class="dim">|</span>
|
26
|
-
<a class="shortcut" href="#idxM">M</a>
|
27
|
-
<span class="dim">|</span>
|
28
|
-
<a class="shortcut" href="#idxO">O</a></span></td>
|
29
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
30
|
-
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
31
|
-
<td><a accesskey="p" href="api-index-1-4.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
32
|
-
<td><a accesskey="n" href="api-index-1-8.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
33
|
-
</tr></table>
|
34
|
-
<div class="index">
|
35
|
-
<div class="titlepage"><div><div><h1 class="title">
|
36
|
-
<a name="api-index-1-6"></a>Index of new symbols in 1.6</h1></div></div></div>
|
37
|
-
<a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
|
38
|
-
<dt>
|
39
|
-
<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>
|
40
|
-
</dt>
|
41
|
-
<dd></dd>
|
42
|
-
<a name="idxC"></a><h3 class="title">C</h3>
|
43
|
-
<dt>
|
44
|
-
<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>
|
45
|
-
</dt>
|
46
|
-
<dd></dd>
|
47
|
-
<dt>
|
48
|
-
<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>
|
49
|
-
</dt>
|
50
|
-
<dd></dd>
|
51
|
-
<dt>
|
52
|
-
<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>
|
53
|
-
</dt>
|
54
|
-
<dd></dd>
|
55
|
-
<a name="idxF"></a><h3 class="title">F</h3>
|
56
|
-
<dt>
|
57
|
-
<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>
|
58
|
-
</dt>
|
59
|
-
<dd></dd>
|
60
|
-
<dt>
|
61
|
-
<a class="link" href="PangoFcDecoder.html#PangoFcDecoderClass" title="struct PangoFcDecoderClass">PangoFcDecoderClass</a>, struct in <a class="link" href="PangoFcDecoder.html" title="PangoFcDecoder">PangoFcDecoder</a>
|
62
|
-
</dt>
|
63
|
-
<dd></dd>
|
64
|
-
<dt>
|
65
|
-
<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>
|
66
|
-
</dt>
|
67
|
-
<dd></dd>
|
68
|
-
<dt>
|
69
|
-
<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>
|
70
|
-
</dt>
|
71
|
-
<dd></dd>
|
72
|
-
<dt>
|
73
|
-
<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>
|
74
|
-
</dt>
|
75
|
-
<dd></dd>
|
76
|
-
<dt>
|
77
|
-
<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>
|
78
|
-
</dt>
|
79
|
-
<dd></dd>
|
80
|
-
<dt>
|
81
|
-
<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>
|
82
|
-
</dt>
|
83
|
-
<dd></dd>
|
84
|
-
<dt>
|
85
|
-
<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>
|
86
|
-
</dt>
|
87
|
-
<dd></dd>
|
88
|
-
<dt>
|
89
|
-
<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>
|
90
|
-
</dt>
|
91
|
-
<dd></dd>
|
92
|
-
<dt>
|
93
|
-
<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>
|
94
|
-
</dt>
|
95
|
-
<dd></dd>
|
96
|
-
<dt>
|
97
|
-
<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>
|
98
|
-
</dt>
|
99
|
-
<dd></dd>
|
100
|
-
<dt>
|
101
|
-
<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>
|
102
|
-
</dt>
|
103
|
-
<dd></dd>
|
104
|
-
<a name="idxG"></a><h3 class="title">G</h3>
|
105
|
-
<dt>
|
106
|
-
<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>
|
107
|
-
</dt>
|
108
|
-
<dd></dd>
|
109
|
-
<dt>
|
110
|
-
<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>
|
111
|
-
</dt>
|
112
|
-
<dd></dd>
|
113
|
-
<a name="idxL"></a><h3 class="title">L</h3>
|
114
|
-
<dt>
|
115
|
-
<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>
|
116
|
-
</dt>
|
117
|
-
<dd></dd>
|
118
|
-
<dt>
|
119
|
-
<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>
|
120
|
-
</dt>
|
121
|
-
<dd></dd>
|
122
|
-
<a name="idxM"></a><h3 class="title">M</h3>
|
123
|
-
<dt>
|
124
|
-
<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>
|
125
|
-
</dt>
|
126
|
-
<dd></dd>
|
127
|
-
<dt>
|
128
|
-
<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>
|
129
|
-
</dt>
|
130
|
-
<dd></dd>
|
131
|
-
<dt>
|
132
|
-
<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>
|
133
|
-
</dt>
|
134
|
-
<dd></dd>
|
135
|
-
<dt>
|
136
|
-
<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>
|
137
|
-
</dt>
|
138
|
-
<dd></dd>
|
139
|
-
<dt>
|
140
|
-
<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>
|
141
|
-
</dt>
|
142
|
-
<dd></dd>
|
143
|
-
<dt>
|
144
|
-
<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>
|
145
|
-
</dt>
|
146
|
-
<dd></dd>
|
147
|
-
<dt>
|
148
|
-
<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>
|
149
|
-
</dt>
|
150
|
-
<dd></dd>
|
151
|
-
<dt>
|
152
|
-
<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>
|
153
|
-
</dt>
|
154
|
-
<dd></dd>
|
155
|
-
<a name="idxO"></a><h3 class="title">O</h3>
|
156
|
-
<dt>
|
157
|
-
<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>
|
158
|
-
</dt>
|
159
|
-
<dd></dd>
|
160
|
-
</div>
|
161
|
-
<div class="footer">
|
162
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
163
|
-
</body>
|
164
|
-
</html>
|
@@ -1,170 +0,0 @@
|
|
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>Index of new symbols in 1.8: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.79.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="api-index-1-6.html" title="Index of new symbols in 1.6">
|
10
|
-
<link rel="next" href="api-index-1-10.html" title="Index of new symbols in 1.10">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.25.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="#idxF">F</a>
|
19
|
-
<span class="dim">|</span>
|
20
|
-
<a class="shortcut" href="#idxL">L</a>
|
21
|
-
<span class="dim">|</span>
|
22
|
-
<a class="shortcut" href="#idxR">R</a>
|
23
|
-
<span class="dim">|</span>
|
24
|
-
<a class="shortcut" href="#idxX">X</a></span></td>
|
25
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
26
|
-
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
27
|
-
<td><a accesskey="p" href="api-index-1-6.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
28
|
-
<td><a accesskey="n" href="api-index-1-10.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
29
|
-
</tr></table>
|
30
|
-
<div class="index">
|
31
|
-
<div class="titlepage"><div><div><h1 class="title">
|
32
|
-
<a name="api-index-1-8"></a>Index of new symbols in 1.8</h1></div></div></div>
|
33
|
-
<a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
|
34
|
-
<dt>
|
35
|
-
<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>
|
36
|
-
</dt>
|
37
|
-
<dd></dd>
|
38
|
-
<dt>
|
39
|
-
<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>
|
40
|
-
</dt>
|
41
|
-
<dd></dd>
|
42
|
-
<dt>
|
43
|
-
<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>
|
44
|
-
</dt>
|
45
|
-
<dd></dd>
|
46
|
-
<dt>
|
47
|
-
<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>
|
48
|
-
</dt>
|
49
|
-
<dd></dd>
|
50
|
-
<a name="idxF"></a><h3 class="title">F</h3>
|
51
|
-
<dt>
|
52
|
-
<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>
|
53
|
-
</dt>
|
54
|
-
<dd></dd>
|
55
|
-
<dt>
|
56
|
-
<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>
|
57
|
-
</dt>
|
58
|
-
<dd></dd>
|
59
|
-
<a name="idxL"></a><h3 class="title">L</h3>
|
60
|
-
<dt>
|
61
|
-
<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>
|
62
|
-
</dt>
|
63
|
-
<dd></dd>
|
64
|
-
<a name="idxR"></a><h3 class="title">R</h3>
|
65
|
-
<dt>
|
66
|
-
<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>
|
67
|
-
</dt>
|
68
|
-
<dd></dd>
|
69
|
-
<dt>
|
70
|
-
<a class="link" href="PangoRenderer.html#PangoRendererClass" title="struct PangoRendererClass">PangoRendererClass</a>, struct in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
|
71
|
-
</dt>
|
72
|
-
<dd></dd>
|
73
|
-
<dt>
|
74
|
-
<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>
|
75
|
-
</dt>
|
76
|
-
<dd></dd>
|
77
|
-
<dt>
|
78
|
-
<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>
|
79
|
-
</dt>
|
80
|
-
<dd></dd>
|
81
|
-
<dt>
|
82
|
-
<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>
|
83
|
-
</dt>
|
84
|
-
<dd></dd>
|
85
|
-
<dt>
|
86
|
-
<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>
|
87
|
-
</dt>
|
88
|
-
<dd></dd>
|
89
|
-
<dt>
|
90
|
-
<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>
|
91
|
-
</dt>
|
92
|
-
<dd></dd>
|
93
|
-
<dt>
|
94
|
-
<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>
|
95
|
-
</dt>
|
96
|
-
<dd></dd>
|
97
|
-
<dt>
|
98
|
-
<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>
|
99
|
-
</dt>
|
100
|
-
<dd></dd>
|
101
|
-
<dt>
|
102
|
-
<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>
|
103
|
-
</dt>
|
104
|
-
<dd></dd>
|
105
|
-
<dt>
|
106
|
-
<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>
|
107
|
-
</dt>
|
108
|
-
<dd></dd>
|
109
|
-
<dt>
|
110
|
-
<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>
|
111
|
-
</dt>
|
112
|
-
<dd></dd>
|
113
|
-
<dt>
|
114
|
-
<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>
|
115
|
-
</dt>
|
116
|
-
<dd></dd>
|
117
|
-
<dt>
|
118
|
-
<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>
|
119
|
-
</dt>
|
120
|
-
<dd></dd>
|
121
|
-
<dt>
|
122
|
-
<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>
|
123
|
-
</dt>
|
124
|
-
<dd></dd>
|
125
|
-
<dt>
|
126
|
-
<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>
|
127
|
-
</dt>
|
128
|
-
<dd></dd>
|
129
|
-
<dt>
|
130
|
-
<a class="link" href="PangoRenderer.html#PangoRenderPart" title="enum PangoRenderPart">PangoRenderPart</a>, enum in <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
|
131
|
-
</dt>
|
132
|
-
<dd></dd>
|
133
|
-
<a name="idxX"></a><h3 class="title">X</h3>
|
134
|
-
<dt>
|
135
|
-
<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>
|
136
|
-
</dt>
|
137
|
-
<dd></dd>
|
138
|
-
<dt>
|
139
|
-
<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>
|
140
|
-
</dt>
|
141
|
-
<dd></dd>
|
142
|
-
<dt>
|
143
|
-
<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>
|
144
|
-
</dt>
|
145
|
-
<dd></dd>
|
146
|
-
<dt>
|
147
|
-
<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>
|
148
|
-
</dt>
|
149
|
-
<dd></dd>
|
150
|
-
<dt>
|
151
|
-
<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>
|
152
|
-
</dt>
|
153
|
-
<dd></dd>
|
154
|
-
<dt>
|
155
|
-
<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>
|
156
|
-
</dt>
|
157
|
-
<dd></dd>
|
158
|
-
<dt>
|
159
|
-
<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>
|
160
|
-
</dt>
|
161
|
-
<dd></dd>
|
162
|
-
<dt>
|
163
|
-
<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>
|
164
|
-
</dt>
|
165
|
-
<dd></dd>
|
166
|
-
</div>
|
167
|
-
<div class="footer">
|
168
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
169
|
-
</body>
|
170
|
-
</html>
|
@@ -1,441 +0,0 @@
|
|
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>Index of deprecated symbols: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.79.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="api-index-full.html" title="Index of all symbols">
|
10
|
-
<link rel="next" href="api-index-1-2.html" title="Index of new symbols in 1.2">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.25.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="#idxC">C</a>
|
17
|
-
<span class="dim">|</span>
|
18
|
-
<a class="shortcut" href="#idxE">E</a>
|
19
|
-
<span class="dim">|</span>
|
20
|
-
<a class="shortcut" href="#idxF">F</a>
|
21
|
-
<span class="dim">|</span>
|
22
|
-
<a class="shortcut" href="#idxG">G</a>
|
23
|
-
<span class="dim">|</span>
|
24
|
-
<a class="shortcut" href="#idxI">I</a>
|
25
|
-
<span class="dim">|</span>
|
26
|
-
<a class="shortcut" href="#idxL">L</a>
|
27
|
-
<span class="dim">|</span>
|
28
|
-
<a class="shortcut" href="#idxM">M</a>
|
29
|
-
<span class="dim">|</span>
|
30
|
-
<a class="shortcut" href="#idxO">O</a>
|
31
|
-
<span class="dim">|</span>
|
32
|
-
<a class="shortcut" href="#idxP">P</a>
|
33
|
-
<span class="dim">|</span>
|
34
|
-
<a class="shortcut" href="#idxR">R</a>
|
35
|
-
<span class="dim">|</span>
|
36
|
-
<a class="shortcut" href="#idxS">S</a>
|
37
|
-
<span class="dim">|</span>
|
38
|
-
<a class="shortcut" href="#idxT">T</a>
|
39
|
-
<span class="dim">|</span>
|
40
|
-
<a class="shortcut" href="#idxW">W</a>
|
41
|
-
<span class="dim">|</span>
|
42
|
-
<a class="shortcut" href="#idxX">X</a></span></td>
|
43
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
44
|
-
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
45
|
-
<td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
46
|
-
<td><a accesskey="n" href="api-index-1-2.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
47
|
-
</tr></table>
|
48
|
-
<div class="index">
|
49
|
-
<div class="titlepage"><div><div><h1 class="title">
|
50
|
-
<a name="api-index-deprecated"></a>Index of deprecated symbols</h1></div></div></div>
|
51
|
-
<a name="idx"></a><a name="idxC"></a><h3 class="title">C</h3>
|
52
|
-
<dt>
|
53
|
-
<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>
|
54
|
-
</dt>
|
55
|
-
<dd></dd>
|
56
|
-
<dt>
|
57
|
-
<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>
|
58
|
-
</dt>
|
59
|
-
<dd></dd>
|
60
|
-
<dt>
|
61
|
-
<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>
|
62
|
-
</dt>
|
63
|
-
<dd></dd>
|
64
|
-
<a name="idxE"></a><h3 class="title">E</h3>
|
65
|
-
<dt>
|
66
|
-
<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>
|
67
|
-
</dt>
|
68
|
-
<dd></dd>
|
69
|
-
<dt>
|
70
|
-
<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>
|
71
|
-
</dt>
|
72
|
-
<dd></dd>
|
73
|
-
<dt>
|
74
|
-
<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>
|
75
|
-
</dt>
|
76
|
-
<dd></dd>
|
77
|
-
<dt>
|
78
|
-
<a class="link" href="PangoEngineLang.html#PangoEngineLang-struct" title="PangoEngineLang">PangoEngineLang</a>, struct in <a class="link" href="PangoEngineLang.html" title="PangoEngineLang">PangoEngineLang</a>
|
79
|
-
</dt>
|
80
|
-
<dd></dd>
|
81
|
-
<dt>
|
82
|
-
<a class="link" href="PangoEngineLang.html#PangoEngineLangClass" title="struct PangoEngineLangClass">PangoEngineLangClass</a>, struct in <a class="link" href="PangoEngineLang.html" title="PangoEngineLang">PangoEngineLang</a>
|
83
|
-
</dt>
|
84
|
-
<dd></dd>
|
85
|
-
<dt>
|
86
|
-
<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>
|
87
|
-
</dt>
|
88
|
-
<dd></dd>
|
89
|
-
<dt>
|
90
|
-
<a class="link" href="PangoEngineShape.html#PangoEngineShape-struct" title="PangoEngineShape">PangoEngineShape</a>, struct in <a class="link" href="PangoEngineShape.html" title="PangoEngineShape">PangoEngineShape</a>
|
91
|
-
</dt>
|
92
|
-
<dd></dd>
|
93
|
-
<dt>
|
94
|
-
<a class="link" href="PangoEngineShape.html#PangoEngineShapeClass" title="struct PangoEngineShapeClass">PangoEngineShapeClass</a>, struct in <a class="link" href="PangoEngineShape.html" title="PangoEngineShape">PangoEngineShape</a>
|
95
|
-
</dt>
|
96
|
-
<dd></dd>
|
97
|
-
<dt>
|
98
|
-
<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>
|
99
|
-
</dt>
|
100
|
-
<dd></dd>
|
101
|
-
<dt>
|
102
|
-
<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>
|
103
|
-
</dt>
|
104
|
-
<dd></dd>
|
105
|
-
<dt>
|
106
|
-
<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>
|
107
|
-
</dt>
|
108
|
-
<dd></dd>
|
109
|
-
<dt>
|
110
|
-
<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>
|
111
|
-
</dt>
|
112
|
-
<dd></dd>
|
113
|
-
<a name="idxF"></a><h3 class="title">F</h3>
|
114
|
-
<dt>
|
115
|
-
<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>
|
116
|
-
</dt>
|
117
|
-
<dd></dd>
|
118
|
-
<dt>
|
119
|
-
<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>
|
120
|
-
</dt>
|
121
|
-
<dd></dd>
|
122
|
-
<dt>
|
123
|
-
<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>
|
124
|
-
</dt>
|
125
|
-
<dd></dd>
|
126
|
-
<dt>
|
127
|
-
<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>
|
128
|
-
</dt>
|
129
|
-
<dd></dd>
|
130
|
-
<dt>
|
131
|
-
<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>
|
132
|
-
</dt>
|
133
|
-
<dd></dd>
|
134
|
-
<dt>
|
135
|
-
<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>
|
136
|
-
</dt>
|
137
|
-
<dd></dd>
|
138
|
-
<dt>
|
139
|
-
<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>
|
140
|
-
</dt>
|
141
|
-
<dd></dd>
|
142
|
-
<dt>
|
143
|
-
<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>
|
144
|
-
</dt>
|
145
|
-
<dd></dd>
|
146
|
-
<dt>
|
147
|
-
<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>
|
148
|
-
</dt>
|
149
|
-
<dd></dd>
|
150
|
-
<dt>
|
151
|
-
<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>
|
152
|
-
</dt>
|
153
|
-
<dd></dd>
|
154
|
-
<dt>
|
155
|
-
<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>
|
156
|
-
</dt>
|
157
|
-
<dd></dd>
|
158
|
-
<dt>
|
159
|
-
<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>
|
160
|
-
</dt>
|
161
|
-
<dd></dd>
|
162
|
-
<dt>
|
163
|
-
<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>
|
164
|
-
</dt>
|
165
|
-
<dd></dd>
|
166
|
-
<a name="idxG"></a><h3 class="title">G</h3>
|
167
|
-
<dt>
|
168
|
-
<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>
|
169
|
-
</dt>
|
170
|
-
<dd></dd>
|
171
|
-
<dt>
|
172
|
-
<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>
|
173
|
-
</dt>
|
174
|
-
<dd></dd>
|
175
|
-
<dt>
|
176
|
-
<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>
|
177
|
-
</dt>
|
178
|
-
<dd></dd>
|
179
|
-
<a name="idxI"></a><h3 class="title">I</h3>
|
180
|
-
<dt>
|
181
|
-
<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>
|
182
|
-
</dt>
|
183
|
-
<dd></dd>
|
184
|
-
<a name="idxL"></a><h3 class="title">L</h3>
|
185
|
-
<dt>
|
186
|
-
<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>
|
187
|
-
</dt>
|
188
|
-
<dd></dd>
|
189
|
-
<a name="idxM"></a><h3 class="title">M</h3>
|
190
|
-
<dt>
|
191
|
-
<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>
|
192
|
-
</dt>
|
193
|
-
<dd></dd>
|
194
|
-
<dt>
|
195
|
-
<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>
|
196
|
-
</dt>
|
197
|
-
<dd></dd>
|
198
|
-
<dt>
|
199
|
-
<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>
|
200
|
-
</dt>
|
201
|
-
<dd></dd>
|
202
|
-
<a name="idxO"></a><h3 class="title">O</h3>
|
203
|
-
<dt>
|
204
|
-
<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>
|
205
|
-
</dt>
|
206
|
-
<dd></dd>
|
207
|
-
<dt>
|
208
|
-
<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>
|
209
|
-
</dt>
|
210
|
-
<dd></dd>
|
211
|
-
<dt>
|
212
|
-
<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>
|
213
|
-
</dt>
|
214
|
-
<dd></dd>
|
215
|
-
<dt>
|
216
|
-
<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>
|
217
|
-
</dt>
|
218
|
-
<dd></dd>
|
219
|
-
<dt>
|
220
|
-
<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>
|
221
|
-
</dt>
|
222
|
-
<dd></dd>
|
223
|
-
<dt>
|
224
|
-
<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>
|
225
|
-
</dt>
|
226
|
-
<dd></dd>
|
227
|
-
<dt>
|
228
|
-
<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>
|
229
|
-
</dt>
|
230
|
-
<dd></dd>
|
231
|
-
<dt>
|
232
|
-
<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>
|
233
|
-
</dt>
|
234
|
-
<dd></dd>
|
235
|
-
<dt>
|
236
|
-
<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>
|
237
|
-
</dt>
|
238
|
-
<dd></dd>
|
239
|
-
<dt>
|
240
|
-
<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>
|
241
|
-
</dt>
|
242
|
-
<dd></dd>
|
243
|
-
<dt>
|
244
|
-
<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>
|
245
|
-
</dt>
|
246
|
-
<dd></dd>
|
247
|
-
<dt>
|
248
|
-
<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>
|
249
|
-
</dt>
|
250
|
-
<dd></dd>
|
251
|
-
<dt>
|
252
|
-
<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>
|
253
|
-
</dt>
|
254
|
-
<dd></dd>
|
255
|
-
<dt>
|
256
|
-
<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>
|
257
|
-
</dt>
|
258
|
-
<dd></dd>
|
259
|
-
<dt>
|
260
|
-
<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>
|
261
|
-
</dt>
|
262
|
-
<dd></dd>
|
263
|
-
<dt>
|
264
|
-
<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>
|
265
|
-
</dt>
|
266
|
-
<dd></dd>
|
267
|
-
<dt>
|
268
|
-
<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>
|
269
|
-
</dt>
|
270
|
-
<dd></dd>
|
271
|
-
<dt>
|
272
|
-
<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>
|
273
|
-
</dt>
|
274
|
-
<dd></dd>
|
275
|
-
<dt>
|
276
|
-
<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>
|
277
|
-
</dt>
|
278
|
-
<dd></dd>
|
279
|
-
<dt>
|
280
|
-
<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>
|
281
|
-
</dt>
|
282
|
-
<dd></dd>
|
283
|
-
<dt>
|
284
|
-
<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>
|
285
|
-
</dt>
|
286
|
-
<dd></dd>
|
287
|
-
<dt>
|
288
|
-
<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>
|
289
|
-
</dt>
|
290
|
-
<dd></dd>
|
291
|
-
<dt>
|
292
|
-
<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>
|
293
|
-
</dt>
|
294
|
-
<dd></dd>
|
295
|
-
<dt>
|
296
|
-
<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>
|
297
|
-
</dt>
|
298
|
-
<dd></dd>
|
299
|
-
<dt>
|
300
|
-
<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>
|
301
|
-
</dt>
|
302
|
-
<dd></dd>
|
303
|
-
<dt>
|
304
|
-
<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>
|
305
|
-
</dt>
|
306
|
-
<dd></dd>
|
307
|
-
<dt>
|
308
|
-
<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>
|
309
|
-
</dt>
|
310
|
-
<dd></dd>
|
311
|
-
<dt>
|
312
|
-
<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>
|
313
|
-
</dt>
|
314
|
-
<dd></dd>
|
315
|
-
<dt>
|
316
|
-
<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>
|
317
|
-
</dt>
|
318
|
-
<dd></dd>
|
319
|
-
<dt>
|
320
|
-
<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>
|
321
|
-
</dt>
|
322
|
-
<dd></dd>
|
323
|
-
<dt>
|
324
|
-
<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>
|
325
|
-
</dt>
|
326
|
-
<dd></dd>
|
327
|
-
<dt>
|
328
|
-
<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>
|
329
|
-
</dt>
|
330
|
-
<dd></dd>
|
331
|
-
<dt>
|
332
|
-
<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>
|
333
|
-
</dt>
|
334
|
-
<dd></dd>
|
335
|
-
<a name="idxP"></a><h3 class="title">P</h3>
|
336
|
-
<dt>
|
337
|
-
<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>
|
338
|
-
</dt>
|
339
|
-
<dd></dd>
|
340
|
-
<a name="idxR"></a><h3 class="title">R</h3>
|
341
|
-
<dt>
|
342
|
-
<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>
|
343
|
-
</dt>
|
344
|
-
<dd></dd>
|
345
|
-
<dt>
|
346
|
-
<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>
|
347
|
-
</dt>
|
348
|
-
<dd></dd>
|
349
|
-
<dt>
|
350
|
-
<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>
|
351
|
-
</dt>
|
352
|
-
<dd></dd>
|
353
|
-
<dt>
|
354
|
-
<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>
|
355
|
-
</dt>
|
356
|
-
<dd></dd>
|
357
|
-
<a name="idxS"></a><h3 class="title">S</h3>
|
358
|
-
<dt>
|
359
|
-
<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>
|
360
|
-
</dt>
|
361
|
-
<dd></dd>
|
362
|
-
<dt>
|
363
|
-
<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>
|
364
|
-
</dt>
|
365
|
-
<dd></dd>
|
366
|
-
<dt>
|
367
|
-
<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>
|
368
|
-
</dt>
|
369
|
-
<dd></dd>
|
370
|
-
<dt>
|
371
|
-
<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>
|
372
|
-
</dt>
|
373
|
-
<dd></dd>
|
374
|
-
<dt>
|
375
|
-
<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>
|
376
|
-
</dt>
|
377
|
-
<dd></dd>
|
378
|
-
<dt>
|
379
|
-
<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>
|
380
|
-
</dt>
|
381
|
-
<dd></dd>
|
382
|
-
<dt>
|
383
|
-
<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>
|
384
|
-
</dt>
|
385
|
-
<dd></dd>
|
386
|
-
<dt>
|
387
|
-
<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>
|
388
|
-
</dt>
|
389
|
-
<dd></dd>
|
390
|
-
<dt>
|
391
|
-
<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>
|
392
|
-
</dt>
|
393
|
-
<dd></dd>
|
394
|
-
<a name="idxT"></a><h3 class="title">T</h3>
|
395
|
-
<dt>
|
396
|
-
<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>
|
397
|
-
</dt>
|
398
|
-
<dd></dd>
|
399
|
-
<a name="idxW"></a><h3 class="title">W</h3>
|
400
|
-
<dt>
|
401
|
-
<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>
|
402
|
-
</dt>
|
403
|
-
<dd></dd>
|
404
|
-
<dt>
|
405
|
-
<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>
|
406
|
-
</dt>
|
407
|
-
<dd></dd>
|
408
|
-
<dt>
|
409
|
-
<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>
|
410
|
-
</dt>
|
411
|
-
<dd></dd>
|
412
|
-
<a name="idxX"></a><h3 class="title">X</h3>
|
413
|
-
<dt>
|
414
|
-
<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>
|
415
|
-
</dt>
|
416
|
-
<dd></dd>
|
417
|
-
<dt>
|
418
|
-
<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>
|
419
|
-
</dt>
|
420
|
-
<dd></dd>
|
421
|
-
<dt>
|
422
|
-
<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>
|
423
|
-
</dt>
|
424
|
-
<dd></dd>
|
425
|
-
<dt>
|
426
|
-
<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>
|
427
|
-
</dt>
|
428
|
-
<dd></dd>
|
429
|
-
<dt>
|
430
|
-
<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>
|
431
|
-
</dt>
|
432
|
-
<dd></dd>
|
433
|
-
<dt>
|
434
|
-
<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>
|
435
|
-
</dt>
|
436
|
-
<dd></dd>
|
437
|
-
</div>
|
438
|
-
<div class="footer">
|
439
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
440
|
-
</body>
|
441
|
-
</html>
|