| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- //
- // System.ComponentModel.PropertyDescriptorCollection.cs
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) Rodrigo Moya, 2002
- // (c) 2002 Ximian, Inc. (http://www.ximian.com)
- //
- using System.Collections;
- namespace System.ComponentModel
- {
- /// <summary>
- /// Represents a collection of PropertyDescriptor objects.
- /// </summary>
- public class PropertyDescriptorCollection : IList, ICollection, IEnumerable, IDictionary
- {
- public static readonly PropertyDescriptorCollection Empty =
- new PropertyDescriptorCollection (null);
- ArrayList properties;
- bool readOnly;
- public PropertyDescriptorCollection (PropertyDescriptor[] properties)
- {
- this.properties = new ArrayList ();
- if (properties == null)
- return;
- foreach (PropertyDescriptor p in properties)
- this.properties.Add (p);
- }
- public int Add (PropertyDescriptor value)
- {
- properties.Add (value);
- return properties.Count - 1;
- }
- int IList.Add (object value)
- {
- return Add ((PropertyDescriptor) value);
- }
- void IDictionary.Add (object key, object value)
- {
- Add ((PropertyDescriptor) value);
- }
-
- public void Clear ()
- {
- properties.Clear ();
- }
- void IList.Clear ()
- {
- Clear ();
- }
- void IDictionary.Clear ()
- {
- Clear ();
- }
- public bool Contains (PropertyDescriptor value)
- {
- return properties.Contains (value);
- }
- bool IList.Contains (object value)
- {
- return Contains ((PropertyDescriptor) value);
- }
- bool IDictionary.Contains (object value)
- {
- return Contains ((PropertyDescriptor) value);
- }
- public void CopyTo (Array array, int index)
- {
- properties.CopyTo (array, index);
- }
- public virtual PropertyDescriptor Find (string name, bool ignoreCase)
- {
- foreach (PropertyDescriptor p in properties) {
- if (0 == String.Compare (name, p.Name, ignoreCase))
- return p;
- }
- return null;
- }
- public virtual IEnumerator GetEnumerator ()
- {
- return properties.GetEnumerator ();
- }
- [MonoTODO]
- IDictionaryEnumerator IDictionary.GetEnumerator ()
- {
- throw new NotImplementedException ();
- }
- public int IndexOf (PropertyDescriptor value)
- {
- return properties.IndexOf (value);
- }
- int IList.IndexOf (object value)
- {
- return IndexOf ((PropertyDescriptor) value);
- }
- [MonoTODO]
- public void Insert (int index, PropertyDescriptor value)
- {
- throw new NotImplementedException ();
- }
- void IList.Insert (int index, object value)
- {
- Insert (index, (PropertyDescriptor) value);
- }
- public void Remove (PropertyDescriptor value)
- {
- properties.Remove (value);
- }
- void IDictionary.Remove (object value)
- {
- Remove ((PropertyDescriptor) value);
- }
- void IList.Remove (object value)
- {
- Remove ((PropertyDescriptor) value);
- }
- public void RemoveAt (int index)
- {
- properties.RemoveAt (index);
- }
- void IList.RemoveAt (int index)
- {
- RemoveAt (index);
- }
- [MonoTODO]
- public virtual PropertyDescriptorCollection Sort ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual PropertyDescriptorCollection Sort (IComparer ic)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected void InternalSort (IComparer ic)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected void InternalSort (string [] order)
- {
- throw new NotImplementedException ();
- }
-
- bool IDictionary.IsFixedSize
- {
- get {
- return !readOnly;
- }
- }
- bool IList.IsFixedSize
- {
- get {
- return !readOnly;
- }
- }
- public bool IsReadOnly
- {
- get {
- return readOnly;
- }
- }
- public bool IsSynchronized
- {
- get {
- return false;
- }
- }
- public int Count
- {
- get {
- return properties.Count;
- }
- }
- object ICollection.SyncRoot
- {
- get {
- return null;
- }
- }
-
- ICollection IDictionary.Keys
- {
- get {
- string [] keys = new string [properties.Count];
- int i = 0;
- foreach (PropertyDescriptor p in properties)
- keys [i++] = p.Name;
- return keys;
- }
- }
-
- ICollection IDictionary.Values
- {
- get {
- return (ICollection) properties.Clone ();
- }
- }
-
- object IDictionary.this [object key]
- {
- get {
- if (!(key is string))
- return null;
- return this [(string) key];
- }
- set {
- if (!(key is string) || (value as PropertyDescriptor) == null)
- throw new ArgumentException ();
- int idx = properties.IndexOf (value);
- if (idx == -1)
- Add ((PropertyDescriptor) value);
- else
- properties [idx] = value;
- }
- }
- public virtual PropertyDescriptor this [string s]
- {
- get {
- return Find (s, false);
- }
- }
- object IList.this [int index]
- {
- get {
- return properties [index];
- }
- set {
- properties [index] = value;
- }
- }
- public virtual PropertyDescriptor this [int index]
- {
- get {
- return (PropertyDescriptor) properties [index];
- }
- }
- }
- }
|