summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Size.cs
blob: 4e709a10d7aeea9f8bc866a1cc8e67cbc4c37be7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;

namespace Xamarin.Forms
{
	[DebuggerDisplay("Width={Width}, Height={Height}")]
	public struct Size
	{
		double _width;
		double _height;

		public static readonly Size Zero;

		public Size(double width, double height)
		{
			if (double.IsNaN(width))
				throw new ArgumentException("NaN is not a valid value for width");
			if (double.IsNaN(height))
				throw new ArgumentException("NaN is not a valid value for height");
			_width = width;
			_height = height;
		}

		public bool IsZero
		{
			get { return (_width == 0) && (_height == 0); }
		}

		[DefaultValue(0d)]
		public double Width
		{
			get { return _width; }
			set
			{
				if (double.IsNaN(value))
					throw new ArgumentException("NaN is not a valid value for Width");
				_width = value;
			}
		}

		[DefaultValue(0d)]
		public double Height
		{
			get { return _height; }
			set
			{
				if (double.IsNaN(value))
					throw new ArgumentException("NaN is not a valid value for Height");
				_height = value;
			}
		}

		public static Size operator +(Size s1, Size s2)
		{
			return new Size(s1._width + s2._width, s1._height + s2._height);
		}

		public static Size operator -(Size s1, Size s2)
		{
			return new Size(s1._width - s2._width, s1._height - s2._height);
		}

		public static Size operator *(Size s1, double value)
		{
			return new Size(s1._width * value, s1._height * value);
		}

		public static bool operator ==(Size s1, Size s2)
		{
			return (s1._width == s2._width) && (s1._height == s2._height);
		}

		public static bool operator !=(Size s1, Size s2)
		{
			return (s1._width != s2._width) || (s1._height != s2._height);
		}

		public static explicit operator Point(Size size)
		{
			return new Point(size.Width, size.Height);
		}

		public bool Equals(Size other)
		{
			return _width.Equals(other._width) && _height.Equals(other._height);
		}

		public override bool Equals(object obj)
		{
			if (ReferenceEquals(null, obj))
				return false;
			return obj is Size && Equals((Size)obj);
		}

		public override int GetHashCode()
		{
			unchecked
			{
				return (_width.GetHashCode() * 397) ^ _height.GetHashCode();
			}
		}

		public override string ToString()
		{
			return string.Format("{{Width={0} Height={1}}}", _width.ToString(CultureInfo.InvariantCulture), _height.ToString(CultureInfo.InvariantCulture));
		}
	}
}