Package jcurses.system

Examples of jcurses.system.InputChar


   
    return true;
  }

  public Collection<KeyBinding> getDescription() {
    return Collections.singleton(new KeyBinding(new InputChar('f'), "View", "Next Model"));
  }
View Full Code Here


    return true;
  }

  public Collection<KeyBinding> getDescription() {
    return Collections.singleton(new KeyBinding(new InputChar('e'), "Search", "Select Event"));
  }
View Full Code Here

    return r;
  }

  public Collection<KeyBinding> getDescription() {
    return Collections.singleton(new KeyBinding(new InputChar('r'), "View", "Next Renderer"));
  }
View Full Code Here

    return true;
  }

  public Collection<KeyBinding> getDescription() {
    return Collections.singleton(new KeyBinding(new InputChar('g'), "Movement", "Goto Line"));
  }
View Full Code Here

  public boolean hasVerticalScrollbar() {
    return true;
  }

  public Collection<KeyBinding> getDescription() {
    return Collections.singleton(new KeyBinding(new InputChar('s'), "View", "Toggle Scrollbar"));
  }
View Full Code Here

    return true;
  }

  public Collection<KeyBinding> getDescription() {
    return Collections.singleton(new KeyBinding(new InputChar('t'), "Search", "Select Request"));
  }
View Full Code Here

TOP

Related Classes of jcurses.system.InputChar

Copyright © 2018 www.massapicom. 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.