Package com.baulsupp.curses.application

Examples of com.baulsupp.curses.application.KeyBinding


    }
  }

  public Collection<KeyBinding> getDescription() {
    return Arrays.asList(
        new KeyBinding(new InputChar('/'), "Search", "New Search"),
        new KeyBinding(new InputChar('n'), "Search", "Next Match"),
        new KeyBinding(new InputChar('p'), "Search", "Previous Match")
      );
  }
View Full Code Here


   
    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 com.baulsupp.curses.application.KeyBinding

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.