Ejemplo n.º 1
0
 internal PeerFixer(ScrollPane scroller)
 {
     this.Scroller = scroller;
 }
Ejemplo n.º 2
0
 internal PeerFixer(ScrollPane outerInstance, ScrollPane scroller)
 {
     this.OuterInstance = outerInstance;
     this.Scroller      = scroller;
 }
Ejemplo n.º 3
0
 public AccessibleAWTScrollPane(ScrollPane outerInstance) : base(outerInstance)
 {
     this.OuterInstance = outerInstance;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Constructs a new object to represent specified scrollabar
 /// of the specified <code>ScrollPane</code>.
 /// Only ScrollPane creates instances of this class. </summary>
 /// <param name="sp">           <code>ScrollPane</code> </param>
 /// <param name="l">            <code>AdjustmentListener</code> to add upon creation. </param>
 /// <param name="orientation">  specifies which scrollbar this object represents,
 ///                     can be either  <code>Adjustable.HORIZONTAL</code>
 ///                     or <code>Adjustable.VERTICAL</code>. </param>
 internal ScrollPaneAdjustable(ScrollPane sp, AdjustmentListener l, int orientation)
 {
     this.Sp = sp;
     this.Orientation_Renamed = orientation;
     AddAdjustmentListener(l);
 }