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
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>CoreText Fonts: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="rendering.html" title="Rendering with Pango">
|
9
9
|
<link rel="prev" href="pango-Cairo-Rendering.html" title="Cairo Rendering">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Coverage Maps: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="pango-OpenType-Font-Handling.html" title="OpenType Font Handling">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Engines: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="pango-Coverage-Maps.html" title="Coverage Maps">
|
@@ -138,6 +138,7 @@ script_engine_list (<em class="parameter"><code><a class="link" href="pango-Engi
|
|
138
138
|
<em class="parameter"><code><span class="type">int</span> *n_engines</code></em>);</pre>
|
139
139
|
<div class="warning"><p><code class="literal">script_engine_list</code> has been deprecated since version 1.38 and should not be used in newly-written code.</p></div>
|
140
140
|
<p>Do not use.</p>
|
141
|
+
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
141
142
|
<div class="refsect3">
|
142
143
|
<a name="script-engine-list.parameters"></a><h4>Parameters</h4>
|
143
144
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -169,6 +170,7 @@ script_engine_list (<em class="parameter"><code><a class="link" href="pango-Engi
|
|
169
170
|
script_engine_init (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html#GTypeModule-struct"><span class="type">GTypeModule</span></a> *module</code></em>);</pre>
|
170
171
|
<div class="warning"><p><code class="literal">script_engine_init</code> has been deprecated since version 1.38 and should not be used in newly-written code.</p></div>
|
171
172
|
<p>Do not use.</p>
|
173
|
+
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
172
174
|
<div class="refsect3">
|
173
175
|
<a name="script-engine-init.parameters"></a><h4>Parameters</h4>
|
174
176
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -193,6 +195,7 @@ GObject types created in this module with the module.</p></td>
|
|
193
195
|
script_engine_exit (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
194
196
|
<div class="warning"><p><code class="literal">script_engine_exit</code> has been deprecated since version 1.38 and should not be used in newly-written code.</p></div>
|
195
197
|
<p>Do not use.</p>
|
198
|
+
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
196
199
|
</div>
|
197
200
|
<hr>
|
198
201
|
<div class="refsect2">
|
@@ -201,6 +204,7 @@ script_engine_exit (<em class="parameter"><code><span class="type">void</span></
|
|
201
204
|
script_engine_create (<em class="parameter"><code>const <span class="type">char</span> *id</code></em>);</pre>
|
202
205
|
<div class="warning"><p><code class="literal">script_engine_create</code> has been deprecated since version 1.38 and should not be used in newly-written code.</p></div>
|
203
206
|
<p>Do not use.</p>
|
207
|
+
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
204
208
|
<div class="refsect3">
|
205
209
|
<a name="script-engine-create.parameters"></a><h4>Parameters</h4>
|
206
210
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Fonts: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Glyph-Storage.html" title="Glyph Storage">
|
@@ -2273,7 +2273,8 @@ language tag and character point.</p>
|
|
2273
2273
|
</div>
|
2274
2274
|
<div class="refsect3">
|
2275
2275
|
<a name="pango-font-find-shaper.returns"></a><h4>Returns</h4>
|
2276
|
-
<p> the best matching shaper
|
2276
|
+
<p> the best matching shaper. </p>
|
2277
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2277
2278
|
</div>
|
2278
2279
|
</div>
|
2279
2280
|
<hr>
|
@@ -2973,8 +2974,8 @@ to <a class="link" href="pango-Text-Processing.html#pango-context-new" title="pa
|
|
2973
2974
|
<p>If you are using Pango as part of a higher-level system,
|
2974
2975
|
that system may have it's own way of create a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>.
|
2975
2976
|
For instance, the GTK+ toolkit has, among others,
|
2976
|
-
<a href="http://developer.gnome.org/gdk3/
|
2977
|
-
<a href="http://developer.gnome.org/
|
2977
|
+
<a href="http://developer.gnome.org/gdk3/gdk4-Pango-Interaction.html#gdk-pango-context-get-for-screen"><code class="function">gdk_pango_context_get_for_screen()</code></a>, and
|
2978
|
+
<a href="http://developer.gnome.org/gtk4/GtkWidget.html#gtk-widget-get-pango-context"><code class="function">gtk_widget_get_pango_context()</code></a>. Use those instead.</p>
|
2978
2979
|
<div class="refsect3">
|
2979
2980
|
<a name="pango-font-map-create-context.parameters"></a><h4>Parameters</h4>
|
2980
2981
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>FreeType Fonts and Rendering: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="rendering.html" title="Rendering with Pango">
|
9
9
|
<link rel="prev" href="pango-Win32-Fonts-and-Rendering.html" title="Win32 Fonts and Rendering">
|
@@ -310,7 +310,9 @@ pango_ft2_font_map_create_context (<em class="parameter"><code><a class="link" h
|
|
310
310
|
</div>
|
311
311
|
<div class="refsect3">
|
312
312
|
<a name="pango-ft2-font-map-create-context.returns"></a><h4>Returns</h4>
|
313
|
-
<p> the newly created context; free with
|
313
|
+
<p> the newly created context; free with
|
314
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
|
315
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
314
316
|
</div>
|
315
317
|
<p class="since">Since: <a class="link" href="api-index-1-2.html#api-index-1.2">1.2</a></p>
|
316
318
|
</div>
|
@@ -461,7 +463,8 @@ for the default fontmap to <em class="parameter"><code>dpi_x</code></em>
|
|
461
463
|
</div>
|
462
464
|
<div class="refsect3">
|
463
465
|
<a name="pango-ft2-get-context.returns"></a><h4>Returns</h4>
|
464
|
-
<p> the new <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a
|
466
|
+
<p> the new <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>. </p>
|
467
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
465
468
|
</div>
|
466
469
|
</div>
|
467
470
|
<hr>
|
@@ -916,7 +919,8 @@ instead.</p>
|
|
916
919
|
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
917
920
|
<div class="refsect3">
|
918
921
|
<a name="pango-ft2-font-map-for-display.returns"></a><h4>Returns</h4>
|
919
|
-
<p> a <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2FontMap"><span class="type">PangoFT2FontMap</span></a
|
922
|
+
<p> a <a class="link" href="pango-FreeType-Fonts-and-Rendering.html#PangoFT2FontMap"><span class="type">PangoFT2FontMap</span></a>. </p>
|
923
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
920
924
|
</div>
|
921
925
|
</div>
|
922
926
|
<hr>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Glyph Storage: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Text-Processing.html" title="Rendering">
|
@@ -2358,8 +2358,8 @@ the identity transform.</p>
|
|
2358
2358
|
<tr>
|
2359
2359
|
<td class="listing_lines" align="right"><pre>1
|
2360
2360
|
2</pre></td>
|
2361
|
-
<td class="listing_code"><pre class="programlisting"
|
2362
|
-
<span class="function"><a href="pango-Glyph-Storage.html#pango-matrix-rotate">pango_matrix_rotate</a></span
|
2361
|
+
<td class="listing_code"><pre class="programlisting">PangoMatrix matrix <span class="gtkdoc opt">=</span> PANGO_MATRIX_INIT<span class="gtkdoc opt">;</span>
|
2362
|
+
<span class="function"><a href="pango-Glyph-Storage.html#pango-matrix-rotate">pango_matrix_rotate</a></span> <span class="gtkdoc opt">(&</span>matrix<span class="gtkdoc opt">,</span> <span class="number">45</span><span class="gtkdoc opt">.);</span></pre></td>
|
2363
2363
|
</tr>
|
2364
2364
|
</tbody>
|
2365
2365
|
</table>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Layout Objects: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="PangoMarkupFormat.html" title="Text Attribute Markup">
|
@@ -2619,12 +2619,12 @@ is simply a convenience function around <a class="link" href="pango-Layout-Objec
|
|
2619
2619
|
<tr>
|
2620
2620
|
<td class="parameter_name"><p>width</p></td>
|
2621
2621
|
<td class="parameter_description"><p> location to store the logical width, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
2622
|
-
<td class="parameter_annotations"><span class="annotation">[<acronym title="
|
2622
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2623
2623
|
</tr>
|
2624
2624
|
<tr>
|
2625
2625
|
<td class="parameter_name"><p>height</p></td>
|
2626
2626
|
<td class="parameter_description"><p> location to store the logical height, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
2627
|
-
<td class="parameter_annotations"><span class="annotation">[<acronym title="
|
2627
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2628
2628
|
</tr>
|
2629
2629
|
</tbody>
|
2630
2630
|
</table></div>
|
@@ -4091,7 +4091,7 @@ code specific to each rendering system.</p>
|
|
4091
4091
|
<td class="struct_member_name"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="type">GSList</span></a> *<em class="structfield"><code><a name="PangoLayoutLine-struct.runs"></a>runs</code></em>;</p></td>
|
4092
4092
|
<td class="struct_member_description"><p> list of runs in the
|
4093
4093
|
line, from left to right. </p></td>
|
4094
|
-
<td class="struct_member_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym>]</span></td>
|
4094
|
+
<td class="struct_member_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> Pango.LayoutRun]</span></td>
|
4095
4095
|
</tr>
|
4096
4096
|
<tr>
|
4097
4097
|
<td class="struct_member_name"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoLayoutLine-struct.is-paragraph-start"></a>is_paragraph_start</code></em> : 1;</p></td>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Miscellaneous Utilities: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="pango-Modules.html" title="Modules">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Modules: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="PangoEngineShape.html" title="PangoEngineShape">
|
@@ -152,6 +152,7 @@ pango_map_get_engine (<em class="parameter"><code><a class="link" href="pango-Mo
|
|
152
152
|
<em class="parameter"><code><a class="link" href="pango-Scripts-and-Languages.html#PangoScript" title="enum PangoScript"><span class="type">PangoScript</span></a> script</code></em>);</pre>
|
153
153
|
<div class="warning"><p><code class="literal">pango_map_get_engine</code> has been deprecated since version 1.38 and should not be used in newly-written code.</p></div>
|
154
154
|
<p>Do not use. Does not do anything.</p>
|
155
|
+
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
155
156
|
<div class="refsect3">
|
156
157
|
<a name="pango-map-get-engine.parameters"></a><h4>Parameters</h4>
|
157
158
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -189,6 +190,7 @@ pango_map_get_engines (<em class="parameter"><code><a class="link" href="pango-M
|
|
189
190
|
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="type">GSList</span></a> **fallback_engines</code></em>);</pre>
|
190
191
|
<div class="warning"><p><code class="literal">pango_map_get_engines</code> has been deprecated since version 1.38 and should not be used in newly-written code.</p></div>
|
191
192
|
<p>Do not use. Does not do anything.</p>
|
193
|
+
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
192
194
|
<div class="refsect3">
|
193
195
|
<a name="pango-map-get-engines.parameters"></a><h4>Parameters</h4>
|
194
196
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>OpenType Font Handling: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="PangoFcDecoder.html" title="PangoFcDecoder">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Scripts and Languages: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Layout-Objects.html" title="Layout Objects">
|
@@ -675,7 +675,7 @@ variables, and does return a Unix-style locale string based on
|
|
675
675
|
either said environment variables or the thread's current locale.</p>
|
676
676
|
<p>Your application should call <code class="literal">setlocale(LC_ALL, "");</code>
|
677
677
|
for the user settings to take effect. Gtk+ does this in its initialization
|
678
|
-
functions automatically (by calling <
|
678
|
+
functions automatically (by calling <code class="function">gtk_set_locale()</code>).
|
679
679
|
See <code class="literal">man setlocale</code> for more details.</p>
|
680
680
|
<div class="refsect3">
|
681
681
|
<a name="pango-language-get-default.returns"></a><h4>Returns</h4>
|
@@ -709,7 +709,7 @@ language code "xx". That is, compare to:</p>
|
|
709
709
|
<tbody>
|
710
710
|
<tr>
|
711
711
|
<td class="listing_lines" align="right"><pre>1</pre></td>
|
712
|
-
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="pango-Scripts-and-Languages.html#pango-language-get-sample-string">pango_language_get_sample_string</a></span
|
712
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="pango-Scripts-and-Languages.html#pango-language-get-sample-string">pango_language_get_sample_string</a></span> <span class="gtkdoc opt">(</span><span class="function"><a href="pango-Scripts-and-Languages.html#pango-language-from-string">pango_language_from_string</a></span> <span class="gtkdoc opt">(</span><span class="string">"xx"</span><span class="gtkdoc opt">))</span></pre></td>
|
713
713
|
</tr>
|
714
714
|
</tbody>
|
715
715
|
</table>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Tab Stops: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Text-Attributes.html" title="Text Attributes">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Text Attributes: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Fonts.html" title="Fonts">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Rendering: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango.html" title="Basic Pango Interfaces">
|
@@ -708,8 +708,8 @@ together and hence users are recommended to use that.</p>
|
|
708
708
|
<p>If you are using Pango as part of a higher-level system,
|
709
709
|
that system may have it's own way of create a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>.
|
710
710
|
For instance, the GTK+ toolkit has, among others,
|
711
|
-
<a href="http://developer.gnome.org/gdk3/
|
712
|
-
<a href="http://developer.gnome.org/
|
711
|
+
<a href="http://developer.gnome.org/gdk3/gdk4-Pango-Interaction.html#gdk-pango-context-get-for-screen"><code class="function">gdk_pango_context_get_for_screen()</code></a>, and
|
712
|
+
<a href="http://developer.gnome.org/gtk4/GtkWidget.html#gtk-widget-get-pango-context"><code class="function">gtk_widget_get_pango_context()</code></a>. Use those instead.</p>
|
713
713
|
<div class="refsect3">
|
714
714
|
<a name="pango-context-new.returns"></a><h4>Returns</h4>
|
715
715
|
<p> the newly allocated <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>, which should
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Version Checking: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="lowlevel.html" title="Low Level Functionality">
|
9
9
|
<link rel="prev" href="pango-Miscellaneous-Utilities.html" title="Miscellaneous Utilities">
|
@@ -387,14 +387,14 @@ be modified or freed. </p>
|
|
387
387
|
<hr>
|
388
388
|
<div class="refsect2">
|
389
389
|
<a name="PANGO-VERSION-MICRO:CAPS"></a><h3>PANGO_VERSION_MICRO</h3>
|
390
|
-
<pre class="programlisting">#define PANGO_VERSION_MICRO
|
390
|
+
<pre class="programlisting">#define PANGO_VERSION_MICRO 5
|
391
391
|
</pre>
|
392
392
|
<p>The micro component of the version of Pango available at compile-time.</p>
|
393
393
|
</div>
|
394
394
|
<hr>
|
395
395
|
<div class="refsect2">
|
396
396
|
<a name="PANGO-VERSION-STRING:CAPS"></a><h3>PANGO_VERSION_STRING</h3>
|
397
|
-
<pre class="programlisting">#define PANGO_VERSION_STRING "1.40.
|
397
|
+
<pre class="programlisting">#define PANGO_VERSION_STRING "1.40.5"
|
398
398
|
</pre>
|
399
399
|
<p>A string literal containing the version of Pango available at compile-time.</p>
|
400
400
|
</div>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Vertical Text: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
9
|
<link rel="prev" href="pango-Bidirectional-Text.html" title="Bidirectional Text">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Win32 Fonts and Rendering: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="rendering.html" title="Rendering with Pango">
|
9
9
|
<link rel="prev" href="rendering.html" title="Rendering with Pango">
|
@@ -409,7 +409,7 @@ and TA_LEFT.</p>
|
|
409
409
|
<tbody>
|
410
410
|
<tr>
|
411
411
|
<td class="parameter_name"><p>hdc</p></td>
|
412
|
-
<td class="parameter_description"><p>DC to use for
|
412
|
+
<td class="parameter_description"><p>DC to use for drawing</p></td>
|
413
413
|
<td class="parameter_annotations"> </td>
|
414
414
|
</tr>
|
415
415
|
<tr>
|
@@ -451,7 +451,7 @@ pango_win32_render_layout (<em class="parameter"><code><span class="type">HDC</s
|
|
451
451
|
<tbody>
|
452
452
|
<tr>
|
453
453
|
<td class="parameter_name"><p>hdc</p></td>
|
454
|
-
<td class="parameter_description"><p>HDC to use for
|
454
|
+
<td class="parameter_description"><p>HDC to use for drawing</p></td>
|
455
455
|
<td class="parameter_annotations"> </td>
|
456
456
|
</tr>
|
457
457
|
<tr>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Xft Fonts and Rendering: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="rendering.html" title="Rendering with Pango">
|
9
9
|
<link rel="prev" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Object Hierarchy: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="pango-Version-Checking.html" title="Version Checking">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Basic Pango Interfaces: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="index.html" title="Pango Reference Manual">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>Rendering with Pango: Pango Reference Manual</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
7
7
|
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
8
|
<link rel="up" href="index.html" title="Pango Reference Manual">
|
9
9
|
<link rel="prev" href="pango-Vertical-Text.html" title="Vertical Text">
|
@@ -1,11 +1,11 @@
|
|
1
1
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
|
2
|
-
.TH PANGO-VIEW "1" "
|
2
|
+
.TH PANGO-VIEW "1" "April 2017" "pango-view (pango) 1.40.5" "User Commands"
|
3
3
|
.SH NAME
|
4
4
|
pango-view \- Pango text viewer
|
5
5
|
.SH DESCRIPTION
|
6
6
|
.SS "Usage:"
|
7
7
|
.IP
|
8
|
-
pango\-view [OPTION
|
8
|
+
pango\-view [OPTION�\&.�] \- FILE
|
9
9
|
.SS "Help Options:"
|
10
10
|
.TP
|
11
11
|
\fB\-h\fR, \fB\-\-help\fR
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pango
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.2
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cairo
|
@@ -25,93 +25,79 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 1.14.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: cairo-gobject
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.1.
|
33
|
+
version: 3.1.2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.1.
|
40
|
+
version: 3.1.2
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: gobject-introspection
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.1.2
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.1.2
|
41
55
|
description: Ruby/Pango is a Ruby binding of pango-1.x.
|
42
56
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
43
57
|
executables: []
|
44
58
|
extensions: []
|
45
59
|
extra_rdoc_files: []
|
46
60
|
files:
|
47
|
-
- README
|
48
61
|
- Rakefile
|
49
62
|
- ext/pango/depend
|
50
63
|
- ext/pango/extconf.rb
|
51
64
|
- ext/pango/pango.def
|
52
|
-
- ext/pango/
|
53
|
-
- ext/pango/
|
54
|
-
- ext/pango/
|
55
|
-
- ext/pango/
|
56
|
-
- ext/pango/
|
57
|
-
- ext/pango/
|
58
|
-
- ext/pango/
|
59
|
-
- ext/pango/rbpangocairocontext.c
|
60
|
-
- ext/pango/rbpangocolor.c
|
61
|
-
- ext/pango/rbpangocontext.c
|
62
|
-
- ext/pango/rbpangoconversions.h
|
63
|
-
- ext/pango/rbpangocoverage.c
|
64
|
-
- ext/pango/rbpangoengine.c
|
65
|
-
- ext/pango/rbpangofont.c
|
66
|
-
- ext/pango/rbpangofontdescription.c
|
67
|
-
- ext/pango/rbpangofontface.c
|
68
|
-
- ext/pango/rbpangofontfamily.c
|
69
|
-
- ext/pango/rbpangofontmap.c
|
70
|
-
- ext/pango/rbpangofontmetrics.c
|
71
|
-
- ext/pango/rbpangofontset.c
|
72
|
-
- ext/pango/rbpangofontsetsimple.c
|
73
|
-
- ext/pango/rbpangoglyphinfo.c
|
74
|
-
- ext/pango/rbpangoglyphitem.c
|
75
|
-
- ext/pango/rbpangoglyphstring.c
|
76
|
-
- ext/pango/rbpangogravity.c
|
77
|
-
- ext/pango/rbpangoitem.c
|
78
|
-
- ext/pango/rbpangolanguage.c
|
79
|
-
- ext/pango/rbpangolayout.c
|
80
|
-
- ext/pango/rbpangolayoutiter.c
|
81
|
-
- ext/pango/rbpangolayoutline.c
|
82
|
-
- ext/pango/rbpangologattr.c
|
83
|
-
- ext/pango/rbpangomatrix.c
|
84
|
-
- ext/pango/rbpangoprivate.h
|
85
|
-
- ext/pango/rbpangorectangle.c
|
86
|
-
- ext/pango/rbpangorenderer.c
|
87
|
-
- ext/pango/rbpangoscript.c
|
88
|
-
- ext/pango/rbpangoscriptiter.c
|
89
|
-
- ext/pango/rbpangotabarray.c
|
65
|
+
- ext/pango/rb-pango-attr-list.c
|
66
|
+
- ext/pango/rb-pango-attribute.c
|
67
|
+
- ext/pango/rb-pango-context.c
|
68
|
+
- ext/pango/rb-pango-conversions.h
|
69
|
+
- ext/pango/rb-pango-private.h
|
70
|
+
- ext/pango/rb-pango.c
|
71
|
+
- ext/pango/rb-pango.h
|
90
72
|
- extconf.rb
|
91
73
|
- lib/2.2/pango.so
|
92
74
|
- lib/2.3/pango.so
|
93
75
|
- lib/2.4/pango.so
|
94
76
|
- lib/pango.rb
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
77
|
+
- lib/pango/cairo-loader.rb
|
78
|
+
- lib/pango/color.rb
|
79
|
+
- lib/pango/deprecated.rb
|
80
|
+
- lib/pango/font-description.rb
|
81
|
+
- lib/pango/language.rb
|
82
|
+
- lib/pango/layout.rb
|
83
|
+
- lib/pango/loader.rb
|
84
|
+
- lib/pango/markup.rb
|
85
|
+
- lib/pango/matrix.rb
|
86
|
+
- lib/pango/rectangle.rb
|
87
|
+
- lib/pango/version.rb
|
106
88
|
- test/pango-test-utils.rb
|
107
89
|
- test/run-test.rb
|
108
90
|
- test/test-analysis.rb
|
91
|
+
- test/test-attr-list.rb
|
109
92
|
- test/test-attribute.rb
|
110
93
|
- test/test-color.rb
|
111
94
|
- test/test-context.rb
|
95
|
+
- test/test-enum.rb
|
96
|
+
- test/test-font-description.rb
|
112
97
|
- test/test-language.rb
|
113
98
|
- test/test-layout.rb
|
114
99
|
- test/test-log-attr.rb
|
100
|
+
- test/test-markup.rb
|
115
101
|
- test/test-matrix.rb
|
116
102
|
- test/test-rectangle.rb
|
117
103
|
- test/test-version.rb
|
@@ -131,6 +117,7 @@ files:
|
|
131
117
|
- vendor/local/bin/icu-config
|
132
118
|
- vendor/local/bin/icuinfo.exe
|
133
119
|
- vendor/local/bin/icupkg.exe
|
120
|
+
- vendor/local/bin/libgraphene-1.0-0.dll
|
134
121
|
- vendor/local/bin/libharfbuzz-0.dll
|
135
122
|
- vendor/local/bin/libpango-1.0-0.dll
|
136
123
|
- vendor/local/bin/libpangocairo-1.0-0.dll
|
@@ -140,6 +127,31 @@ files:
|
|
140
127
|
- vendor/local/bin/pango-view.exe
|
141
128
|
- vendor/local/bin/pkgdata.exe
|
142
129
|
- vendor/local/bin/uconv.exe
|
130
|
+
- vendor/local/include/graphene-1.0/graphene-box.h
|
131
|
+
- vendor/local/include/graphene-1.0/graphene-euler.h
|
132
|
+
- vendor/local/include/graphene-1.0/graphene-frustum.h
|
133
|
+
- vendor/local/include/graphene-1.0/graphene-gobject.h
|
134
|
+
- vendor/local/include/graphene-1.0/graphene-macros.h
|
135
|
+
- vendor/local/include/graphene-1.0/graphene-matrix.h
|
136
|
+
- vendor/local/include/graphene-1.0/graphene-plane.h
|
137
|
+
- vendor/local/include/graphene-1.0/graphene-point.h
|
138
|
+
- vendor/local/include/graphene-1.0/graphene-point3d.h
|
139
|
+
- vendor/local/include/graphene-1.0/graphene-quad.h
|
140
|
+
- vendor/local/include/graphene-1.0/graphene-quaternion.h
|
141
|
+
- vendor/local/include/graphene-1.0/graphene-ray.h
|
142
|
+
- vendor/local/include/graphene-1.0/graphene-rect.h
|
143
|
+
- vendor/local/include/graphene-1.0/graphene-simd4f.h
|
144
|
+
- vendor/local/include/graphene-1.0/graphene-simd4x4f.h
|
145
|
+
- vendor/local/include/graphene-1.0/graphene-size.h
|
146
|
+
- vendor/local/include/graphene-1.0/graphene-sphere.h
|
147
|
+
- vendor/local/include/graphene-1.0/graphene-triangle.h
|
148
|
+
- vendor/local/include/graphene-1.0/graphene-types.h
|
149
|
+
- vendor/local/include/graphene-1.0/graphene-vec2.h
|
150
|
+
- vendor/local/include/graphene-1.0/graphene-vec3.h
|
151
|
+
- vendor/local/include/graphene-1.0/graphene-vec4.h
|
152
|
+
- vendor/local/include/graphene-1.0/graphene-version-macros.h
|
153
|
+
- vendor/local/include/graphene-1.0/graphene-version.h
|
154
|
+
- vendor/local/include/graphene-1.0/graphene.h
|
143
155
|
- vendor/local/include/harfbuzz/hb-blob.h
|
144
156
|
- vendor/local/include/harfbuzz/hb-buffer.h
|
145
157
|
- vendor/local/include/harfbuzz/hb-common.h
|
@@ -154,6 +166,7 @@ files:
|
|
154
166
|
- vendor/local/include/harfbuzz/hb-ot-math.h
|
155
167
|
- vendor/local/include/harfbuzz/hb-ot-shape.h
|
156
168
|
- vendor/local/include/harfbuzz/hb-ot-tag.h
|
169
|
+
- vendor/local/include/harfbuzz/hb-ot-var.h
|
157
170
|
- vendor/local/include/harfbuzz/hb-ot.h
|
158
171
|
- vendor/local/include/harfbuzz/hb-set.h
|
159
172
|
- vendor/local/include/harfbuzz/hb-shape-plan.h
|
@@ -366,9 +379,11 @@ files:
|
|
366
379
|
- vendor/local/include/unicode/uvernum.h
|
367
380
|
- vendor/local/include/unicode/uversion.h
|
368
381
|
- vendor/local/include/unicode/vtzone.h
|
382
|
+
- vendor/local/lib/girepository-1.0/Graphene-1.0.typelib
|
369
383
|
- vendor/local/lib/girepository-1.0/Pango-1.0.typelib
|
370
384
|
- vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib
|
371
385
|
- vendor/local/lib/girepository-1.0/PangoFT2-1.0.typelib
|
386
|
+
- vendor/local/lib/graphene-1.0/include/graphene-config.h
|
372
387
|
- vendor/local/lib/icu/58.2/Makefile.inc
|
373
388
|
- vendor/local/lib/icu/58.2/pkgdata.inc
|
374
389
|
- vendor/local/lib/icu/Makefile.inc
|
@@ -385,6 +400,8 @@ files:
|
|
385
400
|
- vendor/local/lib/icutu58.dll
|
386
401
|
- vendor/local/lib/icuuc.dll
|
387
402
|
- vendor/local/lib/icuuc58.dll
|
403
|
+
- vendor/local/lib/libgraphene-1.0.dll.a
|
404
|
+
- vendor/local/lib/libgraphene-1.0.la
|
388
405
|
- vendor/local/lib/libharfbuzz-icu.a
|
389
406
|
- vendor/local/lib/libharfbuzz-icu.la
|
390
407
|
- vendor/local/lib/libharfbuzz.dll.a
|
@@ -403,6 +420,8 @@ files:
|
|
403
420
|
- vendor/local/lib/libpangoft2-1.0.la
|
404
421
|
- vendor/local/lib/libpangowin32-1.0.dll.a
|
405
422
|
- vendor/local/lib/libpangowin32-1.0.la
|
423
|
+
- vendor/local/lib/pkgconfig/graphene-1.0.pc
|
424
|
+
- vendor/local/lib/pkgconfig/graphene-gobject-1.0.pc
|
406
425
|
- vendor/local/lib/pkgconfig/harfbuzz-icu.pc
|
407
426
|
- vendor/local/lib/pkgconfig/harfbuzz.pc
|
408
427
|
- vendor/local/lib/pkgconfig/icu-i18n.pc
|
@@ -412,9 +431,52 @@ files:
|
|
412
431
|
- vendor/local/lib/pkgconfig/pangocairo.pc
|
413
432
|
- vendor/local/lib/pkgconfig/pangoft2.pc
|
414
433
|
- vendor/local/lib/pkgconfig/pangowin32.pc
|
434
|
+
- vendor/local/share/gir-1.0/Graphene-1.0.gir
|
415
435
|
- vendor/local/share/gir-1.0/Pango-1.0.gir
|
416
436
|
- vendor/local/share/gir-1.0/PangoCairo-1.0.gir
|
417
437
|
- vendor/local/share/gir-1.0/PangoFT2-1.0.gir
|
438
|
+
- vendor/local/share/gtk-doc/html/graphene/annotation-glossary.html
|
439
|
+
- vendor/local/share/gtk-doc/html/graphene/api-index.html
|
440
|
+
- vendor/local/share/gtk-doc/html/graphene/ch01.html
|
441
|
+
- vendor/local/share/gtk-doc/html/graphene/deprecated-api-index.html
|
442
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Box.html
|
443
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Euler.html
|
444
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Frustum.html
|
445
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-GObject-integration.html
|
446
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Matrix.html
|
447
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Plane.html
|
448
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Point.html
|
449
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Point3D.html
|
450
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Quad.html
|
451
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Quaternion.html
|
452
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Ray.html
|
453
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Rectangle.html
|
454
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-SIMD-matrix.html
|
455
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-SIMD-vector.html
|
456
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Size.html
|
457
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Sphere.html
|
458
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Triangle.html
|
459
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Vectors.html
|
460
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene-Versioning-information.html
|
461
|
+
- vendor/local/share/gtk-doc/html/graphene/graphene.devhelp2
|
462
|
+
- vendor/local/share/gtk-doc/html/graphene/home.png
|
463
|
+
- vendor/local/share/gtk-doc/html/graphene/index.html
|
464
|
+
- vendor/local/share/gtk-doc/html/graphene/ix03.html
|
465
|
+
- vendor/local/share/gtk-doc/html/graphene/ix04.html
|
466
|
+
- vendor/local/share/gtk-doc/html/graphene/ix05.html
|
467
|
+
- vendor/local/share/gtk-doc/html/graphene/ix06.html
|
468
|
+
- vendor/local/share/gtk-doc/html/graphene/left-insensitive.png
|
469
|
+
- vendor/local/share/gtk-doc/html/graphene/left.png
|
470
|
+
- vendor/local/share/gtk-doc/html/graphene/object-tree.html
|
471
|
+
- vendor/local/share/gtk-doc/html/graphene/rectangle-intersection.png
|
472
|
+
- vendor/local/share/gtk-doc/html/graphene/rectangle-union.png
|
473
|
+
- vendor/local/share/gtk-doc/html/graphene/rectangle.png
|
474
|
+
- vendor/local/share/gtk-doc/html/graphene/right-insensitive.png
|
475
|
+
- vendor/local/share/gtk-doc/html/graphene/right.png
|
476
|
+
- vendor/local/share/gtk-doc/html/graphene/style.css
|
477
|
+
- vendor/local/share/gtk-doc/html/graphene/triangle-barycentric.png
|
478
|
+
- vendor/local/share/gtk-doc/html/graphene/up-insensitive.png
|
479
|
+
- vendor/local/share/gtk-doc/html/graphene/up.png
|
418
480
|
- vendor/local/share/gtk-doc/html/harfbuzz/HarfBuzz.png
|
419
481
|
- vendor/local/share/gtk-doc/html/harfbuzz/a-clustering-example-for-levels-0-and-1.html
|
420
482
|
- vendor/local/share/gtk-doc/html/harfbuzz/adding-text-to-the-buffer.html
|
@@ -438,7 +500,7 @@ files:
|
|
438
500
|
- vendor/local/share/gtk-doc/html/harfbuzz/api-index-1-1-2.html
|
439
501
|
- vendor/local/share/gtk-doc/html/harfbuzz/api-index-1-1-3.html
|
440
502
|
- vendor/local/share/gtk-doc/html/harfbuzz/api-index-1-2-3.html
|
441
|
-
- vendor/local/share/gtk-doc/html/harfbuzz/api-index-1-
|
503
|
+
- vendor/local/share/gtk-doc/html/harfbuzz/api-index-1-3-3.html
|
442
504
|
- vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html
|
443
505
|
- vendor/local/share/gtk-doc/html/harfbuzz/buffers-language-script-and-direction.html
|
444
506
|
- vendor/local/share/gtk-doc/html/harfbuzz/building.html
|
@@ -506,27 +568,6 @@ files:
|
|
506
568
|
- vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html
|
507
569
|
- vendor/local/share/gtk-doc/html/pango/PangoRenderer.html
|
508
570
|
- vendor/local/share/gtk-doc/html/pango/annotation-glossary.html
|
509
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-10.html
|
510
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-12.html
|
511
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-14.html
|
512
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-16.html
|
513
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-18.html
|
514
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-2.html
|
515
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-20.html
|
516
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-22.html
|
517
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-24.html
|
518
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-26.html
|
519
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-30.html
|
520
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html
|
521
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html
|
522
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-32.html
|
523
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-34.html
|
524
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-38.html
|
525
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-4.html
|
526
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-40.html
|
527
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-6.html
|
528
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-1-8.html
|
529
|
-
- vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html
|
530
571
|
- vendor/local/share/gtk-doc/html/pango/api-index-full.html
|
531
572
|
- vendor/local/share/gtk-doc/html/pango/home.png
|
532
573
|
- vendor/local/share/gtk-doc/html/pango/index.html
|
@@ -589,7 +630,7 @@ files:
|
|
589
630
|
- vendor/local/share/man/man8/icupkg.8
|
590
631
|
homepage: http://ruby-gnome2.sourceforge.jp/
|
591
632
|
licenses:
|
592
|
-
-
|
633
|
+
- LGPL-2.1+
|
593
634
|
metadata: {}
|
594
635
|
post_install_message:
|
595
636
|
rdoc_options: []
|