This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gwen-dotnet/Gwen/Margin.cs
Gered 10e057953e initial commit
Contains changes from "gwen-dotnet" removing dependancies on Windows,
which ultimately means certain features (e.g. file load/save dialogs)
do not work. Those classes still exist, but the code has been commented
out.
2013-03-28 18:47:01 -04:00

71 lines
2.1 KiB
C#

using System;
namespace Gwen
{
/// <summary>
/// Represents outer spacing.
/// </summary>
public struct Margin : IEquatable<Margin>
{
public int Top;
public int Bottom;
public int Left;
public int Right;
// common values
public static Margin Zero = new Margin(0, 0, 0, 0);
public static Margin One = new Margin(1, 1, 1, 1);
public static Margin Two = new Margin(2, 2, 2, 2);
public static Margin Three = new Margin(3, 3, 3, 3);
public static Margin Four = new Margin(4, 4, 4, 4);
public static Margin Five = new Margin(5, 5, 5, 5);
public static Margin Six = new Margin(6, 6, 6, 6);
public static Margin Seven = new Margin(7, 7, 7, 7);
public static Margin Eight = new Margin(8, 8, 8, 8);
public static Margin Nine = new Margin(9, 9, 9, 9);
public static Margin Ten = new Margin(10, 10, 10, 10);
public Margin(int left, int top, int right, int bottom)
{
Top = top;
Bottom = bottom;
Left = left;
Right = right;
}
public bool Equals(Margin other)
{
return other.Top == Top && other.Bottom == Bottom && other.Left == Left && other.Right == Right;
}
public static bool operator==(Margin lhs, Margin rhs)
{
return lhs.Equals(rhs);
}
public static bool operator!=(Margin lhs, Margin rhs)
{
return !lhs.Equals(rhs);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (obj.GetType() != typeof (Margin)) return false;
return Equals((Margin) obj);
}
public override int GetHashCode()
{
unchecked
{
int result = Top;
result = (result*397) ^ Bottom;
result = (result*397) ^ Left;
result = (result*397) ^ Right;
return result;
}
}
}
}