svn path=/branches/mono-1-1-9/mcs/; revision=50439
[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                         base.List.Add(dataBinding);
72                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Add, base.List));
73                 }
74
75                 protected internal void Clear() {
76                         ClearCore();
77                 }
78
79                 protected virtual void ClearCore() {
80                         base.List.Clear();
81                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Refresh, base.List));
82                 }
83
84                 protected virtual void OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent) {
85                         if (CollectionChanged!=null) CollectionChanged(this, ccevent);
86                 }
87
88                 protected internal void Remove(Binding binding) {
89                         RemoveCore(binding);
90                 }
91
92                 protected internal void RemoveAt(int index) {
93                         base.List.RemoveAt(index);
94                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, base.List));
95                 }
96
97                 protected virtual void RemoveCore(Binding dataBinding) {
98                         base.List.Remove(dataBinding);
99                         OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, base.List));
100                 }
101
102                 protected internal bool ShouldSerializeMyAll() {
103                         if (this.Count>0) {
104                                 return(true);
105                         } else {
106                                 return(false);
107                         }
108                 }
109                 #endregion      // Public Instance Methods
110
111                 internal bool Contains (Binding binding)
112                 {
113                         return List.Contains (binding);
114                 }
115
116                 #region Events
117                 public event CollectionChangeEventHandler       CollectionChanged;
118                 #endregion      // Events
119         }
120 }