* Mono.Cairo/Cairo.cs (cairo_set_target_drawable): Not available anymore, removed.
[mono.git] / mcs / class / Mono.Cairo / ChangeLog
1 2003-10-11  Duncan Mak  <duncan@ximian.com>
2
3         * Mono.Cairo/Cairo.cs (cairo_set_target_drawable): Not available anymore, removed.
4         (cairo_reference, cairo_arc, cairo_arc_negative): New API, added.
5         (cairo_current_matrix): Signature changed, updated.
6         (cairo_surface_reference): New API.
7         (cairo_surface_get_matrix): Use 'out' instead of 'ref' param.
8
9         * Mono.Cairo/Surface.cs:        
10         * Mono.Cairo/Object.cs: Added binding for new APIs listed in Cairo.cs.
11         (Destroy): It's supposed to return void, not IntPtr.
12
13 2003-09-08  Duncan Mak  <duncan@ximian.com>
14
15         * Mono.Cairo/Surface.cs (PutImage): Removed.
16
17         * Mono.Cairo/Object.cs (Copy): Wrapper for cairo_copy.
18
19         * Mono.Cairo/Cairo.cs (cairo_copy): New API
20         (cairo_surface_put_image): Removed.
21
22 2003-09-05  Duncan Mak  <duncan@ximian.com>
23
24         * Mono.Cairo/Object.cs (Tolerance): Fix typo.
25
26 2003-09-04  Duncan Mak  <duncan@ximian.com>
27
28         * Mono.Cairo/Cairo.cs: Update to the new API in CVS. Change all
29         *_get_* to *_current_*. 
30         (cairo_set_target_drawable): 
31         (cairo_surface_create_for_drawable): Add CLSCompliantAttribute.
32         (cairo_current_tolerance):
33         (cairo_set_tolerance): Fix typo. Thanks Alp.
34
35         * Mono.Cairo/Object.cs: Update binding to reflect changes in the
36         API.
37
38 2003-08-12  Duncan Mak  <duncan@ximian.com>
39
40         * Mono.Cairo/Cairo.cs: csc was having trouble resolving the type
41         name because the namespace name (Cairo) is the same as the class
42         name (also Cairo). To resolve this ambiguity while keeping the
43         code looking decent, the Cairo.Cairo class is now Cairo.CairoAPI.
44
45 2003-08-12  Duncan Mak  <duncan@ximian.com>
46
47         * Mono.Cairo/Cairo.cs: Now that the namespace is called 'Cairo',
48         the enums no longer need to be nested inside the Cairo class.
49
50         * Mono.Cairo/Matrix.cs:
51         * Mono.Cairo/Object.cs:
52         * Mono.Cairo/Surface.cs: I never liked having the word 'Object' in
53         the name of a class, esp. now that we have namespaces. So I have
54         decided to rename them.
55
56                 CairoObject        -> Cairo.Object
57                 CairoMatrixObject  -> Cairo.Matrix
58                 CairoSurfaceObject -> Cairo.Surface
59
60         I didn't like the Mono.Cairo namespace either, so they're just in
61         the Cairo namespace now. I know it's icky that the directory is
62         called Mono.Cairo, and the dll we write to is called
63         'Mono.Cairo.dll', and yet the namespace now gonna just be 'Cairo'
64         and not 'Mono.Cairo'. C'est la vie.
65         
66 2003-08-12  Duncan Mak  <duncan@ximian.com>
67
68         * Mono.Cairo/CairoObject.cs (Pattern): Re-enable this. This
69         is actually a CairoSurfaceObject (a C cairo_surface_t); the
70         CairoPatternObject is just something I made up...
71
72 2003-08-12  Nick Drochak <ndrochak@gol.com>
73
74         * Makefile: put .dll on System.Drawing reference. Fix CSC build.
75
76 2003-08-11  Duncan Mak  <duncan@ximian.com>
77
78         * makefile:
79         * Mono.Cairo.dll.sources: Added.
80
81         * Mono.Cairo/Cairo.cs:
82         * Mono.Cairo/CairoObject.cs:
83         * Mono.Cairo/CairoMatrixObject.cs: 
84         * Mono.Cairo/CairoSurfaceObject.cs: Made them build properly.
85
86 2003-08-09  Duncan Mak  <duncan@ximian.com>
87
88         * Mono.Cairo/Cairo.cs:
89         * Mono.Cairo/CairoObject.cs:
90         * Mono.Cairo/CairoMatrixObject.cs: 
91         * Mono.Cairo/CairoSurfaceObject.cs: Added Cairo binding.