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
@@ -0,0 +1,151 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Index of new symbols in 1.4: Graphene Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
|
+
<link rel="home" href="index.html" title="Graphene Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="Graphene Reference Manual">
|
9
|
+
<link rel="prev" href="ix04.html" title="Index of new symbols in 1.2">
|
10
|
+
<link rel="next" href="ix06.html" title="Index of new symbols in 1.6">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxM">M</a>
|
17
|
+
<span class="dim">|</span>
|
18
|
+
<a class="shortcut" href="#idxP">P</a>
|
19
|
+
<span class="dim">|</span>
|
20
|
+
<a class="shortcut" href="#idxR">R</a>
|
21
|
+
<span class="dim">|</span>
|
22
|
+
<a class="shortcut" href="#idxS">S</a></span></td>
|
23
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
24
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
25
|
+
<td><a accesskey="p" href="ix04.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
26
|
+
<td><a accesskey="n" href="ix06.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
27
|
+
</tr></table>
|
28
|
+
<div class="index">
|
29
|
+
<div class="titlepage"><div><div><h1 class="title">
|
30
|
+
<a name="id-1.8"></a>Index of new symbols in 1.4</h1></div></div></div>
|
31
|
+
<a name="idx"></a><a name="idxM"></a><h3 class="title">M</h3>
|
32
|
+
<dt>
|
33
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-ray" title="graphene_matrix_transform_ray ()">graphene_matrix_transform_ray</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
34
|
+
</dt>
|
35
|
+
<dd></dd>
|
36
|
+
<a name="idxP"></a><h3 class="title">P</h3>
|
37
|
+
<dt>
|
38
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-distance" title="graphene_point3d_distance ()">graphene_point3d_distance</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
39
|
+
</dt>
|
40
|
+
<dd></dd>
|
41
|
+
<dt>
|
42
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-normalize-viewport" title="graphene_point3d_normalize_viewport ()">graphene_point3d_normalize_viewport</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
43
|
+
</dt>
|
44
|
+
<dd></dd>
|
45
|
+
<dt>
|
46
|
+
<a class="link" href="graphene-Point.html#graphene-point-init-from-vec2" title="graphene_point_init_from_vec2 ()">graphene_point_init_from_vec2</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
47
|
+
</dt>
|
48
|
+
<dd></dd>
|
49
|
+
<dt>
|
50
|
+
<a class="link" href="graphene-Point.html#graphene-point-to-vec2" title="graphene_point_to_vec2 ()">graphene_point_to_vec2</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
51
|
+
</dt>
|
52
|
+
<dd></dd>
|
53
|
+
<a name="idxR"></a><h3 class="title">R</h3>
|
54
|
+
<dt>
|
55
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-alloc" title="graphene_ray_alloc ()">graphene_ray_alloc</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
56
|
+
</dt>
|
57
|
+
<dd></dd>
|
58
|
+
<dt>
|
59
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-equal" title="graphene_ray_equal ()">graphene_ray_equal</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
60
|
+
</dt>
|
61
|
+
<dd></dd>
|
62
|
+
<dt>
|
63
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-free" title="graphene_ray_free ()">graphene_ray_free</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
64
|
+
</dt>
|
65
|
+
<dd></dd>
|
66
|
+
<dt>
|
67
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-closest-point-to-point" title="graphene_ray_get_closest_point_to_point ()">graphene_ray_get_closest_point_to_point</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
68
|
+
</dt>
|
69
|
+
<dd></dd>
|
70
|
+
<dt>
|
71
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-direction" title="graphene_ray_get_direction ()">graphene_ray_get_direction</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
72
|
+
</dt>
|
73
|
+
<dd></dd>
|
74
|
+
<dt>
|
75
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-distance-to-plane" title="graphene_ray_get_distance_to_plane ()">graphene_ray_get_distance_to_plane</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
76
|
+
</dt>
|
77
|
+
<dd></dd>
|
78
|
+
<dt>
|
79
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-distance-to-point" title="graphene_ray_get_distance_to_point ()">graphene_ray_get_distance_to_point</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
80
|
+
</dt>
|
81
|
+
<dd></dd>
|
82
|
+
<dt>
|
83
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-origin" title="graphene_ray_get_origin ()">graphene_ray_get_origin</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
84
|
+
</dt>
|
85
|
+
<dd></dd>
|
86
|
+
<dt>
|
87
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-position-at" title="graphene_ray_get_position_at ()">graphene_ray_get_position_at</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
88
|
+
</dt>
|
89
|
+
<dd></dd>
|
90
|
+
<dt>
|
91
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-init" title="graphene_ray_init ()">graphene_ray_init</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
92
|
+
</dt>
|
93
|
+
<dd></dd>
|
94
|
+
<dt>
|
95
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-init-from-ray" title="graphene_ray_init_from_ray ()">graphene_ray_init_from_ray</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
96
|
+
</dt>
|
97
|
+
<dd></dd>
|
98
|
+
<dt>
|
99
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-init-from-vec3" title="graphene_ray_init_from_vec3 ()">graphene_ray_init_from_vec3</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
100
|
+
</dt>
|
101
|
+
<dd></dd>
|
102
|
+
<dt>
|
103
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-t" title="graphene_ray_t">graphene_ray_t</a>, struct in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
104
|
+
</dt>
|
105
|
+
<dd></dd>
|
106
|
+
<dt>
|
107
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-expand" title="graphene_rect_expand ()">graphene_rect_expand</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
108
|
+
</dt>
|
109
|
+
<dd></dd>
|
110
|
+
<dt>
|
111
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-vertices" title="graphene_rect_get_vertices ()">graphene_rect_get_vertices</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
112
|
+
</dt>
|
113
|
+
<dd></dd>
|
114
|
+
<dt>
|
115
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-inset-r" title="graphene_rect_inset_r ()">graphene_rect_inset_r</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
116
|
+
</dt>
|
117
|
+
<dd></dd>
|
118
|
+
<dt>
|
119
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-normalize-r" title="graphene_rect_normalize_r ()">graphene_rect_normalize_r</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
120
|
+
</dt>
|
121
|
+
<dd></dd>
|
122
|
+
<dt>
|
123
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-offset-r" title="graphene_rect_offset_r ()">graphene_rect_offset_r</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
124
|
+
</dt>
|
125
|
+
<dd></dd>
|
126
|
+
<dt>
|
127
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-round" title="graphene_rect_round ()">graphene_rect_round</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
128
|
+
</dt>
|
129
|
+
<dd></dd>
|
130
|
+
<dt>
|
131
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-zero" title="graphene_rect_zero ()">graphene_rect_zero</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
132
|
+
</dt>
|
133
|
+
<dd></dd>
|
134
|
+
<a name="idxS"></a><h3 class="title">S</h3>
|
135
|
+
<dt>
|
136
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dot3-scalar" title="graphene_simd4f_dot3_scalar ()">graphene_simd4f_dot3_scalar</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
137
|
+
</dt>
|
138
|
+
<dd></dd>
|
139
|
+
<dt>
|
140
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-max-val" title="graphene_simd4f_max_val ()">graphene_simd4f_max_val</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
141
|
+
</dt>
|
142
|
+
<dd></dd>
|
143
|
+
<dt>
|
144
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-min-val" title="graphene_simd4f_min_val ()">graphene_simd4f_min_val</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
145
|
+
</dt>
|
146
|
+
<dd></dd>
|
147
|
+
</div>
|
148
|
+
<div class="footer">
|
149
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
150
|
+
</body>
|
151
|
+
</html>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Index of new symbols in 1.6: Graphene Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
|
+
<link rel="home" href="index.html" title="Graphene Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="Graphene Reference Manual">
|
9
|
+
<link rel="prev" href="ix05.html" title="Index of new symbols in 1.4">
|
10
|
+
<link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxF">F</a></span></td>
|
17
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
19
|
+
<td><a accesskey="p" href="ix05.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="index">
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="id-1.9"></a>Index of new symbols in 1.6</h1></div></div></div>
|
25
|
+
<a name="idx"></a><a name="idxF"></a><h3 class="title">F</h3>
|
26
|
+
<dt>
|
27
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-equal" title="graphene_frustum_equal ()">graphene_frustum_equal</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
28
|
+
</dt>
|
29
|
+
<dd></dd>
|
30
|
+
</div>
|
31
|
+
<div class="footer">
|
32
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
33
|
+
</body>
|
34
|
+
</html>
|
Binary file
|
Binary file
|
data/vendor/local/share/gtk-doc/html/{pango/api-index-1-40.html → graphene/object-tree.html}
RENAMED
@@ -2,12 +2,13 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>
|
5
|
+
<title>Object Hierarchy: Graphene Reference Manual</title>
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
|
-
<link rel="home" href="index.html" title="
|
8
|
-
<link rel="up" href="index.html" title="
|
9
|
-
<link rel="prev" href="
|
10
|
-
<
|
7
|
+
<link rel="home" href="index.html" title="Graphene Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="Graphene Reference Manual">
|
9
|
+
<link rel="prev" href="graphene-GObject-integration.html" title="GObject integration">
|
10
|
+
<link rel="next" href="api-index.html" title="API Index">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
11
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
12
13
|
</head>
|
13
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -15,15 +16,17 @@
|
|
15
16
|
<td width="100%" align="left" class="shortcuts"></td>
|
16
17
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
17
18
|
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
18
|
-
<td><a accesskey="p" href="
|
19
|
-
<td><img src="right
|
19
|
+
<td><a accesskey="p" href="graphene-GObject-integration.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="api-index.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
20
21
|
</tr></table>
|
21
|
-
<div class="
|
22
|
+
<div class="chapter">
|
22
23
|
<div class="titlepage"><div><div><h1 class="title">
|
23
|
-
<a name="
|
24
|
-
<
|
24
|
+
<a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
|
25
|
+
<pre class="screen">
|
26
|
+
|
27
|
+
</pre>
|
25
28
|
</div>
|
26
29
|
<div class="footer">
|
27
|
-
<hr>Generated by GTK-Doc V1.25
|
30
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
28
31
|
</body>
|
29
32
|
</html>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,479 @@
|
|
1
|
+
body
|
2
|
+
{
|
3
|
+
font-family: cantarell, sans-serif;
|
4
|
+
}
|
5
|
+
.synopsis, .classsynopsis
|
6
|
+
{
|
7
|
+
/* tango:aluminium 1/2 */
|
8
|
+
background: #eeeeec;
|
9
|
+
background: rgba(238, 238, 236, 0.5);
|
10
|
+
border: solid 1px rgb(238, 238, 236);
|
11
|
+
padding: 0.5em;
|
12
|
+
}
|
13
|
+
.programlisting
|
14
|
+
{
|
15
|
+
/* tango:sky blue 0/1 */
|
16
|
+
/* fallback for no rgba support */
|
17
|
+
background: #e6f3ff;
|
18
|
+
border: solid 1px #729fcf;
|
19
|
+
background: rgba(114, 159, 207, 0.1);
|
20
|
+
border: solid 1px rgba(114, 159, 207, 0.2);
|
21
|
+
padding: 0.5em;
|
22
|
+
}
|
23
|
+
.variablelist
|
24
|
+
{
|
25
|
+
padding: 4px;
|
26
|
+
margin-left: 3em;
|
27
|
+
}
|
28
|
+
.variablelist td:first-child
|
29
|
+
{
|
30
|
+
vertical-align: top;
|
31
|
+
}
|
32
|
+
|
33
|
+
div.gallery-float
|
34
|
+
{
|
35
|
+
float: left;
|
36
|
+
padding: 10px;
|
37
|
+
}
|
38
|
+
div.gallery-float img
|
39
|
+
{
|
40
|
+
border-style: none;
|
41
|
+
}
|
42
|
+
div.gallery-spacer
|
43
|
+
{
|
44
|
+
clear: both;
|
45
|
+
}
|
46
|
+
|
47
|
+
a, a:visited
|
48
|
+
{
|
49
|
+
text-decoration: none;
|
50
|
+
/* tango:sky blue 2 */
|
51
|
+
color: #3465a4;
|
52
|
+
}
|
53
|
+
a:hover
|
54
|
+
{
|
55
|
+
text-decoration: underline;
|
56
|
+
/* tango:sky blue 1 */
|
57
|
+
color: #729fcf;
|
58
|
+
}
|
59
|
+
|
60
|
+
div.informaltable table
|
61
|
+
{
|
62
|
+
border-collapse: separate;
|
63
|
+
border-spacing: 1em 0.3em;
|
64
|
+
border: none;
|
65
|
+
}
|
66
|
+
|
67
|
+
div.informaltable table td, div.informaltable table th
|
68
|
+
{
|
69
|
+
vertical-align: top;
|
70
|
+
}
|
71
|
+
|
72
|
+
.function_type,
|
73
|
+
.variable_type,
|
74
|
+
.property_type,
|
75
|
+
.signal_type,
|
76
|
+
.parameter_name,
|
77
|
+
.struct_member_name,
|
78
|
+
.union_member_name,
|
79
|
+
.define_keyword,
|
80
|
+
.datatype_keyword,
|
81
|
+
.typedef_keyword
|
82
|
+
{
|
83
|
+
text-align: right;
|
84
|
+
}
|
85
|
+
|
86
|
+
/* dim non-primary columns */
|
87
|
+
.c_punctuation,
|
88
|
+
.function_type,
|
89
|
+
.variable_type,
|
90
|
+
.property_type,
|
91
|
+
.signal_type,
|
92
|
+
.define_keyword,
|
93
|
+
.datatype_keyword,
|
94
|
+
.typedef_keyword,
|
95
|
+
.property_flags,
|
96
|
+
.signal_flags,
|
97
|
+
.parameter_annotations,
|
98
|
+
.enum_member_annotations,
|
99
|
+
.struct_member_annotations,
|
100
|
+
.union_member_annotations
|
101
|
+
{
|
102
|
+
color: #888a85;
|
103
|
+
}
|
104
|
+
|
105
|
+
.function_type a,
|
106
|
+
.function_type a:visited,
|
107
|
+
.function_type a:hover,
|
108
|
+
.property_type a,
|
109
|
+
.property_type a:visited,
|
110
|
+
.property_type a:hover,
|
111
|
+
.signal_type a,
|
112
|
+
.signal_type a:visited,
|
113
|
+
.signal_type a:hover,
|
114
|
+
.signal_flags a,
|
115
|
+
.signal_flags a:visited,
|
116
|
+
.signal_flags a:hover
|
117
|
+
{
|
118
|
+
color: #729fcf;
|
119
|
+
}
|
120
|
+
|
121
|
+
td p
|
122
|
+
{
|
123
|
+
margin: 0.25em;
|
124
|
+
}
|
125
|
+
|
126
|
+
div.table table
|
127
|
+
{
|
128
|
+
border-collapse: collapse;
|
129
|
+
border-spacing: 0px;
|
130
|
+
/* tango:aluminium 3 */
|
131
|
+
border: solid 1px #babdb6;
|
132
|
+
}
|
133
|
+
|
134
|
+
div.table table td, div.table table th
|
135
|
+
{
|
136
|
+
/* tango:aluminium 3 */
|
137
|
+
border: solid 1px #babdb6;
|
138
|
+
padding: 3px;
|
139
|
+
vertical-align: top;
|
140
|
+
}
|
141
|
+
|
142
|
+
div.table table th
|
143
|
+
{
|
144
|
+
/* tango:aluminium 2 */
|
145
|
+
background-color: #d3d7cf;
|
146
|
+
}
|
147
|
+
|
148
|
+
h4
|
149
|
+
{
|
150
|
+
color: #555753;
|
151
|
+
margin-top: 1em;
|
152
|
+
margin-bottom: 1em;
|
153
|
+
}
|
154
|
+
|
155
|
+
hr
|
156
|
+
{
|
157
|
+
/* tango:aluminium 1 */
|
158
|
+
color: #d3d7cf;
|
159
|
+
background: #d3d7cf;
|
160
|
+
border: none 0px;
|
161
|
+
height: 1px;
|
162
|
+
clear: both;
|
163
|
+
margin: 2.0em 0em 2.0em 0em;
|
164
|
+
}
|
165
|
+
|
166
|
+
dl.toc dt
|
167
|
+
{
|
168
|
+
padding-bottom: 0.25em;
|
169
|
+
}
|
170
|
+
|
171
|
+
dl.toc > dt
|
172
|
+
{
|
173
|
+
padding-top: 0.25em;
|
174
|
+
padding-bottom: 0.25em;
|
175
|
+
font-weight: bold;
|
176
|
+
}
|
177
|
+
|
178
|
+
dl.toc > dl
|
179
|
+
{
|
180
|
+
padding-bottom: 0.5em;
|
181
|
+
}
|
182
|
+
|
183
|
+
.parameter
|
184
|
+
{
|
185
|
+
font-style: normal;
|
186
|
+
}
|
187
|
+
|
188
|
+
.footer
|
189
|
+
{
|
190
|
+
padding-top: 3.5em;
|
191
|
+
/* tango:aluminium 3 */
|
192
|
+
color: #babdb6;
|
193
|
+
text-align: center;
|
194
|
+
font-size: 80%;
|
195
|
+
}
|
196
|
+
|
197
|
+
.informalfigure,
|
198
|
+
.figure
|
199
|
+
{
|
200
|
+
margin: 1em;
|
201
|
+
}
|
202
|
+
|
203
|
+
.informalexample,
|
204
|
+
.example
|
205
|
+
{
|
206
|
+
margin-top: 1em;
|
207
|
+
margin-bottom: 1em;
|
208
|
+
}
|
209
|
+
|
210
|
+
.warning
|
211
|
+
{
|
212
|
+
/* tango:orange 0/1 */
|
213
|
+
background: #ffeed9;
|
214
|
+
background: rgba(252, 175, 62, 0.1);
|
215
|
+
border-color: #ffb04f;
|
216
|
+
border-color: rgba(252, 175, 62, 0.2);
|
217
|
+
}
|
218
|
+
.note
|
219
|
+
{
|
220
|
+
/* tango:chameleon 0/0.5 */
|
221
|
+
background: #d8ffb2;
|
222
|
+
background: rgba(138, 226, 52, 0.1);
|
223
|
+
border-color: #abf562;
|
224
|
+
border-color: rgba(138, 226, 52, 0.2);
|
225
|
+
}
|
226
|
+
div.blockquote
|
227
|
+
{
|
228
|
+
border-color: #eeeeec;
|
229
|
+
}
|
230
|
+
.note, .warning, div.blockquote
|
231
|
+
{
|
232
|
+
padding: 0.5em;
|
233
|
+
border-width: 1px;
|
234
|
+
border-style: solid;
|
235
|
+
margin: 2em;
|
236
|
+
}
|
237
|
+
.note p, .warning p
|
238
|
+
{
|
239
|
+
margin: 0;
|
240
|
+
}
|
241
|
+
|
242
|
+
div.warning h3.title,
|
243
|
+
div.note h3.title
|
244
|
+
{
|
245
|
+
display: none;
|
246
|
+
}
|
247
|
+
|
248
|
+
p + div.section
|
249
|
+
{
|
250
|
+
margin-top: 1em;
|
251
|
+
}
|
252
|
+
|
253
|
+
div.refnamediv,
|
254
|
+
div.refsynopsisdiv,
|
255
|
+
div.refsect1,
|
256
|
+
div.refsect2,
|
257
|
+
div.toc,
|
258
|
+
div.section
|
259
|
+
{
|
260
|
+
margin-bottom: 1em;
|
261
|
+
}
|
262
|
+
|
263
|
+
/* blob links */
|
264
|
+
h2 .extralinks, h3 .extralinks
|
265
|
+
{
|
266
|
+
float: right;
|
267
|
+
/* tango:aluminium 3 */
|
268
|
+
color: #babdb6;
|
269
|
+
font-size: 80%;
|
270
|
+
font-weight: normal;
|
271
|
+
}
|
272
|
+
|
273
|
+
.lineart
|
274
|
+
{
|
275
|
+
color: #d3d7cf;
|
276
|
+
font-weight: normal;
|
277
|
+
}
|
278
|
+
|
279
|
+
.annotation
|
280
|
+
{
|
281
|
+
/* tango:aluminium 5 */
|
282
|
+
color: #555753;
|
283
|
+
font-weight: normal;
|
284
|
+
}
|
285
|
+
|
286
|
+
.structfield
|
287
|
+
{
|
288
|
+
font-style: normal;
|
289
|
+
font-weight: normal;
|
290
|
+
}
|
291
|
+
|
292
|
+
acronym,abbr
|
293
|
+
{
|
294
|
+
border-bottom: 1px dotted gray;
|
295
|
+
}
|
296
|
+
|
297
|
+
/* code listings */
|
298
|
+
|
299
|
+
.listing_code .programlisting .normal,
|
300
|
+
.listing_code .programlisting .normal a,
|
301
|
+
.listing_code .programlisting .number,
|
302
|
+
.listing_code .programlisting .cbracket,
|
303
|
+
.listing_code .programlisting .symbol { color: #555753; }
|
304
|
+
.listing_code .programlisting .comment,
|
305
|
+
.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
|
306
|
+
.listing_code .programlisting .function,
|
307
|
+
.listing_code .programlisting .function a,
|
308
|
+
.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
|
309
|
+
.listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
|
310
|
+
.listing_code .programlisting .keyword,
|
311
|
+
.listing_code .programlisting .usertype,
|
312
|
+
.listing_code .programlisting .type,
|
313
|
+
.listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
|
314
|
+
|
315
|
+
.listing_frame {
|
316
|
+
/* tango:sky blue 1 */
|
317
|
+
border: solid 1px #729fcf;
|
318
|
+
border: solid 1px rgba(114, 159, 207, 0.2);
|
319
|
+
padding: 0px;
|
320
|
+
}
|
321
|
+
|
322
|
+
.listing_lines, .listing_code {
|
323
|
+
margin-top: 0px;
|
324
|
+
margin-bottom: 0px;
|
325
|
+
padding: 0.5em;
|
326
|
+
}
|
327
|
+
.listing_lines {
|
328
|
+
/* tango:sky blue 0.5 */
|
329
|
+
background: #a6c5e3;
|
330
|
+
background: rgba(114, 159, 207, 0.2);
|
331
|
+
/* tango:aluminium 6 */
|
332
|
+
color: #2e3436;
|
333
|
+
}
|
334
|
+
.listing_code {
|
335
|
+
/* tango:sky blue 0 */
|
336
|
+
background: #e6f3ff;
|
337
|
+
background: rgba(114, 159, 207, 0.1);
|
338
|
+
}
|
339
|
+
.listing_code .programlisting {
|
340
|
+
/* override from previous */
|
341
|
+
border: none 0px;
|
342
|
+
padding: 0px;
|
343
|
+
background: none;
|
344
|
+
}
|
345
|
+
.listing_lines pre, .listing_code pre {
|
346
|
+
margin: 0px;
|
347
|
+
}
|
348
|
+
|
349
|
+
@media screen {
|
350
|
+
/* these have a <sup> as a first child, but since there are no parent selectors
|
351
|
+
* we can't use that. */
|
352
|
+
a.footnote
|
353
|
+
{
|
354
|
+
position: relative;
|
355
|
+
top: 0em ! important;
|
356
|
+
}
|
357
|
+
/* this is needed so that the local anchors are displayed below the naviagtion */
|
358
|
+
div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
|
359
|
+
{
|
360
|
+
display: inline-block;
|
361
|
+
position: relative;
|
362
|
+
top:-5em;
|
363
|
+
}
|
364
|
+
/* this seems to be a bug in the xsl style sheets when generating indexes */
|
365
|
+
div.index div.index
|
366
|
+
{
|
367
|
+
top: 0em;
|
368
|
+
}
|
369
|
+
/* make space for the fixed navigation bar and add space at the bottom so that
|
370
|
+
* link targets appear somewhat close to top
|
371
|
+
*/
|
372
|
+
body
|
373
|
+
{
|
374
|
+
padding-top: 2.5em;
|
375
|
+
padding-bottom: 500px;
|
376
|
+
max-width: 60em;
|
377
|
+
}
|
378
|
+
p
|
379
|
+
{
|
380
|
+
max-width: 60em;
|
381
|
+
}
|
382
|
+
/* style and size the navigation bar */
|
383
|
+
table.navigation#top
|
384
|
+
{
|
385
|
+
position: fixed;
|
386
|
+
background: #e2e2e2;
|
387
|
+
border-bottom: solid 1px #babdb6;
|
388
|
+
border-spacing: 5px;
|
389
|
+
margin-top: 0;
|
390
|
+
margin-bottom: 0;
|
391
|
+
top: 0;
|
392
|
+
left: 0;
|
393
|
+
z-index: 10;
|
394
|
+
}
|
395
|
+
table.navigation#top td
|
396
|
+
{
|
397
|
+
padding-left: 6px;
|
398
|
+
padding-right: 6px;
|
399
|
+
}
|
400
|
+
.navigation a, .navigation a:visited
|
401
|
+
{
|
402
|
+
/* tango:sky blue 3 */
|
403
|
+
color: #204a87;
|
404
|
+
}
|
405
|
+
.navigation a:hover
|
406
|
+
{
|
407
|
+
/* tango:sky blue 2 */
|
408
|
+
color: #3465a4;
|
409
|
+
}
|
410
|
+
td.shortcuts
|
411
|
+
{
|
412
|
+
/* tango:sky blue 2 */
|
413
|
+
color: #3465a4;
|
414
|
+
font-size: 80%;
|
415
|
+
white-space: nowrap;
|
416
|
+
}
|
417
|
+
td.shortcuts .dim
|
418
|
+
{
|
419
|
+
color: #babdb6;
|
420
|
+
}
|
421
|
+
.navigation .title
|
422
|
+
{
|
423
|
+
font-size: 80%;
|
424
|
+
max-width: none;
|
425
|
+
margin: 0px;
|
426
|
+
font-weight: normal;
|
427
|
+
}
|
428
|
+
}
|
429
|
+
@media screen and (min-width: 60em) {
|
430
|
+
/* screen larger than 60em */
|
431
|
+
body { margin: auto; }
|
432
|
+
}
|
433
|
+
@media screen and (max-width: 60em) {
|
434
|
+
/* screen less than 60em */
|
435
|
+
#nav_hierarchy { display: none; }
|
436
|
+
#nav_interfaces { display: none; }
|
437
|
+
#nav_prerequisites { display: none; }
|
438
|
+
#nav_derived_interfaces { display: none; }
|
439
|
+
#nav_implementations { display: none; }
|
440
|
+
#nav_child_properties { display: none; }
|
441
|
+
#nav_style_properties { display: none; }
|
442
|
+
#nav_index { display: none; }
|
443
|
+
#nav_glossary { display: none; }
|
444
|
+
.gallery_image { display: none; }
|
445
|
+
.property_flags { display: none; }
|
446
|
+
.signal_flags { display: none; }
|
447
|
+
.parameter_annotations { display: none; }
|
448
|
+
.enum_member_annotations { display: none; }
|
449
|
+
.struct_member_annotations { display: none; }
|
450
|
+
.union_member_annotations { display: none; }
|
451
|
+
/* now that a column is hidden, optimize space */
|
452
|
+
col.parameters_name { width: auto; }
|
453
|
+
col.parameters_description { width: auto; }
|
454
|
+
col.struct_members_name { width: auto; }
|
455
|
+
col.struct_members_description { width: auto; }
|
456
|
+
col.enum_members_name { width: auto; }
|
457
|
+
col.enum_members_description { width: auto; }
|
458
|
+
col.union_members_name { width: auto; }
|
459
|
+
col.union_members_description { width: auto; }
|
460
|
+
.listing_lines { display: none; }
|
461
|
+
}
|
462
|
+
@media print {
|
463
|
+
table.navigation {
|
464
|
+
visibility: collapse;
|
465
|
+
display: none;
|
466
|
+
}
|
467
|
+
div.titlepage table.navigation {
|
468
|
+
visibility: visible;
|
469
|
+
display: table;
|
470
|
+
background: #e2e2e2;
|
471
|
+
border: solid 1px #babdb6;
|
472
|
+
margin-top: 0;
|
473
|
+
margin-bottom: 0;
|
474
|
+
top: 0;
|
475
|
+
left: 0;
|
476
|
+
height: 3em;
|
477
|
+
}
|
478
|
+
}
|
479
|
+
|