TreeGridNode.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  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.Windows.Forms;
  12. using System.Drawing;
  13. using System.Collections.Generic;
  14. using System.Diagnostics;
  15. using System.ComponentModel;
  16. using System.ComponentModel.Design;
  17. using System.ComponentModel.Design.Serialization;
  18. using System.Drawing.Design;
  19. using System.Text;
  20. namespace AdvancedDataGridView
  21. {
  22. [
  23. ToolboxItem(false),
  24. DesignTimeVisible(false)
  25. ]
  26. public class TreeGridNode : DataGridViewRow//, IComponent
  27. {
  28. internal TreeGridView _grid;
  29. internal TreeGridNode _parent;
  30. internal TreeGridNodeCollection _owner;
  31. internal bool IsExpanded;
  32. internal bool IsRoot;
  33. internal bool _isSited;
  34. internal bool _isFirstSibling;
  35. internal bool _isLastSibling;
  36. internal Image _image;
  37. internal int _imageIndex;
  38. private Random rndSeed = new Random();
  39. public int UniqueValue = -1;
  40. TreeGridCell _treeCell;
  41. TreeGridNodeCollection childrenNodes;
  42. private int _index;
  43. private int _level;
  44. private bool childCellsCreated = false;
  45. // needed for IComponent
  46. private ISite site = null;
  47. private EventHandler disposed = null;
  48. internal TreeGridNode(TreeGridView owner)
  49. : this()
  50. {
  51. this._grid = owner;
  52. this.IsExpanded = true;
  53. }
  54. public TreeGridNode()
  55. {
  56. _index = -1;
  57. _level = -1;
  58. IsExpanded = false;
  59. UniqueValue = this.rndSeed.Next();
  60. _isSited = false;
  61. _isFirstSibling = false;
  62. _isLastSibling = false;
  63. _imageIndex = -1;
  64. }
  65. public override object Clone()
  66. {
  67. TreeGridNode r = (TreeGridNode)base.Clone();
  68. r.UniqueValue = -1;
  69. r._level = this._level;
  70. r._grid = this._grid;
  71. r._parent = this.Parent;
  72. r._imageIndex = this._imageIndex;
  73. if (r._imageIndex == -1)
  74. r.Image = this.Image;
  75. r.IsExpanded = this.IsExpanded;
  76. //r.treeCell = new TreeGridCell();
  77. return r;
  78. }
  79. internal protected virtual void UnSited()
  80. {
  81. // This row is being removed from being displayed on the grid.
  82. TreeGridCell cell;
  83. foreach (DataGridViewCell DGVcell in this.Cells)
  84. {
  85. cell = DGVcell as TreeGridCell;
  86. if (cell != null)
  87. {
  88. cell.UnSited();
  89. }
  90. }
  91. this._isSited = false;
  92. }
  93. internal protected virtual void Sited()
  94. {
  95. // This row is being added to the grid.
  96. this._isSited = true;
  97. this.childCellsCreated = true;
  98. Debug.Assert(this._grid != null);
  99. TreeGridCell cell;
  100. foreach (DataGridViewCell DGVcell in this.Cells)
  101. {
  102. cell = DGVcell as TreeGridCell;
  103. if (cell != null)
  104. {
  105. cell.Sited();// Level = this.Level;
  106. }
  107. }
  108. }
  109. // Represents the index of this row in the Grid
  110. [System.ComponentModel.Description("Represents the index of this row in the Grid. Advanced usage."),
  111. System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced),
  112. Browsable(false),
  113. DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  114. public int RowIndex{
  115. get{
  116. return base.Index;
  117. }
  118. }
  119. // Represents the index of this row based upon its position in the collection.
  120. [Browsable(false),
  121. DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  122. public new int Index
  123. {
  124. get
  125. {
  126. if (_index == -1)
  127. {
  128. // get the index from the collection if unknown
  129. _index = this._owner.IndexOf(this);
  130. }
  131. return _index;
  132. }
  133. internal set
  134. {
  135. _index = value;
  136. }
  137. }
  138. [Browsable(false),
  139. EditorBrowsable( EditorBrowsableState.Never),
  140. DesignerSerializationVisibility( DesignerSerializationVisibility.Hidden)]
  141. public ImageList ImageList
  142. {
  143. get
  144. {
  145. if (this._grid != null)
  146. return this._grid.ImageList;
  147. else
  148. return null;
  149. }
  150. }
  151. private bool ShouldSerializeImageIndex()
  152. {
  153. return (this._imageIndex != -1 && this._image == null);
  154. }
  155. [Category("Appearance"),
  156. Description("..."), DefaultValue(-1),
  157. TypeConverter(typeof(ImageIndexConverter)),
  158. Editor("System.Windows.Forms.Design.ImageIndexEditor", typeof(UITypeEditor))]
  159. public int ImageIndex
  160. {
  161. get { return _imageIndex; }
  162. set
  163. {
  164. _imageIndex = value;
  165. if (_imageIndex != -1)
  166. {
  167. // when a imageIndex is provided we do not store the image.
  168. this._image = null;
  169. }
  170. if (this._isSited)
  171. {
  172. // when the image changes the cell's style must be updated
  173. this._treeCell.UpdateStyle();
  174. if (this.Displayed)
  175. this._grid.InvalidateRow(this.RowIndex);
  176. }
  177. }
  178. }
  179. private bool ShouldSerializeImage()
  180. {
  181. return (this._imageIndex == -1 && this._image != null);
  182. }
  183. public Image Image
  184. {
  185. get {
  186. if (_image == null && _imageIndex != -1)
  187. {
  188. if (this.ImageList != null && this._imageIndex < this.ImageList.Images.Count)
  189. {
  190. // get image from image index
  191. return this.ImageList.Images[this._imageIndex];
  192. }
  193. else
  194. return null;
  195. }
  196. else
  197. {
  198. // image from image property
  199. return this._image;
  200. };
  201. }
  202. set
  203. {
  204. _image = value;
  205. if (_image != null)
  206. {
  207. // when a image is provided we do not store the imageIndex.
  208. this._imageIndex = -1;
  209. }
  210. if (this._isSited)
  211. {
  212. // when the image changes the cell's style must be updated
  213. this._treeCell.UpdateStyle();
  214. if (this.Displayed)
  215. this._grid.InvalidateRow(this.RowIndex);
  216. }
  217. }
  218. }
  219. protected override DataGridViewCellCollection CreateCellsInstance()
  220. {
  221. DataGridViewCellCollection cells = base.CreateCellsInstance();
  222. cells.CollectionChanged += cells_CollectionChanged;
  223. return cells;
  224. }
  225. void cells_CollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)
  226. {
  227. // Exit if there already is a tree cell for this row
  228. if (_treeCell != null) return;
  229. if (e.Action == System.ComponentModel.CollectionChangeAction.Add || e.Action == System.ComponentModel.CollectionChangeAction.Refresh)
  230. {
  231. TreeGridCell treeCell = null;
  232. if (e.Element == null)
  233. {
  234. foreach (DataGridViewCell cell in base.Cells)
  235. {
  236. if (typeof(TreeGridCell).IsAssignableFrom(cell.GetType()))
  237. {
  238. treeCell = (TreeGridCell)cell;
  239. break;
  240. }
  241. }
  242. }
  243. else
  244. {
  245. treeCell = e.Element as TreeGridCell;
  246. }
  247. if (treeCell != null)
  248. _treeCell = treeCell;
  249. }
  250. }
  251. [Category("Data"),
  252. Description("The collection of root nodes in the treelist."),
  253. DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
  254. Editor(typeof(CollectionEditor), typeof(UITypeEditor))]
  255. public TreeGridNodeCollection Nodes
  256. {
  257. get
  258. {
  259. if (childrenNodes == null)
  260. {
  261. childrenNodes = new TreeGridNodeCollection(this);
  262. }
  263. return childrenNodes;
  264. }
  265. set { ;}
  266. }
  267. // Create a new Cell property because by default a row is not in the grid and won't
  268. // have any cells. We have to fabricate the cell collection ourself.
  269. [Browsable(false),
  270. DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  271. public new DataGridViewCellCollection Cells
  272. {
  273. get
  274. {
  275. if (!childCellsCreated && this.DataGridView == null)
  276. {
  277. if (this._grid == null) return null;
  278. this.CreateCells(this._grid);
  279. childCellsCreated = true;
  280. }
  281. return base.Cells;
  282. }
  283. }
  284. [Browsable(false),
  285. DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  286. public int Level
  287. {
  288. get {
  289. if (this._level == -1)
  290. {
  291. // calculate level
  292. int walk = 0;
  293. TreeGridNode walkRow = this.Parent;
  294. while (walkRow != null)
  295. {
  296. walk++;
  297. walkRow = walkRow.Parent;
  298. }
  299. this._level = walk;
  300. }
  301. return this._level; }
  302. }
  303. [Browsable(false),
  304. DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  305. public TreeGridNode Parent
  306. {
  307. get
  308. {
  309. return this._parent;
  310. }
  311. }
  312. [Browsable(false),
  313. DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  314. public virtual bool HasChildren
  315. {
  316. get
  317. {
  318. return (this.childrenNodes != null && this.Nodes.Count != 0);
  319. }
  320. }
  321. [Browsable(false)]
  322. public bool IsSited
  323. {
  324. get
  325. {
  326. return this._isSited;
  327. }
  328. }
  329. [Browsable(false)]
  330. public bool IsFirstSibling
  331. {
  332. get
  333. {
  334. return (this.Index == 0);
  335. }
  336. }
  337. [Browsable(false)]
  338. public bool IsLastSibling
  339. {
  340. get
  341. {
  342. TreeGridNode parent = this.Parent;
  343. if (parent != null && parent.HasChildren)
  344. {
  345. return (this.Index == parent.Nodes.Count - 1);
  346. }
  347. else
  348. return true;
  349. }
  350. }
  351. public virtual bool Collapse()
  352. {
  353. return this._grid.CollapseNode(this);
  354. }
  355. public virtual bool Expand()
  356. {
  357. if (this._grid != null)
  358. return this._grid.ExpandNode(this);
  359. else
  360. {
  361. this.IsExpanded = true;
  362. return true;
  363. }
  364. }
  365. internal protected virtual bool InsertChildNode(int index, TreeGridNode node)
  366. {
  367. node._parent = this;
  368. node._grid = this._grid;
  369. // ensure that all children of this node has their grid set
  370. if (this._grid != null)
  371. UpdateChildNodes(node);
  372. //TODO: do we need to use index parameter?
  373. if ((this._isSited || this.IsRoot) && this.IsExpanded)
  374. this._grid.SiteNode(node);
  375. return true;
  376. }
  377. internal protected virtual bool InsertChildNodes(int index, params TreeGridNode[] nodes)
  378. {
  379. foreach (TreeGridNode node in nodes)
  380. {
  381. this.InsertChildNode(index, node);
  382. }
  383. return true;
  384. }
  385. internal protected virtual bool AddChildNode(TreeGridNode node)
  386. {
  387. node._parent = this;
  388. node._grid = this._grid;
  389. // ensure that all children of this node has their grid set
  390. if (this._grid != null)
  391. UpdateChildNodes(node);
  392. if ((this._isSited || this.IsRoot) && this.IsExpanded && !node._isSited)
  393. this._grid.SiteNode(node);
  394. return true;
  395. }
  396. internal protected virtual bool AddChildNodes(params TreeGridNode[] nodes)
  397. {
  398. //TODO: Convert the final call into an SiteNodes??
  399. foreach (TreeGridNode node in nodes)
  400. {
  401. this.AddChildNode(node);
  402. }
  403. return true;
  404. }
  405. internal protected virtual bool RemoveChildNode(TreeGridNode node)
  406. {
  407. if ((this.IsRoot || this._isSited) && this.IsExpanded )
  408. {
  409. //We only unsite out child node if we are sited and expanded.
  410. this._grid.UnSiteNode(node);
  411. }
  412. node._grid = null;
  413. node._parent = null;
  414. return true;
  415. }
  416. internal protected virtual bool ClearNodes()
  417. {
  418. if (this.HasChildren)
  419. {
  420. for (int i = this.Nodes.Count - 1; i >= 0; i--)
  421. {
  422. this.Nodes.RemoveAt(i);
  423. }
  424. }
  425. return true;
  426. }
  427. [
  428. Browsable(false),
  429. EditorBrowsable(EditorBrowsableState.Advanced)
  430. ]
  431. public event EventHandler Disposed
  432. {
  433. add
  434. {
  435. this.disposed += value;
  436. }
  437. remove
  438. {
  439. this.disposed -= value;
  440. }
  441. }
  442. [
  443. Browsable(false),
  444. DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
  445. ]
  446. public ISite Site
  447. {
  448. get
  449. {
  450. return this.site;
  451. }
  452. set
  453. {
  454. this.site = value;
  455. }
  456. }
  457. private void UpdateChildNodes(TreeGridNode node)
  458. {
  459. if (node.HasChildren)
  460. {
  461. foreach (TreeGridNode childNode in node.Nodes)
  462. {
  463. childNode._grid = node._grid;
  464. this.UpdateChildNodes(childNode);
  465. }
  466. }
  467. }
  468. public override string ToString()
  469. {
  470. StringBuilder sb = new StringBuilder(36);
  471. sb.Append("TreeGridNode { Index=");
  472. sb.Append(this.RowIndex.ToString(System.Globalization.CultureInfo.CurrentCulture));
  473. sb.Append(" }");
  474. return sb.ToString();
  475. }
  476. //protected override void Dispose(bool disposing) {
  477. // if (disposing)
  478. // {
  479. // lock(this)
  480. // {
  481. // if (this.site != null && this.site.Container != null)
  482. // {
  483. // this.site.Container.Remove(this);
  484. // }
  485. // if (this.disposed != null)
  486. // {
  487. // this.disposed(this, EventArgs.Empty);
  488. // }
  489. // }
  490. // }
  491. // base.Dispose(disposing);
  492. //}
  493. }
  494. }