Merge pull request #4723 from lambdageek/bug-54485
[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, bool owner)
42                 {
43                         if (handle == IntPtr.Zero)
44                                 return null;
45                         return new FontFace (handle, owner);
46                 }
47
48                 ~FontFace ()
49                 {
50                         Dispose (false);
51                 }
52
53                 public void Dispose ()
54                 {
55                         Dispose (true);
56                         GC.SuppressFinalize (this);
57                 }
58
59                 protected virtual void Dispose (bool disposing)
60                 {
61                         if (!disposing || CairoDebug.Enabled)
62                                 CairoDebug.OnDisposed<FontFace> (handle, disposing);
63
64                         if (!disposing|| handle == IntPtr.Zero)
65                                 return;
66
67                         NativeMethods.cairo_font_face_destroy (handle);
68                         handle = IntPtr.Zero;
69                 }
70
71                 [Obsolete]
72                 public FontFace (IntPtr handle) : this (handle, true)
73                 {
74                 }
75
76                 public FontFace (IntPtr handle, bool owned)
77                 {
78                         this.handle = handle;
79                         if (!owned)
80                                 NativeMethods.cairo_font_face_reference (handle);
81                         if (CairoDebug.Enabled)
82                                 CairoDebug.OnAllocated (handle);
83                 }
84
85                 public IntPtr Handle {
86                         get {
87                                 return handle;
88                         }
89                 }
90
91                 public Status Status {
92                         get {
93                                 return NativeMethods.cairo_font_face_status (handle);
94                         }
95                 }
96                 
97                 public FontType FontType {
98                         get {
99                                 return NativeMethods.cairo_font_face_get_type (handle);
100                         }
101                 }
102
103                 public uint ReferenceCount {
104                         get { return NativeMethods.cairo_font_face_get_reference_count (handle); }
105                 }
106         }
107 }
108