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/ext/pango/rbpangocolor.c
DELETED
@@ -1,120 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2002,2003 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbpangoprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cColor
|
25
|
-
#define _SELF(self) (RVAL2PANGOCOLOR(self))
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_initialize(VALUE self, VALUE red, VALUE green, VALUE blue)
|
29
|
-
{
|
30
|
-
PangoColor color;
|
31
|
-
|
32
|
-
color.red = NUM2UINT(red);
|
33
|
-
color.green = NUM2UINT(green);
|
34
|
-
color.blue = NUM2UINT(blue);
|
35
|
-
|
36
|
-
G_INITIALIZE(self, g_boxed_copy(PANGO_TYPE_COLOR, &color));
|
37
|
-
return Qnil;
|
38
|
-
}
|
39
|
-
|
40
|
-
static VALUE
|
41
|
-
rg_parse(VALUE self, VALUE spec)
|
42
|
-
{
|
43
|
-
return CBOOL2RVAL(pango_color_parse(_SELF(self), RVAL2CSTR(spec)));
|
44
|
-
}
|
45
|
-
|
46
|
-
static VALUE
|
47
|
-
rg_red(VALUE self)
|
48
|
-
{
|
49
|
-
return UINT2NUM(_SELF(self)->red);
|
50
|
-
}
|
51
|
-
|
52
|
-
static VALUE
|
53
|
-
rg_set_red(VALUE self, VALUE red)
|
54
|
-
{
|
55
|
-
_SELF(self)->red = NUM2UINT(red);
|
56
|
-
return self;
|
57
|
-
}
|
58
|
-
|
59
|
-
static VALUE
|
60
|
-
rg_green(VALUE self)
|
61
|
-
{
|
62
|
-
return UINT2NUM(_SELF(self)->green);
|
63
|
-
}
|
64
|
-
|
65
|
-
static VALUE
|
66
|
-
rg_set_green(VALUE self, VALUE green)
|
67
|
-
{
|
68
|
-
_SELF(self)->green = NUM2UINT(green);
|
69
|
-
return self;
|
70
|
-
}
|
71
|
-
|
72
|
-
static VALUE
|
73
|
-
rg_blue(VALUE self)
|
74
|
-
{
|
75
|
-
return UINT2NUM(_SELF(self)->blue);
|
76
|
-
}
|
77
|
-
|
78
|
-
static VALUE
|
79
|
-
rg_set_blue(VALUE self, VALUE blue)
|
80
|
-
{
|
81
|
-
_SELF(self)->blue = NUM2UINT(blue);
|
82
|
-
return self;
|
83
|
-
}
|
84
|
-
|
85
|
-
static VALUE
|
86
|
-
rg_to_a(VALUE self)
|
87
|
-
{
|
88
|
-
PangoColor *c = _SELF(self);
|
89
|
-
return rb_ary_new3(3,
|
90
|
-
UINT2NUM(c->red),
|
91
|
-
UINT2NUM(c->green),
|
92
|
-
UINT2NUM(c->blue));
|
93
|
-
}
|
94
|
-
|
95
|
-
static VALUE
|
96
|
-
rg_operator_color_equal(VALUE self, VALUE other)
|
97
|
-
{
|
98
|
-
PangoColor* c1 = _SELF(self);
|
99
|
-
PangoColor* c2 = _SELF(other);
|
100
|
-
|
101
|
-
return CBOOL2RVAL((c1->red == c2->red) && (c1->green == c2->green) &&
|
102
|
-
(c1->blue == c2->blue));
|
103
|
-
}
|
104
|
-
|
105
|
-
void
|
106
|
-
Init_pango_color(VALUE mPango)
|
107
|
-
{
|
108
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(PANGO_TYPE_COLOR, "Color", mPango);
|
109
|
-
|
110
|
-
RG_DEF_METHOD(initialize, 3);
|
111
|
-
RG_DEF_METHOD(parse, 1);
|
112
|
-
RG_DEF_METHOD(red, 0);
|
113
|
-
RG_DEF_METHOD(set_red, 1);
|
114
|
-
RG_DEF_METHOD(green, 0);
|
115
|
-
RG_DEF_METHOD(set_green, 1);
|
116
|
-
RG_DEF_METHOD(blue, 0);
|
117
|
-
RG_DEF_METHOD(set_blue, 1);
|
118
|
-
RG_DEF_METHOD(to_a, 0);
|
119
|
-
RG_DEF_METHOD_OPERATOR("==", color_equal, 1);
|
120
|
-
}
|
data/ext/pango/rbpangocontext.c
DELETED
@@ -1,344 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011-2016 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2002-2005 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbpangoprivate.h"
|
23
|
-
|
24
|
-
static ID id_call;
|
25
|
-
|
26
|
-
#define RG_TARGET_NAMESPACE cContext
|
27
|
-
#define _SELF(self) (RVAL2PANGOCONTEXT(self))
|
28
|
-
|
29
|
-
static VALUE
|
30
|
-
rg_itemize(int argc, VALUE *argv, VALUE self)
|
31
|
-
{
|
32
|
-
VALUE arg1, arg2, arg3, arg4, arg5, arg6;
|
33
|
-
GList* list;
|
34
|
-
|
35
|
-
rb_scan_args(argc, argv, "42", &arg1, &arg2, &arg3, &arg4, &arg5, &arg6);
|
36
|
-
|
37
|
-
if (TYPE(arg1) == T_STRING) {
|
38
|
-
list = pango_itemize(_SELF(self),
|
39
|
-
RVAL2CSTR(arg1), /* text */
|
40
|
-
NUM2INT(arg2), /* start_index */
|
41
|
-
NUM2INT(arg3), /* length */
|
42
|
-
RVAL2PANGOATTRLIST(arg4), /* attrs */
|
43
|
-
NIL_P(arg5) ? NULL : RVAL2PANGOATTRITERATOR(arg5)); /* cached_iter */
|
44
|
-
} else {
|
45
|
-
#ifdef HAVE_PANGO_ITEMIZE_WITH_BASE_DIR
|
46
|
-
list = pango_itemize_with_base_dir(_SELF(self),
|
47
|
-
RVAL2PANGODIRECTION(arg1), /* base_dir */
|
48
|
-
RVAL2CSTR(arg2), /* text */
|
49
|
-
NUM2INT(arg3), /* start_index */
|
50
|
-
NUM2INT(arg4), /* length */
|
51
|
-
RVAL2PANGOATTRLIST(arg5), /* attrs */
|
52
|
-
NIL_P(arg6) ? NULL : RVAL2PANGOATTRITERATOR(arg6)); /* cached_iter */
|
53
|
-
#else
|
54
|
-
rb_warn("Pango::Context#itemize(base_dir, text, start_index, length, attrs, cached_iter) isn't supported on this environment.");
|
55
|
-
list = pango_itemize(_SELF(self),
|
56
|
-
RVAL2CSTR(arg1), /* text */
|
57
|
-
NUM2INT(arg2), /* start_index */
|
58
|
-
NUM2INT(arg3), /* length */
|
59
|
-
RVAL2PANGOATTRLIST(arg4), /* attrs */
|
60
|
-
NIL_P(arg5) ? NULL : RVAL2PANGOATTRITERATOR(arg5)); /* cached_iter */
|
61
|
-
#endif
|
62
|
-
}
|
63
|
-
return GLIST2ARY2F(list, PANGO_TYPE_ITEM);
|
64
|
-
}
|
65
|
-
|
66
|
-
/* Move to Pango module (rbpangomain.c)
|
67
|
-
GList* pango_reorder_items (GList *logical_items);
|
68
|
-
*/
|
69
|
-
|
70
|
-
#ifdef PANGO_ENABLE_BACKEND
|
71
|
-
static VALUE
|
72
|
-
rg_initialize(VALUE self)
|
73
|
-
{
|
74
|
-
G_INITIALIZE(self, pango_context_new());
|
75
|
-
return Qnil;
|
76
|
-
}
|
77
|
-
|
78
|
-
static VALUE
|
79
|
-
rg_set_font_map(VALUE self, VALUE font_map)
|
80
|
-
{
|
81
|
-
pango_context_set_font_map(_SELF(self), RVAL2PANGOFONTMAP(font_map));
|
82
|
-
return self;
|
83
|
-
}
|
84
|
-
|
85
|
-
static VALUE
|
86
|
-
rg_font_map(VALUE self)
|
87
|
-
{
|
88
|
-
return GOBJ2RVAL(pango_context_get_font_map(_SELF(self)));
|
89
|
-
}
|
90
|
-
#endif /* PANGO_ENABLE_BACKEND */
|
91
|
-
|
92
|
-
static VALUE
|
93
|
-
rg_font_description(VALUE self)
|
94
|
-
{
|
95
|
-
PangoFontDescription* ret = pango_context_get_font_description(_SELF(self));
|
96
|
-
return PANGOFONTDESCRIPTION2RVAL(ret);
|
97
|
-
}
|
98
|
-
|
99
|
-
static VALUE
|
100
|
-
rg_set_font_description(VALUE self, VALUE desc)
|
101
|
-
{
|
102
|
-
pango_context_set_font_description(_SELF(self), RVAL2PANGOFONTDESCRIPTION(desc));
|
103
|
-
return self;
|
104
|
-
}
|
105
|
-
|
106
|
-
static VALUE
|
107
|
-
rg_language(VALUE self)
|
108
|
-
{
|
109
|
-
PangoLanguage* ret = pango_context_get_language(_SELF(self));
|
110
|
-
return PANGOLANGUAGE2RVAL(ret);
|
111
|
-
}
|
112
|
-
|
113
|
-
static VALUE
|
114
|
-
rg_set_language(VALUE self, VALUE lang)
|
115
|
-
{
|
116
|
-
pango_context_set_language(_SELF(self),
|
117
|
-
RVAL2PANGOLANGUAGE(lang));
|
118
|
-
return self;
|
119
|
-
}
|
120
|
-
|
121
|
-
static VALUE
|
122
|
-
rg_base_dir(VALUE self)
|
123
|
-
{
|
124
|
-
return PANGODIRECTION2RVAL(pango_context_get_base_dir(_SELF(self)));
|
125
|
-
}
|
126
|
-
|
127
|
-
static VALUE
|
128
|
-
rg_set_base_dir(VALUE self, VALUE direction)
|
129
|
-
{
|
130
|
-
pango_context_set_base_dir(_SELF(self), RVAL2PANGODIRECTION(direction));
|
131
|
-
return self;
|
132
|
-
}
|
133
|
-
|
134
|
-
#if PANGO_VERSION_CHECK(1,16,0)
|
135
|
-
static VALUE
|
136
|
-
rg_base_gravity(VALUE self)
|
137
|
-
{
|
138
|
-
return PANGOGRAVITY2RVAL(pango_context_get_base_gravity(_SELF(self)));
|
139
|
-
}
|
140
|
-
|
141
|
-
static VALUE
|
142
|
-
rg_set_base_gravity(VALUE self, VALUE gravity)
|
143
|
-
{
|
144
|
-
pango_context_set_base_gravity(_SELF(self), RVAL2PANGOGRAVITY(gravity));
|
145
|
-
return self;
|
146
|
-
}
|
147
|
-
|
148
|
-
static VALUE
|
149
|
-
rg_gravity_hint(VALUE self)
|
150
|
-
{
|
151
|
-
return PANGOGRAVITYHINT2RVAL(pango_context_get_gravity_hint(_SELF(self)));
|
152
|
-
}
|
153
|
-
|
154
|
-
static VALUE
|
155
|
-
rg_set_gravity_hint(VALUE self, VALUE gravity_hint)
|
156
|
-
{
|
157
|
-
pango_context_set_gravity_hint(_SELF(self), RVAL2PANGOGRAVITYHINT(gravity_hint));
|
158
|
-
return self;
|
159
|
-
}
|
160
|
-
#endif
|
161
|
-
|
162
|
-
static VALUE
|
163
|
-
rg_matrix(VALUE self)
|
164
|
-
{
|
165
|
-
const PangoMatrix* matrix = pango_context_get_matrix(_SELF(self));
|
166
|
-
return PANGOMATRIX2RVAL((PangoMatrix*)matrix);
|
167
|
-
}
|
168
|
-
|
169
|
-
static VALUE
|
170
|
-
rg_set_matrix(VALUE self, VALUE matrix)
|
171
|
-
{
|
172
|
-
pango_context_set_matrix(_SELF(self),
|
173
|
-
RVAL2PANGOMATRIX(matrix));
|
174
|
-
return self;
|
175
|
-
}
|
176
|
-
|
177
|
-
static VALUE
|
178
|
-
rg_load_font(VALUE self, VALUE desc)
|
179
|
-
{
|
180
|
-
return GOBJ2RVAL(pango_context_load_font(_SELF(self), RVAL2PANGOFONTDESCRIPTION(desc)));
|
181
|
-
}
|
182
|
-
|
183
|
-
static VALUE
|
184
|
-
rg_load_fontset(VALUE self, VALUE desc, VALUE lang)
|
185
|
-
{
|
186
|
-
return GOBJ2RVAL(pango_context_load_fontset(_SELF(self),
|
187
|
-
RVAL2PANGOFONTDESCRIPTION(desc), RVAL2PANGOLANGUAGE(lang)));
|
188
|
-
}
|
189
|
-
|
190
|
-
static VALUE
|
191
|
-
rg_get_metrics(int argc, VALUE *argv, VALUE self)
|
192
|
-
{
|
193
|
-
VALUE desc, lang;
|
194
|
-
|
195
|
-
rb_scan_args(argc, argv, "11", &desc, &lang);
|
196
|
-
|
197
|
-
return PANGOFONTMETRICS2RVAL(pango_context_get_metrics(_SELF(self),
|
198
|
-
RVAL2PANGOFONTDESCRIPTION(desc),
|
199
|
-
NIL_P(lang) ? NULL : RVAL2PANGOLANGUAGE(lang)));
|
200
|
-
}
|
201
|
-
|
202
|
-
static VALUE
|
203
|
-
rg_families(VALUE self)
|
204
|
-
{
|
205
|
-
int n_families;
|
206
|
-
PangoFontFamily** families;
|
207
|
-
int i;
|
208
|
-
VALUE result;
|
209
|
-
|
210
|
-
pango_context_list_families(_SELF(self),
|
211
|
-
&families,
|
212
|
-
&n_families);
|
213
|
-
|
214
|
-
result = rb_ary_new2(n_families);
|
215
|
-
for (i = 0; i < n_families; i++)
|
216
|
-
rb_ary_store(result, i, GOBJ2RVAL(families[i]));
|
217
|
-
|
218
|
-
g_free(families);
|
219
|
-
|
220
|
-
return result;
|
221
|
-
}
|
222
|
-
|
223
|
-
#ifdef HAVE_RB_CAIRO_H
|
224
|
-
static VALUE
|
225
|
-
rg_set_font_options(VALUE self, VALUE options)
|
226
|
-
{
|
227
|
-
if (NIL_P(options))
|
228
|
-
pango_cairo_context_set_font_options(_SELF(self), NULL);
|
229
|
-
else
|
230
|
-
pango_cairo_context_set_font_options(_SELF(self),
|
231
|
-
RVAL2CRFONTOPTIONS(options));
|
232
|
-
return self;
|
233
|
-
}
|
234
|
-
|
235
|
-
static VALUE
|
236
|
-
rg_font_options(VALUE self)
|
237
|
-
{
|
238
|
-
const cairo_font_options_t *options;
|
239
|
-
options = pango_cairo_context_get_font_options(_SELF(self));
|
240
|
-
if (options)
|
241
|
-
return CRFONTOPTIONS2RVAL(cairo_font_options_copy(options));
|
242
|
-
else
|
243
|
-
return Qnil;
|
244
|
-
}
|
245
|
-
|
246
|
-
static VALUE
|
247
|
-
rg_set_resolution(VALUE self, VALUE dpi)
|
248
|
-
{
|
249
|
-
pango_cairo_context_set_resolution(_SELF(self), NUM2DBL(dpi));
|
250
|
-
return self;
|
251
|
-
}
|
252
|
-
|
253
|
-
static VALUE
|
254
|
-
rg_resolution(VALUE self)
|
255
|
-
{
|
256
|
-
return rb_float_new(pango_cairo_context_get_resolution(_SELF(self)));
|
257
|
-
}
|
258
|
-
|
259
|
-
static void
|
260
|
-
shape_renderer_callback(cairo_t *cr,
|
261
|
-
PangoAttrShape *attr,
|
262
|
-
gboolean do_path,
|
263
|
-
gpointer data)
|
264
|
-
{
|
265
|
-
VALUE rb_cr;
|
266
|
-
VALUE rb_attr;
|
267
|
-
VALUE rb_do_path;
|
268
|
-
VALUE rb_callback;
|
269
|
-
|
270
|
-
rb_cr = CRCONTEXT2RVAL(cr);
|
271
|
-
rb_attr = ATTR2RVAL((PangoAttribute *)attr);
|
272
|
-
rb_do_path = CBOOL2RVAL(do_path);
|
273
|
-
rb_callback = (VALUE)data;
|
274
|
-
rb_funcall(rb_callback, id_call, 3, rb_cr, rb_attr, rb_do_path);
|
275
|
-
}
|
276
|
-
|
277
|
-
static VALUE
|
278
|
-
rg_set_shape_renderer(VALUE self)
|
279
|
-
{
|
280
|
-
VALUE func = rb_block_proc();
|
281
|
-
rb_iv_set(self, "@shape_renderer", func);
|
282
|
-
pango_cairo_context_set_shape_renderer(_SELF(self),
|
283
|
-
shape_renderer_callback,
|
284
|
-
(gpointer)func,
|
285
|
-
NULL);
|
286
|
-
return self;
|
287
|
-
}
|
288
|
-
#endif
|
289
|
-
|
290
|
-
static VALUE
|
291
|
-
rg_list_families(VALUE self)
|
292
|
-
{
|
293
|
-
rb_warn("Deprecated. Use Pango::Context#families instead.");
|
294
|
-
return rg_families(self);
|
295
|
-
}
|
296
|
-
|
297
|
-
void
|
298
|
-
Init_pango_context(VALUE mPango)
|
299
|
-
{
|
300
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(PANGO_TYPE_CONTEXT, "Context", mPango);
|
301
|
-
|
302
|
-
id_call = rb_intern("call");
|
303
|
-
|
304
|
-
RG_DEF_METHOD(itemize, -1);
|
305
|
-
|
306
|
-
#ifdef PANGO_ENABLE_BACKEND
|
307
|
-
RG_DEF_METHOD(initialize, 0);
|
308
|
-
RG_DEF_METHOD(set_font_map, 1);
|
309
|
-
RG_DEF_METHOD(font_map, 0);
|
310
|
-
#endif /* PANGO_ENABLE_BACKEND */
|
311
|
-
RG_DEF_METHOD(font_description, 0);
|
312
|
-
RG_DEF_METHOD(set_font_description, 1);
|
313
|
-
RG_DEF_METHOD(language, 0);
|
314
|
-
RG_DEF_METHOD(set_language, 1);
|
315
|
-
RG_DEF_METHOD(base_dir, 0);
|
316
|
-
RG_DEF_METHOD(set_base_dir, 1);
|
317
|
-
#if PANGO_VERSION_CHECK(1,16,0)
|
318
|
-
RG_DEF_METHOD(base_gravity, 0);
|
319
|
-
RG_DEF_METHOD(set_base_gravity, 1);
|
320
|
-
RG_DEF_METHOD(gravity_hint, 0);
|
321
|
-
RG_DEF_METHOD(set_gravity_hint, 1);
|
322
|
-
#endif
|
323
|
-
RG_DEF_METHOD(matrix, 0);
|
324
|
-
RG_DEF_METHOD(set_matrix, 1);
|
325
|
-
RG_DEF_METHOD(load_font, 1);
|
326
|
-
RG_DEF_METHOD(load_fontset, 2);
|
327
|
-
RG_DEF_METHOD(get_metrics, -1);
|
328
|
-
RG_DEF_METHOD(families, 0);
|
329
|
-
|
330
|
-
#ifdef HAVE_RB_CAIRO_H
|
331
|
-
RG_DEF_METHOD(set_font_options, 1);
|
332
|
-
RG_DEF_METHOD(font_options, 0);
|
333
|
-
RG_DEF_METHOD(set_resolution, 1);
|
334
|
-
RG_DEF_METHOD(resolution, 0);
|
335
|
-
RG_DEF_METHOD(set_shape_renderer, 0);
|
336
|
-
#endif
|
337
|
-
|
338
|
-
/* This will remove 2 or 3 releases later since 0.14.0. */
|
339
|
-
RG_DEF_METHOD(list_families, 0);
|
340
|
-
|
341
|
-
/* PangoDirection */
|
342
|
-
G_DEF_CLASS(PANGO_TYPE_DIRECTION, "Direction", RG_TARGET_NAMESPACE);
|
343
|
-
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, PANGO_TYPE_DIRECTION, "PANGO_");
|
344
|
-
}
|