2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / class / Mono.Cairo / Mono.Cairo / FontOptions.cs
blob476910f1b1d35396394f8c83430a0366139aa88f
1 //
2 // Mono.Cairo.FontOptions.cs
3 //
4 // Author:
5 // John Luke (john.luke@gmail.com)
6 //
7 // (C) John Luke 2005.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 using System;
31 namespace Cairo
33 public class FontOptions : IDisposable
35 IntPtr handle;
36 bool disposed;
38 public FontOptions ()
40 handle = NativeMethods.cairo_font_options_create ();
43 ~FontOptions ()
45 Dispose (false);
48 internal FontOptions (IntPtr handle)
50 this.handle = handle;
53 public FontOptions Copy ()
55 return new FontOptions (NativeMethods.cairo_font_options_copy (handle));
58 public void Destroy ()
60 NativeMethods.cairo_font_options_destroy (handle);
63 public void Dispose ()
65 Dispose (true);
66 GC.SuppressFinalize (this);
69 private void Dispose (bool disposing)
71 if (!disposed) {
72 Destroy ();
73 handle = IntPtr.Zero;
75 disposed = true;
78 public static bool operator == (FontOptions options, FontOptions other)
80 return Equals (options, other);
83 public static bool operator != (FontOptions options, FontOptions other)
85 return !(options == other);
88 public override bool Equals (object other)
90 return Equals (other as FontOptions);
93 bool Equals (FontOptions options)
95 return options != null && NativeMethods.cairo_font_options_equal (Handle, options.Handle);
98 public IntPtr Handle {
99 get { return handle; }
102 public override int GetHashCode ()
104 return (int) NativeMethods.cairo_font_options_hash (handle);
107 public void Merge (FontOptions other)
109 if (other == null)
110 throw new ArgumentNullException ("other");
111 NativeMethods.cairo_font_options_merge (handle, other.Handle);
114 public Antialias Antialias {
115 get { return NativeMethods.cairo_font_options_get_antialias (handle); }
116 set { NativeMethods.cairo_font_options_set_antialias (handle, value); }
119 public HintMetrics HintMetrics {
120 get { return NativeMethods.cairo_font_options_get_hint_metrics (handle);}
121 set { NativeMethods.cairo_font_options_set_hint_metrics (handle, value); }
124 public HintStyle HintStyle {
125 get { return NativeMethods.cairo_font_options_get_hint_style (handle);}
126 set { NativeMethods.cairo_font_options_set_hint_style (handle, value); }
129 public Status Status {
130 get { return NativeMethods.cairo_font_options_status (handle); }
133 public SubpixelOrder SubpixelOrder {
134 get { return NativeMethods.cairo_font_options_get_subpixel_order (handle);}
135 set { NativeMethods.cairo_font_options_set_subpixel_order (handle, value); }