Lines Matching defs:keymap

182  *     <td headers="stage">5.   </td><td headers="ke ime" colspan=2>keymap handling using the current keymap</td></tr>
196 * By default the component will create a keymap (named <b>DEFAULT_KEYMAP</b>)
197 * that is shared by all JTextComponent instances as the default keymap.
198 * Typically a look-and-feel implementation will install a different keymap
199 * that resolves to the default keymap for those bindings not found in the
200 * different keymap. The minimal bindings include:
503 * to events, such as in a keymap.
642 * Sets the keymap to use for binding events to
645 * A PropertyChange event ("keymap") is fired when a new keymap
648 * @param map the keymap
655 Keymap old = keymap;
656 keymap = map;
657 firePropertyChange("keymap", old, keymap);
1045 * Fetches the keymap currently active in this text
1048 * @return the keymap
1051 return keymap;
1055 * Adds a new keymap into the keymap hierarchy. Keymap bindings
1059 * @param nm the name of the keymap (must be unique within the
1061 * be <code>null</code> if the keymap is unnamed,
1063 * returned as an unnamed keymap can't
1065 * @param parent the parent keymap; this may be <code>null</code> if
1066 * unspecified bindings need not be resolved in some other keymap
1067 * @return the keymap
1072 // add a named keymap, a class of bindings
1079 * Removes a named keymap previously added to the document. Keymaps
1082 * @param nm the name of the keymap to remove
1083 * @return the keymap that was removed
1090 * Fetches a named keymap previously added to the document.
1093 * @param nm the name of the keymap
1094 * @return the keymap
1108 //initialize default keymap
1155 * Loads a keymap with a bunch of
1157 * definitions and load them into some keymap. The following
1184 * @param map the keymap
1367 * keymap actions.
3839 private transient Keymap keymap;
4092 * the keymap doesn't require an action for each
4227 * String representation of the keymap... potentially
4247 * <code>keymap.getAction</code> returns null, implying the Keymap
4259 private Keymap keymap;
4261 KeymapWrapper(Keymap keymap) {
4262 this.keymap = keymap;
4267 KeyStroke[] keymapKeys = keymap.getBoundKeyStrokes();
4285 KeyStroke[] keymapStrokes = keymap.getBoundKeyStrokes();
4292 Object retValue = keymap.getAction(keyStroke);
4297 keymap.getDefaultAction() != null) {
4315 private Keymap keymap;
4317 KeymapActionMap(Keymap keymap) {
4318 this.keymap = keymap;
4323 Object[] keymapKeys = keymap.getBoundActions();
4326 boolean hasDefault = (keymap.getDefaultAction() != null);
4364 Object[] actions = keymap.getBoundActions();
4366 if (keymap.getDefaultAction() != null) {
4377 retValue = keymap.getDefaultAction();
4394 * The default keymap that will be shared by all
4396 * have had a different keymap set.