2010-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / DataGridViewCellCollection.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 #if NET_2_0
27
28 using System.Collections;
29 using System.ComponentModel;
30
31 namespace System.Windows.Forms
32 {
33         [ListBindable (false)]
34         public class DataGridViewCellCollection : BaseCollection, IList, ICollection, IEnumerable
35         {
36                 private DataGridViewRow dataGridViewRow;
37
38                 public DataGridViewCellCollection (DataGridViewRow dataGridViewRow) : base()
39                 {
40                         this.dataGridViewRow = dataGridViewRow;
41                 }
42
43                 bool IList.IsFixedSize {
44                         get { return base.List.IsFixedSize; }
45                 }
46
47                 object IList.this [int index] {
48                         get { return this [index]; }
49                         set { this [index] = value as DataGridViewCell; }
50                 }
51
52                 public DataGridViewCell this [int index] {
53                         get { return (DataGridViewCell) base.List [index]; }
54                         set {
55                                 if (value == null)
56                                         throw new ArgumentNullException ("value");
57
58                                 Insert(index, value);
59                         }
60                 }
61
62                 internal DataGridViewCell GetCellInternal (int colIndex)
63                 {
64                         return (DataGridViewCell) base.List [colIndex];
65                 }
66                 
67                 public DataGridViewCell this [string columnName] {
68                         get {
69                                 if (columnName == null)
70                                         throw new ArgumentNullException ("columnName");
71
72                                 foreach (DataGridViewCell cell in base.List) {
73                                         if (string.Compare (cell.OwningColumn.Name, columnName, true) == 0)
74                                                 return cell;
75                                 }
76
77                                 throw new ArgumentException (string.Format (
78                                         "Column name {0} cannot be found.",
79                                         columnName), "columnName");
80                         }
81                         set {
82                                 if (columnName == null)
83                                         throw new ArgumentNullException ("columnName");
84                                 if (value == null)
85                                         throw new ArgumentNullException ("value");
86
87                                 for (int i = 0; i < base.List.Count; i++) {
88                                         DataGridViewCell cell = (DataGridViewCell) base.List [i];
89                                         if (string.Compare (cell.OwningColumn.Name, columnName, true) == 0) {
90                                                 Insert (i, value);
91                                                 return;
92                                         }
93                                 }
94                                 Add (value);
95                         }
96                 }
97
98                 internal DataGridViewCell GetBoundCell (string dataPropertyName)
99                 {
100                         foreach (DataGridViewCell cell in base.List) {
101                                 if (string.Compare (cell.OwningColumn.DataPropertyName, dataPropertyName, true) == 0)
102                                         return cell;
103                         }
104                         
105                         return null;
106                 }
107                 
108                 public event CollectionChangeEventHandler CollectionChanged;
109
110                 int IList.Add (object value)
111                 {
112                         return Add (value as DataGridViewCell);
113                 }
114
115                 public virtual int Add (DataGridViewCell dataGridViewCell)
116                 {
117                         int result = base.List.Add (dataGridViewCell);
118                         dataGridViewCell.SetOwningRow (dataGridViewRow);
119                         dataGridViewCell.SetColumnIndex (result);
120                         dataGridViewCell.SetDataGridView (dataGridViewRow.DataGridView);
121                         OnCollectionChanged (new CollectionChangeEventArgs (
122                                 CollectionChangeAction.Add, dataGridViewCell));
123                         return result;
124                 }
125
126                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
127                 public virtual void AddRange (params DataGridViewCell[] dataGridViewCells)
128                 {
129                         foreach (DataGridViewCell cell in dataGridViewCells)
130                                 Add (cell);
131                 }
132
133                 public virtual void Clear ()
134                 {
135                         base.List.Clear();
136                 }
137
138                 bool IList.Contains (object value)
139                 {
140                         return Contains (value as DataGridViewCell);
141                 }
142
143                 public virtual bool Contains (DataGridViewCell dataGridViewCell)
144                 {
145                         return base.List.Contains (dataGridViewCell);
146                 }
147
148                 public void CopyTo (DataGridViewCell[] array, int index)
149                 {
150                         base.List.CopyTo (array, index);
151                 }
152
153                 int IList.IndexOf (object value)
154                 {
155                         return IndexOf (value as DataGridViewCell);
156                 }
157
158                 public int IndexOf (DataGridViewCell dataGridViewCell)
159                 {
160                         return base.List.IndexOf (dataGridViewCell);
161                 }
162
163                 void IList.Insert (int index, object value)
164                 {
165                         Insert (index, value as DataGridViewCell);
166                 }
167
168                 public virtual void Insert (int index, DataGridViewCell dataGridViewCell)
169                 {
170                         base.List.Insert (index, dataGridViewCell);
171                         dataGridViewCell.SetOwningRow (dataGridViewRow);
172                         dataGridViewCell.SetColumnIndex (index);
173                         dataGridViewCell.SetDataGridView (dataGridViewRow.DataGridView);
174                         OnCollectionChanged (new CollectionChangeEventArgs (
175                                 CollectionChangeAction.Add, dataGridViewCell));
176                 }
177
178                 void IList.Remove (object value)
179                 {
180                         Remove (value as DataGridViewCell);
181                 }
182
183                 public virtual void Remove (DataGridViewCell cell)
184                 {
185                         base.List.Remove (cell);
186                         ReIndex ();
187                         OnCollectionChanged (new CollectionChangeEventArgs (
188                                 CollectionChangeAction.Remove, cell));
189                 }
190
191                 public virtual void RemoveAt (int index)
192                 {
193                         DataGridViewCell cell = this [index];
194                         base.List.RemoveAt (index);
195                         ReIndex ();
196                         OnCollectionChanged (new CollectionChangeEventArgs (
197                                 CollectionChangeAction.Remove, cell));
198                 }
199
200                 private void ReIndex ()
201                 {
202                         for (int i = 0; i < base.List.Count; i++)
203                                 this[i].SetColumnIndex (i);
204                 }
205
206                 protected override ArrayList List {
207                         get { return base.List; }
208                 }
209
210                 protected void OnCollectionChanged (CollectionChangeEventArgs e)
211                 {
212                         if (CollectionChanged != null) {
213                                 CollectionChanged(this, e);
214                         }
215                 }
216         }
217 }
218
219 #endif