2010-03-17 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / Mono.Cairo / Mono.Cairo / Glyph.cs
1 //
2 // Mono.Cairo.Glyph.cs
3 //
4 // Authors: Duncan Mak (duncan@ximian.com)
5 //          Hisham Mardam Bey (hisham.mardambey@gmail.com)
6 //
7 // (C) Ximian, Inc. 2003
8 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Runtime.InteropServices;
32
33 namespace Cairo
34 {
35         [StructLayout(LayoutKind.Sequential)]
36         public struct Glyph
37         {
38                 internal long index;
39                 internal double x;
40                 internal double y;
41                 
42                 public Glyph (long index, double x, double y)
43                 {
44                         this.index = index;
45                         this.x = x;
46                         this.y = y;
47                 }
48                 
49                 public long Index {
50                         get { return index; }
51                         set { index = value; }
52                 }
53                 
54                 public double X {
55                         get { return x; }
56                         set { x = value; }
57                 }
58                 
59                 public double Y {
60                         get { return y; }
61                         set { y = value; }
62                 }
63
64                 public override bool Equals (object obj)
65                 {
66                         if (obj is Glyph)
67                                 return this == (Glyph)obj;
68                         return false;
69                 }
70
71                 public override int GetHashCode ()
72                 {
73                         return (int) Index ^ (int) X ^ (int) Y;
74                 }
75
76                 internal static IntPtr GlyphsToIntPtr (Glyph[] glyphs)
77                 {
78                         int size = Marshal.SizeOf (glyphs[0]);
79                         IntPtr dest = Marshal.AllocHGlobal (size * glyphs.Length);
80                         long pos = dest.ToInt64 ();
81                         for (int i = 0; i < glyphs.Length; i++, pos += size)
82                                 Marshal.StructureToPtr (glyphs[i], (IntPtr) pos, false);
83                         return dest;
84                 }
85
86                 public static bool operator == (Glyph glyph, Glyph other)
87                 {
88                         return glyph.Index == other.Index && glyph.X == other.X && glyph.Y == other.Y;
89                 }
90
91                 public static bool operator != (Glyph glyph, Glyph other)
92                 {
93                         return !(glyph == other);
94                 }
95         }
96 }