G2DTreeDataGridNodes.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. using AdvancedDataGridView;
  2. using CommonFroms.G2D;
  3. using CommonLang.Property;
  4. using System;
  5. using System.Collections;
  6. using System.Collections.Generic;
  7. using System.ComponentModel;
  8. using System.Drawing;
  9. using System.Linq;
  10. using System.Reflection;
  11. using System.Text;
  12. using System.Windows.Forms;
  13. namespace CommonFroms.Utils.TreeGrid
  14. {
  15. public class G2DTreeGridDocument : TreeGridNode
  16. {
  17. private object mValue;
  18. public G2DTreeDataGrid OwnerTreeGrid { get; private set; }
  19. public G2DTreeGridValueNode DocumentElement { get; private set; }
  20. public object Value
  21. {
  22. get { return mValue; }
  23. set
  24. {
  25. this.mValue = value;
  26. this.Cells[1].Value = "Document";
  27. this.Cells[2].Value = "";
  28. this.Cells[3].Value = "";
  29. this.DocumentElement = CreateValueNode("Document", value.GetType(), null);
  30. this.Nodes.Clear();
  31. this.Nodes.Add(DocumentElement);
  32. this.DocumentElement.BindValue(value, null);
  33. }
  34. }
  35. public G2DTreeGridDocument(G2DTreeDataGrid tree)
  36. {
  37. this.OwnerTreeGrid = tree;
  38. }
  39. /// <summary>
  40. /// 创建节点
  41. /// </summary>
  42. /// <param name="name"></param>
  43. /// <param name="type"></param>
  44. /// <param name="owner"></param>
  45. /// <returns></returns>
  46. public G2DTreeGridValueNode CreateValueNode(string name, Type type, object owner)
  47. {
  48. if (type.IsArray)
  49. {
  50. return new G2DTreeGridArrayNode(this, name, type, owner);
  51. }
  52. else if (type.IsPrimitive)
  53. {
  54. return new G2DTreeGridLeafValueNode(this, name, type, owner);
  55. }
  56. else if (type.IsEnum)
  57. {
  58. return new G2DTreeGridLeafValueNode(this, name, type, owner);
  59. }
  60. else if (typeof(string).Equals(type))
  61. {
  62. return new G2DTreeGridLeafValueNode(this, name, type, owner);
  63. }
  64. else if (type.IsClass)
  65. {
  66. if (typeof(IDictionary).IsAssignableFrom(type))
  67. {
  68. return new G2DTreeGridMapNode(this, name, type, owner);
  69. }
  70. else if (typeof(IList).IsAssignableFrom(type))
  71. {
  72. return new G2DTreeGridListNode(this, name, type, owner);
  73. }
  74. else
  75. {
  76. return new G2DTreeGridFieldsValueNode(this, name, type, owner);
  77. }
  78. }
  79. else
  80. {
  81. return new G2DTreeGridFieldsValueNode(this, name, type, owner);
  82. }
  83. }
  84. }
  85. //---------------------------------------------------------------------------------------------------------------
  86. /// <summary>
  87. /// 值类型节点基类
  88. /// </summary>
  89. public abstract class G2DTreeGridValueNode : TreeGridNode
  90. {
  91. public string Name { get; private set; }
  92. public G2DTreeGridDocument CurrentDocument { get; private set; }
  93. public G2DTreeGridValueNode ParentValueNode { get { return Parent as G2DTreeGridValueNode; } }
  94. public object OwnerIndexer { get { return mOwnerIndexer; } }
  95. public object OwnerObject { get { return mOwnerObject; } }
  96. public Type ValueType { get { return mValueType; } }
  97. public object Value { get { return mValue; } }
  98. public DescAttribute FieldDesc
  99. {
  100. get
  101. {
  102. if (OwnerIndexer is FieldInfo)
  103. {
  104. return PropertyUtil.GetAttribute<DescAttribute>(OwnerIndexer as FieldInfo);
  105. }
  106. return null;
  107. }
  108. }
  109. public bool IsRootValue
  110. {
  111. get { return this.OwnerObject == null; }
  112. }
  113. public bool IsLeaf
  114. {
  115. get
  116. {
  117. if (mValueType.IsPrimitive)
  118. {
  119. return true;
  120. }
  121. if (mValueType.IsEnum)
  122. {
  123. return true;
  124. }
  125. if (mValueType.Equals(typeof(string)))
  126. {
  127. return true;
  128. }
  129. if (mValueType.IsClass)
  130. {
  131. return false;
  132. }
  133. return false;
  134. }
  135. }
  136. public bool IsCollection
  137. {
  138. get
  139. {
  140. if (mValueType.IsArray)
  141. {
  142. return true;
  143. }
  144. if (typeof(IList).IsAssignableFrom(mValueType))
  145. {
  146. return true;
  147. }
  148. return false;
  149. }
  150. }
  151. public bool IsFieldReadonly
  152. {
  153. get
  154. {
  155. return !IsLeaf;
  156. }
  157. }
  158. private readonly Type mValueType;
  159. private readonly object mOwnerObject;
  160. private object mOwnerIndexer;
  161. private object mValue;
  162. public G2DTreeGridValueNode(G2DTreeGridDocument doc, string name, Type type, object owner)
  163. {
  164. this.CurrentDocument = doc;
  165. this.Name = name;
  166. this.mValueType = type;
  167. this.mOwnerObject = owner;
  168. }
  169. public G2DTreeGridValueNode GetChild(string key)
  170. {
  171. foreach (G2DTreeGridValueNode c in Nodes)
  172. {
  173. if (string.Equals(c.Name, key))
  174. {
  175. return c;
  176. }
  177. }
  178. return null;
  179. }
  180. public void Refresh()
  181. {
  182. this.Image = ToFieldImage();
  183. this.Cells[1].Value = ToFieldString();
  184. this.Cells[1].ToolTipText = ToFieldToolTip();
  185. this.Cells[1].ContextMenuStrip = CurrentDocument.OwnerTreeGrid.menuNode;
  186. this.Cells[2].Value = ToValueString();
  187. this.Cells[2].ValueType = mValueType;
  188. this.Cells[2].ReadOnly = IsFieldReadonly;
  189. (this.Cells[2] as G2DTreeGridValueCell).SetValueEditType(ValueType);
  190. this.Cells[3].Value = ToFieldCatagory();
  191. this.Cells[3].ToolTipText = ToFieldToolTip();
  192. }
  193. protected void AppendChild(G2DTreeGridValueNode child)
  194. {
  195. if (child.ParentValueNode != null)
  196. {
  197. throw new Exception(string.Format("Child already have a parent : child={0} parent={1}", child.Name, child.ParentValueNode.Name));
  198. }
  199. this.Nodes.Add(child);
  200. }
  201. /// <summary>
  202. /// 如果是复合类,产生子节点
  203. /// </summary>
  204. protected abstract void GenChilds();
  205. /// <summary>
  206. /// 设置当前节点值(此操作 将改变当前节点结构)
  207. /// </summary>
  208. protected abstract void SetFieldValue(G2DTreeGridValueNode child, object value);
  209. internal void BindValue(object value, object key)
  210. {
  211. this.mValue = value;
  212. this.mOwnerIndexer = key;
  213. this.Nodes.Clear();
  214. this.GenChilds();
  215. this.Refresh();
  216. }
  217. /// <summary>
  218. /// 设置当前节点值(此操作 将改变当前节点结构)
  219. /// </summary>
  220. /// <param name="value"></param>
  221. public void SetValue(object value)
  222. {
  223. if (ParentValueNode != null)
  224. {
  225. ParentValueNode.SetFieldValue(this, value);
  226. }
  227. this.Refresh();
  228. }
  229. //----------------------------------------------------------------------
  230. #region _Cells_
  231. public virtual string ToFieldString()
  232. {
  233. return Name;
  234. }
  235. public virtual Image ToFieldImage()
  236. {
  237. return CurrentDocument.OwnerTreeGrid.img_icon_men;
  238. }
  239. public virtual string ToFieldToolTip()
  240. {
  241. if (FieldDesc != null)
  242. {
  243. return FieldDesc.Desc;
  244. }
  245. return null;
  246. }
  247. public virtual string ToFieldCatagory()
  248. {
  249. if (FieldDesc != null)
  250. {
  251. return FieldDesc.Category;
  252. }
  253. return null;
  254. }
  255. public virtual string ToValueString()
  256. {
  257. return Value + "";
  258. }
  259. public virtual string ToTypeString()
  260. {
  261. return PropertyUtil.ToTypeDefineString(mValueType);
  262. }
  263. #endregion
  264. //----------------------------------------------------------------------
  265. #region _Operators_
  266. protected internal virtual void OnMenuOpening(CancelEventArgs e)
  267. {
  268. if (ParentValueNode == null)
  269. {
  270. e.Cancel = true;
  271. return;
  272. }
  273. CurrentDocument.OwnerTreeGrid.menuNode.SuspendLayout();
  274. try
  275. {
  276. foreach (ToolStripItem drop in CurrentDocument.OwnerTreeGrid.menuNode.Items)
  277. {
  278. drop.Visible = false;
  279. }
  280. if (ParentValueNode.IsCollection)
  281. {
  282. CurrentDocument.OwnerTreeGrid.menuNode_Delete.Visible = true;
  283. CurrentDocument.OwnerTreeGrid.menuNode_Up.Visible = true;
  284. CurrentDocument.OwnerTreeGrid.menuNode_Down.Visible = true;
  285. }
  286. else if (IsLeaf)
  287. {
  288. e.Cancel = true;
  289. }
  290. else if (IsCollection)
  291. {
  292. CurrentDocument.OwnerTreeGrid.menuNode_New.Visible = true;
  293. }
  294. else
  295. {
  296. if (Value != null)
  297. {
  298. CurrentDocument.OwnerTreeGrid.menuNode_Delete.Visible = true;
  299. }
  300. else
  301. {
  302. CurrentDocument.OwnerTreeGrid.menuNode_New.Visible = true;
  303. }
  304. }
  305. }
  306. finally
  307. {
  308. CurrentDocument.OwnerTreeGrid.menuNode.ResumeLayout();
  309. }
  310. }
  311. protected internal virtual void OnNewContentClick()
  312. {
  313. object value = G2DCreateInstanceDialog.ShowCreateInstanceDialog(ValueType);
  314. SetValue(value);
  315. }
  316. protected internal virtual void OnDelContentClick()
  317. {
  318. if (ParentValueNode != null)
  319. {
  320. if (ParentValueNode.IsCollection)
  321. {
  322. ParentValueNode.OnRemoveListItemClick(this);
  323. }
  324. else if (!IsLeaf)
  325. {
  326. SetValue(null);
  327. }
  328. }
  329. }
  330. protected internal virtual void OnMoveListItemIndexClick(int d) { }
  331. protected internal virtual void OnRemoveListItemClick(G2DTreeGridValueNode node) { }
  332. #endregion
  333. //----------------------------------------------------------------------
  334. }
  335. //---------------------------------------------------------------------------------------------------------------
  336. /// <summary>
  337. /// 表示基础类型
  338. /// </summary>
  339. public class G2DTreeGridLeafValueNode : G2DTreeGridValueNode
  340. {
  341. public G2DTreeGridLeafValueNode(G2DTreeGridDocument doc, string name, Type type, object owner)
  342. : base(doc, name, type, owner)
  343. {
  344. }
  345. protected override void GenChilds()
  346. {
  347. }
  348. protected override void SetFieldValue(G2DTreeGridValueNode child, object value)
  349. {
  350. }
  351. }
  352. //---------------------------------------------------------------------------------------------------------------
  353. /// <summary>
  354. /// 表示类
  355. /// </summary>
  356. public class G2DTreeGridFieldsValueNode : G2DTreeGridValueNode
  357. {
  358. public G2DTreeGridFieldsValueNode(G2DTreeGridDocument doc, string name, Type type, object owner)
  359. : base(doc, name, type, owner)
  360. {
  361. }
  362. protected override void GenChilds()
  363. {
  364. if (Value != null && !IsLeaf)
  365. {
  366. foreach (FieldInfo field in ValueType.GetFields())
  367. {
  368. if (!field.IsStatic && !field.IsLiteral && !field.IsInitOnly && field.IsPublic)
  369. {
  370. Type ft = field.FieldType;
  371. object fv = field.GetValue(Value);
  372. if (fv != null) { ft = fv.GetType(); }
  373. G2DTreeGridValueNode fe = CurrentDocument.CreateValueNode(field.Name, ft, Value);
  374. AppendChild(fe);
  375. fe.BindValue(fv, field);
  376. }
  377. }
  378. }
  379. }
  380. protected override void SetFieldValue(G2DTreeGridValueNode child, object value)
  381. {
  382. child = GetChild(child.Name) as G2DTreeGridValueNode;
  383. if (child != null)
  384. {
  385. FieldInfo field = child.OwnerIndexer as FieldInfo;
  386. field.SetValue(this.Value, value);
  387. child.BindValue(value, field);
  388. }
  389. }
  390. }
  391. //---------------------------------------------------------------------------------------------------------------
  392. /// <summary>
  393. /// 表示数组
  394. /// </summary>
  395. public class G2DTreeGridArrayNode : G2DTreeGridValueNode
  396. {
  397. readonly public Type ElementType;
  398. readonly public int Rank;
  399. public ListAttribute ListDesc
  400. {
  401. get
  402. {
  403. if (OwnerIndexer is FieldInfo)
  404. {
  405. return PropertyUtil.GetAttribute<ListAttribute>(OwnerIndexer as FieldInfo);
  406. }
  407. return null;
  408. }
  409. }
  410. public Array ArrayValue
  411. {
  412. get
  413. {
  414. if (Value != null) { return (Array)Value; } return null;
  415. }
  416. }
  417. public int ArrayLength
  418. {
  419. get
  420. {
  421. if (Value != null) { return ((Array)Value).Length; } return 0;
  422. }
  423. }
  424. public G2DTreeGridArrayNode(G2DTreeGridDocument doc, string name, Type type, object owner)
  425. : base(doc, name, type, owner)
  426. {
  427. this.ElementType = ValueType.GetElementType();
  428. this.Rank = ValueType.GetArrayRank();
  429. }
  430. protected override void GenChilds()
  431. {
  432. if (Value != null)
  433. {
  434. Array array = (Array)Value;
  435. int i = 0;
  436. foreach (object v in array)
  437. {
  438. if (v != null)
  439. {
  440. Type vtype = v.GetType();
  441. G2DTreeGridValueNode ei = CurrentDocument.CreateValueNode(string.Format("[{0}]", i), vtype, Value);
  442. AppendChild(ei);
  443. ei.BindValue(v, i);
  444. }
  445. i++;
  446. }
  447. }
  448. }
  449. protected override void SetFieldValue(G2DTreeGridValueNode child, object value)
  450. {
  451. child = GetChild(child.Name) as G2DTreeGridValueNode;
  452. if (child != null)
  453. {
  454. int i = (int)child.OwnerIndexer;
  455. Array array = (Array)this.Value;
  456. array.SetValue(value, i);
  457. child.BindValue(value, i);
  458. }
  459. }
  460. public override string ToValueString()
  461. {
  462. if (Value != null)
  463. {
  464. Array array = (Array)Value;
  465. return "Length="+array.GetLength(1).ToString();
  466. }
  467. return "null";
  468. }
  469. protected internal override void OnNewContentClick()
  470. {
  471. object item = G2DCreateInstanceDialog.ShowCreateInstanceDialog(ElementType);
  472. if (item != null)
  473. {
  474. Array dst = (Array)ReflectionUtil.CreateInstance(ValueType, ArrayLength + 1);
  475. if (ArrayValue != null)
  476. {
  477. Array.Copy(ArrayValue, dst, ArrayLength);
  478. }
  479. dst.SetValue(item, ArrayLength);
  480. SetValue(dst);
  481. }
  482. }
  483. protected internal override void OnMoveListItemIndexClick(int d) { }
  484. protected internal override void OnRemoveListItemClick(G2DTreeGridValueNode node)
  485. {
  486. if (ArrayLength > 0)
  487. {
  488. Array src = ArrayValue;
  489. int newLen = ArrayLength - 1;
  490. Array dst = (Array)ReflectionUtil.CreateInstance(ValueType, newLen);
  491. for (int i = 0, j = 0; i < newLen && j < newLen; i++, j++)
  492. {
  493. if (i.Equals(node.OwnerIndexer))
  494. {
  495. i++;
  496. if (i >= newLen) { break; }
  497. }
  498. dst.SetValue(src.GetValue(i), j);
  499. }
  500. }
  501. }
  502. }
  503. //---------------------------------------------------------------------------------------------------------------
  504. /// <summary>
  505. /// 表示列表
  506. /// </summary>
  507. public class G2DTreeGridListNode : G2DTreeGridValueNode
  508. {
  509. readonly public Type GenericElementType;
  510. public ListAttribute ListDesc
  511. {
  512. get
  513. {
  514. if (OwnerIndexer is FieldInfo)
  515. {
  516. return PropertyUtil.GetAttribute<ListAttribute>(OwnerIndexer as FieldInfo);
  517. }
  518. return null;
  519. }
  520. }
  521. public IList ListValue
  522. {
  523. get
  524. {
  525. if (Value != null) { return (IList)Value; } return null;
  526. }
  527. }
  528. public int ListCount
  529. {
  530. get
  531. {
  532. if (Value != null) { return ((IList)Value).Count; } return 0;
  533. }
  534. }
  535. public G2DTreeGridListNode(G2DTreeGridDocument doc, string name, Type type, object owner)
  536. : base(doc, name, type, owner)
  537. {
  538. if (ValueType.IsGenericType)
  539. {
  540. GenericElementType = ValueType.GetGenericArguments()[0];
  541. }
  542. }
  543. protected override void GenChilds()
  544. {
  545. if (Value != null)
  546. {
  547. IList list = (IList)Value;
  548. int i = 0;
  549. foreach (object v in list)
  550. {
  551. if (v != null)
  552. {
  553. Type vtype = v.GetType();
  554. G2DTreeGridValueNode ei = CurrentDocument.CreateValueNode(string.Format("[{0}]", i), vtype, Value);
  555. AppendChild(ei);
  556. ei.BindValue(v, i);
  557. }
  558. i++;
  559. }
  560. }
  561. }
  562. protected override void SetFieldValue(G2DTreeGridValueNode child, object value)
  563. {
  564. child = GetChild(child.Name) as G2DTreeGridValueNode;
  565. if (child != null)
  566. {
  567. int i = (int)child.OwnerIndexer;
  568. IList list = (IList)this.Value;
  569. list[i] = value;
  570. child.BindValue(value, i);
  571. }
  572. }
  573. public override string ToValueString()
  574. {
  575. if (Value != null)
  576. {
  577. IList array = (IList)Value;
  578. return "Count=" + array.Count.ToString();
  579. }
  580. return "null";
  581. }
  582. protected internal override void OnNewContentClick()
  583. {
  584. object item = G2DCreateInstanceDialog.ShowCreateInstanceDialog(GenericElementType);
  585. if (item != null)
  586. {
  587. IList dst = ListValue;
  588. if (dst == null)
  589. {
  590. dst = (IList)ReflectionUtil.CreateInstance(ValueType);
  591. }
  592. dst.Add(item);
  593. SetValue(dst);
  594. }
  595. }
  596. protected internal override void OnMoveListItemIndexClick(int d) { }
  597. protected internal override void OnRemoveListItemClick(G2DTreeGridValueNode node)
  598. {
  599. IList dst = ListValue;
  600. if (dst != null)
  601. {
  602. dst.Remove(node.Value);
  603. SetValue(dst);
  604. }
  605. }
  606. }
  607. //---------------------------------------------------------------------------------------------------------------
  608. /// <summary>
  609. /// 表示字典
  610. /// </summary>
  611. public class G2DTreeGridMapNode : G2DTreeGridValueNode
  612. {
  613. readonly public Type GenericKeyType;
  614. readonly public Type GenericValueType;
  615. public IDictionary MapValue
  616. {
  617. get
  618. {
  619. if (Value != null) { return (IDictionary)Value; } return null;
  620. }
  621. }
  622. public G2DTreeGridMapNode(G2DTreeGridDocument doc, string name, Type type, object owner)
  623. : base(doc, name, type, owner)
  624. {
  625. if (ValueType.IsGenericType)
  626. {
  627. GenericKeyType = ValueType.GetGenericArguments()[0];
  628. GenericValueType = ValueType.GetGenericArguments()[1];
  629. }
  630. else
  631. {
  632. GenericKeyType = null;
  633. GenericValueType = null;
  634. }
  635. }
  636. protected override void GenChilds()
  637. {
  638. if (Value != null)
  639. {
  640. IDictionary map = (IDictionary)Value;
  641. foreach (object k in map.Keys)
  642. {
  643. object v = map[k];
  644. if (v != null)
  645. {
  646. Type vtype = v.GetType();
  647. G2DTreeGridValueNode ei = CurrentDocument.CreateValueNode(string.Format("[{0}]", k), vtype, this.Value);
  648. AppendChild(ei);
  649. ei.BindValue(v, k);
  650. }
  651. }
  652. }
  653. }
  654. protected override void SetFieldValue(G2DTreeGridValueNode child, object value)
  655. {
  656. child = GetChild(child.Name) as G2DTreeGridValueNode;
  657. if (child != null)
  658. {
  659. IDictionary map = (IDictionary)this.Value;
  660. map[child.OwnerIndexer] = value;
  661. child.BindValue(value, child.OwnerIndexer);
  662. }
  663. }
  664. }
  665. //---------------------------------------------------------------------------------------------------------------
  666. }