-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathFastGridCellAddress.cs
89 lines (74 loc) · 2.37 KB
/
FastGridCellAddress.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FastWpfGrid
{
public struct FastGridCellAddress
{
public static readonly FastGridCellAddress Empty = new FastGridCellAddress();
public static readonly FastGridCellAddress GridHeader = new FastGridCellAddress(null, null, true);
public bool Equals(FastGridCellAddress other)
{
return Row == other.Row && Column == other.Column;
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
return obj is FastGridCellAddress && Equals((FastGridCellAddress) obj);
}
public override int GetHashCode()
{
unchecked
{
return (Row.GetHashCode()*397) ^ Column.GetHashCode();
}
}
public readonly int? Row;
public readonly int? Column;
public bool IsGridHeader;
public FastGridCellAddress(int? row, int? col, bool isGridHeader = false)
{
Row = row;
Column = col;
IsGridHeader = isGridHeader;
}
public FastGridCellAddress ChangeRow(int? row)
{
return new FastGridCellAddress(row, Column, IsGridHeader);
}
public FastGridCellAddress ChangeColumn(int? col)
{
return new FastGridCellAddress(Row, col, IsGridHeader);
}
public bool IsCell
{
get { return Row.HasValue && Column.HasValue; }
}
public bool IsRowHeader
{
get { return Row.HasValue && !Column.HasValue; }
}
public bool IsColumnHeader
{
get { return Column.HasValue && !Row.HasValue; }
}
public bool IsEmpty
{
get { return Row == null && Column == null && !IsGridHeader; }
}
public bool TestCell(int row, int col)
{
return row == Row && col == Column;
}
public static bool operator ==(FastGridCellAddress a, FastGridCellAddress b)
{
return a.Row == b.Row && a.Column == b.Column && a.IsGridHeader == b.IsGridHeader;
}
public static bool operator !=(FastGridCellAddress a, FastGridCellAddress b)
{
return !(a == b);
}
}
}