* Mono.Cairo/Cairo.cs: Update to the new API in CVS. Change all
[mono.git] / mcs / class / Mono.Cairo / ChangeLog
1 2003-09-04  Duncan Mak  <duncan@ximian.com>
2
3         * Mono.Cairo/Cairo.cs: Update to the new API in CVS. Change all
4         *_get_* to *_current_*.
5
6         * Mono.Cairo/Object.cs: Update binding to reflect changes in the
7         API.
8
9 2003-08-12  Duncan Mak  <duncan@ximian.com>
10
11         * Mono.Cairo/Cairo.cs: csc was having trouble resolving the type
12         name because the namespace name (Cairo) is the same as the class
13         name (also Cairo). To resolve this ambiguity while keeping the
14         code looking decent, the Cairo.Cairo class is now Cairo.CairoAPI.
15
16 2003-08-12  Duncan Mak  <duncan@ximian.com>
17
18         * Mono.Cairo/Cairo.cs: Now that the namespace is called 'Cairo',
19         the enums no longer need to be nested inside the Cairo class.
20
21         * Mono.Cairo/Matrix.cs:
22         * Mono.Cairo/Object.cs:
23         * Mono.Cairo/Surface.cs: I never liked having the word 'Object' in
24         the name of a class, esp. now that we have namespaces. So I have
25         decided to rename them.
26
27                 CairoObject        -> Cairo.Object
28                 CairoMatrixObject  -> Cairo.Matrix
29                 CairoSurfaceObject -> Cairo.Surface
30
31         I didn't like the Mono.Cairo namespace either, so they're just in
32         the Cairo namespace now. I know it's icky that the directory is
33         called Mono.Cairo, and the dll we write to is called
34         'Mono.Cairo.dll', and yet the namespace now gonna just be 'Cairo'
35         and not 'Mono.Cairo'. C'est la vie.
36         
37 2003-08-12  Duncan Mak  <duncan@ximian.com>
38
39         * Mono.Cairo/CairoObject.cs (Pattern): Re-enable this. This
40         is actually a CairoSurfaceObject (a C cairo_surface_t); the
41         CairoPatternObject is just something I made up...
42
43 2003-08-12  Nick Drochak <ndrochak@gol.com>
44
45         * Makefile: put .dll on System.Drawing reference. Fix CSC build.
46
47 2003-08-11  Duncan Mak  <duncan@ximian.com>
48
49         * makefile:
50         * Mono.Cairo.dll.sources: Added.
51
52         * Mono.Cairo/Cairo.cs:
53         * Mono.Cairo/CairoObject.cs:
54         * Mono.Cairo/CairoMatrixObject.cs: 
55         * Mono.Cairo/CairoSurfaceObject.cs: Made them build properly.
56
57 2003-08-09  Duncan Mak  <duncan@ximian.com>
58
59         * Mono.Cairo/Cairo.cs:
60         * Mono.Cairo/CairoObject.cs:
61         * Mono.Cairo/CairoMatrixObject.cs: 
62         * Mono.Cairo/CairoSurfaceObject.cs: Added Cairo binding.