TreeGridNodeCollection.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. //---------------------------------------------------------------------
  2. //
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. //
  5. //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
  6. //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  7. //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  8. //PARTICULAR PURPOSE.
  9. //---------------------------------------------------------------------
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Text;
  13. namespace AdvancedDataGridView
  14. {
  15. public class TreeGridNodeCollection : System.Collections.Generic.IList<TreeGridNode>, System.Collections.IList
  16. {
  17. internal System.Collections.Generic.List<TreeGridNode> _list;
  18. internal TreeGridNode _owner;
  19. internal TreeGridNodeCollection(TreeGridNode owner)
  20. {
  21. this._owner = owner;
  22. this._list = new List<TreeGridNode>();
  23. }
  24. #region Public Members
  25. public void Add(TreeGridNode item)
  26. {
  27. // The row needs to exist in the child collection before the parent is notified.
  28. item._grid = this._owner._grid;
  29. bool hadChildren = this._owner.HasChildren;
  30. item._owner = this;
  31. this._list.Add(item);
  32. this._owner.AddChildNode(item);
  33. // if the owner didn't have children but now does (asserted) and it is sited update it
  34. if (!hadChildren && this._owner.IsSited)
  35. {
  36. this._owner._grid.InvalidateRow(this._owner.RowIndex);
  37. }
  38. }
  39. public TreeGridNode Add(string text)
  40. {
  41. TreeGridNode node = new TreeGridNode();
  42. this.Add(node);
  43. node.Cells[0].Value = text;
  44. return node;
  45. }
  46. public TreeGridNode Add(params object[] values)
  47. {
  48. TreeGridNode node = new TreeGridNode();
  49. this.Add(node);
  50. int cell = 0;
  51. if (values.Length > node.Cells.Count )
  52. throw new ArgumentOutOfRangeException("values");
  53. foreach (object o in values)
  54. {
  55. node.Cells[cell].Value = o;
  56. cell++;
  57. }
  58. return node;
  59. }
  60. public void Insert(int index, TreeGridNode item)
  61. {
  62. // The row needs to exist in the child collection before the parent is notified.
  63. item._grid = this._owner._grid;
  64. item._owner = this;
  65. this._list.Insert(index, item);
  66. this._owner.InsertChildNode(index, item);
  67. }
  68. public bool Remove(TreeGridNode item)
  69. {
  70. // The parent is notified first then the row is removed from the child collection.
  71. this._owner.RemoveChildNode(item);
  72. item._grid = null;
  73. return this._list.Remove(item);
  74. }
  75. public void RemoveAt(int index)
  76. {
  77. TreeGridNode row = this._list[index];
  78. // The parent is notified first then the row is removed from the child collection.
  79. this._owner.RemoveChildNode(row);
  80. row._grid = null;
  81. this._list.RemoveAt(index);
  82. }
  83. public void Clear()
  84. {
  85. // The parent is notified first then the row is removed from the child collection.
  86. this._owner.ClearNodes();
  87. this._list.Clear();
  88. }
  89. public int IndexOf(TreeGridNode item)
  90. {
  91. return this._list.IndexOf(item);
  92. }
  93. public TreeGridNode this[int index]
  94. {
  95. get
  96. {
  97. return this._list[index];
  98. }
  99. set
  100. {
  101. throw new Exception("The method or operation is not implemented.");
  102. }
  103. }
  104. public bool Contains(TreeGridNode item)
  105. {
  106. return this._list.Contains(item);
  107. }
  108. public void CopyTo(TreeGridNode[] array, int arrayIndex)
  109. {
  110. throw new Exception("The method or operation is not implemented.");
  111. }
  112. public int Count
  113. {
  114. get{ return this._list.Count; }
  115. }
  116. public bool IsReadOnly
  117. {
  118. get{ return false; }
  119. }
  120. #endregion
  121. #region IList Interface
  122. void System.Collections.IList.Remove(object value)
  123. {
  124. this.Remove(value as TreeGridNode);
  125. }
  126. int System.Collections.IList.Add(object value)
  127. {
  128. TreeGridNode item = value as TreeGridNode;
  129. this.Add(item);
  130. return item.Index;
  131. }
  132. void System.Collections.IList.RemoveAt(int index)
  133. {
  134. this.RemoveAt(index);
  135. }
  136. void System.Collections.IList.Clear()
  137. {
  138. this.Clear();
  139. }
  140. bool System.Collections.IList.IsReadOnly
  141. {
  142. get { return this.IsReadOnly;}
  143. }
  144. bool System.Collections.IList.IsFixedSize
  145. {
  146. get { return false; }
  147. }
  148. int System.Collections.IList.IndexOf(object item)
  149. {
  150. return this.IndexOf(item as TreeGridNode);
  151. }
  152. void System.Collections.IList.Insert(int index, object value)
  153. {
  154. this.Insert(index, value as TreeGridNode);
  155. }
  156. int System.Collections.ICollection.Count
  157. {
  158. get { return this.Count; }
  159. }
  160. bool System.Collections.IList.Contains(object value)
  161. {
  162. return this.Contains(value as TreeGridNode);
  163. }
  164. void System.Collections.ICollection.CopyTo(Array array, int index)
  165. {
  166. throw new Exception("The method or operation is not implemented.");
  167. }
  168. object System.Collections.IList.this[int index]
  169. {
  170. get
  171. {
  172. return this[index];
  173. }
  174. set
  175. {
  176. throw new Exception("The method or operation is not implemented.");
  177. }
  178. }
  179. #region IEnumerable<ExpandableRow> Members
  180. public IEnumerator<TreeGridNode> GetEnumerator()
  181. {
  182. return this._list.GetEnumerator();
  183. }
  184. #endregion
  185. #region IEnumerable Members
  186. System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
  187. {
  188. return this.GetEnumerator();
  189. }
  190. #endregion
  191. #endregion
  192. #region ICollection Members
  193. bool System.Collections.ICollection.IsSynchronized
  194. {
  195. get { throw new Exception("The method or operation is not implemented."); }
  196. }
  197. object System.Collections.ICollection.SyncRoot
  198. {
  199. get { throw new Exception("The method or operation is not implemented."); }
  200. }
  201. #endregion
  202. }
  203. }