2005-11-25 John Luke <john.luke@gmail.com>
[mono.git] / mcs / class / Mono.Cairo / Mono.Cairo / FontOptions.cs
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.
27 //
28 using System;
29
30 namespace Cairo
31 {
32         public class FontOptions : IDisposable
33         {
34                 IntPtr handle;
35                 bool disposed = false;
36
37                 public FontOptions ()
38                 {
39                         handle = CairoAPI.cairo_font_options_create ();
40                 }
41
42                 ~FontOptions ()
43                 {
44                         Dispose (false);
45                 }
46
47                 internal FontOptions (IntPtr handle)
48                 {
49                         this.handle = handle;
50                 }
51
52                 public FontOptions Copy ()
53                 {
54                         return new FontOptions (CairoAPI.cairo_font_options_copy (handle));
55                 }
56
57                 public void Destroy ()
58                 {
59                         CairoAPI.cairo_font_options_destroy (handle);
60                 }
61
62                 public void Dispose ()
63                 {
64                         Dispose (true);
65                         GC.SuppressFinalize (this);
66                 }
67
68                 private void Dispose (bool disposing)
69                 {
70                         if (!disposed) {
71                                 Destroy ();
72                                 handle = IntPtr.Zero;
73                         }
74                         disposed = true;
75                 }
76
77                 public static bool operator == (FontOptions options, FontOptions other)
78                 {
79                         return CairoAPI.cairo_font_options_equal (options.Handle, other.Handle);
80                 }
81
82                 public static bool operator != (FontOptions options, FontOptions other)
83                 {
84                         return !(options == other);
85                 }
86
87                 public override bool Equals (object other)
88                 {
89                         if (other is FontOptions)
90                                 return this == (FontOptions) other;
91                         return false;
92                 }
93
94                 public IntPtr Handle {
95                         get { return handle; }
96                 }
97
98                 public override int GetHashCode ()
99                 {
100                         return (int) CairoAPI.cairo_font_options_hash (handle);
101                 }
102                 
103                 public void Merge (FontOptions other)
104                 {
105                         CairoAPI.cairo_font_options_merge (handle, other.Handle);
106                 }
107
108                 public Antialias Antialias {
109                         get { return CairoAPI.cairo_font_options_get_antialias (handle); }
110                         set { CairoAPI.cairo_font_options_set_antialias (handle, value); }
111                 }
112
113                 public HintMetrics HintMetrics {
114                         get { return CairoAPI.cairo_font_options_get_hint_metrics (handle);}
115                         set { CairoAPI.cairo_font_options_set_hint_metrics (handle, value); }
116                 }
117
118                 public HintStyle HintStyle {
119                         get { return CairoAPI.cairo_font_options_get_hint_style (handle);}
120                         set { CairoAPI.cairo_font_options_set_hint_style (handle, value); }
121                 }
122
123                 public Status Status {
124                         get { return CairoAPI.cairo_font_options_status (handle); }
125                 }
126
127                 public SubpixelOrder SubpixelOrder {
128                         get { return CairoAPI.cairo_font_options_get_subpixel_order (handle);}
129                         set { CairoAPI.cairo_font_options_set_subpixel_order (handle, value); }
130                 }
131         }
132 }
133