root/trunk/cairo/cairooo/all.d

Revision 179, 4.1 kB (checked in by DRK, 5 years ago)

* Updated everything in cairo so that it compiles in the latest version of DMD. Also re-ran all the snippets, demos and tutorials, and checked that they worked.

Line 
1 /**
2     This is the object-oriented D binding for the cairo 2D drawing API.
3     
4     Modules in this package:
5     
6     $(UL
7         $(LI <a href="cairo.html">cairooo.cairo</a>)
8         $(LI <a href="callbacks.html">cairooo.callbacks</a>)
9         $(LI <a href="context.html">cairooo.context</a>)
10         $(LI <a href="enums.html">cairooo.enums</a>)
11         $(LI <a href="exceptions.html">cairooo.exceptions</a>)
12         $(LI <a href="fontextents.html">cairooo.fontextents</a>)
13         $(LI <a href="fontface.html">cairooo.fontface</a>)
14         $(LI <a href="fontoptions.html">cairooo.fontoptions</a>)
15         $(LI <a href="glyph.html">cairooo.glyph</a>)
16         $(LI <a href="gradient.html">cariooo.gradient</a>)
17         $(LI <a href="imagebuffersurface.html">cairooo.imagebuffersurface</a>)
18         $(LI <a href="imagesurface.html">cairooo.imagesurface</a>)
19         $(LI <a href="lineargradient.html">cairooo.lineargradient</a>)
20         $(LI <a href="matrix.html">cairooo.matrix</a>)
21         $(LI <a href="path.html">cairooo.path</a>)
22         $(LI <a href="pattern.html">cairooo.pattern</a>)
23         $(LI <a href="radialgradient.html">cairooo.radialgradient</a>)
24         $(LI <a href="scaledfont.html">cairooo.scaledfont</a>)
25         $(LI <a href="solidpattern.html">cairooo.solidpattern</a>)
26         $(LI <a href="surface.html">cairooo.surface</a>)
27         $(LI <a href="surfacepattern.html">cairooo.surfacepattern</a>)
28         $(LI <a href="textextents.html">cairooo.textextents</a>)
29     )
30     
31     Subpackages within this package:
32
33     $(UL
34         $(LI <a href="png/all.html">cairooo.png</a>)
35         $(LI <a href="win32/all.html">cairooo.win32</a>)
36     )
37
38 Authors: Daniel Keep
39 Copyright: 2006, Daniel Keep
40 License: BSD v2 (http://opensource.org/licenses/bsd-license.php).
41 **/
42 /**
43     Copyright © 2006 Daniel Keep
44     All rights reserved.
45     
46     Redistribution and use in source and binary forms, with or without
47     modification, are permitted provided that the following conditions are
48     met:
49     
50     * Redistributions of source code must retain the above copyright
51       notice, this list of conditions and the following disclaimer.
52       
53     * Redistributions in binary form must reproduce the above copyright
54       notice, this list of conditions and the following disclaimer in the
55       documentation and/or other materials provided with the distribution.
56     
57     * Neither the name of this software, nor the names of its contributors
58       may be used to endorse or promote products derived from this software
59       without specific prior written permission.
60     
61     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
62     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
63     TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
64     PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
65     CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
66     EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
67     PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
68     PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
69     LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
70     NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
71     SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
72 **/
73 module cairooo.all;
74
75 public
76 {
77     import cairooo.cairo;
78     import cairooo.callbacks;
79     import cairooo.context;
80     import cairooo.enums;
81     import cairooo.exceptions;
82     import cairooo.fontextents;
83     import cairooo.fontface;
84     import cairooo.fontoptions;
85     import cairooo.glyph;
86     import cairooo.gradient;
87     import cairooo.imagebuffersurface;
88     import cairooo.imagesurface;
89     import cairooo.lineargradient;
90     import cairooo.matrix;
91     import cairooo.path;
92     import cairooo.pattern;
93     import cairooo.radialgradient;
94     import cairooo.scaledfont;
95     import cairooo.solidpattern;
96     import cairooo.surface;
97     import cairooo.surfacepattern;
98     import cairooo.textextents;
99 }
Note: See TracBrowser for help on using the browser.