Methods Summary |
---|
public void | addActionForKeyStroke(javax.swing.KeyStroke key, javax.swing.Action a)Adds a binding to the keymap.
|
public javax.swing.Action | getAction(javax.swing.KeyStroke key)Fetches the action appropriate for the given symbolic
event sequence. This is used by JTextController to
determine how to interpret key sequences. If the
binding is not resolved locally, an attempt is made
to resolve through the parent keymap, if one is set.
|
public javax.swing.Action[] | getBoundActions()Fetches all of the actions defined in this keymap.
|
public javax.swing.KeyStroke[] | getBoundKeyStrokes()Fetches all of the keystrokes in this map that
are bound to some action.
|
public javax.swing.Action | getDefaultAction()Fetches the default action to fire if a
key is typed (i.e. a KEY_TYPED KeyEvent is received)
and there is no binding for it. Typically this
would be some action that inserts text so that
the keymap doesn't require an action for each
possible key.
|
public javax.swing.KeyStroke[] | getKeyStrokesForAction(javax.swing.Action a)Fetches the keystrokes that will result in
the given action.
|
public java.lang.String | getName()Fetches the name of the set of key-bindings.
|
public javax.swing.text.Keymap | getResolveParent()Fetches the parent keymap used to resolve key-bindings.
|
public boolean | isLocallyDefined(javax.swing.KeyStroke key)Determines if the given key sequence is locally defined.
|
public void | removeBindings()Removes all bindings from the keymap.
|
public void | removeKeyStrokeBinding(javax.swing.KeyStroke keys)Removes a binding from the keymap.
|
public void | setDefaultAction(javax.swing.Action a)Set the default action to fire if a key is typed.
|
public void | setResolveParent(javax.swing.text.Keymap parent)Sets the parent keymap, which will be used to
resolve key-bindings.
|