Uses of Class
com.googlecode.lanterna.gui2.Interactable.FocusChangeDirection
-
Packages that use Interactable.FocusChangeDirection Package Description com.googlecode.lanterna.gui2 -
-
Uses of Interactable.FocusChangeDirection in com.googlecode.lanterna.gui2
Methods in com.googlecode.lanterna.gui2 that return Interactable.FocusChangeDirection Modifier and Type Method Description static Interactable.FocusChangeDirection
Interactable.FocusChangeDirection. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Interactable.FocusChangeDirection[]
Interactable.FocusChangeDirection. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.googlecode.lanterna.gui2 with parameters of type Interactable.FocusChangeDirection Modifier and Type Method Description protected void
AbstractInteractableComponent. afterEnterFocus(Interactable.FocusChangeDirection direction, Interactable previouslyInFocus)
Called byAbstractInteractableComponent
automatically after this component has received input focus.protected void
AbstractListBox. afterEnterFocus(Interactable.FocusChangeDirection direction, Interactable previouslyInFocus)
protected void
ComboBox. afterEnterFocus(Interactable.FocusChangeDirection direction, Interactable previouslyInFocus)
protected void
AbstractInteractableComponent. afterLeaveFocus(Interactable.FocusChangeDirection direction, Interactable nextInFocus)
Called byAbstractInteractableComponent
automatically after this component has lost input focus.protected void
ComboBox. afterLeaveFocus(Interactable.FocusChangeDirection direction, Interactable nextInFocus)
void
AbstractInteractableComponent. onEnterFocus(Interactable.FocusChangeDirection direction, Interactable previouslyInFocus)
Method called when this component gained keyboard focus.void
Interactable. onEnterFocus(Interactable.FocusChangeDirection direction, Interactable previouslyInFocus)
Method called when this component gained keyboard focus.void
AbstractInteractableComponent. onLeaveFocus(Interactable.FocusChangeDirection direction, Interactable nextInFocus)
Method called when keyboard focus moves away from this componentvoid
Interactable. onLeaveFocus(Interactable.FocusChangeDirection direction, Interactable nextInFocus)
Method called when keyboard focus moves away from this componentprotected void
AbstractBasePane. setFocusedInteractable(Interactable toFocus, Interactable.FocusChangeDirection direction)
-