Merge pull request #211 from symform/master
[mono.git] / mcs / class / Mono.Cairo / Mono.Cairo / FontFace.cs
1 //
2 // Mono.Cairo.FontFace.cs
3 //
4 // Author:
5 //   Alp Toker (alp@atoker.com)
6 //   Miguel de Icaza (miguel@novell.com)
7 //
8 // (C) Ximian Inc, 2003.
9 //
10 // This is an OO wrapper API for the Cairo API.
11 //
12 // Copyright (C) 2004, 2007 Novell, Inc (http://www.novell.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33 using System;
34
35 namespace Cairo
36 {
37         public class FontFace : IDisposable
38         {
39                 IntPtr handle;
40
41                 internal static FontFace Lookup (IntPtr handle)
42                 {
43                         if (handle == IntPtr.Zero)
44                                 return null;
45
46                         NativeMethods.cairo_font_face_reference (handle);
47
48                         return new FontFace (handle);
49                 }
50
51                 ~FontFace ()
52                 {
53                         // Since Cairo is not thread safe, we can not unref the
54                         // font_face here, the programmer must do this with Dispose
55
56                         Console.Error.WriteLine ("Programmer forgot to call Dispose on the FontFace");
57                         Dispose (false);
58                 }
59
60                 public void Dispose ()
61                 {
62                         Dispose (true);
63                 }
64
65                 protected virtual void Dispose (bool disposing)
66                 {
67                         if (disposing)
68                                 NativeMethods.cairo_font_face_destroy (handle);
69                         handle = IntPtr.Zero;
70                         GC.SuppressFinalize (this);
71                 }
72                 
73                 // TODO: make non-public when all entry points are complete in binding
74                 public FontFace (IntPtr handle)
75                 {
76                         this.handle = handle;
77                 }
78
79                 public IntPtr Handle {
80                         get {
81                                 return handle;
82                         }
83                 }
84
85                 public Status Status {
86                         get {
87                                 return NativeMethods.cairo_font_face_status (handle);
88                         }
89                 }
90                 
91                 public FontType FontType {
92                         get {
93                                 return NativeMethods.cairo_font_face_get_type (handle);
94                         }
95                 }
96
97                 public uint ReferenceCount {
98                         get { return NativeMethods.cairo_font_face_get_reference_count (handle); }
99                 }
100         }
101 }
102