c62c8d0d039ef4e9b679ed87094d12fb475b1767
[mono.git] / mcs / class / corlib / System / ConsoleKeyInfo.cs
1 //
2 // System.ConsoleKeyInfo.cs
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 namespace System {
31         [Serializable]
32         public struct ConsoleKeyInfo {
33                 internal static ConsoleKeyInfo Empty = new ConsoleKeyInfo ('\0', 0, false, false, false);
34                 ConsoleKey key;
35                 char keychar;
36                 ConsoleModifiers modifiers;
37
38                 public ConsoleKeyInfo (char keyChar, ConsoleKey key, bool shift, bool alt, bool control)
39                 {
40                         this.key = key;
41                         this.keychar = keyChar;
42                         modifiers = 0;
43                         SetModifiers (shift, alt, control);
44                 }
45
46                 internal ConsoleKeyInfo (ConsoleKeyInfo other)
47                 {
48                         this.key = other.key;
49                         this.keychar = other.keychar;
50                         this.modifiers = other.modifiers;
51                 }
52
53                 internal void SetKey (ConsoleKey key)
54                 {
55                         this.key = key;
56                 }
57
58                 internal void SetKeyChar (char keyChar)
59                 {
60                         this.keychar = keyChar;
61                 }
62
63                 internal void SetModifiers (bool shift, bool alt, bool control)
64                 {
65                         this.modifiers = (shift) ? ConsoleModifiers.Shift : 0;
66                         this.modifiers |= (alt) ? ConsoleModifiers.Alt : 0;
67                         this.modifiers |= (control) ? ConsoleModifiers.Control : 0;
68                 }
69
70                 public ConsoleKey Key {
71                         get { return key; }
72                 }
73
74                 public char KeyChar {
75                         get { return keychar; }
76                 }
77
78                 public ConsoleModifiers Modifiers {
79                         get { return modifiers; }
80                 }
81                 
82                 public override bool Equals (object value)
83                 {
84                         if (!(value is ConsoleKeyInfo))
85                                 return false;
86                         return Equals ((ConsoleKeyInfo) value);
87                 }
88                 
89                 public static bool operator == (ConsoleKeyInfo a, ConsoleKeyInfo b)
90                 {
91                         return a.Equals (b);
92                 }
93                 
94                 public static bool operator != (ConsoleKeyInfo a, ConsoleKeyInfo b)
95                 {
96                         return !a.Equals (b);
97                 }
98                 
99                 public bool Equals (ConsoleKeyInfo obj)
100                 {
101                         return key == obj.key && obj.keychar == keychar && obj.modifiers == modifiers;
102                 }
103                 
104                 public override int GetHashCode ()
105                 {
106                         return key.GetHashCode () ^ keychar.GetHashCode () ^ modifiers.GetHashCode ();
107                 }
108         }
109 }
110