Merge pull request #600 from tr8dr/master
[mono.git] / mcs / class / Mono.Cairo / Mono.Cairo / XlibSurface.cs
1 //
2 // Mono.Cairo.XlibSurface.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
37 namespace Cairo {
38
39         public class XlibSurface : Surface
40         {
41                 public XlibSurface (IntPtr display, IntPtr drawable, IntPtr visual, int width, int height)
42                         : base (NativeMethods.cairo_xlib_surface_create (display, drawable, visual, width, height), true)
43                 {
44                 }
45
46                 public XlibSurface (IntPtr ptr, bool own) : base (ptr, own)
47                 {
48                 }
49
50                 public static XlibSurface FromBitmap (IntPtr display, IntPtr bitmap, IntPtr screen, int width, int height)
51                 {
52                         IntPtr ptr = NativeMethods.cairo_xlib_surface_create_for_bitmap (display, bitmap, screen, width, height);
53                         return new XlibSurface(ptr, true);
54                 }
55
56                 public void SetDrawable (IntPtr drawable, int width, int height)
57                 {
58                         NativeMethods.cairo_xlib_surface_set_drawable (Handle, drawable, width, height);
59                 }
60
61                 public void SetSize (int width, int height)
62                 {
63                         NativeMethods.cairo_xlib_surface_set_size (Handle, width, height);
64                 }
65
66                 public int Depth {
67                         get { return NativeMethods.cairo_xlib_surface_get_depth (Handle); }
68                 }
69                 
70                 public IntPtr Display {
71                         get { return NativeMethods.cairo_xlib_surface_get_display (Handle); }
72                 }
73
74                 public IntPtr Drawable {
75                         get { return NativeMethods.cairo_xlib_surface_get_drawable (Handle); }
76                 }
77
78                 public int Height {
79                         get { return NativeMethods.cairo_xlib_surface_get_height (Handle); }
80                 }
81
82                 public IntPtr Screen {
83                         get { return NativeMethods.cairo_xlib_surface_get_screen (Handle); }
84                 }
85
86                 public IntPtr Visual {
87                         get { return NativeMethods.cairo_xlib_surface_get_visual (Handle); }
88                 }
89
90                 public int Width {
91                         get { return NativeMethods.cairo_xlib_surface_get_width (Handle); }
92                 }
93
94         }
95 }