-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathFRCollectionBase.cs
187 lines (170 loc) · 5.48 KB
/
FRCollectionBase.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace FastReport.Utils
{
/// <summary>
/// Represents a collection of FastReport base objects.
/// </summary>
public class FRCollectionBase : CollectionBase
{
private Base owner;
/// <summary>
/// Gets an owner of this collection.
/// </summary>
public Base Owner
{
get { return owner; }
}
/// <summary>
/// Adds the specified elements to the end of this collection.
/// </summary>
/// <param name="range">Range of elements.</param>
public void AddRange(Base[] range)
{
foreach (Base c in range)
{
Add(c);
}
}
/// <summary>
/// Adds the specified elements to the end of this collection.
/// </summary>
/// <param name="range">Collection of elements.</param>
public void AddRange(ObjectCollection range)
{
foreach (Base c in range)
{
Add(c);
}
}
/// <summary>
/// Adds an object to the end of this collection.
/// </summary>
/// <param name="value">Object to add.</param>
/// <returns>Index of the added object.</returns>
public int Add(Base value)
{
if (value == null)
return -1;
return List.Add(value);
}
/// <summary>
/// Inserts an object into this collection at the specified index.
/// </summary>
/// <param name="index">The zero-based index at which value should be inserted.</param>
/// <param name="value">The object to insert.</param>
public void Insert(int index, Base value)
{
if (value != null)
List.Insert(index, value);
}
/// <summary>
/// Removes the specified object from the collection.
/// </summary>
/// <param name="value">Object to remove.</param>
public void Remove(Base value)
{
if (Contains(value))
List.Remove(value);
}
/// <summary>
/// Returns the zero-based index of the first occurrence of an object.
/// </summary>
/// <param name="value">The object to locate in the collection.</param>
/// <returns>The zero-based index of the first occurrence of value within the entire collection, if found;
/// otherwise, -1.</returns>
public int IndexOf(Base value)
{
return List.IndexOf(value);
}
/// <summary>
/// Determines whether an element is in the collection.
/// </summary>
/// <param name="value">The object to locate in the collection.</param>
/// <returns><b>true</b> if object is found in the collection; otherwise, <b>false</b>.</returns>
public bool Contains(Base value)
{
return List.Contains(value);
}
/// <summary>
/// Returns an array of collection items.
/// </summary>
/// <returns></returns>
public object[] ToArray()
{
return InnerList.ToArray();
}
/// <summary>
/// Determines whether two collections are equal.
/// </summary>
/// <param name="list">The collection to compare with.</param>
/// <returns><b>true</b> if collections are equal; <b>false</b> otherwise.</returns>
public bool Equals(FRCollectionBase list)
{
bool result = Count == list.Count;
if (result)
{
for (int i = 0; i < list.Count; i++)
if (List[i] != list.List[i])
{
result = false;
break;
}
}
return result;
}
/// <summary>
/// Copies the content to another collection.
/// </summary>
/// <param name="list">The collection to copy to.</param>
public void CopyTo(FRCollectionBase list)
{
list.Clear();
for (int i = 0; i < Count; i++)
list.Add(List[i] as Base);
}
/// <inheritdoc/>
protected override void OnInsert(int index, Object value)
{
if (Owner != null)
{
Base c = value as Base;
c.Parent = null;
c.SetParent(Owner);
}
}
/// <inheritdoc/>
protected override void OnRemove(int index, object value)
{
if (Owner != null)
(value as Base).SetParent(null);
}
/// <inheritdoc/>
protected override void OnClear()
{
if (owner != null)
{
while (Count > 0)
{
(List[0] as Base).Dispose();
}
}
}
/// <summary>
/// Initializes a new instance of the <b>FRCollectionBase</b> class with default settings.
/// </summary>
public FRCollectionBase() : this(null)
{
}
/// <summary>
/// Initializes a new instance of the <b>FRCollectionBase</b> class with specified owner.
/// </summary>
/// <param name="owner">The owner of this collection.</param>
public FRCollectionBase(Base owner)
{
this.owner = owner;
}
}
}