2009-10-30 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / TableCellCollection.cs
1 //
2 // System.Web.UI.WebControls.TableCellCollection.cs
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.ComponentModel;
30 using System.Collections;
31
32 namespace System.Web.UI.WebControls {
33
34 #if NET_2_0
35         [Editor ("System.Web.UI.Design.WebControls.TableCellsCollectionEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
36 #else
37         [Editor ("System.Web.UI.Design.WebControls.TableCellsCollectionEditor, " + Consts.AssemblySystem_Design, typeof (System.Drawing.Design.UITypeEditor))]
38 #endif
39         public sealed class TableCellCollection : IList, ICollection, IEnumerable 
40         {
41                 ControlCollection cc;
42
43                 internal TableCellCollection (TableRow tr)
44                 {
45                         cc = tr.Controls;
46                 }
47
48
49                 public int Count {
50                         get { return cc.Count; }
51                 }
52
53                 public bool IsReadOnly {
54                         get { return false; }   // documented as always false
55                 }
56
57                 public bool IsSynchronized {
58                         get { return false; }   // documented as always false
59                 }
60
61                 public TableCell this [int index] {
62                         get { return (TableCell) cc [index]; }
63                 }
64
65                 public object SyncRoot {
66                         get { return this; }    // as documented
67                 }
68
69
70                 public int Add (TableCell cell)
71                 {
72                         int index = cc.IndexOf (cell);
73                         if (index < 0) {
74                                 cc.Add (cell);
75                                 index = cc.Count;
76                         }
77                         return index;
78                 }
79
80                 public void AddAt (int index, TableCell cell)
81                 {
82                         if (cc.IndexOf (cell) < 0)
83                                 cc.AddAt (index, cell);
84                 }
85
86                 public void AddRange (TableCell[] cells)
87                 {
88                         foreach (TableCell td in cells) {
89                                 if (cc.IndexOf (td) < 0)
90                                         cc.Add (td);
91                         }
92                 }
93
94                 public void Clear ()
95                 {
96                         cc.Clear ();
97                 }
98
99                 public void CopyTo (Array array, int index)
100                 {
101                         cc.CopyTo (array, index);
102                 }
103
104                 public int GetCellIndex (TableCell cell)
105                 {
106                         return cc.IndexOf (cell);
107                 }
108
109                 public IEnumerator GetEnumerator ()
110                 {
111                         return cc.GetEnumerator ();
112                 }
113
114                 public void Remove (TableCell cell)
115                 {
116                         cc.Remove (cell);
117                 }
118
119                 public void RemoveAt (int index)
120                 {
121                         cc.RemoveAt (index);
122                 }
123
124
125                 // implements IList but doesn't make some members public
126
127                 bool IList.IsFixedSize {
128                         get { return false; }
129                 }
130
131                 object IList.this [int index] {
132                         get { return cc [index]; }
133                         set {
134                                 cc.AddAt (index, (TableRow)value);
135                                 cc.RemoveAt (index + 1);
136                         }
137                 }
138
139
140                 int IList.Add (object value)
141                 {
142                         cc.Add ((TableRow)value);
143                         return cc.IndexOf ((TableRow)value);
144                 }
145
146                 bool IList.Contains (object value)
147                 {
148                         return cc.Contains ((TableRow)value);
149                 }
150
151                 int IList.IndexOf (object value)
152                 {
153                         return cc.IndexOf ((TableRow)value);
154                 }
155
156                 void IList.Insert (int index, object value)
157                 {
158                         cc.AddAt (index, (TableRow)value);
159                 }
160
161                 void IList.Remove (object value)
162                 {
163                         cc.Remove ((TableRow)value);
164                 }
165         }
166 }