Examples of scrollRectToVisible()


Examples of org.freeplane.view.swing.map.MapView.scrollRectToVisible()

    if(mapView == null)
      return;
    if(layoutMapOnTextChange)
      mapView.scrollNodeToVisible(nodeView);
    else
      mapView.scrollRectToVisible(textfield.getBounds());
  }

  private void setLineWrap() {
    if(null != textfield.getClientProperty("EditNodeTextField.linewrap") || inputMethodInUseListener.isIMEInUse()){
      return;
View Full Code Here

Examples of org.openbp.cockpit.modeler.drawing.WorkspaceDrawingView.scrollRectToVisible()

    if (rect != null)
    {
      // Try to position the selection into view again
      rect.grow(50, 50);
      view.scrollRectToVisible(rect);
    }
  }
}
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.