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,48 +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.12: 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-10.html" title="Index of new symbols in 1.10">
|
10
|
-
<link rel="next" href="api-index-1-14.html" title="Index of new symbols in 1.14">
|
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="#idxM">M</a>
|
17
|
-
<span class="dim">|</span>
|
18
|
-
<a class="shortcut" href="#idxQ">Q</a>
|
19
|
-
<span class="dim">|</span>
|
20
|
-
<a class="shortcut" href="#idxW">W</a></span></td>
|
21
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
|
-
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
23
|
-
<td><a accesskey="p" href="api-index-1-10.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
-
<td><a accesskey="n" href="api-index-1-14.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
25
|
-
</tr></table>
|
26
|
-
<div class="index">
|
27
|
-
<div class="titlepage"><div><div><h1 class="title">
|
28
|
-
<a name="api-index-1-12"></a>Index of new symbols in 1.12</h1></div></div></div>
|
29
|
-
<a name="idx"></a><a name="idxM"></a><h3 class="title">M</h3>
|
30
|
-
<dt>
|
31
|
-
<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>
|
32
|
-
</dt>
|
33
|
-
<dd></dd>
|
34
|
-
<a name="idxQ"></a><h3 class="title">Q</h3>
|
35
|
-
<dt>
|
36
|
-
<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>
|
37
|
-
</dt>
|
38
|
-
<dd></dd>
|
39
|
-
<a name="idxW"></a><h3 class="title">W</h3>
|
40
|
-
<dt>
|
41
|
-
<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>
|
42
|
-
</dt>
|
43
|
-
<dd></dd>
|
44
|
-
</div>
|
45
|
-
<div class="footer">
|
46
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
47
|
-
</body>
|
48
|
-
</html>
|
@@ -1,63 +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.14: 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-12.html" title="Index of new symbols in 1.12">
|
10
|
-
<link rel="next" href="api-index-1-16.html" title="Index of new symbols in 1.16">
|
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="#idxF">F</a>
|
19
|
-
<span class="dim">|</span>
|
20
|
-
<a class="shortcut" href="#idxG">G</a>
|
21
|
-
<span class="dim">|</span>
|
22
|
-
<a class="shortcut" href="#idxP">P</a></span></td>
|
23
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
24
|
-
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
25
|
-
<td><a accesskey="p" href="api-index-1-12.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
26
|
-
<td><a accesskey="n" href="api-index-1-16.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
27
|
-
</tr></table>
|
28
|
-
<div class="index">
|
29
|
-
<div class="titlepage"><div><div><h1 class="title">
|
30
|
-
<a name="api-index-1-14"></a>Index of new symbols in 1.14</h1></div></div></div>
|
31
|
-
<a name="idx"></a><a name="idxC"></a><h3 class="title">C</h3>
|
32
|
-
<dt>
|
33
|
-
<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>
|
34
|
-
</dt>
|
35
|
-
<dd></dd>
|
36
|
-
<dt>
|
37
|
-
<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>
|
38
|
-
</dt>
|
39
|
-
<dd></dd>
|
40
|
-
<a name="idxF"></a><h3 class="title">F</h3>
|
41
|
-
<dt>
|
42
|
-
<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>
|
43
|
-
</dt>
|
44
|
-
<dd></dd>
|
45
|
-
<a name="idxG"></a><h3 class="title">G</h3>
|
46
|
-
<dt>
|
47
|
-
<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>
|
48
|
-
</dt>
|
49
|
-
<dd></dd>
|
50
|
-
<a name="idxP"></a><h3 class="title">P</h3>
|
51
|
-
<dt>
|
52
|
-
<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>
|
53
|
-
</dt>
|
54
|
-
<dd></dd>
|
55
|
-
<dt>
|
56
|
-
<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>
|
57
|
-
</dt>
|
58
|
-
<dd></dd>
|
59
|
-
</div>
|
60
|
-
<div class="footer">
|
61
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
62
|
-
</body>
|
63
|
-
</html>
|
@@ -1,227 +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.16: 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-14.html" title="Index of new symbols in 1.14">
|
10
|
-
<link rel="next" href="api-index-1-18.html" title="Index of new symbols in 1.18">
|
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="#idxE">E</a>
|
21
|
-
<span class="dim">|</span>
|
22
|
-
<a class="shortcut" href="#idxF">F</a>
|
23
|
-
<span class="dim">|</span>
|
24
|
-
<a class="shortcut" href="#idxG">G</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="#idxU">U</a>
|
35
|
-
<span class="dim">|</span>
|
36
|
-
<a class="shortcut" href="#idxV">V</a>
|
37
|
-
<span class="dim">|</span>
|
38
|
-
<a class="shortcut" href="#idxW">W</a></span></td>
|
39
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
40
|
-
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
41
|
-
<td><a accesskey="p" href="api-index-1-14.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
42
|
-
<td><a accesskey="n" href="api-index-1-18.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
43
|
-
</tr></table>
|
44
|
-
<div class="index">
|
45
|
-
<div class="titlepage"><div><div><h1 class="title">
|
46
|
-
<a name="api-index-1-16"></a>Index of new symbols in 1.16</h1></div></div></div>
|
47
|
-
<a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
|
48
|
-
<dt>
|
49
|
-
<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>
|
50
|
-
</dt>
|
51
|
-
<dd></dd>
|
52
|
-
<dt>
|
53
|
-
<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>
|
54
|
-
</dt>
|
55
|
-
<dd></dd>
|
56
|
-
<dt>
|
57
|
-
<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>
|
58
|
-
</dt>
|
59
|
-
<dd></dd>
|
60
|
-
<a name="idxC"></a><h3 class="title">C</h3>
|
61
|
-
<dt>
|
62
|
-
<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>
|
63
|
-
</dt>
|
64
|
-
<dd></dd>
|
65
|
-
<dt>
|
66
|
-
<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>
|
67
|
-
</dt>
|
68
|
-
<dd></dd>
|
69
|
-
<dt>
|
70
|
-
<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>
|
71
|
-
</dt>
|
72
|
-
<dd></dd>
|
73
|
-
<dt>
|
74
|
-
<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>
|
75
|
-
</dt>
|
76
|
-
<dd></dd>
|
77
|
-
<dt>
|
78
|
-
<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>
|
79
|
-
</dt>
|
80
|
-
<dd></dd>
|
81
|
-
<dt>
|
82
|
-
<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>
|
83
|
-
</dt>
|
84
|
-
<dd></dd>
|
85
|
-
<a name="idxE"></a><h3 class="title">E</h3>
|
86
|
-
<dt>
|
87
|
-
<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>
|
88
|
-
</dt>
|
89
|
-
<dd></dd>
|
90
|
-
<a name="idxF"></a><h3 class="title">F</h3>
|
91
|
-
<dt>
|
92
|
-
<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>
|
93
|
-
</dt>
|
94
|
-
<dd></dd>
|
95
|
-
<dt>
|
96
|
-
<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>
|
97
|
-
</dt>
|
98
|
-
<dd></dd>
|
99
|
-
<a name="idxG"></a><h3 class="title">G</h3>
|
100
|
-
<dt>
|
101
|
-
<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>
|
102
|
-
</dt>
|
103
|
-
<dd></dd>
|
104
|
-
<dt>
|
105
|
-
<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>
|
106
|
-
</dt>
|
107
|
-
<dd></dd>
|
108
|
-
<dt>
|
109
|
-
<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>
|
110
|
-
</dt>
|
111
|
-
<dd></dd>
|
112
|
-
<dt>
|
113
|
-
<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>
|
114
|
-
</dt>
|
115
|
-
<dd></dd>
|
116
|
-
<dt>
|
117
|
-
<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>
|
118
|
-
</dt>
|
119
|
-
<dd></dd>
|
120
|
-
<dt>
|
121
|
-
<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>
|
122
|
-
</dt>
|
123
|
-
<dd></dd>
|
124
|
-
<a name="idxL"></a><h3 class="title">L</h3>
|
125
|
-
<dt>
|
126
|
-
<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>
|
127
|
-
</dt>
|
128
|
-
<dd></dd>
|
129
|
-
<dt>
|
130
|
-
<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>
|
131
|
-
</dt>
|
132
|
-
<dd></dd>
|
133
|
-
<dt>
|
134
|
-
<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>
|
135
|
-
</dt>
|
136
|
-
<dd></dd>
|
137
|
-
<dt>
|
138
|
-
<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>
|
139
|
-
</dt>
|
140
|
-
<dd></dd>
|
141
|
-
<dt>
|
142
|
-
<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>
|
143
|
-
</dt>
|
144
|
-
<dd></dd>
|
145
|
-
<dt>
|
146
|
-
<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>
|
147
|
-
</dt>
|
148
|
-
<dd></dd>
|
149
|
-
<dt>
|
150
|
-
<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>
|
151
|
-
</dt>
|
152
|
-
<dd></dd>
|
153
|
-
<dt>
|
154
|
-
<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>
|
155
|
-
</dt>
|
156
|
-
<dd></dd>
|
157
|
-
<a name="idxM"></a><h3 class="title">M</h3>
|
158
|
-
<dt>
|
159
|
-
<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>
|
160
|
-
</dt>
|
161
|
-
<dd></dd>
|
162
|
-
<dt>
|
163
|
-
<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>
|
164
|
-
</dt>
|
165
|
-
<dd></dd>
|
166
|
-
<dt>
|
167
|
-
<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>
|
168
|
-
</dt>
|
169
|
-
<dd></dd>
|
170
|
-
<dt>
|
171
|
-
<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>
|
172
|
-
</dt>
|
173
|
-
<dd></dd>
|
174
|
-
<a name="idxO"></a><h3 class="title">O</h3>
|
175
|
-
<dt>
|
176
|
-
<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>
|
177
|
-
</dt>
|
178
|
-
<dd></dd>
|
179
|
-
<dt>
|
180
|
-
<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>
|
181
|
-
</dt>
|
182
|
-
<dd></dd>
|
183
|
-
<a name="idxP"></a><h3 class="title">P</h3>
|
184
|
-
<dt>
|
185
|
-
<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>
|
186
|
-
</dt>
|
187
|
-
<dd></dd>
|
188
|
-
<a name="idxU"></a><h3 class="title">U</h3>
|
189
|
-
<dt>
|
190
|
-
<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>
|
191
|
-
</dt>
|
192
|
-
<dd></dd>
|
193
|
-
<dt>
|
194
|
-
<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>
|
195
|
-
</dt>
|
196
|
-
<dd></dd>
|
197
|
-
<a name="idxV"></a><h3 class="title">V</h3>
|
198
|
-
<dt>
|
199
|
-
<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>
|
200
|
-
</dt>
|
201
|
-
<dd></dd>
|
202
|
-
<dt>
|
203
|
-
<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>
|
204
|
-
</dt>
|
205
|
-
<dd></dd>
|
206
|
-
<dt>
|
207
|
-
<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>
|
208
|
-
</dt>
|
209
|
-
<dd></dd>
|
210
|
-
<a name="idxW"></a><h3 class="title">W</h3>
|
211
|
-
<dt>
|
212
|
-
<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>
|
213
|
-
</dt>
|
214
|
-
<dd></dd>
|
215
|
-
<dt>
|
216
|
-
<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>
|
217
|
-
</dt>
|
218
|
-
<dd></dd>
|
219
|
-
<dt>
|
220
|
-
<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>
|
221
|
-
</dt>
|
222
|
-
<dd></dd>
|
223
|
-
</div>
|
224
|
-
<div class="footer">
|
225
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
226
|
-
</body>
|
227
|
-
</html>
|
@@ -1,151 +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.18: 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-16.html" title="Index of new symbols in 1.16">
|
10
|
-
<link rel="next" href="api-index-1-20.html" title="Index of new symbols in 1.20">
|
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="#idxF">F</a>
|
19
|
-
<span class="dim">|</span>
|
20
|
-
<a class="shortcut" href="#idxO">O</a>
|
21
|
-
<span class="dim">|</span>
|
22
|
-
<a class="shortcut" href="#idxU">U</a></span></td>
|
23
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
24
|
-
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
25
|
-
<td><a accesskey="p" href="api-index-1-16.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
26
|
-
<td><a accesskey="n" href="api-index-1-20.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
27
|
-
</tr></table>
|
28
|
-
<div class="index">
|
29
|
-
<div class="titlepage"><div><div><h1 class="title">
|
30
|
-
<a name="api-index-1-18"></a>Index of new symbols in 1.18</h1></div></div></div>
|
31
|
-
<a name="idx"></a><a name="idxC"></a><h3 class="title">C</h3>
|
32
|
-
<dt>
|
33
|
-
<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>
|
34
|
-
</dt>
|
35
|
-
<dd></dd>
|
36
|
-
<dt>
|
37
|
-
<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>
|
38
|
-
</dt>
|
39
|
-
<dd></dd>
|
40
|
-
<dt>
|
41
|
-
<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>
|
42
|
-
</dt>
|
43
|
-
<dd></dd>
|
44
|
-
<dt>
|
45
|
-
<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>
|
46
|
-
</dt>
|
47
|
-
<dd></dd>
|
48
|
-
<dt>
|
49
|
-
<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>
|
50
|
-
</dt>
|
51
|
-
<dd></dd>
|
52
|
-
<dt>
|
53
|
-
<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>
|
54
|
-
</dt>
|
55
|
-
<dd></dd>
|
56
|
-
<a name="idxF"></a><h3 class="title">F</h3>
|
57
|
-
<dt>
|
58
|
-
<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>
|
59
|
-
</dt>
|
60
|
-
<dd></dd>
|
61
|
-
<a name="idxO"></a><h3 class="title">O</h3>
|
62
|
-
<dt>
|
63
|
-
<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>
|
64
|
-
</dt>
|
65
|
-
<dd></dd>
|
66
|
-
<dt>
|
67
|
-
<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>
|
68
|
-
</dt>
|
69
|
-
<dd></dd>
|
70
|
-
<dt>
|
71
|
-
<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>
|
72
|
-
</dt>
|
73
|
-
<dd></dd>
|
74
|
-
<dt>
|
75
|
-
<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>
|
76
|
-
</dt>
|
77
|
-
<dd></dd>
|
78
|
-
<dt>
|
79
|
-
<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>
|
80
|
-
</dt>
|
81
|
-
<dd></dd>
|
82
|
-
<dt>
|
83
|
-
<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>
|
84
|
-
</dt>
|
85
|
-
<dd></dd>
|
86
|
-
<dt>
|
87
|
-
<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>
|
88
|
-
</dt>
|
89
|
-
<dd></dd>
|
90
|
-
<dt>
|
91
|
-
<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>
|
92
|
-
</dt>
|
93
|
-
<dd></dd>
|
94
|
-
<dt>
|
95
|
-
<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>
|
96
|
-
</dt>
|
97
|
-
<dd></dd>
|
98
|
-
<dt>
|
99
|
-
<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>
|
100
|
-
</dt>
|
101
|
-
<dd></dd>
|
102
|
-
<dt>
|
103
|
-
<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>
|
104
|
-
</dt>
|
105
|
-
<dd></dd>
|
106
|
-
<dt>
|
107
|
-
<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>
|
108
|
-
</dt>
|
109
|
-
<dd></dd>
|
110
|
-
<dt>
|
111
|
-
<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>
|
112
|
-
</dt>
|
113
|
-
<dd></dd>
|
114
|
-
<dt>
|
115
|
-
<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>
|
116
|
-
</dt>
|
117
|
-
<dd></dd>
|
118
|
-
<dt>
|
119
|
-
<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>
|
120
|
-
</dt>
|
121
|
-
<dd></dd>
|
122
|
-
<dt>
|
123
|
-
<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>
|
124
|
-
</dt>
|
125
|
-
<dd></dd>
|
126
|
-
<dt>
|
127
|
-
<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>
|
128
|
-
</dt>
|
129
|
-
<dd></dd>
|
130
|
-
<dt>
|
131
|
-
<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>
|
132
|
-
</dt>
|
133
|
-
<dd></dd>
|
134
|
-
<dt>
|
135
|
-
<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>
|
136
|
-
</dt>
|
137
|
-
<dd></dd>
|
138
|
-
<dt>
|
139
|
-
<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>
|
140
|
-
</dt>
|
141
|
-
<dd></dd>
|
142
|
-
<a name="idxU"></a><h3 class="title">U</h3>
|
143
|
-
<dt>
|
144
|
-
<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>
|
145
|
-
</dt>
|
146
|
-
<dd></dd>
|
147
|
-
</div>
|
148
|
-
<div class="footer">
|
149
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
150
|
-
</body>
|
151
|
-
</html>
|