New test.
[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                 private ControlCollection cc;
42
43
44                 internal TableCellCollection (TableRow tr)
45                 {
46                         cc = tr.Controls;
47                 }
48
49
50                 public int Count {
51                         get { return cc.Count; }
52                 }
53
54                 public bool IsReadOnly {
55                         get { return false; }   // documented as always false
56                 }
57
58                 public bool IsSynchronized {
59                         get { return false; }   // documented as always false
60                 }
61
62                 public TableCell this [int index] {
63                         get { return (TableCell) cc [index]; }
64                 }
65
66                 public object SyncRoot {
67                         get { return this; }    // as documented
68                 }
69
70
71                 public int Add (TableCell cell)
72                 {
73                         int index = cc.IndexOf (cell);
74                         if (index < 0) {
75                                 cc.Add (cell);
76                                 index = cc.Count;
77                         }
78                         return index;
79                 }
80
81                 public void AddAt (int index, TableCell cell)
82                 {
83                         if (cc.IndexOf (cell) < 0)
84                                 cc.AddAt (index, cell);
85                 }
86
87                 public void AddRange (TableCell[] cells)
88                 {
89                         foreach (TableCell td in cells) {
90                                 if (cc.IndexOf (td) < 0)
91                                         cc.Add (td);
92                         }
93                 }
94
95                 public void Clear ()
96                 {
97                         cc.Clear ();
98                 }
99
100                 public void CopyTo (Array array, int index)
101                 {
102                         cc.CopyTo (array, index);
103                 }
104
105                 public int GetCellIndex (TableCell cell)
106                 {
107                         return cc.IndexOf (cell);
108                 }
109
110                 public IEnumerator GetEnumerator ()
111                 {
112                         return cc.GetEnumerator ();
113                 }
114
115                 public void Remove (TableCell cell)
116                 {
117                         cc.Remove (cell);
118                 }
119
120                 public void RemoveAt (int index)
121                 {
122                         cc.RemoveAt (index);
123                 }
124
125
126                 // implements IList but doesn't make some members public
127
128                 bool IList.IsFixedSize {
129                         get { return false; }
130                 }
131
132                 object IList.this [int index] {
133                         get { return cc [index]; }
134                         set {
135                                 cc.AddAt (index, (TableRow)value);
136                                 cc.RemoveAt (index + 1);
137                         }
138                 }
139
140
141                 int IList.Add (object value)
142                 {
143                         cc.Add ((TableRow)value);
144                         return cc.IndexOf ((TableRow)value);
145                 }
146
147                 bool IList.Contains (object value)
148                 {
149                         return cc.Contains ((TableRow)value);
150                 }
151
152                 int IList.IndexOf (object value)
153                 {
154                         return cc.IndexOf ((TableRow)value);
155                 }
156
157                 void IList.Insert (int index, object value)
158                 {
159                         cc.AddAt (index, (TableRow)value);
160                 }
161
162                 void IList.Remove (object value)
163                 {
164                         cc.Remove ((TableRow)value);
165                 }
166         }
167 }