In corlib/System.Runtime.InteropServices:
[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 using System.ComponentModel;
32
33 namespace System.Windows.Forms {
34
35         [ListBindable (false)]
36         public class DataGridViewSelectedCellCollection : BaseCollection, IList, ICollection, IEnumerable {
37
38                 internal DataGridViewSelectedCellCollection ()
39                 {
40                 }
41
42                 bool IList.IsFixedSize {
43                         get { return base.List.IsFixedSize; }
44                 }
45
46                 object IList.this [int index] {
47                         get { return this[index]; }
48                         set { throw new NotSupportedException(); }
49                 }
50
51                 public DataGridViewCell this [int index] {
52                         get { return (DataGridViewCell) base.List[index]; }
53                 }
54
55                 protected override ArrayList List {
56                         get { return base.List; }
57                 }
58
59                 int IList.Add (object o)
60                 {
61                         throw new NotSupportedException();
62                 }
63
64                 [EditorBrowsable (EditorBrowsableState.Never)]
65                 public void Clear ()
66                 {
67                         throw new NotSupportedException("Cannot clear this base.List");
68                 }
69
70                 bool IList.Contains (object o)
71                 {
72                         return Contains(o as DataGridViewCell);
73                 }
74
75                 public bool Contains (DataGridViewCell dataGridViewCell)
76                 {
77                         return base.List.Contains(dataGridViewCell);
78                 }
79
80                 public void CopyTo (DataGridViewCell[] array, int index)
81                 {
82                         base.List.CopyTo(array, index);
83                         /*
84                         if (array == null) {
85                                 throw new ArgumentNullException("array is null");
86                         }
87                         if (index < 0) {
88                                 throw new IndexOutOfRangeException("index is out of range");
89                         }
90                         if (index >= arrayl.Length) {
91                                 throw new ArgumentException("index is equal or greater than the length of the array");
92                         }
93                         if ((array.Length - index) < base.List.Count) {
94                                 throw new ArgumentException("not enought space for the elements from index to the end");
95                         }
96                         */
97                 }
98
99                 int IList.IndexOf (object o)
100                 {
101                         return base.List.IndexOf(o as DataGridViewCell);
102                 }
103
104                 void IList.Insert (int index, object o)
105                 {
106                         Insert(index, o as DataGridViewCell);
107                 }
108
109                 [EditorBrowsable (EditorBrowsableState.Never)]
110                 public void Insert (int index, DataGridViewCell dataGridViewCell)
111                 {
112                         throw new NotSupportedException("Can't insert to selected cell base.List");
113                 }
114
115                 void IList.Remove (object o)
116                 {
117                         throw new NotSupportedException("Can't remove elements of selected cell base.List.");
118                 }
119
120                 void IList.RemoveAt (int index)
121                 {
122                         throw new NotSupportedException("Can't remove elements of selected cell base.List.");
123                 }
124
125                 internal void InternalAdd (DataGridViewCell dataGridViewCell)
126                 {
127                         base.List.Add(dataGridViewCell);
128                 }
129
130                 internal void InternalRemove (DataGridViewCell dataGridViewCell)
131                 {
132                         base.List.Remove(dataGridViewCell);
133                 }
134
135         }
136
137 }
138
139 #endif