* ImageList.cs: When the image stream is set pull all the images
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / BindingManagerBase.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 // NOT COMPLETE
29
30 using System.ComponentModel;
31 using System.Collections;
32
33 namespace System.Windows.Forms {
34         public abstract class BindingManagerBase {
35                 private BindingsCollection      bindings;
36                 private bool pulling_data;
37
38                 private static int count = 0;
39                 private int id = count++;
40
41 #region Public Constructors
42                 public BindingManagerBase() {
43                 }
44                 #endregion      // Public Constructors
45
46                 #region Protected Instance Fields
47                 protected EventHandler onCurrentChangedHandler;
48                 protected EventHandler onPositionChangedHandler;
49                 #endregion      // Protected Instance Fields
50
51                 #region Public Instance Properties
52                 public BindingsCollection Bindings {
53                         get {
54                                 if (bindings == null) {
55                                         bindings = new BindingsCollection ();
56                                 }
57                                 return bindings;
58                         }
59                 }
60
61                 public abstract int Count {
62                         get;
63                 }
64
65                 public abstract object Current {
66                         get;
67                 }
68
69                 public abstract int Position {
70                         get; set;
71                 }
72                 #endregion      // Public Instance Properties
73
74                 #region Public Instance Methods
75                 public abstract void AddNew();
76
77                 public abstract void CancelCurrentEdit();
78
79                 public abstract void EndCurrentEdit();
80
81                 public abstract PropertyDescriptorCollection GetItemProperties();
82
83                 public abstract void RemoveAt(int index);
84
85                 public abstract void ResumeBinding();
86
87                 public abstract void SuspendBinding();
88                 #endregion      // Public Instance Methods
89
90                 #region Protected Instance Methods
91                 [MonoTODO]
92                 protected internal virtual PropertyDescriptorCollection GetItemProperties(System.Collections.ArrayList dataSources, System.Collections.ArrayList listAccessors) {
93                         throw new NotImplementedException();
94                 }
95
96                 [MonoTODO]
97                 protected virtual PropertyDescriptorCollection GetItemProperties(Type lisType, int offset, System.Collections.ArrayList dataSources, System.Collections.ArrayList listAccessors) {
98                         throw new NotImplementedException();
99                 }
100
101                 protected internal abstract string GetListName (System.Collections.ArrayList listAccessors);
102
103                 protected internal abstract void OnCurrentChanged (EventArgs e);
104
105                 protected void PullData()
106                 {
107                         pulling_data = true;
108                         try {
109                                 UpdateIsBinding ();
110                                 foreach (Binding binding in Bindings)
111                                         binding.PullData ();
112                         } finally {
113                                 pulling_data = false;
114                         }
115                 }
116
117                 protected void PushData()
118                 {
119                         if (pulling_data)
120                                 return;
121
122                         UpdateIsBinding ();
123                         foreach (Binding binding in Bindings)
124                                 binding.PushData ();
125                 }
126
127                 protected abstract void UpdateIsBinding();
128                 #endregion      // Protected Instance Methods
129
130                 internal void AddBinding (Binding binding)
131                 {
132                         if (Bindings.Contains (binding))
133                                 return;
134                         Bindings.Add (binding);
135                 }
136
137                 #region Events
138                 public event EventHandler CurrentChanged;
139                 public event EventHandler PositionChanged;
140                 #endregion      // Events
141         }
142 }