// // System.ComponentModel.EventDescriptorCollection.cs // // Authors: // Rodrigo Moya (rodrigo@ximian.com) // Andreas Nahr (ClassDevelopment@A-SoftTech.com) // // (C) Ximian, Inc. // (C) 2003 Andreas Nahr // // // 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. // using System.Collections; using System.Runtime.InteropServices; namespace System.ComponentModel { [ComVisible (true)] public class EventDescriptorCollection : IList, ICollection, IEnumerable { private ArrayList eventList = new ArrayList (); public static readonly EventDescriptorCollection Empty = new EventDescriptorCollection (); private EventDescriptorCollection () { } internal EventDescriptorCollection (ArrayList list) { eventList = list; } public EventDescriptorCollection (EventDescriptor[] events) { if (events == null) return; for (int i = 0; i < events.Length; i++) this.Add (events[i]); } public int Add (EventDescriptor value) { return eventList.Add (value); } void IList.Clear () { Clear (); } public void Clear () { eventList.Clear (); } public bool Contains (EventDescriptor value) { return eventList.Contains (value); } public virtual EventDescriptor Find (string name, bool ignoreCase) { foreach (EventDescriptor e in eventList) { if (0 == String.Compare (name, e.Name, ignoreCase)) return e; } return null; } IEnumerator IEnumerable.GetEnumerator () { return GetEnumerator (); } public IEnumerator GetEnumerator () { return eventList.GetEnumerator (); } public int IndexOf (EventDescriptor value) { return eventList.IndexOf (value); } public void Insert (int index, EventDescriptor value) { eventList.Insert (index, value); } public void Remove (EventDescriptor value) { eventList.Remove (value); } void IList.RemoveAt (int index) { RemoveAt (index); } public void RemoveAt (int index) { eventList.RemoveAt (index); } public virtual EventDescriptorCollection Sort () { EventDescriptorCollection col = CloneCollection (); col.InternalSort ((IComparer) null); return col; } public virtual EventDescriptorCollection Sort (IComparer comparer) { EventDescriptorCollection col = CloneCollection (); col.InternalSort (comparer); return col; } public virtual EventDescriptorCollection Sort (string[] order) { EventDescriptorCollection col = CloneCollection (); col.InternalSort (order); return col; } public virtual EventDescriptorCollection Sort (string[] order, IComparer comparer) { EventDescriptorCollection col = CloneCollection (); ArrayList sorted = col.ExtractItems (order); col.InternalSort (comparer); sorted.AddRange (col.eventList); col.eventList = sorted; return col; } protected void InternalSort (IComparer comparer) { eventList.Sort (comparer); } protected void InternalSort (string[] order) { ArrayList sorted = ExtractItems (order); InternalSort ((IComparer) null); sorted.AddRange (eventList); eventList = sorted; } ArrayList ExtractItems (string[] names) { ArrayList sorted = new ArrayList (eventList.Count); object[] ext = new object [names.Length]; for (int n=0; n