123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- //---------------------------------------------------------------------
- //
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //
- //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
- //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- //PARTICULAR PURPOSE.
- //---------------------------------------------------------------------
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace AdvancedDataGridView
- {
- public class TreeGridNodeCollection : System.Collections.Generic.IList<TreeGridNode>, System.Collections.IList
- {
- internal System.Collections.Generic.List<TreeGridNode> _list;
- internal TreeGridNode _owner;
- internal TreeGridNodeCollection(TreeGridNode owner)
- {
- this._owner = owner;
- this._list = new List<TreeGridNode>();
- }
- #region Public Members
- public void Add(TreeGridNode item)
- {
- // The row needs to exist in the child collection before the parent is notified.
- item._grid = this._owner._grid;
- bool hadChildren = this._owner.HasChildren;
- item._owner = this;
- this._list.Add(item);
- this._owner.AddChildNode(item);
- // if the owner didn't have children but now does (asserted) and it is sited update it
- if (!hadChildren && this._owner.IsSited)
- {
- this._owner._grid.InvalidateRow(this._owner.RowIndex);
- }
- }
- public TreeGridNode Add(string text)
- {
- TreeGridNode node = new TreeGridNode();
- this.Add(node);
- node.Cells[0].Value = text;
- return node;
- }
- public TreeGridNode Add(params object[] values)
- {
- TreeGridNode node = new TreeGridNode();
- this.Add(node);
- int cell = 0;
- if (values.Length > node.Cells.Count )
- throw new ArgumentOutOfRangeException("values");
- foreach (object o in values)
- {
- node.Cells[cell].Value = o;
- cell++;
- }
- return node;
- }
- public void Insert(int index, TreeGridNode item)
- {
- // The row needs to exist in the child collection before the parent is notified.
- item._grid = this._owner._grid;
- item._owner = this;
- this._list.Insert(index, item);
- this._owner.InsertChildNode(index, item);
- }
- public bool Remove(TreeGridNode item)
- {
- // The parent is notified first then the row is removed from the child collection.
- this._owner.RemoveChildNode(item);
- item._grid = null;
- return this._list.Remove(item);
- }
- public void RemoveAt(int index)
- {
- TreeGridNode row = this._list[index];
- // The parent is notified first then the row is removed from the child collection.
- this._owner.RemoveChildNode(row);
- row._grid = null;
- this._list.RemoveAt(index);
- }
- public void Clear()
- {
- // The parent is notified first then the row is removed from the child collection.
- this._owner.ClearNodes();
- this._list.Clear();
- }
- public int IndexOf(TreeGridNode item)
- {
- return this._list.IndexOf(item);
- }
- public TreeGridNode this[int index]
- {
- get
- {
- return this._list[index];
- }
- set
- {
- throw new Exception("The method or operation is not implemented.");
- }
- }
- public bool Contains(TreeGridNode item)
- {
- return this._list.Contains(item);
- }
- public void CopyTo(TreeGridNode[] array, int arrayIndex)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- public int Count
- {
- get{ return this._list.Count; }
- }
- public bool IsReadOnly
- {
- get{ return false; }
- }
- #endregion
- #region IList Interface
- void System.Collections.IList.Remove(object value)
- {
- this.Remove(value as TreeGridNode);
- }
- int System.Collections.IList.Add(object value)
- {
- TreeGridNode item = value as TreeGridNode;
- this.Add(item);
- return item.Index;
- }
- void System.Collections.IList.RemoveAt(int index)
- {
- this.RemoveAt(index);
- }
- void System.Collections.IList.Clear()
- {
- this.Clear();
- }
- bool System.Collections.IList.IsReadOnly
- {
- get { return this.IsReadOnly;}
- }
- bool System.Collections.IList.IsFixedSize
- {
- get { return false; }
- }
- int System.Collections.IList.IndexOf(object item)
- {
- return this.IndexOf(item as TreeGridNode);
- }
- void System.Collections.IList.Insert(int index, object value)
- {
- this.Insert(index, value as TreeGridNode);
- }
- int System.Collections.ICollection.Count
- {
- get { return this.Count; }
- }
- bool System.Collections.IList.Contains(object value)
- {
- return this.Contains(value as TreeGridNode);
- }
- void System.Collections.ICollection.CopyTo(Array array, int index)
- {
- throw new Exception("The method or operation is not implemented.");
- }
- object System.Collections.IList.this[int index]
- {
- get
- {
- return this[index];
- }
- set
- {
- throw new Exception("The method or operation is not implemented.");
- }
- }
- #region IEnumerable<ExpandableRow> Members
- public IEnumerator<TreeGridNode> GetEnumerator()
- {
- return this._list.GetEnumerator();
- }
- #endregion
- #region IEnumerable Members
- System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
- {
- return this.GetEnumerator();
- }
- #endregion
- #endregion
- #region ICollection Members
- bool System.Collections.ICollection.IsSynchronized
- {
- get { throw new Exception("The method or operation is not implemented."); }
- }
- object System.Collections.ICollection.SyncRoot
- {
- get { throw new Exception("The method or operation is not implemented."); }
- }
- #endregion
- }
- }
|