ToolBarButton.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. //
  2. // System.Windows.Forms.ToolBarButton
  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. using System.ComponentModel;
  17. public class ToolBarButton : Component {
  18. //
  19. // --- Public Constructors
  20. //
  21. [MonoTODO]
  22. public ToolBarButton()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public ToolBarButton(string text)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. //
  32. // --- Public Properties
  33. //
  34. [MonoTODO]
  35. public Menu DropDownMenu {
  36. get {
  37. throw new NotImplementedException ();
  38. }
  39. set {
  40. throw new NotImplementedException ();
  41. }
  42. }
  43. [MonoTODO]
  44. public bool Enabled {
  45. get {
  46. throw new NotImplementedException ();
  47. }
  48. set {
  49. throw new NotImplementedException ();
  50. }
  51. }
  52. [MonoTODO]
  53. public int ImageIndex {
  54. get {
  55. throw new NotImplementedException ();
  56. }
  57. set {
  58. throw new NotImplementedException ();
  59. }
  60. }
  61. [MonoTODO]
  62. public ToolBar Parent {
  63. get {
  64. throw new NotImplementedException ();
  65. }
  66. }
  67. [MonoTODO]
  68. public bool PartialPush {
  69. get {
  70. throw new NotImplementedException ();
  71. }
  72. set {
  73. throw new NotImplementedException ();
  74. }
  75. }
  76. [MonoTODO]
  77. public bool Pushed {
  78. get {
  79. throw new NotImplementedException ();
  80. }
  81. set {
  82. throw new NotImplementedException ();
  83. }
  84. }
  85. [MonoTODO]
  86. public Rectangle Rectangle {
  87. get {
  88. throw new NotImplementedException ();
  89. }
  90. }
  91. [MonoTODO]
  92. public ToolBarButtonStyle Style {
  93. get {
  94. throw new NotImplementedException ();
  95. }
  96. set {
  97. throw new NotImplementedException ();
  98. }
  99. }
  100. [MonoTODO]
  101. public object Tag {
  102. get {
  103. throw new NotImplementedException ();
  104. }
  105. set {
  106. throw new NotImplementedException ();
  107. }
  108. }
  109. [MonoTODO]
  110. public string Text {
  111. get {
  112. throw new NotImplementedException ();
  113. }
  114. set {
  115. throw new NotImplementedException ();
  116. }
  117. }
  118. [MonoTODO]
  119. public string ToolTipText {
  120. get {
  121. throw new NotImplementedException ();
  122. }
  123. set {
  124. throw new NotImplementedException ();
  125. }
  126. }
  127. [MonoTODO]
  128. public bool Visible {
  129. get {
  130. throw new NotImplementedException ();
  131. }
  132. set {
  133. throw new NotImplementedException ();
  134. }
  135. }
  136. // --- Public Methods
  137. [MonoTODO]
  138. public override string ToString()
  139. {
  140. throw new NotImplementedException ();
  141. }
  142. //
  143. // --- Protected Methods
  144. //
  145. //inherited
  146. //protected override void Dispose(bool disposing)
  147. //{
  148. // throw new NotImplementedException ();
  149. //}
  150. }
  151. }