Uses of Class
jexer.TAction
-
Packages that use TAction Package Description jexer Jexer - Java Text User Interface libraryjexer.ttree TTreeView and supporting classes. -
-
Uses of TAction in jexer
Fields in jexer declared as TAction Modifier and Type Field Description protected TAction
TField. enterAction
The action to perform when the user presses enter.protected TAction
TList. enterAction
The action to perform when the user selects an item (double-clicks or enter).protected TAction
TList. moveAction
The action to perform when the user navigates with keyboard.protected TAction
TList. singleClickAction
The action to perform when the user selects an item (single-click).protected TAction
TField. updateAction
The action to perform when the text is updated.Methods in jexer with parameters of type TAction Modifier and Type Method Description TButton
TWidget. addButton(java.lang.String text, int x, int y, TAction action)
Convenience function to add a button to this container/window.TCalendar
TWidget. addCalendar(int x, int y, TAction updateAction)
Convenience function to add a calendar to this container/window.TCheckBox
TWidget. addCheckBox(int x, int y, java.lang.String label, boolean checked, TAction action)
Convenience function to add a checkbox to this container/window.TComboBox
TWidget. addComboBox(int x, int y, int width, java.util.List<java.lang.String> values, int valuesIndex, int maxValuesHeight, TAction updateAction)
Convenience function to add a combobox to this container/window.TDirectoryList
TWidget. addDirectoryList(java.lang.String path, int x, int y, int width, int height, TAction action)
Convenience function to add a directory list to this container/window.TDirectoryList
TWidget. addDirectoryList(java.lang.String path, int x, int y, int width, int height, TAction action, TAction singleClickAction)
Convenience function to add a directory list to this container/window.TDirectoryList
TWidget. addDirectoryList(java.lang.String path, int x, int y, int width, int height, TAction action, TAction singleClickAction, java.util.List<java.lang.String> filters)
Convenience function to add a directory list to this container/window.TField
TWidget. addField(int x, int y, int width, boolean fixed, java.lang.String text, TAction enterAction)
Convenience function to add a text field to this container/window.TField
TWidget. addField(int x, int y, int width, boolean fixed, java.lang.String text, TAction enterAction, TAction updateAction)
Convenience function to add a text field to this container/window.TImage
TWidget. addImage(int x, int y, int width, int height, java.awt.image.BufferedImage image, int left, int top, TAction clickAction)
Convenience function to add an image to this container/window.TLabel
TWidget. addLabel(java.lang.String text, int x, int y, java.lang.String colorKey, boolean useWindowBackground, TAction action)
Convenience function to add a label to this container/window.TLabel
TWidget. addLabel(java.lang.String text, int x, int y, java.lang.String colorKey, TAction action)
Convenience function to add a label to this container/window.TLabel
TWidget. addLabel(java.lang.String text, int x, int y, TAction action)
Convenience function to add a label to this container/window.TList
TWidget. addList(java.util.List<java.lang.String> strings, int x, int y, int width, int height, TAction enterAction)
Convenience function to add a list to this container/window.TList
TWidget. addList(java.util.List<java.lang.String> strings, int x, int y, int width, int height, TAction enterAction, TAction moveAction)
Convenience function to add a list to this container/window.TList
TWidget. addList(java.util.List<java.lang.String> strings, int x, int y, int width, int height, TAction enterAction, TAction moveAction, TAction singleClickAction)
Convenience function to add a list to this container/window.TPasswordField
TWidget. addPasswordField(int x, int y, int width, boolean fixed, java.lang.String text, TAction enterAction, TAction updateAction)
Convenience function to add a password text field to this container/window.TSpinner
TWidget. addSpinner(int x, int y, TAction upAction, TAction downAction)
Convenience function to add a spinner to this container/window.TTimer
TApplication. addTimer(long duration, boolean recurring, TAction action)
Convenience function to add a timer.TTreeViewWidget
TWidget. addTreeViewWidget(int x, int y, int width, int height, TAction action)
Convenience function to add a scrollable tree view to this container/window.void
TTableWidget. setCellEnterAction(int column, int row, TAction action)
Set the action to perform when the user presses enter on a particular cell.void
TTableWidget. setCellUpdateAction(int column, int row, TAction action)
Set the action to perform when the user updates a particular cell.void
TField. setEnterAction(TAction action)
Set the action to perform when the user presses enter.void
TField. setUpdateAction(TAction action)
Set the action to perform when the field is updated.Constructors in jexer with parameters of type TAction Constructor Description TButton(TWidget parent, java.lang.String text, int x, int y, TAction action)
Public constructor.TCalendar(TWidget parent, int x, int y, TAction updateAction)
Public constructor.TCheckBox(TWidget parent, int x, int y, java.lang.String label, boolean checked, TAction action)
Public constructor.TComboBox(TWidget parent, int x, int y, int width, java.util.List<java.lang.String> values, int valuesIndex, int maxValuesHeight, TAction updateAction)
Public constructor.TDirectoryList(TWidget parent, java.lang.String path, int x, int y, int width, int height, TAction action)
Public constructor.TDirectoryList(TWidget parent, java.lang.String path, int x, int y, int width, int height, TAction action, TAction singleClickAction)
Public constructor.TDirectoryList(TWidget parent, java.lang.String path, int x, int y, int width, int height, TAction action, TAction singleClickAction, java.util.List<java.lang.String> filters)
Public constructor.TField(TWidget parent, int x, int y, int width, boolean fixed, java.lang.String text, TAction enterAction)
Public constructor.TField(TWidget parent, int x, int y, int width, boolean fixed, java.lang.String text, TAction enterAction, TAction updateAction)
Public constructor.TImage(TWidget parent, int x, int y, int width, int height, java.awt.image.BufferedImage image, int left, int top, TAction clickAction)
Public constructor.TLabel(TWidget parent, java.lang.String text, int x, int y, java.lang.String colorKey, boolean useWindowBackground, TAction action)
Public constructor.TLabel(TWidget parent, java.lang.String text, int x, int y, java.lang.String colorKey, TAction action)
Public constructor.TLabel(TWidget parent, java.lang.String text, int x, int y, TAction action)
Public constructor, using the default "tlabel" for colorKey.TList(TWidget parent, java.util.List<java.lang.String> strings, int x, int y, int width, int height, TAction enterAction)
Public constructor.TList(TWidget parent, java.util.List<java.lang.String> strings, int x, int y, int width, int height, TAction enterAction, TAction moveAction)
Public constructor.TList(TWidget parent, java.util.List<java.lang.String> strings, int x, int y, int width, int height, TAction enterAction, TAction moveAction, TAction singleClickAction)
Public constructor.TPasswordField(TWidget parent, int x, int y, int width, boolean fixed, java.lang.String text, TAction enterAction, TAction updateAction)
Public constructor.TSpinner(TWidget parent, int x, int y, TAction upAction, TAction downAction)
Public constructor.TTerminalWidget(TWidget parent, int x, int y, int width, int height, java.lang.String[] command, TAction closeAction)
Public constructor spawns a custom command line.TTerminalWidget(TWidget parent, int x, int y, int width, int height, TAction closeAction)
Public constructor spawns a shell.TTerminalWidget(TWidget parent, int x, int y, java.lang.String[] command, TAction closeAction)
Public constructor spawns a custom command line.TTerminalWidget(TWidget parent, int x, int y, TAction closeAction)
Public constructor spawns a shell. -
Uses of TAction in jexer.ttree
Constructors in jexer.ttree with parameters of type TAction Constructor Description TTreeView(TWidget parent, int x, int y, int width, int height, TAction action)
Public constructor.TTreeViewWidget(TWidget parent, int x, int y, int width, int height, TAction action)
Public constructor.TTreeViewWindow(TApplication parent, java.lang.String title, int x, int y, int width, int height, int flags, TAction action)
Public constructor.
-