cairo 1.14.1-x86-mingw32 → 1.14.2-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cairo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/NEWS +21 -0
- data/Rakefile +18 -7
- data/ext/cairo/cairo.def +1 -0
- data/ext/cairo/extconf.rb +23 -10
- data/ext/cairo/rb_cairo.c +3 -0
- data/ext/cairo/rb_cairo.h +3 -3
- data/ext/cairo/rb_cairo_context.c +1 -1
- data/ext/cairo/rb_cairo_io.c +4 -0
- data/ext/cairo/rb_cairo_io.h +2 -0
- data/ext/cairo/rb_cairo_pattern.c +4 -4
- data/ext/cairo/rb_cairo_private.h +2 -0
- data/ext/cairo/rb_cairo_surface.c +64 -232
- data/lib/2.0/cairo.so +0 -0
- data/lib/2.1/cairo.so +0 -0
- data/lib/2.2/cairo.so +0 -0
- data/lib/cairo.rb +20 -19
- data/lib/cairo/region.rb +14 -0
- data/test/test_region.rb +26 -0
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/freetype-config +2 -2
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +1 -1
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +1 -1
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/freetype2/config/ftconfig.h +19 -2
- data/vendor/local/include/freetype2/config/ftheader.h +7 -5
- data/vendor/local/include/freetype2/config/ftoption.h +9 -22
- data/vendor/local/include/freetype2/config/ftstdlib.h +2 -3
- data/vendor/local/include/freetype2/freetype.h +38 -17
- data/vendor/local/include/freetype2/ft2build.h +1 -1
- data/vendor/local/include/freetype2/ftadvanc.h +2 -2
- data/vendor/local/include/freetype2/ftautoh.h +50 -2
- data/vendor/local/include/freetype2/ftbbox.h +1 -1
- data/vendor/local/include/freetype2/ftbdf.h +1 -1
- data/vendor/local/include/freetype2/ftbitmap.h +11 -3
- data/vendor/local/include/freetype2/ftbzip2.h +1 -1
- data/vendor/local/include/freetype2/ftcache.h +3 -3
- data/vendor/local/include/freetype2/ftcffdrv.h +1 -1
- data/vendor/local/include/freetype2/ftcid.h +2 -1
- data/vendor/local/include/freetype2/fterrdef.h +1 -1
- data/vendor/local/include/freetype2/fterrors.h +1 -1
- data/vendor/local/include/freetype2/{ftxf86.h → ftfntfmt.h} +22 -14
- data/vendor/local/include/freetype2/ftgasp.h +1 -1
- data/vendor/local/include/freetype2/ftglyph.h +1 -1
- data/vendor/local/include/freetype2/ftgxval.h +1 -1
- data/vendor/local/include/freetype2/ftgzip.h +1 -1
- data/vendor/local/include/freetype2/ftimage.h +7 -13
- data/vendor/local/include/freetype2/ftincrem.h +1 -1
- data/vendor/local/include/freetype2/ftlcdfil.h +2 -2
- data/vendor/local/include/freetype2/ftlist.h +1 -1
- data/vendor/local/include/freetype2/ftlzw.h +1 -1
- data/vendor/local/include/freetype2/ftmac.h +1 -1
- data/vendor/local/include/freetype2/ftmm.h +17 -11
- data/vendor/local/include/freetype2/ftmodapi.h +4 -2
- data/vendor/local/include/freetype2/ftmoderr.h +1 -1
- data/vendor/local/include/freetype2/ftotval.h +1 -1
- data/vendor/local/include/freetype2/ftoutln.h +1 -1
- data/vendor/local/include/freetype2/ftpfr.h +1 -1
- data/vendor/local/include/freetype2/ftrender.h +3 -8
- data/vendor/local/include/freetype2/ftsizes.h +1 -1
- data/vendor/local/include/freetype2/ftsnames.h +1 -1
- data/vendor/local/include/freetype2/ftstroke.h +1 -1
- data/vendor/local/include/freetype2/ftsynth.h +5 -3
- data/vendor/local/include/freetype2/ftsystem.h +10 -1
- data/vendor/local/include/freetype2/fttrigon.h +1 -1
- data/vendor/local/include/freetype2/ftttdrv.h +85 -22
- data/vendor/local/include/freetype2/fttypes.h +1 -1
- data/vendor/local/include/freetype2/ftwinfnt.h +3 -3
- data/vendor/local/include/freetype2/t1tables.h +4 -3
- data/vendor/local/include/freetype2/ttnameid.h +116 -116
- data/vendor/local/include/freetype2/tttables.h +2 -2
- data/vendor/local/include/freetype2/tttags.h +1 -1
- data/vendor/local/include/freetype2/ttunpat.h +1 -1
- data/vendor/local/include/libpng16/png.h +63 -80
- data/vendor/local/include/libpng16/pngconf.h +8 -30
- data/vendor/local/include/libpng16/pnglibconf.h +10 -4
- data/vendor/local/include/png.h +63 -80
- data/vendor/local/include/pngconf.h +8 -30
- data/vendor/local/include/pnglibconf.h +10 -4
- data/vendor/local/lib/libcairo-gobject.a +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +2 -2
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.la +2 -2
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +2 -2
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +4 -4
- data/vendor/local/lib/libpixman-1.a +0 -0
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +4 -4
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +4 -4
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-script.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/freetype2.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpng.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpng16.pc +1 -1
- data/vendor/local/share/aclocal/freetype2.m4 +1 -1
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +12 -12
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +12 -12
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +12 -12
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +13 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +12 -12
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +35 -35
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +10 -10
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +11 -11
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +13 -13
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +294 -225
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +387 -269
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +432 -302
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +325 -217
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +298 -193
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1121 -812
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +513 -383
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +126 -83
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +172 -119
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +581 -372
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +179 -130
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +888 -539
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +287 -192
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +374 -231
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +395 -219
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +125 -75
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +630 -464
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +225 -200
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +336 -214
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +277 -186
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +495 -350
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +557 -362
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +158 -111
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +655 -441
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +389 -280
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +667 -451
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +579 -351
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +2006 -1545
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +892 -618
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1624 -1188
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2903 -2104
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +13 -13
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +13 -13
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +13 -13
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +13 -13
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1115 -758
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +419 -604
- data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +56 -56
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +70 -70
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +58 -58
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +39 -39
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +30 -30
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +38 -38
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +426 -426
- data/vendor/local/share/gtk-doc/html/cairo/index.html +6 -6
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +234 -325
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +12 -12
- data/vendor/local/share/gtk-doc/html/cairo/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +221 -26
- data/vendor/local/share/gtk-doc/html/cairo/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
- data/vendor/local/share/license/cairo/README +1 -1
- data/vendor/local/share/license/freetype/README +6 -6
- data/vendor/local/share/license/freetype/README.git +1 -1
- data/vendor/local/share/license/libpng/README +2 -2
- data/vendor/local/share/man/man1/freetype-config.1 +1 -1
- data/vendor/local/share/man/man3/libpng.3 +85 -92
- data/vendor/local/share/man/man3/libpngpf.3 +2 -2
- data/vendor/local/share/man/man5/png.5 +1 -1
- metadata +23 -19
@@ -2,26 +2,26 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Appendix A. Creating a language binding for cairo</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>Cairo: A Vector Graphics Library: Appendix A. Creating a language binding for cairo</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
|
9
9
|
<link rel="prev" href="index-1.12.html" title="Index of new symbols in 1.12">
|
10
10
|
<link rel="next" href="bindings-memory.html" title="Memory management">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
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="
|
16
|
-
<td
|
17
|
-
<td
|
18
|
-
<td><
|
19
|
-
<
|
20
|
-
<td><a accesskey="n" href="bindings-memory.html"><img src="right.png" width="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"></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="index-1.12.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="bindings-memory.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
21
21
|
</tr></table>
|
22
22
|
<div class="appendix">
|
23
|
-
<div class="titlepage"><div><div><
|
24
|
-
<a name="language-bindings"></a>Appendix A. Creating a language binding for cairo</
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="language-bindings"></a>Appendix A. Creating a language binding for cairo</h1></div></div></div>
|
25
25
|
<p>
|
26
26
|
While cairo is implemented and C, and has a C API, it is expected
|
27
27
|
that many users of cairo will be using it from languages other
|
@@ -68,6 +68,6 @@
|
|
68
68
|
</div>
|
69
69
|
<div class="footer">
|
70
70
|
<hr>
|
71
|
-
Generated by GTK-Doc V1.
|
71
|
+
Generated by GTK-Doc V1.20</div>
|
72
72
|
</body>
|
73
73
|
</html>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,15 +1,23 @@
|
|
1
|
+
body
|
2
|
+
{
|
3
|
+
font-family: cantarell, sans-serif;
|
4
|
+
}
|
1
5
|
.synopsis, .classsynopsis
|
2
6
|
{
|
3
7
|
/* tango:aluminium 1/2 */
|
4
8
|
background: #eeeeec;
|
5
|
-
|
9
|
+
background: rgba(238, 238, 236, 0.5);
|
10
|
+
border: solid 1px rgb(238, 238, 236);
|
6
11
|
padding: 0.5em;
|
7
12
|
}
|
8
13
|
.programlisting
|
9
14
|
{
|
10
15
|
/* tango:sky blue 0/1 */
|
16
|
+
/* fallback for no rgba support */
|
11
17
|
background: #e6f3ff;
|
12
18
|
border: solid 1px #729fcf;
|
19
|
+
background: rgba(114, 159, 207, 0.1);
|
20
|
+
border: solid 1px rgba(114, 159, 207, 0.2);
|
13
21
|
padding: 0.5em;
|
14
22
|
}
|
15
23
|
.variablelist
|
@@ -27,7 +35,6 @@
|
|
27
35
|
{
|
28
36
|
position: relative;
|
29
37
|
top: 0em ! important;
|
30
|
-
|
31
38
|
}
|
32
39
|
/* this is needed so that the local anchors are displayed below the naviagtion */
|
33
40
|
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]
|
@@ -46,16 +53,20 @@
|
|
46
53
|
*/
|
47
54
|
body
|
48
55
|
{
|
49
|
-
padding-top:
|
50
|
-
padding-bottom:
|
56
|
+
padding-top: 5em;
|
57
|
+
padding-bottom: 500px;
|
58
|
+
max-width: 60em;
|
59
|
+
}
|
60
|
+
p
|
61
|
+
{
|
62
|
+
max-width: 60em;
|
51
63
|
}
|
52
64
|
/* style and size the navigation bar */
|
53
65
|
table.navigation#top
|
54
66
|
{
|
55
67
|
position: fixed;
|
56
|
-
|
57
|
-
|
58
|
-
border: solid 1px #ef2929;
|
68
|
+
background: #e2e2e2;
|
69
|
+
border-bottom: solid 1px #babdb6;
|
59
70
|
margin-top: 0;
|
60
71
|
margin-bottom: 0;
|
61
72
|
top: 0;
|
@@ -65,21 +76,57 @@
|
|
65
76
|
}
|
66
77
|
.navigation a, .navigation a:visited
|
67
78
|
{
|
68
|
-
/* tango:
|
69
|
-
color: #
|
79
|
+
/* tango:sky blue 3 */
|
80
|
+
color: #204a87;
|
70
81
|
}
|
71
82
|
.navigation a:hover
|
72
83
|
{
|
73
|
-
/* tango:
|
74
|
-
color: #
|
84
|
+
/* tango:sky blue 2 */
|
85
|
+
color: #3465a4;
|
75
86
|
}
|
76
87
|
td.shortcuts
|
77
88
|
{
|
78
|
-
/* tango:
|
79
|
-
color: #
|
89
|
+
/* tango:sky blue 2 */
|
90
|
+
color: #3465a4;
|
80
91
|
font-size: 80%;
|
81
92
|
white-space: nowrap;
|
82
93
|
}
|
94
|
+
td.shortcuts .dim
|
95
|
+
{
|
96
|
+
color: #babdb6;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
@media screen and (min-width: 60em) {
|
100
|
+
/* screen larger than 60em */
|
101
|
+
body { margin: auto; }
|
102
|
+
}
|
103
|
+
@media screen and (max-width: 60em) {
|
104
|
+
/* screen less than 60em */
|
105
|
+
#nav_hierarchy { display: none; }
|
106
|
+
#nav_interfaces { display: none; }
|
107
|
+
#nav_prerequisites { display: none; }
|
108
|
+
#nav_derived_interfaces { display: none; }
|
109
|
+
#nav_implementations { display: none; }
|
110
|
+
#nav_child_properties { display: none; }
|
111
|
+
#nav_style_properties { display: none; }
|
112
|
+
#nav_index { display: none; }
|
113
|
+
#nav_glossary { display: none; }
|
114
|
+
.gallery_image { display: none; }
|
115
|
+
.property_flags { display: none; }
|
116
|
+
.signal_flags { display: none; }
|
117
|
+
.parameter_annotations { display: none; }
|
118
|
+
.enum_member_annotations { display: none; }
|
119
|
+
.struct_member_annotations { display: none; }
|
120
|
+
.union_member_annotations { display: none; }
|
121
|
+
/* now that a column is hidden, optimize space */
|
122
|
+
col.parameters_name { width: auto; }
|
123
|
+
col.parameters_description { width: auto; }
|
124
|
+
col.struct_members_name { width: auto; }
|
125
|
+
col.struct_members_description { width: auto; }
|
126
|
+
col.enum_members_name { width: auto; }
|
127
|
+
col.enum_members_description { width: auto; }
|
128
|
+
col.union_members_name { width: auto; }
|
129
|
+
col.union_members_description { width: auto; }
|
83
130
|
}
|
84
131
|
@media print {
|
85
132
|
table.navigation {
|
@@ -89,9 +136,8 @@
|
|
89
136
|
div.titlepage table.navigation {
|
90
137
|
visibility: visible;
|
91
138
|
display: table;
|
92
|
-
|
93
|
-
|
94
|
-
border: solid 1px #ef2929;
|
139
|
+
background: #e2e2e2;
|
140
|
+
border: solid 1px #babdb6;
|
95
141
|
margin-top: 0;
|
96
142
|
margin-bottom: 0;
|
97
143
|
top: 0;
|
@@ -102,7 +148,7 @@
|
|
102
148
|
|
103
149
|
.navigation .title
|
104
150
|
{
|
105
|
-
font-size:
|
151
|
+
font-size: 120%;
|
106
152
|
}
|
107
153
|
|
108
154
|
div.gallery-float
|
@@ -132,6 +178,67 @@ a:hover
|
|
132
178
|
color: #729fcf;
|
133
179
|
}
|
134
180
|
|
181
|
+
div.informaltable table
|
182
|
+
{
|
183
|
+
border-collapse: separate;
|
184
|
+
border-spacing: 20px 3px;
|
185
|
+
border: none;
|
186
|
+
}
|
187
|
+
|
188
|
+
div.informaltable table td, div.informaltable table th
|
189
|
+
{
|
190
|
+
vertical-align: top;
|
191
|
+
}
|
192
|
+
|
193
|
+
.function_type,
|
194
|
+
.variable_type,
|
195
|
+
.property_type,
|
196
|
+
.signal_type,
|
197
|
+
.parameter_name,
|
198
|
+
.struct_member_name,
|
199
|
+
.union_member_name,
|
200
|
+
.define_keyword,
|
201
|
+
.datatype_keyword,
|
202
|
+
.typedef_keyword
|
203
|
+
{
|
204
|
+
text-align: right;
|
205
|
+
}
|
206
|
+
|
207
|
+
/* dim non-primary columns */
|
208
|
+
.c_punctuation,
|
209
|
+
.function_type,
|
210
|
+
.variable_type,
|
211
|
+
.property_type,
|
212
|
+
.signal_type,
|
213
|
+
.define_keyword,
|
214
|
+
.datatype_keyword,
|
215
|
+
.typedef_keyword,
|
216
|
+
.property_flags,
|
217
|
+
.signal_flags,
|
218
|
+
.parameter_annotations,
|
219
|
+
.enum_member_annotations,
|
220
|
+
.struct_member_annotations,
|
221
|
+
.union_member_annotations
|
222
|
+
{
|
223
|
+
color: #888a85;
|
224
|
+
}
|
225
|
+
|
226
|
+
.function_type a,
|
227
|
+
.function_type a:visited,
|
228
|
+
.function_type a:hover,
|
229
|
+
.property_type a,
|
230
|
+
.property_type a:visited,
|
231
|
+
.property_type a:hover,
|
232
|
+
.signal_type a,
|
233
|
+
.signal_type a:visited,
|
234
|
+
.signal_type a:hover,
|
235
|
+
.signal_flags a,
|
236
|
+
.signal_flags a:visited,
|
237
|
+
.signal_flags a:hover
|
238
|
+
{
|
239
|
+
color: #729fcf;
|
240
|
+
}
|
241
|
+
|
135
242
|
div.table table
|
136
243
|
{
|
137
244
|
border-collapse: collapse;
|
@@ -154,14 +261,43 @@ div.table table th
|
|
154
261
|
background-color: #d3d7cf;
|
155
262
|
}
|
156
263
|
|
264
|
+
h4
|
265
|
+
{
|
266
|
+
color: #555753;
|
267
|
+
}
|
268
|
+
|
157
269
|
hr
|
158
270
|
{
|
159
|
-
/* tango:aluminium
|
160
|
-
color: #
|
161
|
-
background: #
|
271
|
+
/* tango:aluminium 1 */
|
272
|
+
color: #d3d7cf;
|
273
|
+
background: #d3d7cf;
|
162
274
|
border: none 0px;
|
163
275
|
height: 1px;
|
164
276
|
clear: both;
|
277
|
+
margin: 2.0em 0em 2.0em 0em;
|
278
|
+
}
|
279
|
+
|
280
|
+
dl.toc dt
|
281
|
+
{
|
282
|
+
padding-bottom: 0.25em;
|
283
|
+
}
|
284
|
+
|
285
|
+
dl.toc > dd > dl > dt
|
286
|
+
{
|
287
|
+
padding-top: 0.25em;
|
288
|
+
padding-bottom: 0.25em;
|
289
|
+
}
|
290
|
+
|
291
|
+
dl.toc > dt
|
292
|
+
{
|
293
|
+
padding-top: 1em;
|
294
|
+
padding-bottom: 0.5em;
|
295
|
+
font-weight: bold;
|
296
|
+
}
|
297
|
+
|
298
|
+
.parameter
|
299
|
+
{
|
300
|
+
font-style: normal;
|
165
301
|
}
|
166
302
|
|
167
303
|
.footer
|
@@ -173,31 +309,70 @@ hr
|
|
173
309
|
font-size: 80%;
|
174
310
|
}
|
175
311
|
|
312
|
+
.informalfigure,
|
313
|
+
.figure
|
314
|
+
{
|
315
|
+
margin: 1em;
|
316
|
+
}
|
317
|
+
|
318
|
+
.informalexample,
|
319
|
+
.example
|
320
|
+
{
|
321
|
+
margin-top: 1em;
|
322
|
+
margin-bottom: 1em;
|
323
|
+
}
|
324
|
+
|
176
325
|
.warning
|
177
326
|
{
|
178
327
|
/* tango:orange 0/1 */
|
179
328
|
background: #ffeed9;
|
329
|
+
background: rgba(252, 175, 62, 0.1);
|
180
330
|
border-color: #ffb04f;
|
331
|
+
border-color: rgba(252, 175, 62, 0.2);
|
181
332
|
}
|
182
333
|
.note
|
183
334
|
{
|
184
335
|
/* tango:chameleon 0/0.5 */
|
185
336
|
background: #d8ffb2;
|
337
|
+
background: rgba(138, 226, 52, 0.1);
|
186
338
|
border-color: #abf562;
|
339
|
+
border-color: rgba(138, 226, 52, 0.2);
|
187
340
|
}
|
188
|
-
.
|
341
|
+
div.blockquote
|
342
|
+
{
|
343
|
+
border-color: #eeeeec;
|
344
|
+
}
|
345
|
+
.note, .warning, div.blockquote
|
189
346
|
{
|
190
347
|
padding: 0.5em;
|
191
348
|
border-width: 1px;
|
192
349
|
border-style: solid;
|
350
|
+
margin: 2em;
|
193
351
|
}
|
194
|
-
.note
|
352
|
+
.note p, .warning p
|
195
353
|
{
|
196
|
-
margin
|
354
|
+
margin: 0;
|
197
355
|
}
|
198
|
-
|
356
|
+
|
357
|
+
div.warning h3.title,
|
358
|
+
div.note h3.title
|
199
359
|
{
|
200
|
-
|
360
|
+
display: none;
|
361
|
+
}
|
362
|
+
|
363
|
+
p + div.section
|
364
|
+
{
|
365
|
+
margin-top: 1em;
|
366
|
+
}
|
367
|
+
|
368
|
+
div.refnamediv,
|
369
|
+
div.refsynopsisdiv,
|
370
|
+
div.refsect1,
|
371
|
+
div.refsect2,
|
372
|
+
div.toc,
|
373
|
+
div.section
|
374
|
+
{
|
375
|
+
margin-bottom: 1em;
|
201
376
|
}
|
202
377
|
|
203
378
|
/* blob links */
|
@@ -210,11 +385,22 @@ h2 .extralinks, h3 .extralinks
|
|
210
385
|
font-weight: normal;
|
211
386
|
}
|
212
387
|
|
388
|
+
.lineart
|
389
|
+
{
|
390
|
+
color: #d3d7cf;
|
391
|
+
font-weight: normal;
|
392
|
+
}
|
393
|
+
|
213
394
|
.annotation
|
214
395
|
{
|
215
396
|
/* tango:aluminium 5 */
|
216
397
|
color: #555753;
|
217
|
-
font-
|
398
|
+
font-weight: normal;
|
399
|
+
}
|
400
|
+
|
401
|
+
.structfield
|
402
|
+
{
|
403
|
+
font-style: normal;
|
218
404
|
font-weight: normal;
|
219
405
|
}
|
220
406
|
|
@@ -237,6 +423,7 @@ h2 .extralinks, h3 .extralinks
|
|
237
423
|
.listing_frame {
|
238
424
|
/* tango:sky blue 1 */
|
239
425
|
border: solid 1px #729fcf;
|
426
|
+
border: solid 1px rgba(114, 159, 207, 0.2);
|
240
427
|
padding: 0px;
|
241
428
|
}
|
242
429
|
|
@@ -245,20 +432,28 @@ h2 .extralinks, h3 .extralinks
|
|
245
432
|
margin-bottom: 0px;
|
246
433
|
padding: 0.5em;
|
247
434
|
}
|
435
|
+
.listing_lines {
|
436
|
+
/* this just adds visual clutter and
|
437
|
+
takes precious room from small screens */
|
438
|
+
display: none;
|
439
|
+
}
|
248
440
|
.listing_lines {
|
249
441
|
/* tango:sky blue 0.5 */
|
250
442
|
background: #a6c5e3;
|
443
|
+
background: rgba(114, 159, 207, 0.2);
|
251
444
|
/* tango:aluminium 6 */
|
252
445
|
color: #2e3436;
|
253
446
|
}
|
254
447
|
.listing_code {
|
255
448
|
/* tango:sky blue 0 */
|
256
449
|
background: #e6f3ff;
|
450
|
+
background: rgba(114, 159, 207, 0.1);
|
257
451
|
}
|
258
452
|
.listing_code .programlisting {
|
259
453
|
/* override from previous */
|
260
454
|
border: none 0px;
|
261
455
|
padding: 0px;
|
456
|
+
background: none;
|
262
457
|
}
|
263
458
|
.listing_lines pre, .listing_code pre {
|
264
459
|
margin: 0px;
|
Binary file
|
Binary file
|