2005-12-16 John Luke <john.luke@gmail.com>
[mono.git] / mcs / class / Mono.Cairo / Mono.Cairo / Surface.cs
1 //
2 // Mono.Cairo.CairoSurfaceObject.cs
3 //
4 // Authors:
5 //    Duncan Mak
6 //    Miguel de Icaza.
7 //
8 // (C) Ximian Inc, 2003.
9 // (C) Novell, Inc. 2003.
10 //
11 // This is an OO wrapper API for the Cairo API
12 //
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
14 //
15 // Permission is hereby granted, free of charge, to any person obtaining
16 // a copy of this software and associated documentation files (the
17 // "Software"), to deal in the Software without restriction, including
18 // without limitation the rights to use, copy, modify, merge, publish,
19 // distribute, sublicense, and/or sell copies of the Software, and to
20 // permit persons to whom the Software is furnished to do so, subject to
21 // the following conditions:
22 // 
23 // The above copyright notice and this permission notice shall be
24 // included in all copies or substantial portions of the Software.
25 // 
26 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 //
34
35 using System;
36 using System.Collections;
37
38 namespace Cairo {
39
40         public class ImageSurface : Surface
41         {
42                 public ImageSurface (Format format, int width, int height)
43                 {
44                         surface = CairoAPI.cairo_image_surface_create (format, width, height);
45                         lock (surfaces.SyncRoot){
46                                 surfaces [surface] = this;
47                         }
48                 }
49
50                 public ImageSurface (string data, Cairo.Format format, int width, int height, int stride)
51                 {
52                         surface = CairoAPI.cairo_image_surface_create_for_data (data, format, width, height, stride);
53                         lock (surfaces.SyncRoot){
54                                 surfaces [surface] = this;
55                         }
56                 }
57                 
58                 public ImageSurface (string filename)
59                 {
60                         surface = CairoAPI.cairo_image_surface_create_from_png (filename);
61                         lock (surfaces.SyncRoot){
62                                 surfaces [surface] = this;
63                         }
64                 }
65                 
66                 public int Width {
67                         get { return CairoAPI.cairo_image_surface_get_width (surface); }
68                 }
69                 
70                 public int Height {
71                         get { return CairoAPI.cairo_image_surface_get_height (surface); }
72                 }
73                 
74         }
75
76         #if UNSTABLE
77         public class PdfSurface : Surface
78         {
79                 public PdfSurface (string filename, double width, double height)
80                 {
81                         surface = CairoAPI.cairo_pdf_surface_create (filename, width, height);
82                         lock (surfaces.SyncRoot){
83                                 surfaces [surface] = this;
84                         }
85                 }
86
87                 public void SetDPI (double x_dpi, double y_dpi)
88                 {
89                         CairoAPI.cairo_pdf_surface_set_dpi (surface, x_dpi, y_dpi);
90                 }
91         }
92
93         public class PostscriptSurface : Surface
94         {
95                 public PostscriptSurface (string filename, double width, double height)
96                 {
97                         surface = CairoAPI.cairo_ps_surface_create (filename, width, height);
98                         lock (surfaces.SyncRoot){
99                                 surfaces [surface] = this;
100                         }
101                 }
102
103                 public void SetDPI (double x_dpi, double y_dpi)
104                 {
105                         CairoAPI.cairo_ps_surface_set_dpi (surface, x_dpi, y_dpi);
106                 }
107         }
108         #endif
109
110         public class Win32Surface : Surface
111         {
112                 public Win32Surface (IntPtr hdc)
113                 {
114                         surface = CairoAPI.cairo_win32_surface_create (hdc);
115                         lock (surfaces.SyncRoot){
116                                 surfaces [surface] = this;
117                         }
118                 }
119         }
120
121         public class XlibSurface : Surface
122         {
123                 public XlibSurface (IntPtr display, IntPtr drawable, IntPtr visual, int width, int height)
124                 {
125                         surface = CairoAPI.cairo_xlib_surface_create (display, drawable, visual, width, height);
126                         lock (surfaces.SyncRoot){
127                                 surfaces [surface] = this;
128                         }
129                 }
130
131                 /* FIXME: has the same parameters as above
132                 public XlibSurface (IntPtr display, IntPtr bitmap, IntPtr screen, int width, int height)
133                 {
134                         surface = CairoAPI.cairo_xlib_surface_create_for_bitmap (display, bitmap, screen, width, height);
135                         lock (surfaces.SyncRoot){
136                                 surfaces [surface] = this;
137                         }
138                 }
139                 */
140
141                 public void SetDrawable (IntPtr drawable, int width, int height)
142                 {
143                         CairoAPI.cairo_xlib_surface_set_drawable (surface, drawable, width, height);
144                 }
145
146                 public void SetSize (int width, int height)
147                 {
148                         CairoAPI.cairo_xlib_surface_set_size (surface, width, height);
149                 }
150         }
151    
152         public class Surface : IDisposable 
153         {                                               
154                 protected static Hashtable surfaces = new Hashtable ();
155                 internal IntPtr surface = IntPtr.Zero;
156
157                 protected Surface()
158                 {
159                 }
160                 
161                 private Surface (IntPtr ptr, bool owns)
162                 {
163                         surface = ptr;
164                         lock (surfaces.SyncRoot){
165                                 surfaces [ptr] = this;
166                         }
167                         if (!owns)
168                                 CairoAPI.cairo_surface_reference (ptr);
169                 }
170
171                 static internal Surface LookupExternalSurface (IntPtr p)
172                 {
173                         lock (surfaces.SyncRoot){
174                                 object o = surfaces [p];
175                                 if (o == null){
176                                         return new Surface (p, false);
177                                 }
178                                 return (Surface) o;
179                         }
180                 }               
181                 
182                 [Obsolete ("Use an ImageSurface constructor instead.")]
183                 public static Cairo.Surface CreateForImage (
184                         string data, Cairo.Format format, int width, int height, int stride)
185                 {
186                         IntPtr p = CairoAPI.cairo_image_surface_create_for_data (
187                                 data, format, width, height, stride);
188                         
189                         return new Cairo.Surface (p, true);
190                 }
191
192                 [Obsolete ("Use an ImageSurface constructor instead.")]
193                 public static Cairo.Surface CreateForImage (
194                         Cairo.Format format, int width, int height)
195                 {
196                         IntPtr p = CairoAPI.cairo_image_surface_create (
197                                 format, width, height);
198
199                         return new Cairo.Surface (p, true);
200                 }
201
202
203                 public Cairo.Surface CreateSimilar (
204                         Cairo.Content content, int width, int height)
205                 {
206                         IntPtr p = CairoAPI.cairo_surface_create_similar (
207                                 this.Handle, content, width, height);
208
209                         return new Cairo.Surface (p, true);
210                 }
211
212                 ~Surface ()
213                 {
214                         Dispose (false);
215                 }
216
217                 public void Show (Context gr, int width, int height) 
218                 {
219                         CairoAPI.cairo_set_source_surface (gr.Handle, surface, width, height);
220                         CairoAPI.cairo_paint (gr.Handle);
221                 }
222
223                 void IDisposable.Dispose ()
224                 {
225                         Dispose (true);
226                         GC.SuppressFinalize (this);
227                 }
228
229                 protected virtual void Dispose (bool disposing)
230                 {
231                         if (surface == (IntPtr) 0)
232                                 return;
233                         
234                         lock (surfaces.SyncRoot)
235                                 surfaces.Remove (surface);
236
237                         CairoAPI.cairo_surface_destroy (surface);
238                         surface = (IntPtr) 0;
239                 }
240                 
241                 public Cairo.Status Finish ()
242                 {
243                         return CairoAPI.cairo_surface_finish (surface);
244                 }
245                 
246                 public Cairo.Status Flush ()
247                 {
248                         return CairoAPI.cairo_surface_flush (surface);
249                 }
250                 
251                 public void MarkDirty ()
252                 {
253                         CairoAPI.cairo_surface_mark_dirty (Handle);
254                 }
255                 
256                 public void MarkDirty (Rectangle rectangle)
257                 {
258                         CairoAPI.cairo_surface_mark_dirty_rectangle (Handle, (int)rectangle.X, (int)rectangle.Y, (int)rectangle.Width, (int)rectangle.Height);
259                 }
260                 
261                 public IntPtr Handle {
262                         get {
263                                 return surface;
264                         }
265                 }
266
267                 public PointD DeviceOffset {
268                         set {
269                                 CairoAPI.cairo_surface_set_device_offset (surface, value.X, value.Y);
270                         }
271                 }
272                 
273                 public void Destroy()
274                 {
275                         CairoAPI.cairo_surface_destroy (surface);
276                 }
277
278                 public void WriteToPng (string filename)
279                 {
280                         CairoAPI.cairo_surface_write_to_png (surface, filename);
281                 }
282                 
283                 [Obsolete ("Use Handle instead.")]
284                 public IntPtr Pointer {
285                         get {
286                                 return surface;
287                         }
288                 }
289                 
290                 public Status Status {
291                         get { return CairoAPI.cairo_surface_status (surface); }
292                 }
293
294         }
295 }