Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DataGridViewRowCollection.cs « System.Windows.Forms « Managed.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8722f9c31b36253a81708b1e4a250b3070bb119 (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
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
//
// Author:
//	Pedro Martínez Juliá <pedromj@gmail.com>
//


#if NET_2_0

using System.ComponentModel;
using System.Collections;

namespace System.Windows.Forms {

	public class DataGridViewRowCollection : IList, ICollection, IEnumerable {

		private ArrayList list;
		private DataGridView dataGridView;

		private bool raiseEvent = true;

		public DataGridViewRowCollection (DataGridView dataGridView) {
			if (dataGridView == null) {
				throw new ArgumentException("DataGridView is null.");
			}
			this.dataGridView = dataGridView;
			list = new ArrayList();
		}

		public int Count {
			get { return list.Count; }
		}

		public bool IsFixedSize {
			get { return list.IsFixedSize; }
		}

		public bool IsReadOnly {
			get { return list.IsReadOnly; }
		}

		public bool IsSynchronized {
			get { return list.IsSynchronized; }
		}

		object IList.this [int index] {
			get {
				Console.WriteLine("acceso");
				return this[index];
			}
			set { list[index] = value as DataGridViewRow; }
		}

		public DataGridViewRow this [int index] {
			get {
				// Accessing a System.Windows.Forms.DataGridViewRow with this indexer causes the row to become unshared. To keep the row shared, use the System.Windows.Forms.DataGridViewRowCollection.SharedRow method. For more information, see Best Practices for Scaling the Windows Forms DataGridView Control.
				return (DataGridViewRow) list[index];
			}
		}

		public object SyncRoot {
			get { return list.SyncRoot; }
		}

		public event CollectionChangeEventHandler CollectionChange;

		public virtual int Add () {
			return Add(dataGridView.RowTemplate.Clone() as DataGridViewRow);
		}

		int IList.Add(object o) {
			return Add(o as DataGridViewRow);
		}

		public virtual int Add (DataGridViewRow dataGridViewRow) {
			if (dataGridView.DataSource != null) {
				throw new InvalidOperationException("DataSource of DataGridView is not null.");
			}
			if (dataGridView.Columns.Count == 0) {
				throw new InvalidOperationException("DataGridView has no columns.");
			}
			dataGridViewRow.SetIndex(list.Count);
			dataGridViewRow.SetDataGridView(dataGridView);
			int result = list.Add(dataGridViewRow);
			OnCollectionChange(new CollectionChangeEventArgs(CollectionChangeAction.Add, dataGridViewRow));
			if (raiseEvent) {
				DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(result, 1));
			}
			return result;
		}

		public virtual int Add (int count) {
			if (count <= 0) {
				throw new ArgumentOutOfRangeException("Count is less than or equeal to 0.");
			}
			if (dataGridView.DataSource != null) {
				throw new InvalidOperationException("DataSource of DataGridView is not null.");
			}
			if (dataGridView.Columns.Count == 0) {
				throw new InvalidOperationException("DataGridView has no columns.");
			}
			raiseEvent = false;
			int result = 0;
			for (int i = 0; i < count; i++) {
				result = Add(dataGridView.RowTemplate.Clone() as DataGridViewRow);
			}
			DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(result - count + 1, count));
			raiseEvent = true;
			return result;
		}

		public virtual int Add (params object[] values) {
			if (values == null) {
				throw new ArgumentNullException("values is null.");
			}
			if (dataGridView.VirtualMode) {
				throw new InvalidOperationException("DataGridView is in virtual mode.");
			}
			DataGridViewRow row = new DataGridViewRow();
			int result = Add(row);
			row.SetValues(values);
			return result;
		}

		public virtual int AddCopies (int indexSource, int count) {
			raiseEvent = false;
			int lastIndex = 0;
			for (int i = 0; i < count; i++) {
				lastIndex = AddCopy(indexSource);
			}
			DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(lastIndex - count + 1, count));
			raiseEvent = true;
			return lastIndex;
		}

		public virtual int AddCopy (int indexSource) {
			return Add((list[indexSource] as DataGridViewRow).Clone() as DataGridViewRow);
		}

		public virtual void AddRange (params DataGridViewRow[] dataGridViewRows) {
			raiseEvent = false;
			int count = 0;
			int lastIndex = -1;
			foreach (DataGridViewRow row in dataGridViewRows) {
				lastIndex = Add(row);
				count++;
			}
			DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(lastIndex - count + 1, count));
			raiseEvent = true;
		}

		public virtual void Clear () {
			list.Clear();
		}

		bool IList.Contains (object o) {
			return Contains(o as DataGridViewRow);
		}

		public virtual bool Contains (DataGridViewRow dataGridViewRow) {
			return list.Contains(dataGridViewRow);
		}

		public void CopyTo (Array array, int index) {
			list.CopyTo(array, index);
		}

		public void CopyTo (DataGridViewRow[] array, int index) {
			list.CopyTo(array, index);
		}

		public IEnumerator GetEnumerator () {
			return list.GetEnumerator();
		}

		public int GetFirstRow (DataGridViewElementStates includeFilter) {
			for (int i = 0; i < list.Count; i++) {
				DataGridViewRow row = (DataGridViewRow) list[i];
				if ((row.State & includeFilter) != 0) {
					return i;
				}
			}
			return -1;
		}

		public int GetFirstRow (DataGridViewElementStates includeFilter, DataGridViewElementStates excludeFilter) {
			for (int i = 0; i < list.Count; i++) {
				DataGridViewRow row = (DataGridViewRow) list[i];
				if (((row.State & includeFilter) != 0) && ((row.State & excludeFilter) == 0)) {
					return i;
				}
			}
			return -1;
		}

		public int GetLastRow (DataGridViewElementStates includeFilter) {
			for (int i = list.Count - 1; i >= 0; i--) {
				DataGridViewRow row = (DataGridViewRow) list[i];
				if ((row.State & includeFilter) != 0) {
					return i;
				}
			}
			return -1;
		}

		public int GetNextRow (int indexStart, DataGridViewElementStates includeFilter) {
			for (int i = indexStart + 1; i < list.Count; i++) {
				DataGridViewRow row = (DataGridViewRow) list[i];
				if ((row.State & includeFilter) != 0) {
					return i;
				}
			}
			return -1;
		}

		public int GetNextRow (int indexStart, DataGridViewElementStates includeFilter, DataGridViewElementStates excludeFilter) {
			for (int i = indexStart + 1; i < list.Count; i++) {
				DataGridViewRow row = (DataGridViewRow) list[i];
				if (((row.State & includeFilter) != 0) && ((row.State & excludeFilter) == 0)) {
					return i;
				}
			}
			return -1;
		}

		public int GetPreviousRow (int indexStart, DataGridViewElementStates includeFilter) {
			for (int i = indexStart - 1; i >= 0; i--) {
				DataGridViewRow row = (DataGridViewRow) list[i];
				if ((row.State & includeFilter) != 0) {
					return i;
				}
			}
			return -1;
		}

		public int GetPreviousRow (int indexStart, DataGridViewElementStates includeFilter, DataGridViewElementStates excludeFilter) {
			for (int i = indexStart - 1; i >= 0; i--) {
				DataGridViewRow row = (DataGridViewRow) list[i];
				if (((row.State & includeFilter) != 0) && ((row.State & excludeFilter) == 0)) {
					return i;
				}
			}
			return -1;
		}

		public int GetRowCount (DataGridViewElementStates includeFilter) {
			int result = 0;
			foreach (DataGridViewRow row in list) {
				if ((row.State & includeFilter) != 0) {
					result ++;
				}
			}
			return result;
		}

		public int GetRowsHeight (DataGridViewElementStates includeFilter) {
			int result = 0;
			foreach (DataGridViewRow row in list) {
				if ((row.State & includeFilter) != 0) {
					result += row.Height;
				}
			}
			return result;
		}

		public virtual DataGridViewElementStates GetRowState (int rowIndex) {
			return (list[rowIndex] as DataGridViewRow).State;
		}

		int IList.IndexOf (object o) {
			return IndexOf(o as DataGridViewRow);
		}

		public int IndexOf (DataGridViewRow dataGridViewRow) {
			return list.IndexOf(dataGridViewRow);
		}

		void IList.Insert (int rowIndex, object o) {
			Insert(rowIndex, o as DataGridViewRow);
		}

		public virtual void Insert (int rowIndex, DataGridViewRow dataGridViewRow) {
			dataGridViewRow.SetIndex(rowIndex);
			dataGridViewRow.SetDataGridView(dataGridView);
			list[rowIndex] = dataGridViewRow;
			OnCollectionChange(new CollectionChangeEventArgs(CollectionChangeAction.Add, dataGridViewRow));
			if (raiseEvent) {
				DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(rowIndex, 1));
			}
		}

		public virtual void Insert (int rowIndex, int count) {
			int index = rowIndex;
			raiseEvent = false;
			for (int i = 0; i < count; i++) {
				Insert(index++, dataGridView.RowTemplate.Clone());
			}
			DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(rowIndex, count));
			raiseEvent = true;
		}

		public virtual void Insert (int rowIndex, params object[] values) {
			if (values == null) {
				throw new ArgumentNullException("Values is null.");
			}
			if (dataGridView.VirtualMode || dataGridView.DataSource != null) {
				throw new InvalidOperationException();
			}
			DataGridViewRow row = new DataGridViewRow();
			row.SetValues(values);
			Insert(rowIndex, row);
		}

		public virtual void InsertCopies (int indexSource, int indexDestination, int count) {
			raiseEvent = false;
			int index = indexDestination;
			for (int i = 0; i < count; i++) {
				InsertCopy(indexSource, index++);
			}
			DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(indexDestination, count));
			raiseEvent = true;
		}

		public virtual void InsertCopy (int indexSource, int indexDestination) {
			Insert(indexDestination, (list[indexSource] as DataGridViewRow).Clone());
		}

		public virtual void InsertRange (int rowIndex, params DataGridViewRow[] dataGridViewRows) {
			raiseEvent = false;
			int index = rowIndex;
			int count = 0;
			foreach (DataGridViewRow row in dataGridViewRows) {
				Insert(index++, row);
				count++;
			}
			DataGridView.OnRowsAdded(new DataGridViewRowsAddedEventArgs(rowIndex, count));
			raiseEvent = true;
		}

		void IList.Remove (object o) {
			Remove(o as DataGridViewRow);
		}

		public virtual void Remove (DataGridViewRow dataGridViewRow) {
			list.Remove(dataGridViewRow);
			OnCollectionChange(new CollectionChangeEventArgs(CollectionChangeAction.Remove, dataGridViewRow));
			DataGridView.OnRowsRemoved(new DataGridViewRowsRemovedEventArgs(dataGridViewRow.Index, 1));
		}

		public virtual void RemoveAt (int index) {
			DataGridViewRow row = this[index];
			list.RemoveAt(index);
			OnCollectionChange(new CollectionChangeEventArgs(CollectionChangeAction.Remove, row));
			DataGridView.OnRowsRemoved(new DataGridViewRowsRemovedEventArgs(index, 1));
		}

		public DataGridViewRow SharedRow (int rowIndex) {
			return (DataGridViewRow) list[rowIndex];
		}

		protected DataGridView DataGridView {
			get { return dataGridView; }
		}

		protected ArrayList List {
			get { return list; }
		}

		protected virtual void OnCollectionChange (CollectionChangeEventArgs e) {
			if (CollectionChange != null) {
				CollectionChange(this, e);
			}
		}

		/************************/

		internal void InternalAdd (DataGridViewRow dataGridViewRow) {
			dataGridViewRow.SetIndex(list.Count);
			dataGridViewRow.SetDataGridView(dataGridView);
			int result = list.Add(dataGridViewRow);
		}

		internal ArrayList RowIndexSortedArrayList {
			get {
				ArrayList result = (ArrayList) list.Clone();
				result.Sort(new RowIndexComparator());
				return result;
			}
		}

		private class RowIndexComparator : IComparer {

			public int Compare (object o1, object o2) {
				DataGridViewRow row1 = (DataGridViewRow) o1;
				DataGridViewRow row2 = (DataGridViewRow) o2;
				if (row1.Index < row2.Index) {
					return -1;
				}
				else if (row1.Index > row2.Index) {
					return 1;
				}
				else {
					return 0;
				}
			}

		}

		/************************/

	}

}

#endif