2008-03-13 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / DataControlFieldCollection.cs
1 //
2 // System.Web.UI.WebControls.DataControlFieldCollection.cs
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // (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 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
29 //
30
31 #if NET_2_0
32
33 using System;
34 using System.Collections;
35 using System.Web.UI;
36 using System.ComponentModel;
37
38 namespace System.Web.UI.WebControls
39 {
40         public sealed class DataControlFieldCollection: StateManagedCollection
41         {
42                 static readonly Type[] fieldTypes = new Type [] {
43                         typeof(BoundField), typeof(HyperLinkField), typeof(ImageField),
44                         typeof(TemplateField), typeof(AutoGeneratedField), typeof(CheckBoxField),
45                         typeof(ButtonField), typeof(CommandField)
46                 };
47                  
48                 public DataControlFieldCollection CloneFields ()
49                 {
50                         DataControlFieldCollection col = new DataControlFieldCollection ();
51                         foreach (DataControlField field in this)
52                                 col.Add (field.CloneField ());
53                         return col;
54                 }
55                 
56                 public void Add (DataControlField field)
57                 {
58                         ((IList)this).Add (field);
59                 }
60                 
61                 public bool Contains (DataControlField field)
62                 {
63                         return ((IList)this).Contains (field);
64                 }
65                 
66                 public void CopyTo (DataControlField[] array, int index)
67                 {
68                         ((IList)this).CopyTo (array, index);
69                 }
70                 
71                 public int IndexOf (DataControlField field)
72                 {
73                         return ((IList)this).IndexOf (field);
74                 }
75                 
76                 public void Insert (int index, DataControlField field)
77                 {
78                         ((IList)this).Insert (index, field);
79                 }
80                 
81                 public void Remove (DataControlField field)
82                 {
83                         ((IList)this).Remove (field);
84                 }
85                 
86                 public void RemoveAt (int index)
87                 {
88                         ((IList)this).RemoveAt (index);
89                 }
90                 
91                 [Browsable (false)]
92                 public DataControlField this [int i] {
93                         get { return (DataControlField) ((IList)this) [i]; }
94                 }
95
96                 protected override void OnInsertComplete (int index, object value) {
97                         DataControlField field = (DataControlField) value;
98                         field.FieldChanged += new EventHandler (OnFieldChanged);
99                         OnFieldsChanged ();
100                 }
101
102                 protected override void OnRemoveComplete (int index, object value) {
103                         DataControlField field = (DataControlField) value;
104                         field.FieldChanged -= new EventHandler (OnFieldChanged);
105                         OnFieldsChanged ();
106                 }
107
108                 protected override void OnClearComplete () {
109                         OnFieldsChanged ();
110                 }
111                 
112                 void OnFieldChanged (object sender, EventArgs args)
113                 {
114                         OnFieldsChanged ();
115                 }
116                 
117                 void OnFieldsChanged ()
118                 {
119                         if (FieldsChanged != null) FieldsChanged (this, EventArgs.Empty);
120                 }
121                 
122                 protected override void SetDirtyObject (object o)
123                 {
124                         ((DataControlField)o).SetDirty ();
125                 }
126
127                 protected override object CreateKnownType (int index)
128                 {
129                         switch (index) {
130                                 case 0: return new BoundField ();
131                                 case 1: return new HyperLinkField ();
132                                 case 2: return new ImageField ();
133                                 case 3: return new TemplateField ();
134                                 case 4: return new AutoGeneratedField ();
135                                 case 5: return new CheckBoxField ();
136                                 case 6: return new ButtonField ();
137                                 case 7: return new CommandField ();
138                         }
139                         return null;
140                 }
141                 
142                 protected override Type [] GetKnownTypes ()
143                 {
144                         return fieldTypes;
145                 }
146                 
147                 public event EventHandler FieldsChanged;
148         }
149 }
150
151 #endif