| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- // Copyright (c) 2004-2005 Novell, Inc.
- //
- // Authors:
- // Jordi Mas i Hernandez, [email protected]
- //
- //
- // COMPLETE
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.Reflection;
- namespace System.Windows.Forms
- {
- public abstract class ListControl : Control
- {
- private object data_source;
- private BindingMemberInfo value_member;
- private string display_member;
- private CurrencyManager data_manager;
- protected ListControl ()
- {
- data_source = null;
- value_member = new BindingMemberInfo (string.Empty);
- display_member = string.Empty;
- data_manager = null;
- SetStyle (ControlStyles.StandardClick | ControlStyles.UserPaint, false);
- }
- #region Events
- public event EventHandler DataSourceChanged;
- public event EventHandler DisplayMemberChanged;
- public event EventHandler SelectedValueChanged;
- public event EventHandler ValueMemberChanged;
- #endregion // Events
- #region Public Properties
- [DefaultValue(null)]
- [RefreshProperties(RefreshProperties.Repaint)]
- [TypeConverter("System.Windows.Forms.Design.DataSourceConverter, " + Consts.AssemblySystem_Design)]
- public object DataSource {
- get { return data_source; }
- set {
- if (!(value is IList || value is IListSource)) {
- throw new Exception ("Complex DataBinding accepts as a data source " +
- "either an IList or an IListSource");
- }
- if (data_source == value)
- return;
- data_source = value;
- ConnectToDataSource ();
- OnDataSourceChanged (EventArgs.Empty);
- }
- }
- [DefaultValue("")]
- [Editor("System.Windows.Forms.Design.DataMemberFieldEditor, " + Consts.AssemblySystem_Design, typeof(System.Drawing.Design.UITypeEditor))]
- [TypeConverter("System.Windows.Forms.Design.DataMemberFieldConverter, " + Consts.AssemblySystem_Design)]
- public string DisplayMember {
- get {
- return display_member;
- }
- set {
- if (display_member == value) {
- return;
- }
- display_member = value;
- ConnectToDataSource ();
- OnDisplayMemberChanged (EventArgs.Empty);
- }
- }
- public abstract int SelectedIndex {
- get;
- set;
- }
- [Bindable(BindableSupport.Yes)]
- [Browsable(false)]
- [DefaultValue(null)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public object SelectedValue {
- get {
- if (data_manager == null) {
- return null;
- }
-
- object item = data_manager.GetItem (SelectedIndex);
- object fil = FilterItemOnProperty (item, ValueMember);
- return fil;
- }
- set {
- if (data_manager != null) {
-
- PropertyDescriptorCollection col = data_manager.GetItemProperties ();
- PropertyDescriptor prop = col.Find (ValueMember, true);
-
- for (int i = 0; i < data_manager.Count; i++) {
- if (prop.GetValue (data_manager.GetItem (i)) == value) {
- SelectedIndex = i;
- return;
- }
- }
-
- }
- }
- }
- [DefaultValue("")]
- [Editor("System.Windows.Forms.Design.DataMemberFieldEditor, " + Consts.AssemblySystem_Design, typeof(System.Drawing.Design.UITypeEditor))]
- public string ValueMember {
- get { return value_member.BindingMember; }
- set {
- BindingMemberInfo new_value = new BindingMemberInfo (value);
-
- if (value_member.Equals (new_value)) {
- return;
- }
-
- value_member = new_value;
-
- if (display_member == string.Empty) {
- DisplayMember = value_member.BindingMember;
- }
-
- ConnectToDataSource ();
- OnValueMemberChanged (EventArgs.Empty);
- }
- }
- #endregion Public Properties
- #region Public Methods
- protected object FilterItemOnProperty (object item)
- {
- return FilterItemOnProperty (item, string.Empty);
- }
- protected object FilterItemOnProperty (object item, string field)
- {
- if (item == null)
- return null;
- if (field == null || field == string.Empty)
- return item;
- PropertyDescriptor prop = null;
- if (data_manager != null) {
- PropertyDescriptorCollection col = data_manager.GetItemProperties ();
- prop = col.Find (field, true);
- }
-
- if (prop == null)
- return item;
-
- return prop.GetValue (item);
- }
- public string GetItemText (object item)
- {
- if (data_manager != null) {
- object fil = FilterItemOnProperty (item, DisplayMember);
- if (fil != null) {
- return fil.ToString ();
- }
- }
-
- return item.ToString ();
- }
- protected CurrencyManager DataManager {
- get { return data_manager; }
- }
- // Used only by ListBox to avoid to break Listbox's member signature
- protected override bool IsInputKey (Keys keyData)
- {
- switch (keyData) {
- case Keys.Up:
- case Keys.Down:
- case Keys.PageUp:
- case Keys.PageDown:
- case Keys.Right:
- case Keys.Left:
- case Keys.End:
- case Keys.Home:
- case Keys.ControlKey:
- case Keys.Space:
- case Keys.ShiftKey:
- return true;
- default:
- return false;
- }
- }
- protected override void OnBindingContextChanged (EventArgs e)
- {
- base.OnBindingContextChanged (e);
- ConnectToDataSource ();
- if (DataManager != null) {
- SetItemsCore (DataManager.List);
- SelectedIndex = DataManager.Position;
- }
- }
- protected virtual void OnDataSourceChanged (EventArgs e)
- {
- if (DataSourceChanged != null)
- DataSourceChanged (this,e);
- }
- protected virtual void OnDisplayMemberChanged (EventArgs e)
- {
- if (DisplayMemberChanged != null)
- DisplayMemberChanged (this, e);
- }
- protected virtual void OnSelectedIndexChanged (EventArgs e)
- {
- if (data_manager == null)
- return;
- if (data_manager.Position == SelectedIndex)
- return;
- data_manager.Position = SelectedIndex;
- }
- protected virtual void OnSelectedValueChanged (EventArgs e)
- {
- if (SelectedValueChanged != null)
- SelectedValueChanged (this, e);
- }
- protected virtual void OnValueMemberChanged (EventArgs e)
- {
- if (ValueMemberChanged != null)
- ValueMemberChanged (this, e);
- }
- protected abstract void RefreshItem (int index);
- protected virtual void SetItemCore (int index, object value)
- {
- }
- protected abstract void SetItemsCore (IList items);
-
- #endregion Public Methods
-
- #region Private Methods
- internal void BindDataItems (IList items)
- {
- items.Clear ();
- if (data_manager != null) {
- SetItemsCore (data_manager.List);
- }
- }
- private void ConnectToDataSource ()
- {
- if (data_source == null) {
- data_manager = null;
- return;
- }
- if (BindingContext == null) {
- return;
- }
-
- data_manager = (CurrencyManager) BindingContext [data_source];
- data_manager.PositionChanged += new EventHandler (OnPositionChanged);
- }
-
- private void OnPositionChanged (object sender, EventArgs e)
- {
- SelectedIndex = data_manager.Position;
- }
- #endregion Private Methods
- }
- }
|