| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- //
- // System.Windows.Forms.Form
- //
- // Author:
- // Miguel de Icaza ([email protected])
- // stubbed out by Daniel Carrera ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- using System.Drawing;
- using Gtk;
- using GtkSharp;
- namespace System.Windows.Forms {
- public class ScrollableControl : Control {
- //
- // --- Constructor
- //
- //[MonoTODO]
- //public ScrollableControl()
- //{
- // throw new NotImplementedException ();
- //}
- //
- // --- Public Properties
- //
- //[MonoTODO]
- //public virtual bool AutoScroll {
- // get {
- // throw new NotImplementedException ();
- // }
- // set {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public Size AutoScrollMargin {
- // get {
- // throw new NotImplementedException ();
- // }
- // set {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public Size AutoScrollMinSize {
- // get {
- // throw new NotImplementedException ();
- // }
- // set {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public Point AutoScrollPosition {
- // get {
- // throw new NotImplementedException ();
- // }
- // set {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public override Rectangle DisplayRectangle {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public ScrollableControl.DockPaddingEdges DockPadding {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //public override ISite Site {
- // get {
- // throw new NotImplementedException ();
- // }
- // set {
- // throw new NotImplementedException ();
- // }
- //}
- //
- // --- Public Methods
- //
- //[MonoTODO]
- //public IAsyncResult BeginInvoke(Delegate del)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public IAsyncResult BeginInvoke(Delegate del, object[] objs)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Dispose()
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public virtual bool Equals(object o);
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public static bool Equals(object o1, object o2);
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Invalidate()
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Invalidate(bool val)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Invalidate(Rectangle rect)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Invalidate(Region reg)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Invalidate(Rectangle rect, bool val)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Invalidate(Region reg, bool val)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public object Invoke(Delegate del)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public object Invoke(Delegate del, object[] objs)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void PerformLayout()
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void PerformLayout(Control ctl, string str)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void ResumeLayout()
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void ResumeLayout(bool val)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Scale(float val)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Scale(float val1, float val2)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Select()
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void Select(bool val1, bool val2)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void SetBounds(int val1, int val2, int val3, int val4)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //public void SetBounds(int val1, int val2, int val3, int val4, BoundsSpecified bounds)
- //{
- // throw new NotImplementedException ();
- //}
- //
- // --- Protected Properties
- //
- //[MonoTODO]
- //protected override CreateParams CreateParams {
- // get {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //protected bool HScroll {
- // get {
- // throw new NotImplementedException ();
- // }
- // set {
- // throw new NotImplementedException ();
- // }
- //}
- //[MonoTODO]
- //protected bool VScroll {
- // get {
- // throw new NotImplementedException ();
- // }
- // set {
- // throw new NotImplementedException ();
- // }
- //}
- //
- // --- Protected Methods
- //
- //[MonoTODO]
- //protected virtual void AdjustFormScrollbars( bool displayScrollbars)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected override void Dispose(bool val)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected override void OnLayout(LayoutEventArgs levent)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected override void OnMouseWheel(MouseEventArgs e)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected override void OnVisibleChanged(EventArgs e)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //ContentAlignment RtlTranslateAlignment(ContentAlignment calign)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //HorizontalAlignment RtlTranslateAlignment(HorizontalAlignment halign)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //LeftRightAlignment RtlTranslateAlignment(LeftRightAlignment lralign)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected override void ScaleCore(float dx, float dy)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected void UpdateBounds()
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected void UpdateBounds(int val1, int val2, int val3, int val4)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected void UpdateBounds(int val1, int val2, int val3, int val4, int val5, int val6)
- //{
- // throw new NotImplementedException ();
- //}
- //[MonoTODO]
- //protected override void WndProc(ref Message m)
- //{
- // throw new NotImplementedException ();
- //}
- }
- }
|