2008-11-28 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 object fieldsChangedEvent = new object ();
43                 
44                 static readonly Type[] fieldTypes = new Type [] {
45                         typeof(BoundField), typeof(HyperLinkField), typeof(ImageField),
46                         typeof(TemplateField), typeof(AutoGeneratedField), typeof(CheckBoxField),
47                         typeof(ButtonField), typeof(CommandField)
48                 };
49
50                 EventHandlerList events = new EventHandlerList ();
51                 
52                 public event EventHandler FieldsChanged {
53                         add { events.AddHandler (fieldsChangedEvent, value); }
54                         remove { events.RemoveHandler (fieldsChangedEvent, value); }
55                 }
56                 
57                 public DataControlFieldCollection CloneFields ()
58                 {
59                         DataControlFieldCollection col = new DataControlFieldCollection ();
60                         foreach (DataControlField field in this)
61                                 col.Add (field.CloneField ());
62                         return col;
63                 }
64                 
65                 public void Add (DataControlField field)
66                 {
67                         ((IList)this).Add (field);
68                 }
69                 
70                 public bool Contains (DataControlField field)
71                 {
72                         return ((IList)this).Contains (field);
73                 }
74                 
75                 public void CopyTo (DataControlField[] array, int index)
76                 {
77                         ((IList)this).CopyTo (array, index);
78                 }
79                 
80                 public int IndexOf (DataControlField field)
81                 {
82                         return ((IList)this).IndexOf (field);
83                 }
84                 
85                 public void Insert (int index, DataControlField field)
86                 {
87                         ((IList)this).Insert (index, field);
88                 }
89                 
90                 public void Remove (DataControlField field)
91                 {
92                         ((IList)this).Remove (field);
93                 }
94                 
95                 public void RemoveAt (int index)
96                 {
97                         ((IList)this).RemoveAt (index);
98                 }
99                 
100                 [Browsable (false)]
101                 public DataControlField this [int i] {
102                         get { return (DataControlField) ((IList)this) [i]; }
103                 }
104
105                 protected override void OnInsertComplete (int index, object value) {
106                         DataControlField field = (DataControlField) value;
107                         field.FieldChanged += new EventHandler (OnFieldChanged);
108                         OnFieldsChanged ();
109                 }
110
111                 protected override void OnRemoveComplete (int index, object value) {
112                         DataControlField field = (DataControlField) value;
113                         field.FieldChanged -= new EventHandler (OnFieldChanged);
114                         OnFieldsChanged ();
115                 }
116
117                 protected override void OnClearComplete () {
118                         OnFieldsChanged ();
119                 }
120                 
121                 void OnFieldChanged (object sender, EventArgs args)
122                 {
123                         OnFieldsChanged ();
124                 }
125                 
126                 void OnFieldsChanged ()
127                 {
128                         EventHandler eh = events [fieldsChangedEvent] as EventHandler;
129                         if (eh != null)
130                                 eh (this, EventArgs.Empty);
131                 }
132                 
133                 protected override void SetDirtyObject (object o)
134                 {
135                         ((DataControlField)o).SetDirty ();
136                 }
137
138                 protected override object CreateKnownType (int index)
139                 {
140                         switch (index) {
141                                 case 0: return new BoundField ();
142                                 case 1: return new HyperLinkField ();
143                                 case 2: return new ImageField ();
144                                 case 3: return new TemplateField ();
145                                 case 4: return new AutoGeneratedField ();
146                                 case 5: return new CheckBoxField ();
147                                 case 6: return new ButtonField ();
148                                 case 7: return new CommandField ();
149                         }
150                         return null;
151                 }
152                 
153                 protected override Type [] GetKnownTypes ()
154                 {
155                         return fieldTypes;
156                 }
157         }
158 }
159
160 #endif