2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / class / Mono.Cairo / Mono.Cairo / ScaledFont.cs
blob2b0f6cf0c5fb5a8a6cb9f223e4022b815741e458
1 //
2 // Mono.Cairo.ScaledFont.cs
3 //
4 // (c) 2008 Jordi Mas i Hernandez (jordimash@gmail.com)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining
7 // a copy of this software and associated documentation files (the
8 // "Software"), to deal in the Software without restriction, including
9 // without limitation the rights to use, copy, modify, merge, publish,
10 // distribute, sublicense, and/or sell copies of the Software, and to
11 // permit persons to whom the Software is furnished to do so, subject to
12 // the following conditions:
13 //
14 // The above copyright notice and this permission notice shall be
15 // included in all copies or substantial portions of the Software.
16 //
17 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 using System;
27 using System.Runtime.InteropServices;
29 namespace Cairo {
31 public class ScaledFont : IDisposable
33 protected IntPtr handle = IntPtr.Zero;
35 internal ScaledFont (IntPtr handle)
37 this.handle = handle;
40 public ScaledFont (FontFace fontFace, Matrix matrix, Matrix ctm, FontOptions options)
42 handle = NativeMethods.cairo_scaled_font_create (fontFace.Handle, matrix, ctm, options.Handle);
45 ~ScaledFont ()
47 Dispose (false);
50 public IntPtr Handle {
51 get {
52 return handle;
56 public FontExtents FontExtents {
57 get {
58 FontExtents extents;
59 NativeMethods.cairo_scaled_font_extents (handle, out extents);
60 return extents;
64 public Matrix FontMatrix {
65 get {
66 Matrix m;
67 NativeMethods.cairo_scaled_font_get_font_matrix (handle, out m);
68 return m;
72 public FontType FontType {
73 get {
74 return NativeMethods.cairo_scaled_font_get_type (handle);
78 public TextExtents GlyphExtents (Glyph[] glyphs)
80 IntPtr ptr = Context.FromGlyphToUnManagedMemory (glyphs);
81 TextExtents extents;
83 NativeMethods.cairo_scaled_font_glyph_extents (handle, ptr, glyphs.Length, out extents);
85 Marshal.FreeHGlobal (ptr);
86 return extents;
89 public Status Status
91 get { return NativeMethods.cairo_scaled_font_status (handle); }
94 public void Dispose ()
96 Dispose (true);
97 GC.SuppressFinalize (this);
100 protected virtual void Dispose (bool disposing)
102 if (disposing) {
103 NativeMethods.cairo_scaled_font_destroy (handle);
104 handle = IntPtr.Zero;
108 protected void Reference ()
110 NativeMethods.cairo_scaled_font_reference (handle);