[System.Runtime.Remoting] Adds System.Core reference for tests
[mono.git] / mcs / class / WindowsBase / System.Windows / Int32Rect.cs
1 //
2 // DependencyPropertyChangedEventArgs.cs
3 //
4 // Author:
5 //   Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2007 Novell, Inc.
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
29 using System;
30 using System.ComponentModel;
31 using System.Windows.Converters;
32 using System.Windows.Markup;
33
34 namespace System.Windows {
35
36         [Serializable]
37         [TypeConverter (typeof(Int32RectConverter))]
38         [ValueSerializer (typeof(Int32RectValueSerializer))]
39         public struct Int32Rect : IFormattable
40         {
41                 int _x, _y, _width, _height;
42
43                 public Int32Rect (int x, int y, int width, int height)
44                 {
45                         this._x = x;
46                         this._y = y;
47                         this._width = width;
48                         this._height = height;
49                 }
50
51                 public static bool operator != (Int32Rect int32Rect1, Int32Rect int32Rect2)
52                 {
53                         return !int32Rect1.Equals(int32Rect2);
54                 }
55
56                 public static bool operator == (Int32Rect int32Rect1, Int32Rect int32Rect2)
57                 {
58                         return int32Rect1.Equals(int32Rect2);
59                 }
60
61                 public static Int32Rect Empty {
62                         get { return new Int32Rect (0, 0, 0, 0); }
63                 }
64
65                 public int Height {
66                         get { return _height; }
67                         set { _height = value; }
68                 }
69
70                 public bool IsEmpty {
71                         get { return _width == 0 && _height == 0; }
72                 }
73
74                 public int Width {
75                         get { return _width; }
76                         set { _width = value; }
77                 }
78
79                 public int X {
80                         get { return _x; }
81                         set { _x = value; }
82                 }
83
84                 public int Y {
85                         get { return _y; }
86                         set { _y = value; }
87                 }
88
89                 public bool Equals (Int32Rect value)
90                 {
91                         return (_x == value._x &&
92                                 _y == value._y &&
93                                 _width == value._width &&
94                                 _height == value._height);
95                 }
96
97                 public override bool Equals (object o)
98                 {
99                         if (!(o is Int32Rect))
100                                 return false;
101
102                         return Equals ((Int32Rect)o);
103                 }
104
105                 public static bool Equals (Int32Rect int32Rect1, Int32Rect int32Rect2)
106                 {
107                         return int32Rect1.Equals (int32Rect2);
108                 }
109
110                 public override int GetHashCode ()
111                 {
112                         throw new NotImplementedException ();
113                 }
114
115                 public static Int32Rect Parse (string source)
116                 {
117                         throw new NotImplementedException ();
118                 }
119
120                 public override string ToString ()
121                 {
122                         if (IsEmpty)
123                                 return "Empty";
124                         return String.Format ("{0},{1},{2},{3}", _x, _y, _width, _height);
125                 }
126
127                 public string ToString (IFormatProvider provider)
128                 {
129                         throw new NotImplementedException ();
130                 }
131
132                 string IFormattable.ToString (string format, IFormatProvider provider)
133                 {
134                         throw new NotImplementedException ();
135                 }
136         }
137 }
138