**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Cairo / Mono.Cairo / Surface.cs
blob96e3cb68b4b8d827b7b6849b0685101be75d1978
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.
11 // This is an OO wrapper API for the Cairo API
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
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.
35 using System;
36 using System.Drawing;
37 using System.Runtime.InteropServices;
38 using System.Collections;
39 using Cairo;
41 namespace Cairo {
43 public class Surface : IDisposable
45 static Hashtable surfaces = new Hashtable ();
46 internal IntPtr surface = IntPtr.Zero;
48 private Surface (IntPtr ptr, bool owns)
50 surface = ptr;
51 lock (typeof (Surface)){
52 surfaces [ptr] = this;
54 if (!owns)
55 CairoAPI.cairo_surface_reference (ptr);
58 static internal Surface LookupExternalSurface (IntPtr p)
60 lock (typeof (Surface)){
61 object o = surfaces [p];
62 if (o == null){
63 return new Surface (p, false);
65 return (Surface) o;
69 public static Cairo.Surface CreateForImage (
70 string data, Cairo.Format format, int width, int height, int stride)
72 IntPtr p = CairoAPI.cairo_surface_create_for_image (
73 data, format, width, height, stride);
75 return new Cairo.Surface (p, true);
78 public static Cairo.Surface CreateForImage (
79 Cairo.Format format, int width, int height)
81 IntPtr p = CairoAPI.cairo_image_surface_create (
82 format, width, height);
84 return new Cairo.Surface (p, true);
88 public static Cairo.Surface CreateSimilar (
89 Cairo.Surface surface, Cairo.Format format, int width, int height)
91 IntPtr p = CairoAPI.cairo_surface_create_similar (
92 surface.Handle, format, width, height);
94 return new Cairo.Surface (p, true);
97 public static Cairo.Surface CreateSimilarSolid (
98 Cairo.Surface surface, Cairo.Format format,
99 int width, int height, double red, double green, double blue, double alpha)
101 IntPtr p = CairoAPI.cairo_surface_create_similar_solid (
102 surface.Handle, format, width, height, red, green, blue, alpha);
104 return new Cairo.Surface (p, true);
107 ~Surface ()
109 Dispose (false);
112 public void Show (Graphics gr, int width, int height)
114 CairoAPI.cairo_show_surface (gr.Handle, surface, width, height);
117 void IDisposable.Dispose ()
119 Dispose (true);
120 GC.SuppressFinalize (this);
123 protected virtual void Dispose (bool disposing)
125 if (surface == (IntPtr) 0)
126 return;
127 lock (typeof (Surface)){
128 surfaces.Remove (surface);
130 CairoAPI.cairo_surface_destroy (surface);
131 surface = (IntPtr) 0;
134 public IntPtr Handle {
135 get { return surface; }
138 public int Repeat {
139 set {
140 CairoAPI.cairo_surface_set_repeat (surface, value);
144 public Cairo.Matrix Matrix {
145 set {
146 CairoAPI.cairo_surface_set_matrix (surface, value.Pointer);
149 get {
150 IntPtr p = IntPtr.Zero;
151 CairoAPI.cairo_surface_get_matrix (surface, out p);
152 return new Cairo.Matrix (p);
156 public Cairo.Filter Filter {
157 set {
158 CairoAPI.cairo_surface_set_filter (surface, value);
162 public IntPtr Pointer {
163 get { return surface; }