Uses of Class
jfx.incubator.scene.control.input.FunctionTag
Packages that use FunctionTag
Package
Description
Incubates a customization mechanism for the JavaFX Controls utilizing the
InputMap.Provides two controls for displaying and editing large, virtualized, rich text documents:
RichTextArea and
CodeArea.-
Uses of FunctionTag in jfx.incubator.scene.control.input
Methods in jfx.incubator.scene.control.input with parameters of type FunctionTagModifier and TypeMethodDescriptionInputMap.getKeyBindingsFor(FunctionTag tag) Returns the set of key bindings mapped to the specified function tag.voidInputMap.registerFunction(FunctionTag tag, Runnable function) Adds (or overrides) a user-specified function under the given function tag.voidInputMap.registerKey(KeyBinding k, FunctionTag tag) Link a key binding to the specified function tag.voidInputMap.removeKeyBindingsFor(FunctionTag tag) Removes all the key bindings mapped to the specified function tag, either by the application or by the skin.voidInputMap.restoreDefaultFunction(FunctionTag tag) Restores the specified function tag to the value set by the skin, if any. -
Uses of FunctionTag in jfx.incubator.scene.control.richtext
Fields in jfx.incubator.scene.control.richtext declared as FunctionTagModifier and TypeFieldDescriptionstatic final FunctionTagRichTextArea.Tag.BACKSPACEDeletes the symbol before the caret.static final FunctionTagRichTextArea.Tag.COPYCopies selected text to the clipboard.static final FunctionTagRichTextArea.Tag.CUTCuts selected text and places it to the clipboard.static final FunctionTagRichTextArea.Tag.DELETEDeletes symbol at the caret.static final FunctionTagRichTextArea.Tag.DELETE_PARAGRAPHDeletes paragraph at the caret, or selected paragraphs.static final FunctionTagRichTextArea.Tag.DELETE_PARAGRAPH_STARTDeletes text from the caret to paragraph start, ignoring selection.static final FunctionTagRichTextArea.Tag.DELETE_WORD_NEXT_ENDDeletes empty paragraph or text to the end of the next word.static final FunctionTagRichTextArea.Tag.DELETE_WORD_NEXT_STARTDeletes empty paragraph or text to the start of the next word.static final FunctionTagRichTextArea.Tag.DELETE_WORD_PREVIOUSDeletes (multiple) empty paragraphs or text to the beginning of the previous word.static final FunctionTagRichTextArea.Tag.DESELECTClears any existing selection by moving anchor to the caret position.static final FunctionTagRichTextArea.Tag.ERROR_FEEDBACKProvides audio and/or visual error feedback.static final FunctionTagRichTextArea.Tag.FOCUS_NEXTFocus the next focusable node.static final FunctionTagRichTextArea.Tag.FOCUS_PREVIOUSFocus the previous focusable node.static final FunctionTagRichTextArea.Tag.INSERT_LINE_BREAKInserts a line break at the caret.static final FunctionTagRichTextArea.Tag.INSERT_TABInserts a tab symbol at the caret (editable), or transfer focus to the next focusable node.static final FunctionTagRichTextArea.Tag.MOVE_DOWNMoves the caret one visual line down.static final FunctionTagRichTextArea.Tag.MOVE_LEFTMoves the caret one symbol to the left.static final FunctionTagRichTextArea.Tag.MOVE_PARAGRAPH_DOWNMoves the caret to the end of the current paragraph, or, if already there, to the end of the next paragraph.static final FunctionTagRichTextArea.Tag.MOVE_PARAGRAPH_UPMoves the caret to the start of the current paragraph, or, if already there, to the start of the previous paragraph.static final FunctionTagRichTextArea.Tag.MOVE_RIGHTMoves the caret one symbol to the right.static final FunctionTagRichTextArea.Tag.MOVE_TO_DOCUMENT_ENDMoves the caret to after the last character of the text.static final FunctionTagRichTextArea.Tag.MOVE_TO_DOCUMENT_STARTMoves the caret to before the first character of the text.static final FunctionTagRichTextArea.Tag.MOVE_TO_LINE_ENDMoves the caret to the end of the visual text line at caret.static final FunctionTagRichTextArea.Tag.MOVE_TO_LINE_STARTMoves the caret to the beginning of the visual text line at caret.static final FunctionTagRichTextArea.Tag.MOVE_TO_PARAGRAPH_ENDMoves the caret to the end of the paragraph at caret.static final FunctionTagRichTextArea.Tag.MOVE_TO_PARAGRAPH_STARTMoves the caret to the beginning of the paragraph at caret.static final FunctionTagRichTextArea.Tag.MOVE_UPMoves the caret one visual text line up.static final FunctionTagRichTextArea.Tag.MOVE_WORD_LEFTMoves the caret one word left (previous word if LTR, next word if RTL).static final FunctionTagRichTextArea.Tag.MOVE_WORD_NEXT_ENDMoves the caret to the end of the next word.static final FunctionTagRichTextArea.Tag.MOVE_WORD_NEXT_STARTMoves the caret to the start of the next word, or next paragraph if at the start of an empty paragraph.static final FunctionTagRichTextArea.Tag.MOVE_WORD_PREVIOUSMoves the caret to the beginning of previous word.static final FunctionTagRichTextArea.Tag.MOVE_WORD_RIGHTMoves the caret one word right (next word if LTR, previous word if RTL).static final FunctionTagRichTextArea.Tag.PAGE_DOWNMoves the caret one visual page down.static final FunctionTagRichTextArea.Tag.PAGE_UPMoves the caret one visual page up.static final FunctionTagRichTextArea.Tag.PASTEPastes the clipboard content.static final FunctionTagRichTextArea.Tag.PASTE_PLAIN_TEXTPastes the plain text clipboard content.static final FunctionTagRichTextArea.Tag.REDOIf possible, redoes the last undone modification.static final FunctionTagRichTextArea.Tag.SELECT_ALLSelects all text in the document.static final FunctionTagRichTextArea.Tag.SELECT_DOWNExtends selection one visual text line down.static final FunctionTagRichTextArea.Tag.SELECT_LEFTExtends selection one symbol to the left.static final FunctionTagRichTextArea.Tag.SELECT_PAGE_DOWNExtends selection one visible page down.static final FunctionTagRichTextArea.Tag.SELECT_PAGE_UPExtends selection one visible page up.static final FunctionTagRichTextArea.Tag.SELECT_PARAGRAPHSelects the current paragraph.static final FunctionTagRichTextArea.Tag.SELECT_PARAGRAPH_DOWNExtends selection to the end of the current paragraph, or, if already there, to the end of the next paragraph.static final FunctionTagRichTextArea.Tag.SELECT_PARAGRAPH_ENDExtends selection to the paragraph end.static final FunctionTagRichTextArea.Tag.SELECT_PARAGRAPH_STARTExtends selection to the paragraph start.static final FunctionTagRichTextArea.Tag.SELECT_PARAGRAPH_UPExtends selection to the start of the current paragraph, or, if already there, to the start of the previous paragraph.static final FunctionTagRichTextArea.Tag.SELECT_RIGHTExtends selection one symbol to the right.static final FunctionTagRichTextArea.Tag.SELECT_TO_DOCUMENT_ENDExtends selection to the end of the document.static final FunctionTagRichTextArea.Tag.SELECT_TO_DOCUMENT_STARTExtends selection to the start of the document.static final FunctionTagRichTextArea.Tag.SELECT_TO_LINE_ENDExtends selection to the end of the visual text line at caret.static final FunctionTagRichTextArea.Tag.SELECT_TO_LINE_STARTExtends selection to the start of the visual text line at caret.static final FunctionTagRichTextArea.Tag.SELECT_UPExtends selection one visual text line up.static final FunctionTagRichTextArea.Tag.SELECT_WORDSelects a word at the caret position.static final FunctionTagRichTextArea.Tag.SELECT_WORD_LEFTExtends selection to the previous word (LTR) or next word (RTL).static final FunctionTagRichTextArea.Tag.SELECT_WORD_NEXTExtends selection to the beginning of next word.static final FunctionTagRichTextArea.Tag.SELECT_WORD_NEXT_ENDExtends selection to the end of next word.static final FunctionTagRichTextArea.Tag.SELECT_WORD_PREVIOUSExtends selection to the previous word.static final FunctionTagRichTextArea.Tag.SELECT_WORD_RIGHTExtends selection to the next word (LTR) or previous word (RTL).static final FunctionTagRichTextArea.Tag.UNDOIf possible, undoes the last modification.Methods in jfx.incubator.scene.control.richtext with parameters of type FunctionTagModifier and TypeMethodDescriptionfinal voidRichTextArea.execute(FunctionTag tag) Executes a function mapped to the specified function tag.final voidRichTextArea.executeDefault(FunctionTag tag) Executes the default function mapped to the specified tag.