Examples of ScrollPanePeer


Examples of java.awt.peer.ScrollPanePeer

  if (h != null)
    h.setValue(x);
  if (v != null)
    v.setValue(y);
  
  ScrollPanePeer spp = (ScrollPanePeer)getPeer();
  if (spp != null)
    spp.setScrollPosition(x, y);
}
View Full Code Here

Examples of java.awt.peer.ScrollPanePeer

  dim.width = vp.width;

      if (dim.height < vp.height)
  dim.height = vp.height;

      ScrollPanePeer peer = (ScrollPanePeer) getPeer ();
      if (peer != null)
  peer.childResized (dim.width, dim.height);

      list[0].setSize (dim);

      Point p = getScrollPosition ();
      if (p.x > dim.width)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.