TreeNode.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. //
  2. // System.Windows.Forms.TreeNode
  3. //
  4. // Author:
  5. // stubbed out by Jackson Harper ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc
  9. //
  10. using System.Drawing;
  11. namespace System.Windows.Forms {
  12. // <summary>
  13. // This is only a template. Nothing is implemented yet.
  14. //
  15. // </summary>
  16. public class TreeNode : MarshalByRefObject, ICloneable {
  17. // --- Public Constructors
  18. [MonoTODO]
  19. public TreeNode()
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public TreeNode(string text)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. [MonoTODO]
  29. public TreeNode(string text, TreeNode[] children)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. // --- Public Properties
  34. [MonoTODO]
  35. public Color BackColor {
  36. get
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. set
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. }
  45. [MonoTODO]
  46. public Rectangle Bounds {
  47. get
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. }
  52. [MonoTODO]
  53. public bool Checked {
  54. get
  55. {
  56. throw new NotImplementedException ();
  57. }
  58. set
  59. {
  60. throw new NotImplementedException ();
  61. }
  62. }
  63. [MonoTODO]
  64. public TreeNode FirstNode {
  65. get
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. }
  70. [MonoTODO]
  71. public Color ForeColor {
  72. get
  73. {
  74. throw new NotImplementedException ();
  75. }
  76. set
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. }
  81. [MonoTODO]
  82. public string FullPath {
  83. get
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. }
  88. [MonoTODO]
  89. public IntPtr Handle {
  90. get
  91. {
  92. throw new NotImplementedException ();
  93. }
  94. }
  95. [MonoTODO]
  96. public int ImageIndex {
  97. get
  98. {
  99. throw new NotImplementedException ();
  100. }
  101. set
  102. {
  103. throw new NotImplementedException ();
  104. }
  105. }
  106. [MonoTODO]
  107. public int Index {
  108. get
  109. {
  110. throw new NotImplementedException ();
  111. }
  112. }
  113. [MonoTODO]
  114. public bool IsEditing {
  115. get
  116. {
  117. throw new NotImplementedException ();
  118. }
  119. }
  120. [MonoTODO]
  121. public bool IsExpanded {
  122. get
  123. {
  124. throw new NotImplementedException ();
  125. }
  126. }
  127. [MonoTODO]
  128. public bool IsSelected {
  129. get
  130. {
  131. throw new NotImplementedException ();
  132. }
  133. }
  134. [MonoTODO]
  135. public bool IsVisible {
  136. get
  137. {
  138. throw new NotImplementedException ();
  139. }
  140. }
  141. [MonoTODO]
  142. public TreeNode LastNode {
  143. get
  144. {
  145. throw new NotImplementedException ();
  146. }
  147. }
  148. [MonoTODO]
  149. public TreeNode NextNode {
  150. get
  151. {
  152. throw new NotImplementedException ();
  153. }
  154. }
  155. [MonoTODO]
  156. public TreeNode NextVisibleNode {
  157. get
  158. {
  159. throw new NotImplementedException ();
  160. }
  161. set
  162. {
  163. throw new NotImplementedException ();
  164. }
  165. }
  166. [MonoTODO]
  167. public Font NodeFont {
  168. get
  169. {
  170. throw new NotImplementedException ();
  171. }
  172. set
  173. {
  174. throw new NotImplementedException ();
  175. }
  176. }
  177. [MonoTODO]
  178. public TreeNodeCollection Nodes {
  179. get
  180. {
  181. throw new NotImplementedException ();
  182. }
  183. }
  184. [MonoTODO]
  185. public TreeNode Parent {
  186. get
  187. {
  188. throw new NotImplementedException ();
  189. }
  190. }
  191. [MonoTODO]
  192. public TreeNode PrevNode {
  193. get
  194. {
  195. throw new NotImplementedException ();
  196. }
  197. }
  198. [MonoTODO]
  199. public TreeNode PrevVisibleNode {
  200. get
  201. {
  202. throw new NotImplementedException ();
  203. }
  204. }
  205. [MonoTODO]
  206. public int SelectedImageIndex {
  207. get
  208. {
  209. throw new NotImplementedException ();
  210. }
  211. set
  212. {
  213. throw new NotImplementedException ();
  214. }
  215. }
  216. [MonoTODO]
  217. public object Tag {
  218. get
  219. {
  220. throw new NotImplementedException ();
  221. }
  222. set
  223. {
  224. throw new NotImplementedException ();
  225. }
  226. }
  227. [MonoTODO]
  228. public string Text {
  229. get
  230. {
  231. throw new NotImplementedException ();
  232. }
  233. set
  234. {
  235. throw new NotImplementedException ();
  236. }
  237. }
  238. [MonoTODO]
  239. public TreeView TreeView {
  240. get
  241. {
  242. throw new NotImplementedException ();
  243. }
  244. }
  245. // --- Public Methods
  246. [MonoTODO]
  247. public void BeginEdit()
  248. {
  249. throw new NotImplementedException ();
  250. }
  251. [MonoTODO]
  252. public virtual object Clone()
  253. {
  254. throw new NotImplementedException ();
  255. }
  256. [MonoTODO]
  257. public void Collapse()
  258. {
  259. throw new NotImplementedException ();
  260. }
  261. [MonoTODO]
  262. public void EndEdit(bool cancel)
  263. {
  264. throw new NotImplementedException ();
  265. }
  266. [MonoTODO]
  267. public void EnsureVisible()
  268. {
  269. throw new NotImplementedException ();
  270. }
  271. [MonoTODO]
  272. public void Expand()
  273. {
  274. throw new NotImplementedException ();
  275. }
  276. [MonoTODO]
  277. public void ExpandAll()
  278. {
  279. throw new NotImplementedException ();
  280. }
  281. [MonoTODO]
  282. public static TreeNode FromHandle(TreeView tree, IntPtr handle)
  283. {
  284. throw new NotImplementedException ();
  285. }
  286. [MonoTODO]
  287. public int GetNodeCount(bool includeSubTrees)
  288. {
  289. throw new NotImplementedException ();
  290. }
  291. [MonoTODO]
  292. public void Remove()
  293. {
  294. throw new NotImplementedException ();
  295. }
  296. [MonoTODO]
  297. public void Toggle()
  298. {
  299. throw new NotImplementedException ();
  300. }
  301. [MonoTODO]
  302. public override string ToString()
  303. {
  304. throw new NotImplementedException ();
  305. }
  306. }
  307. }