ScrollableControl.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. //
  2. // System.Windows.Forms.Form
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. // stubbed out by Daniel Carrera ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc
  9. //
  10. using System;
  11. using System.Drawing;
  12. using Gtk;
  13. using GtkSharp;
  14. namespace System.Windows.Forms {
  15. public class ScrollableControl : Control {
  16. //
  17. // --- Constructor
  18. //
  19. //[MonoTODO]
  20. //public ScrollableControl()
  21. //{
  22. // throw new NotImplementedException ();
  23. //}
  24. //
  25. // --- Public Properties
  26. //
  27. //[MonoTODO]
  28. //public virtual bool AutoScroll {
  29. // get {
  30. // throw new NotImplementedException ();
  31. // }
  32. // set {
  33. // throw new NotImplementedException ();
  34. // }
  35. //}
  36. //[MonoTODO]
  37. //public Size AutoScrollMargin {
  38. // get {
  39. // throw new NotImplementedException ();
  40. // }
  41. // set {
  42. // throw new NotImplementedException ();
  43. // }
  44. //}
  45. //[MonoTODO]
  46. //public Size AutoScrollMinSize {
  47. // get {
  48. // throw new NotImplementedException ();
  49. // }
  50. // set {
  51. // throw new NotImplementedException ();
  52. // }
  53. //}
  54. //[MonoTODO]
  55. //public Point AutoScrollPosition {
  56. // get {
  57. // throw new NotImplementedException ();
  58. // }
  59. // set {
  60. // throw new NotImplementedException ();
  61. // }
  62. //}
  63. //[MonoTODO]
  64. //public override Rectangle DisplayRectangle {
  65. // get {
  66. // throw new NotImplementedException ();
  67. // }
  68. //}
  69. //[MonoTODO]
  70. //public ScrollableControl.DockPaddingEdges DockPadding {
  71. // get {
  72. // throw new NotImplementedException ();
  73. // }
  74. //}
  75. //[MonoTODO]
  76. //public override ISite Site {
  77. // get {
  78. // throw new NotImplementedException ();
  79. // }
  80. // set {
  81. // throw new NotImplementedException ();
  82. // }
  83. //}
  84. //
  85. // --- Public Methods
  86. //
  87. //[MonoTODO]
  88. //public IAsyncResult BeginInvoke(Delegate del)
  89. //{
  90. // throw new NotImplementedException ();
  91. //}
  92. //[MonoTODO]
  93. //public IAsyncResult BeginInvoke(Delegate del, object[] objs)
  94. //{
  95. // throw new NotImplementedException ();
  96. //}
  97. //[MonoTODO]
  98. //public void Dispose()
  99. //{
  100. // throw new NotImplementedException ();
  101. //}
  102. //[MonoTODO]
  103. //public virtual bool Equals(object o);
  104. //{
  105. // throw new NotImplementedException ();
  106. //}
  107. //[MonoTODO]
  108. //public static bool Equals(object o1, object o2);
  109. //{
  110. // throw new NotImplementedException ();
  111. //}
  112. //[MonoTODO]
  113. //public void Invalidate()
  114. //{
  115. // throw new NotImplementedException ();
  116. //}
  117. //[MonoTODO]
  118. //public void Invalidate(bool val)
  119. //{
  120. // throw new NotImplementedException ();
  121. //}
  122. //[MonoTODO]
  123. //public void Invalidate(Rectangle rect)
  124. //{
  125. // throw new NotImplementedException ();
  126. //}
  127. //[MonoTODO]
  128. //public void Invalidate(Region reg)
  129. //{
  130. // throw new NotImplementedException ();
  131. //}
  132. //[MonoTODO]
  133. //public void Invalidate(Rectangle rect, bool val)
  134. //{
  135. // throw new NotImplementedException ();
  136. //}
  137. //[MonoTODO]
  138. //public void Invalidate(Region reg, bool val)
  139. //{
  140. // throw new NotImplementedException ();
  141. //}
  142. //[MonoTODO]
  143. //public object Invoke(Delegate del)
  144. //{
  145. // throw new NotImplementedException ();
  146. //}
  147. //[MonoTODO]
  148. //public object Invoke(Delegate del, object[] objs)
  149. //{
  150. // throw new NotImplementedException ();
  151. //}
  152. //[MonoTODO]
  153. //public void PerformLayout()
  154. //{
  155. // throw new NotImplementedException ();
  156. //}
  157. //[MonoTODO]
  158. //public void PerformLayout(Control ctl, string str)
  159. //{
  160. // throw new NotImplementedException ();
  161. //}
  162. //[MonoTODO]
  163. //public void ResumeLayout()
  164. //{
  165. // throw new NotImplementedException ();
  166. //}
  167. //[MonoTODO]
  168. //public void ResumeLayout(bool val)
  169. //{
  170. // throw new NotImplementedException ();
  171. //}
  172. //[MonoTODO]
  173. //public void Scale(float val)
  174. //{
  175. // throw new NotImplementedException ();
  176. //}
  177. //[MonoTODO]
  178. //public void Scale(float val1, float val2)
  179. //{
  180. // throw new NotImplementedException ();
  181. //}
  182. //[MonoTODO]
  183. //public void Select()
  184. //{
  185. // throw new NotImplementedException ();
  186. //}
  187. //[MonoTODO]
  188. //public void Select(bool val1, bool val2)
  189. //{
  190. // throw new NotImplementedException ();
  191. //}
  192. //[MonoTODO]
  193. //public void SetBounds(int val1, int val2, int val3, int val4)
  194. //{
  195. // throw new NotImplementedException ();
  196. //}
  197. //[MonoTODO]
  198. //public void SetBounds(int val1, int val2, int val3, int val4, BoundsSpecified bounds)
  199. //{
  200. // throw new NotImplementedException ();
  201. //}
  202. //
  203. // --- Protected Properties
  204. //
  205. //[MonoTODO]
  206. //protected override CreateParams CreateParams {
  207. // get {
  208. // throw new NotImplementedException ();
  209. // }
  210. //}
  211. //[MonoTODO]
  212. //protected bool HScroll {
  213. // get {
  214. // throw new NotImplementedException ();
  215. // }
  216. // set {
  217. // throw new NotImplementedException ();
  218. // }
  219. //}
  220. //[MonoTODO]
  221. //protected bool VScroll {
  222. // get {
  223. // throw new NotImplementedException ();
  224. // }
  225. // set {
  226. // throw new NotImplementedException ();
  227. // }
  228. //}
  229. //
  230. // --- Protected Methods
  231. //
  232. //[MonoTODO]
  233. //protected virtual void AdjustFormScrollbars( bool displayScrollbars)
  234. //{
  235. // throw new NotImplementedException ();
  236. //}
  237. //[MonoTODO]
  238. //protected override void Dispose(bool val)
  239. //{
  240. // throw new NotImplementedException ();
  241. //}
  242. //[MonoTODO]
  243. //protected override void OnLayout(LayoutEventArgs levent)
  244. //{
  245. // throw new NotImplementedException ();
  246. //}
  247. //[MonoTODO]
  248. //protected override void OnMouseWheel(MouseEventArgs e)
  249. //{
  250. // throw new NotImplementedException ();
  251. //}
  252. //[MonoTODO]
  253. //protected override void OnVisibleChanged(EventArgs e)
  254. //{
  255. // throw new NotImplementedException ();
  256. //}
  257. //[MonoTODO]
  258. //ContentAlignment RtlTranslateAlignment(ContentAlignment calign)
  259. //{
  260. // throw new NotImplementedException ();
  261. //}
  262. //[MonoTODO]
  263. //HorizontalAlignment RtlTranslateAlignment(HorizontalAlignment halign)
  264. //{
  265. // throw new NotImplementedException ();
  266. //}
  267. //[MonoTODO]
  268. //LeftRightAlignment RtlTranslateAlignment(LeftRightAlignment lralign)
  269. //{
  270. // throw new NotImplementedException ();
  271. //}
  272. //[MonoTODO]
  273. //protected override void ScaleCore(float dx, float dy)
  274. //{
  275. // throw new NotImplementedException ();
  276. //}
  277. //[MonoTODO]
  278. //protected void UpdateBounds()
  279. //{
  280. // throw new NotImplementedException ();
  281. //}
  282. //[MonoTODO]
  283. //protected void UpdateBounds(int val1, int val2, int val3, int val4)
  284. //{
  285. // throw new NotImplementedException ();
  286. //}
  287. //[MonoTODO]
  288. //protected void UpdateBounds(int val1, int val2, int val3, int val4, int val5, int val6)
  289. //{
  290. // throw new NotImplementedException ();
  291. //}
  292. //[MonoTODO]
  293. //protected override void WndProc(ref Message m)
  294. //{
  295. // throw new NotImplementedException ();
  296. //}
  297. }
  298. }