-
Notifications
You must be signed in to change notification settings - Fork 119
/
ChoObservableMruList.cs
157 lines (113 loc) · 3.24 KB
/
ChoObservableMruList.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
namespace ChoEazyCopy
{
public class ChoObservableMruList<T> : ObservableCollection<T>
{
#region Fields
private readonly int _maxSize = -1;
private readonly IEqualityComparer<T> _itemComparer = null;
#endregion
#region Constructors
public ChoObservableMruList() : base()
{
}
public ChoObservableMruList(IEnumerable<T> collection) : base(collection)
{
}
public ChoObservableMruList(List<T> list) : base(list)
{
}
public ChoObservableMruList(int maxSize, IEqualityComparer<T> itemComparer) : base()
{
_maxSize = maxSize;
_itemComparer = itemComparer;
}
public ChoObservableMruList(IEnumerable<T> collection, int maxSize, IEqualityComparer<T> itemComparer)
: base(collection)
{
_maxSize = maxSize;
_itemComparer = itemComparer;
RemoveOverflow();
}
public ChoObservableMruList(List<T> list, int maxSize, IEqualityComparer<T> itemComparer)
: base(list)
{
_maxSize = maxSize;
_itemComparer = itemComparer;
RemoveOverflow();
}
#endregion
#region Properties
public int MaxSize
{
get { return _maxSize; }
}
#endregion
#region Public Methods
public new void Add(T item)
{
int indexOfMatch = this.IndexOf(item);
if (indexOfMatch < 0)
{
base.Insert(0, item);
}
else
{
base.Move(indexOfMatch, 0);
}
RemoveOverflow();
}
public new bool Contains(T item)
{
return this.Contains(item, _itemComparer);
}
public new int IndexOf(T item)
{
int indexOfMatch = -1;
if (_itemComparer != null)
{
for (int idx = 0; idx < this.Count; idx++)
{
if (_itemComparer.Equals(item, this[idx]))
{
indexOfMatch = idx;
break;
}
}
}
else
{
indexOfMatch = base.IndexOf(item);
}
return indexOfMatch;
}
public new bool Remove(T item)
{
bool opResult = false;
int targetIndex = this.IndexOf(item);
if (targetIndex > -1)
{
this.RemoveAt(targetIndex);
opResult = true;
}
return opResult;
}
#endregion
#region Helper Methods
private void RemoveOverflow()
{
if (this.MaxSize > 0)
{
while (this.Count > this.MaxSize)
{
this.RemoveAt(this.Count - 1);
}
}
}
#endregion
}
}