62b6c696efc28e81e1f7f181c3b79d5909017e2f
[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
27 #if NET_2_0
28
29 using System.ComponentModel;
30 using System.Collections;
31
32 namespace System.Windows.Forms {
33
34         [ListBindable (false)]
35         public class DataGridViewCellCollection : BaseCollection, IList, ICollection, IEnumerable {
36
37                 private DataGridViewRow dataGridViewRow;
38
39                 public DataGridViewCellCollection (DataGridViewRow dataGridViewRow) : base() {
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 { Insert(index, value); }
55                 }
56
57                 public DataGridViewCell this [string columnName] {
58                         get {
59                                 foreach (DataGridViewCell cell in base.List) {
60                                         if (cell.OwningColumn.Name == columnName) {
61                                                 return cell;
62                                         }
63                                 }
64                                 return null;
65                         }
66                         set {
67                                 for (int i = 0; i < base.List.Count; i++) {
68                                         DataGridViewCell cell = (DataGridViewCell) base.List[i];
69                                         if (cell.OwningColumn.Name == columnName) {
70                                                 Insert(i, value);
71                                                 return;
72                                         }
73                                 }
74                                 Add(value);
75                         }
76                 }
77
78                 public event CollectionChangeEventHandler CollectionChanged;
79
80                 int IList.Add (object o) {
81                         return Add(o as DataGridViewCell);
82                 }
83
84                 public virtual int Add (DataGridViewCell dataGridViewCell) {
85                         dataGridViewCell.SetOwningRow(dataGridViewRow);
86                         dataGridViewCell.SetColumnIndex(base.List.Count);
87                         dataGridViewCell.SetDataGridView(dataGridViewRow.DataGridView);
88                         int result = base.List.Add(dataGridViewCell);
89                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Add, dataGridViewCell));
90                         return result;
91                 }
92
93                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
94                 public virtual void AddRange (params DataGridViewCell[] dataGridViewCells) {
95                         foreach (DataGridViewCell cell in dataGridViewCells) {
96                                 this.Add(cell);
97                         }
98                 }
99
100                 public virtual void Clear () {
101                         base.List.Clear();
102                 }
103
104                 bool IList.Contains (object o) {
105                         return Contains(o as DataGridViewCell);
106                 }
107
108                 public virtual bool Contains (DataGridViewCell dataGridViewCell) {
109                         return base.List.Contains(dataGridViewCell);
110                 }
111
112                 public void CopyTo (DataGridViewCell[] array, int index) {
113                         base.List.CopyTo(array, index);
114                 }
115
116                 int IList.IndexOf (object o) {
117                         return IndexOf(o as DataGridViewCell);
118                 }
119
120                 public int IndexOf (DataGridViewCell dataGridViewCell) {
121                         return base.List.IndexOf(dataGridViewCell);
122                 }
123
124                 void IList.Insert (int index, object o) {
125                         Insert(index, o as DataGridViewCell);
126                 }
127
128                 public virtual void Insert (int index, DataGridViewCell dataGridViewCell) {
129                         dataGridViewCell.SetOwningRow(dataGridViewRow);
130                         dataGridViewCell.SetColumnIndex(index);
131                         dataGridViewCell.SetDataGridView(dataGridViewRow.DataGridView);
132                         base.List.Insert(index, dataGridViewCell);
133                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Add, dataGridViewCell));
134                 }
135
136                 void IList.Remove (object o) {
137                         Remove(o as DataGridViewCell);
138                 }
139
140                 public virtual void Remove (DataGridViewCell dataGridViewCell) {
141                         base.List.Remove(dataGridViewCell);
142                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, dataGridViewCell));
143                 }
144
145                 public virtual void RemoveAt (int index) {
146                         DataGridViewCell cell = this[index];
147                         base.List.RemoveAt(index);
148                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, cell));
149                 }
150
151                 protected override ArrayList List {
152                         get { return base.List; }
153                 }
154
155                 protected void OnCollectionChanged (CollectionChangeEventArgs e) {
156                         if (CollectionChanged != null) {
157                                 CollectionChanged(this, e);
158                         }
159                 }
160
161         }
162
163 }
164
165 #endif