Examples of CaretListener


Examples of org.eclipse.swt.custom.CaretListener

   * Adds support for scrolling up/down between sibling {@link StyledText}s and keeping caret
   * visible by scrolling {@link ScrolledComposite}.
   */
  private void setupKeyboardNavigation(final StyledText text) {
    final AtomicLong lastCaretTime = new AtomicLong();
    text.addCaretListener(new CaretListener() {
      public void caretMoved(CaretEvent event) {
        lastCaretTime.set(event.time);
        ensureCaretVisible(text);
      }
    });
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.