| using System.Collections; | |
| using System.ComponentModel; | |
| namespace FarsiLibrary.Win.Helpers | |
| { | |
| /// <summary> | |
| /// Represents the method that will handle the event that has no data. | |
| /// </summary> | |
| public delegate void CollectionClear(); | |
| /// <summary> | |
| /// Represents the method that will handle the event that has item data. | |
| /// </summary> | |
| public delegate void CollectionChange(int index, object value); | |
| /// <summary> | |
| /// Extend collection base class by generating change events. | |
| /// </summary> | |
| public abstract class CollectionWithEvents : CollectionBase | |
| { | |
| // Instance fields | |
| private int _suspendCount; | |
| /// <summary> | |
| /// Occurs just before the collection contents are cleared. | |
| /// </summary> | |
| [] | |
| public event CollectionClear Clearing; | |
| /// <summary> | |
| /// Occurs just after the collection contents are cleared. | |
| /// </summary> | |
| [] | |
| public event CollectionClear Cleared; | |
| /// <summary> | |
| /// Occurs just before an item is added to the collection. | |
| /// </summary> | |
| [] | |
| public event CollectionChange Inserting; | |
| /// <summary> | |
| /// Occurs just after an item has been added to the collection. | |
| /// </summary> | |
| [] | |
| public event CollectionChange Inserted; | |
| /// <summary> | |
| /// Occurs just before an item is removed from the collection. | |
| /// </summary> | |
| [] | |
| public event CollectionChange Removing; | |
| /// <summary> | |
| /// Occurs just after an item has been removed from the collection. | |
| /// </summary> | |
| [] | |
| public event CollectionChange Removed; | |
| /// <summary> | |
| /// Initializes DrawTab new instance of the CollectionWithEvents class. | |
| /// </summary> | |
| public CollectionWithEvents() | |
| { | |
| // Default to not suspended | |
| _suspendCount = 0; | |
| } | |
| /// <summary> | |
| /// Do not generate change events until resumed. | |
| /// </summary> | |
| public void SuspendEvents() | |
| { | |
| _suspendCount++; | |
| } | |
| /// <summary> | |
| /// Safe to resume change events. | |
| /// </summary> | |
| public void ResumeEvents() | |
| { | |
| --_suspendCount; | |
| } | |
| /// <summary> | |
| /// Gets DrawTab value indicating if events are currently suspended. | |
| /// </summary> | |
| [] | |
| public bool IsSuspended | |
| { | |
| get { return (_suspendCount > 0); } | |
| } | |
| /// <summary> | |
| /// Raises the Clearing event when not suspended. | |
| /// </summary> | |
| protected override void OnClear() | |
| { | |
| if (!IsSuspended) | |
| { | |
| // Any attached event handlers? | |
| if (Clearing != null) | |
| Clearing(); | |
| } | |
| } | |
| /// <summary> | |
| /// Raises the Cleared event when not suspended. | |
| /// </summary> | |
| protected override void OnClearComplete() | |
| { | |
| if (!IsSuspended) | |
| { | |
| // Any attached event handlers? | |
| if (Cleared != null) | |
| Cleared(); | |
| } | |
| } | |
| /// <summary> | |
| /// Raises the Inserting event when not suspended. | |
| /// </summary> | |
| /// <param name="index">Index of object being inserted.</param> | |
| /// <param name="value">The object that is being inserted.</param> | |
| protected override void OnInsert(int index, object value) | |
| { | |
| if (!IsSuspended) | |
| { | |
| // Any attached event handlers? | |
| if (Inserting != null) | |
| Inserting(index, value); | |
| } | |
| } | |
| /// <summary> | |
| /// Raises the Inserted event when not suspended. | |
| /// </summary> | |
| /// <param name="index">Index of inserted object.</param> | |
| /// <param name="value">The object that has been inserted.</param> | |
| protected override void OnInsertComplete(int index, object value) | |
| { | |
| if (!IsSuspended) | |
| { | |
| // Any attached event handlers? | |
| if (Inserted != null) | |
| Inserted(index, value); | |
| } | |
| } | |
| /// <summary> | |
| /// Raises the Removing event when not suspended. | |
| /// </summary> | |
| /// <param name="index">Index of object being removed.</param> | |
| /// <param name="value">The object that is being removed.</param> | |
| protected override void OnRemove(int index, object value) | |
| { | |
| if (!IsSuspended) | |
| { | |
| // Any attached event handlers? | |
| if (Removing != null) | |
| Removing(index, value); | |
| } | |
| } | |
| /// <summary> | |
| /// Raises the Removed event when not suspended. | |
| /// </summary> | |
| /// <param name="index">Index of removed object.</param> | |
| /// <param name="value">The object that has been removed.</param> | |
| protected override void OnRemoveComplete(int index, object value) | |
| { | |
| if (!IsSuspended) | |
| { | |
| // Any attached event handlers? | |
| if (Removed != null) | |
| Removed(index, value); | |
| } | |
| } | |
| /// <summary> | |
| /// Returns the index of the first occurrence of DrawTab value. | |
| /// </summary> | |
| /// <param name="value">The object to locate.</param> | |
| /// <returns>Index of object; otherwise -1</returns> | |
| protected int IndexOf(object value) | |
| { | |
| // Find the 0 based index of the requested entry | |
| return List.IndexOf(value); | |
| } | |
| } | |
| } | |