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
data/sample/glyphstring.rb
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
=begin
|
3
|
-
glyphstring.rb - Ruby/Pango sample script.
|
4
|
-
|
5
|
-
Copyright (c) 2002-2006 Ruby-GNOME2 Project Team
|
6
|
-
This program is licenced under the same licence as Ruby-GNOME2.
|
7
|
-
|
8
|
-
$Id: glyphstring.rb,v 1.3 2006/06/17 14:16:53 ktou Exp $
|
9
|
-
=end
|
10
|
-
|
11
|
-
require 'gtk2'
|
12
|
-
|
13
|
-
str = "Hello World"
|
14
|
-
|
15
|
-
lang = Pango::Language.new("ja_JP")
|
16
|
-
fd = Pango::FontDescription.new("Sans 18")
|
17
|
-
|
18
|
-
context = Gdk::Pango.context
|
19
|
-
context.language = lang
|
20
|
-
context.base_dir = Pango::DIRECTION_LTR
|
21
|
-
context.font_description = fd
|
22
|
-
|
23
|
-
p font = context.load_font(fd)
|
24
|
-
family = context.families[10]
|
25
|
-
puts "#{family.class}, #{family.name}"
|
26
|
-
|
27
|
-
family.faces.each do |face|
|
28
|
-
puts face.name
|
29
|
-
end
|
30
|
-
|
31
|
-
p fmap = font.font_map
|
32
|
-
|
33
|
-
p fset = fmap.load_fontset(context, fd, lang)
|
34
|
-
|
35
|
-
|
36
|
-
gs = Pango::GlyphString.new
|
37
|
-
|
38
|
-
ink_rect, logical_rect = gs.extents(font)
|
39
|
-
|
40
|
-
p ink_rect.to_a
|
41
|
-
p logical_rect.to_a
|
42
|
-
|
43
|
-
item = Pango::Item.new
|
44
|
-
item.analysis.font = font
|
45
|
-
item.analysis.shape_engine = font.find_shaper(lang, str.codepoints.first)
|
46
|
-
|
47
|
-
gs = Pango.shape(str, item.analysis)
|
48
|
-
|
49
|
-
ink_rect, logical_rect = gs.extents(font, 0, 11)
|
50
|
-
|
51
|
-
p ink_rect.to_a
|
52
|
-
p logical_rect.to_a
|
53
|
-
|
54
|
-
gs.glyphs.each do |info, log_clusters|
|
55
|
-
puts "Pango::GlyphInfo: log_clusters = #{log_clusters}, glyph = #{info.glyph}, geometry = #{info.geometry.inspect}, cluster_start? = #{info.cluster_start?}"
|
56
|
-
end
|
57
|
-
|
58
|
-
p gs.index_to_x(str, item.analysis, 3, false)
|
59
|
-
p gs.x_to_index(str, item.analysis, 103)
|
60
|
-
|
61
|
-
p logical_widths = gs.get_logical_widths(str, item.analysis.level)
|
data/sample/item.rb
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
|
3
|
-
=begin
|
4
|
-
item.rb - Ruby/Pango sample script.
|
5
|
-
|
6
|
-
Copyright (c) 2005 Ruby-GNOME2 Project
|
7
|
-
This program is licenced under the same licence as Ruby-GNOME2.
|
8
|
-
|
9
|
-
$Id: item.rb,v 1.3 2006/06/17 13:37:01 mutoh Exp $
|
10
|
-
=end
|
11
|
-
|
12
|
-
require 'gtk2'
|
13
|
-
|
14
|
-
str = "Ruby-GNOME2こんにちわ"
|
15
|
-
win = Gtk::Window.new("Ruby/Pango sample")
|
16
|
-
win.realize
|
17
|
-
|
18
|
-
p screen = Gdk::Screen.default
|
19
|
-
p context = Gdk::Pango.context(screen)
|
20
|
-
p attrlist = Pango::AttrList.new
|
21
|
-
|
22
|
-
p a = Pango::AttrBackground.new(65535, 0, 0)
|
23
|
-
|
24
|
-
attrlist.insert(Pango::AttrBackground.new(65535, 0,0))
|
25
|
-
|
26
|
-
attrs = [Pango::AttrBackground.new(65535, 0,0), Pango::AttrForeground.new(65535, 0,0)]
|
27
|
-
|
28
|
-
items = context.itemize(Pango::Context::DIRECTION_RTL, str, 0, 40, attrlist)
|
29
|
-
|
30
|
-
items.each do |v|
|
31
|
-
ana = v.analysis
|
32
|
-
puts "shape_engine = #{ana.shape_engine}, lang_engine = #{ana.lang_engine}, font = #{ana.font}, level = #{ana.level}"
|
33
|
-
puts "language = #{ana.language}"
|
34
|
-
p ana.font.get_glyph_extents("a".codepoints.first)[0].to_a
|
35
|
-
ana.set_extra_attrs(attrs)
|
36
|
-
p ana.extra_attrs
|
37
|
-
end
|
data/sample/label.rb
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
label.rb - Ruby/Pango sample script.
|
3
|
-
|
4
|
-
Copyright (c) 2002,2003 Ruby-GNOME2 Project Team
|
5
|
-
This program is licenced under the same licence as Ruby-GNOME2.
|
6
|
-
|
7
|
-
$Id: label.rb,v 1.4 2006/06/17 13:36:11 mutoh Exp $
|
8
|
-
=end
|
9
|
-
|
10
|
-
require 'gtk2'
|
11
|
-
|
12
|
-
str = File.read("sample.txt")
|
13
|
-
attrs, text, accel_char = Pango.parse_markup(str, '$')
|
14
|
-
|
15
|
-
#This is same as Gtk::Label#set_markup()
|
16
|
-
label = Gtk::Label.new(text)
|
17
|
-
label.attributes = attrs
|
18
|
-
|
19
|
-
win = Gtk::Window.new
|
20
|
-
win.signal_connect("destroy"){Gtk.main_quit}
|
21
|
-
win.add(label).show_all
|
22
|
-
|
23
|
-
Gtk.main
|
data/sample/layout.rb
DELETED
@@ -1,102 +0,0 @@
|
|
1
|
-
#!/usr/local/bin/ruby
|
2
|
-
=begin
|
3
|
-
layout.rb - Ruby/Pango sample script.
|
4
|
-
|
5
|
-
Copyright (c) 2005 Ruby-GNOME2 Project Team
|
6
|
-
This program is licenced under the same licence as Ruby-GNOME2.
|
7
|
-
|
8
|
-
$Id: layout.rb,v 1.2 2006/06/17 13:36:11 mutoh Exp $
|
9
|
-
=end
|
10
|
-
|
11
|
-
require 'gtk2'
|
12
|
-
require 'pp'
|
13
|
-
|
14
|
-
puts
|
15
|
-
puts "Start----------"
|
16
|
-
puts
|
17
|
-
str = File.read(File.join(__dir__, "sample.txt"))
|
18
|
-
context = Gdk::Pango.context
|
19
|
-
context.base_dir = Pango::Context::DIRECTION_LTR
|
20
|
-
context.language = Pango::Language.new("ja_JP")
|
21
|
-
fd = Pango::FontDescription.new("Sans 18")
|
22
|
-
font = context.load_font(fd)
|
23
|
-
font_map = context.font_map
|
24
|
-
|
25
|
-
p "context: #{context}"
|
26
|
-
p "font_desc: #{fd}"
|
27
|
-
p "font: #{font}"
|
28
|
-
p "font_map: #{font_map}"
|
29
|
-
|
30
|
-
puts
|
31
|
-
puts "Pango::Layout----------"
|
32
|
-
puts
|
33
|
-
p layout = Pango::Layout.new(context)
|
34
|
-
|
35
|
-
layout.set_markup(str)
|
36
|
-
layout.font_description = fd
|
37
|
-
layout.auto_dir = true
|
38
|
-
layout.alignment = Pango::Layout::ALIGN_LEFT
|
39
|
-
|
40
|
-
p "attributes: #{layout.attributes}"
|
41
|
-
p "font_description: #{layout.font_description}"
|
42
|
-
p "width: #{layout.width}"
|
43
|
-
p "wrap: #{layout.wrap}"
|
44
|
-
p "ellipsize: #{layout.ellipsize}"
|
45
|
-
p "indent: #{layout.indent}"
|
46
|
-
p "spacing: #{layout.spacing}"
|
47
|
-
p "justify?: #{layout.justify?}"
|
48
|
-
p "auto_dir?: #{layout.auto_dir?}"
|
49
|
-
p "alignment: #{layout.alignment.inspect}"
|
50
|
-
p "tabs: #{layout.tabs}"
|
51
|
-
p "single_paragraph_mode?: #{layout.single_paragraph_mode?}"
|
52
|
-
p "size: #{layout.size}"
|
53
|
-
p "pixel_size: #{layout.pixel_size}"
|
54
|
-
p "line_count: #{layout.line_count}"
|
55
|
-
|
56
|
-
puts "lines:"
|
57
|
-
pp layout.lines
|
58
|
-
|
59
|
-
puts
|
60
|
-
puts "Pango::LayoutIter--------"
|
61
|
-
puts
|
62
|
-
iter = layout.iter
|
63
|
-
p "iter: #{iter}"
|
64
|
-
p "index: #{iter.index}"
|
65
|
-
p "baseline: #{iter.baseline}"
|
66
|
-
p "line: #{iter.line}"
|
67
|
-
p "char_extents: #{iter.char_extents}"
|
68
|
-
p "cluster_extents: #{iter.cluster_extents}"
|
69
|
-
p "run_extents: #{iter.run_extents}"
|
70
|
-
p "layout_extents: #{iter.layout_extents}"
|
71
|
-
p "line_extents: #{iter.line_extents}"
|
72
|
-
p "line_yrange: #{iter.line_yrange}"
|
73
|
-
|
74
|
-
puts
|
75
|
-
puts "Pango::GlyphItem-------"
|
76
|
-
puts
|
77
|
-
glyph = iter.run
|
78
|
-
p "glyph: #{glyph}"
|
79
|
-
p "item: #{glyph.item}"
|
80
|
-
p "glyphs: #{glyph.glyphs}"
|
81
|
-
|
82
|
-
puts
|
83
|
-
puts "Pango::LayoutLine ----------"
|
84
|
-
puts
|
85
|
-
|
86
|
-
line = iter.line
|
87
|
-
|
88
|
-
p "line = #{line}"
|
89
|
-
p "extents: #{line.extents}"
|
90
|
-
p "pixel_extents: #{line.pixel_extents}"
|
91
|
-
p "index_to_x: #{line.index_to_x(1, true)}"
|
92
|
-
p "x_to_index: #{line.x_to_index(1)}"
|
93
|
-
p "x_ranges: #{line.get_x_ranges(0, 2)}"
|
94
|
-
p "layout: #{line.layout}"
|
95
|
-
p "start_index: #{line.start_index}"
|
96
|
-
p "length: #{line.length}"
|
97
|
-
p "paragraph_start?: #{line.paragraph_start?}"
|
98
|
-
p "resolved_dir: #{line.resolved_dir}"
|
99
|
-
puts "runs:"
|
100
|
-
pp line.runs
|
101
|
-
puts
|
102
|
-
puts "End----------"
|
data/sample/pango_cairo.rb
DELETED
@@ -1,66 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
cairo.rb - Ruby/Pango with cairo sample script.
|
3
|
-
|
4
|
-
Copyright (c) 2005 Ruby-GNOME2 Project
|
5
|
-
This program is licenced under the same licence as Ruby-GNOME2.
|
6
|
-
|
7
|
-
$Id: pango_cairo.rb,v 1.1 2005/10/15 07:57:52 mutoh Exp $
|
8
|
-
=end
|
9
|
-
|
10
|
-
require 'pango'
|
11
|
-
|
12
|
-
unless Pango.cairo_available?
|
13
|
-
STDERR.puts "This sample requires Pango 1.0.0 or later and cairo support"
|
14
|
-
exit 1
|
15
|
-
end
|
16
|
-
|
17
|
-
filename = ARGV.shift
|
18
|
-
filename ||= "cairo.png"
|
19
|
-
|
20
|
-
RADIUS = 150
|
21
|
-
N_WORDS = 10
|
22
|
-
FONT = "Sans Bold 27"
|
23
|
-
|
24
|
-
def draw_text(cr)
|
25
|
-
# Center coordinates on the middle of the region we are drawing
|
26
|
-
cr.translate(RADIUS, RADIUS);
|
27
|
-
|
28
|
-
# Create a PangoLayout, set the font and text
|
29
|
-
layout = cr.create_pango_layout
|
30
|
-
|
31
|
-
layout.set_text("Text")
|
32
|
-
desc = Pango::FontDescription.new(FONT)
|
33
|
-
layout.set_font_description(desc)
|
34
|
-
|
35
|
-
# Draw the layout N_WORDS times in a circle
|
36
|
-
N_WORDS.times do |i|
|
37
|
-
angle = (360.0 * i) / N_WORDS;
|
38
|
-
cr.save do
|
39
|
-
# Gradient from red at angle == 60 to blue at angle == 300
|
40
|
-
red = (1 + Math.cos((angle - 60) * Math::PI / 180.0)) / 2
|
41
|
-
cr.set_source_rgb(red, 0, 1.0 - red)
|
42
|
-
cr.rotate(angle * Math::PI / 180.0)
|
43
|
-
|
44
|
-
# Inform Pango to re-layout the text with the new transformation
|
45
|
-
cr.update_pango_layout(layout)
|
46
|
-
|
47
|
-
width, height = layout.size
|
48
|
-
cr.move_to(-(width.to_f / Pango::SCALE) / 2, -RADIUS)
|
49
|
-
cr.show_pango_layout(layout)
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
diameter = 2 * RADIUS
|
55
|
-
surface = Cairo::ImageSurface.new(Cairo::FORMAT_ARGB32, diameter, diameter)
|
56
|
-
cr = Cairo::Context.new(surface)
|
57
|
-
cr.set_source_rgb(1.0, 1.0, 1.0)
|
58
|
-
cr.rectangle(0, 0, diameter, diameter);
|
59
|
-
cr.fill
|
60
|
-
draw_text(cr)
|
61
|
-
|
62
|
-
File.open(filename, "wb") do |f|
|
63
|
-
cr.target.write_to_png(f)
|
64
|
-
end
|
65
|
-
# or
|
66
|
-
# cr.target.write_to_png(filename)
|
data/sample/parse.rb
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
=begin
|
3
|
-
parse.rb - Ruby/Pango sample script.
|
4
|
-
|
5
|
-
Copyright (c) 2002,2003 Ruby-GNOME2 Project Team
|
6
|
-
This program is licenced under the same licence as Ruby-GNOME2.
|
7
|
-
|
8
|
-
$Id: parse.rb,v 1.4 2005/03/22 17:41:29 silicio Exp $
|
9
|
-
=end
|
10
|
-
|
11
|
-
require 'pango'
|
12
|
-
|
13
|
-
str = File.read("sample.txt")
|
14
|
-
puts str
|
15
|
-
puts "------"
|
16
|
-
|
17
|
-
attr_list, text, accel_char = Pango.parse_markup(str, '$')
|
18
|
-
puts "attr_list = #{attr_list}"
|
19
|
-
puts "text = #{text}"
|
20
|
-
puts "accel_char = #{accel_char}"
|
21
|
-
puts "------"
|
22
|
-
|
23
|
-
iterator = attr_list.iterator
|
24
|
-
|
25
|
-
attr_list.each(text) do |iterator, text, start_pos, end_pos|
|
26
|
-
puts "range = #{start_pos}, #{end_pos}"
|
27
|
-
puts "text = #{text}"
|
28
|
-
iterator.get.each do |attr|
|
29
|
-
puts "#{attr} = #{attr.value}"
|
30
|
-
end
|
31
|
-
puts "---"
|
32
|
-
end
|
33
|
-
|
data/sample/sample.txt
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
<u><span foreground="red" size="x-large" style="italic"
|
2
|
-
lang="en">Hello World!</span></u> <span background="yellow" lang="ja"
|
3
|
-
font_desc="Sans Italic 20" stretch="normal">こんにちわ世界!</span>
|
4
|
-
|
5
|
-
<span size="xx-large" face="Serif" foreground="#006600" background="#ffffee">
|
6
|
-
<span size="larger" underline="double" weight="heavy">Ruby/Pango</span> <span
|
7
|
-
rise="10000" variant="normal" weight="heavy">$Ruby-GNOME2</span>
|
8
|
-
</span>
|
9
|
-
|
10
|
-
<span strikethrough="true" size="xx-large" style="oblique" foreground="blue">ABCDEF</span>
|
data/sample/script.rb
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
|
3
|
-
=begin
|
4
|
-
script.rb - Ruby/Pango sample script.
|
5
|
-
|
6
|
-
Copyright (c) 2005 Ruby-GNOME2 Project
|
7
|
-
This program is licenced under the same licence as Ruby-GNOME2.
|
8
|
-
|
9
|
-
$Id: script.rb,v 1.1 2005/09/17 17:09:12 mutoh Exp $
|
10
|
-
=end
|
11
|
-
|
12
|
-
require 'pango'
|
13
|
-
|
14
|
-
iter = Pango::ScriptIter.new("Helloこんにちはコンニチハ안녕하세요السلام عليكمΕλληνικάவணக்கம்")
|
15
|
-
begin
|
16
|
-
start_pos, end_pos, script = iter.range
|
17
|
-
puts "-----"
|
18
|
-
puts "start : #{start_pos}"
|
19
|
-
puts "end : #{end_pos}"
|
20
|
-
puts "script: #{script.nick}"
|
21
|
-
puts "sample_language: #{script.sample_language.to_s}"
|
22
|
-
end while iter.next!
|
23
|
-
|
@@ -1,134 +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.10: 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-8.html" title="Index of new symbols in 1.8">
|
10
|
-
<link rel="next" href="api-index-1-12.html" title="Index of new symbols in 1.12">
|
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="#idxI">I</a>
|
23
|
-
<span class="dim">|</span>
|
24
|
-
<a class="shortcut" href="#idxL">L</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-8.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
28
|
-
<td><a accesskey="n" href="api-index-1-12.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-10"></a>Index of new symbols in 1.10</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-list-ref" title="pango_attr_list_ref ()">pango_attr_list_ref</a>, function in <a class="link" href="pango-Text-Attributes.html" title="Text Attributes">Text Attributes</a>
|
36
|
-
</dt>
|
37
|
-
<dd></dd>
|
38
|
-
<a name="idxC"></a><h3 class="title">C</h3>
|
39
|
-
<dt>
|
40
|
-
<a class="link" href="pango-Cairo-Rendering.html#PangoCairoFontMap-struct" title="PangoCairoFontMap">PangoCairoFontMap</a>, struct in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
41
|
-
</dt>
|
42
|
-
<dd></dd>
|
43
|
-
<dt>
|
44
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-get-font-options" title="pango_cairo_context_get_font_options ()">pango_cairo_context_get_font_options</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
45
|
-
</dt>
|
46
|
-
<dd></dd>
|
47
|
-
<dt>
|
48
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-get-resolution" title="pango_cairo_context_get_resolution ()">pango_cairo_context_get_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
49
|
-
</dt>
|
50
|
-
<dd></dd>
|
51
|
-
<dt>
|
52
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-set-font-options" title="pango_cairo_context_set_font_options ()">pango_cairo_context_set_font_options</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
53
|
-
</dt>
|
54
|
-
<dd></dd>
|
55
|
-
<dt>
|
56
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-context-set-resolution" title="pango_cairo_context_set_resolution ()">pango_cairo_context_set_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
57
|
-
</dt>
|
58
|
-
<dd></dd>
|
59
|
-
<dt>
|
60
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-create-layout" title="pango_cairo_create_layout ()">pango_cairo_create_layout</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
61
|
-
</dt>
|
62
|
-
<dd></dd>
|
63
|
-
<dt>
|
64
|
-
<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>
|
65
|
-
</dt>
|
66
|
-
<dd></dd>
|
67
|
-
<dt>
|
68
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-get-default" title="pango_cairo_font_map_get_default ()">pango_cairo_font_map_get_default</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
69
|
-
</dt>
|
70
|
-
<dd></dd>
|
71
|
-
<dt>
|
72
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-get-resolution" title="pango_cairo_font_map_get_resolution ()">pango_cairo_font_map_get_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
73
|
-
</dt>
|
74
|
-
<dd></dd>
|
75
|
-
<dt>
|
76
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-new" title="pango_cairo_font_map_new ()">pango_cairo_font_map_new</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
77
|
-
</dt>
|
78
|
-
<dd></dd>
|
79
|
-
<dt>
|
80
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-font-map-set-resolution" title="pango_cairo_font_map_set_resolution ()">pango_cairo_font_map_set_resolution</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
81
|
-
</dt>
|
82
|
-
<dd></dd>
|
83
|
-
<dt>
|
84
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-glyph-string-path" title="pango_cairo_glyph_string_path ()">pango_cairo_glyph_string_path</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
85
|
-
</dt>
|
86
|
-
<dd></dd>
|
87
|
-
<dt>
|
88
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-layout-line-path" title="pango_cairo_layout_line_path ()">pango_cairo_layout_line_path</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
89
|
-
</dt>
|
90
|
-
<dd></dd>
|
91
|
-
<dt>
|
92
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-layout-path" title="pango_cairo_layout_path ()">pango_cairo_layout_path</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
93
|
-
</dt>
|
94
|
-
<dd></dd>
|
95
|
-
<dt>
|
96
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-glyph-string" title="pango_cairo_show_glyph_string ()">pango_cairo_show_glyph_string</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
97
|
-
</dt>
|
98
|
-
<dd></dd>
|
99
|
-
<dt>
|
100
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-layout" title="pango_cairo_show_layout ()">pango_cairo_show_layout</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
101
|
-
</dt>
|
102
|
-
<dd></dd>
|
103
|
-
<dt>
|
104
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-show-layout-line" title="pango_cairo_show_layout_line ()">pango_cairo_show_layout_line</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
105
|
-
</dt>
|
106
|
-
<dd></dd>
|
107
|
-
<dt>
|
108
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-update-context" title="pango_cairo_update_context ()">pango_cairo_update_context</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
109
|
-
</dt>
|
110
|
-
<dd></dd>
|
111
|
-
<dt>
|
112
|
-
<a class="link" href="pango-Cairo-Rendering.html#pango-cairo-update-layout" title="pango_cairo_update_layout ()">pango_cairo_update_layout</a>, function in <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo Rendering</a>
|
113
|
-
</dt>
|
114
|
-
<dd></dd>
|
115
|
-
<a name="idxF"></a><h3 class="title">F</h3>
|
116
|
-
<dt>
|
117
|
-
<a class="link" href="pango-Fonts.html#pango-font-get-font-map" title="pango_font_get_font_map ()">pango_font_get_font_map</a>, function in <a class="link" href="pango-Fonts.html" title="Fonts">Fonts</a>
|
118
|
-
</dt>
|
119
|
-
<dd></dd>
|
120
|
-
<a name="idxI"></a><h3 class="title">I</h3>
|
121
|
-
<dt>
|
122
|
-
<a class="link" href="pango-Miscellaneous-Utilities.html#pango-is-zero-width" title="pango_is_zero_width ()">pango_is_zero_width</a>, function in <a class="link" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">Miscellaneous Utilities</a>
|
123
|
-
</dt>
|
124
|
-
<dd></dd>
|
125
|
-
<a name="idxL"></a><h3 class="title">L</h3>
|
126
|
-
<dt>
|
127
|
-
<a class="link" href="pango-Layout-Objects.html#pango-layout-line-ref" title="pango_layout_line_ref ()">pango_layout_line_ref</a>, function in <a class="link" href="pango-Layout-Objects.html" title="Layout Objects">Layout Objects</a>
|
128
|
-
</dt>
|
129
|
-
<dd></dd>
|
130
|
-
</div>
|
131
|
-
<div class="footer">
|
132
|
-
<hr>Generated by GTK-Doc V1.25.1</div>
|
133
|
-
</body>
|
134
|
-
</html>
|