* System.Windows.Forms/WebBrowserBase.cs: Added WndProc, DrawToBitmap,
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / BindingsCollection.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) 2004-2005 Novell, Inc.
21 //
22 // Authors:
23 //      Peter Bartok    pbartok@novell.com
24 //      Jackson Harper  jackson@ximian.com
25 //
26
27
28 // COMPLETE
29
30 using System.Collections;
31 using System.ComponentModel;
32
33 namespace System.Windows.Forms {
34         [DefaultEvent("CollectionChanged")]
35         public class BindingsCollection : BaseCollection {
36
37 #region Public Constructors
38                 internal BindingsCollection ()
39                 {
40                 }
41                 #endregion      // Public Constructors
42
43                 #region Public Instance Properties
44                 public override int Count {
45                         get {
46                                 return base.Count;
47                         }
48                 }
49
50                 public Binding this[int index] {
51                         get {
52                                 return (Binding)(base.List[index]);
53                         }
54                 }
55                 #endregion      // Public Instance Properties
56
57                 #region Protected Instance Properties
58                 protected override ArrayList List {
59                         get {
60                                 return base.List;
61                         }
62                 }
63                 #endregion      // Protected Instance Properties
64
65                 #region Protected Instance Methods
66                 protected internal void Add(Binding binding) {
67                         AddCore(binding);
68                 }
69
70                 protected virtual void AddCore (Binding dataBinding) 
71                 {
72                         CollectionChangeEventArgs args = new CollectionChangeEventArgs (CollectionChangeAction.Add, dataBinding);
73 #if NET_2_0
74                         OnCollectionChanging (args);
75 #endif
76                         base.List.Add(dataBinding);
77                         OnCollectionChanged (args);
78                 }
79
80                 protected internal void Clear() {
81                         ClearCore();
82                 }
83
84                 protected virtual void ClearCore() 
85                 {
86                         CollectionChangeEventArgs args = new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null);
87 #if NET_2_0
88                         OnCollectionChanging (args);
89 #endif
90                         base.List.Clear();
91                         OnCollectionChanged (args);
92                 }
93
94                 protected virtual void OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent) {
95                         if (CollectionChanged!=null) CollectionChanged(this, ccevent);
96                 }
97
98 #if NET_2_0
99                 protected virtual void OnCollectionChanging (CollectionChangeEventArgs e)
100                 {
101                         if (CollectionChanging != null)
102                                 CollectionChanging (this, e);
103                 }
104 #endif
105
106                 protected internal void Remove(Binding binding) {
107                         RemoveCore(binding);
108                 }
109
110                 protected internal void RemoveAt(int index) {
111                         base.List.RemoveAt(index);
112                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, base.List));
113                 }
114
115                 protected virtual void RemoveCore(Binding dataBinding) 
116                 {
117                         CollectionChangeEventArgs args = new CollectionChangeEventArgs(CollectionChangeAction.Remove, dataBinding);
118 #if NET_2_0
119                         OnCollectionChanging (args);
120 #endif
121                         base.List.Remove(dataBinding);
122                         OnCollectionChanged (args);
123                 }
124
125                 protected internal bool ShouldSerializeMyAll() {
126                         if (this.Count>0) {
127                                 return(true);
128                         } else {
129                                 return(false);
130                         }
131                 }
132                 #endregion      // Public Instance Methods
133
134                 internal bool Contains (Binding binding)
135                 {
136                         return List.Contains (binding);
137                 }
138
139                 #region Events
140                 public event CollectionChangeEventHandler       CollectionChanged;
141 #if NET_2_0
142                 public event CollectionChangeEventHandler       CollectionChanging;
143 #endif
144                 #endregion      // Events
145         }
146 }