New test.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / DataGridViewSelectedCellCollection.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
21 //
22 // Author:
23 //      Pedro Martínez Juliá <pedromj@gmail.com>
24 //
25
26
27 #if NET_2_0
28
29 using System;
30 using System.Collections;
31
32 namespace System.Windows.Forms {
33
34         public class DataGridViewSelectedCellCollection : BaseCollection, IList, ICollection, IEnumerable {
35
36                 public DataGridViewSelectedCellCollection () {
37                 }
38
39                 public bool IsFixedSize {
40                         get { return base.List.IsFixedSize; }
41                 }
42
43                 object IList.this [int index] {
44                         get { return this[index]; }
45                         set { throw new NotSupportedException(); }
46                 }
47
48                 public DataGridViewCell this [int index] {
49                         get { return (DataGridViewCell) base.List[index]; }
50                 }
51
52                 public int Add (object o) {
53                         throw new NotSupportedException();
54                 }
55
56                 public void Clear () {
57                         throw new NotSupportedException("Cannot clear this base.List");
58                 }
59
60                 public bool Contains (object o) {
61                         return Contains(o as DataGridViewCell);
62                 }
63
64                 public bool Contains (DataGridViewCell dataGridViewCell) {
65                         return base.List.Contains(dataGridViewCell);
66                 }
67
68                 public void CopyTo (DataGridViewCell[] array, int index) {
69                         base.List.CopyTo(array, index);
70                         /*
71                         if (array == null) {
72                                 throw new ArgumentNullException("array is null");
73                         }
74                         if (index < 0) {
75                                 throw new IndexOutOfRangeException("index is out of range");
76                         }
77                         if (index >= arrayl.Length) {
78                                 throw new ArgumentException("index is equal or greater than the length of the array");
79                         }
80                         if ((array.Length - index) < base.List.Count) {
81                                 throw new ArgumentException("not enought space for the elements from index to the end");
82                         }
83                         */
84                 }
85
86                 public int IndexOf (object o) {
87                         return base.List.IndexOf(o as DataGridViewCell);
88                 }
89
90                 public void Insert (int index, object o) {
91                         Insert(index, o as DataGridViewCell);
92                 }
93
94                 public void Insert (int index, DataGridViewCell dataGridViewCell) {
95                         throw new NotSupportedException("Can't insert to selected cell base.List");
96                 }
97
98                 public void Remove (object o) {
99                         throw new NotSupportedException("Can't remove elements of selected cell base.List.");
100                 }
101
102                 public void RemoveAt (int index) {
103                         throw new NotSupportedException("Can't remove elements of selected cell base.List.");
104                 }
105
106                 internal void InternalAdd (DataGridViewCell dataGridViewCell) {
107                         base.List.Add(dataGridViewCell);
108                 }
109
110                 internal void InternalRemove (DataGridViewCell dataGridViewCell) {
111                         base.List.Remove(dataGridViewCell);
112                 }
113
114         }
115
116 }
117
118 #endif