DocumentDesigner.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. //
  2. // System.Windows.Forms.Design.ComponentEditorForm.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. using System.Collections;
  10. using System.ComponentModel;
  11. using System.ComponentModel.Design;
  12. using System.Diagnostics;
  13. using System.Drawing.Design;
  14. namespace System.Windows.Forms.Design
  15. {
  16. [ToolboxItemFilter("System.Windows.Forms")]
  17. public class DocumentDesigner : ScrollableControlDesigner, IRootDesigner, IDesigner, IDisposable, IToolboxUser, IOleDragClient
  18. {
  19. #region Public Instance Constructors
  20. [MonoTODO]
  21. public DocumentDesigner ()
  22. {
  23. }
  24. #endregion Public Instance Constructors
  25. #region Static Constructor
  26. [MonoTODO]
  27. static DocumentDesigner ()
  28. {
  29. }
  30. #endregion Static Constructor
  31. #region Override implementation of ScrollableControlDesigner
  32. [MonoTODO]
  33. protected override void Dispose (bool disposing)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public override void Initialize (IComponent component)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. [MonoTODO]
  43. protected override void OnContextMenu (int x, int y)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. protected override void OnCreateHandle ()
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. [MonoTODO]
  53. protected override void PreFilterProperties (IDictionary properties)
  54. {
  55. throw new NotImplementedException ();
  56. }
  57. [MonoTODO]
  58. protected override void WndProc (ref Message m)
  59. {
  60. throw new NotImplementedException ();
  61. }
  62. [MonoTODO]
  63. public override SelectionRules SelectionRules
  64. {
  65. get
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. }
  70. #endregion Override implementation of ScrollableControlDesigner
  71. #region Internal Instance Methods
  72. [MonoTODO]
  73. internal virtual bool CanDropComponents (DragEventArgs de)
  74. {
  75. throw new NotImplementedException ();
  76. }
  77. [MonoTODO]
  78. internal virtual void DoProperMenuSelection (ICollection selComponents)
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. #endregion Internal Instance Methods
  83. #region Protected Instance Methods
  84. [MonoTODO]
  85. protected virtual void EnsureMenuEditorService (IComponent c)
  86. {
  87. throw new NotImplementedException ();
  88. }
  89. [MonoTODO]
  90. protected virtual bool GetToolSupported (ToolboxItem tool)
  91. {
  92. throw new NotImplementedException ();
  93. }
  94. [MonoTODO]
  95. protected virtual void ToolPicked (ToolboxItem tool)
  96. {
  97. throw new NotImplementedException ();
  98. }
  99. #endregion Protected Instance Methods
  100. #region Implementation of IRootDesigner
  101. [MonoTODO]
  102. ViewTechnology[] IRootDesigner.SupportedTechnologies
  103. {
  104. get
  105. {
  106. throw new NotImplementedException ();
  107. }
  108. }
  109. [MonoTODO]
  110. object IRootDesigner.GetView (ViewTechnology technology)
  111. {
  112. throw new NotImplementedException ();
  113. }
  114. #endregion Implementation of IRootDesigner
  115. #region Implementation of IToolboxUser
  116. [MonoTODO]
  117. bool IToolboxUser.GetToolSupported (ToolboxItem tool)
  118. {
  119. throw new NotImplementedException ();
  120. }
  121. [MonoTODO]
  122. void IToolboxUser.ToolPicked (ToolboxItem tool)
  123. {
  124. throw new NotImplementedException ();
  125. }
  126. #endregion Implementation of IToolboxUser
  127. #region Implementation of IOleDragClient
  128. [MonoTODO]
  129. Control IOleDragClient.GetControlForComponent (object component)
  130. {
  131. throw new NotImplementedException ();
  132. }
  133. #endregion Implementation of IOleDragClient
  134. }
  135. }