Package | Description |
---|---|
com.sun.javafx.embed | |
com.sun.javafx.scene | |
com.sun.javafx.scene.control.skin | |
com.sun.javafx.tk | |
com.sun.javafx.webkit | |
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
Modifier and Type | Method and Description |
---|---|
void |
EmbeddedSceneInterface.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
String committed,
int caretPosition) |
Modifier and Type | Method and Description |
---|---|
EventHandler<? super InputMethodEvent> |
EventHandlerProperties.getOnInputMethodTextChanged() |
ObjectProperty<EventHandler<? super InputMethodEvent>> |
EventHandlerProperties.onInputMethodTextChangedProperty() |
Modifier and Type | Method and Description |
---|---|
protected void |
TextInputControlSkin.handleInputMethodEvent(InputMethodEvent event) |
Modifier and Type | Method and Description |
---|---|
void |
TKSceneListener.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
String committed,
int caretPosition)
Pass an input method event to the scene to handle
|
Modifier and Type | Method and Description |
---|---|
static WCInputMethodEvent |
InputMethodClientImpl.convertToWCInputMethodEvent(InputMethodEvent ie)
Converts the given InputMethodEvent to a WCInputMethodEvent.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<? super InputMethodEvent> |
Scene.getOnInputMethodTextChanged() |
EventHandler<? super InputMethodEvent> |
Node.getOnInputMethodTextChanged() |
ObjectProperty<EventHandler<? super InputMethodEvent>> |
Scene.onInputMethodTextChangedProperty() |
ObjectProperty<EventHandler<? super InputMethodEvent>> |
Node.onInputMethodTextChangedProperty()
Defines a function to be called when this
Node
has input focus and the input method text has changed. |
Modifier and Type | Method and Description |
---|---|
B |
SceneBuilder.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> x)
Deprecated.
Set the value of the
onInputMethodTextChanged property for the instance constructed by this builder. |
B |
NodeBuilder.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> x)
Deprecated.
Set the value of the
onInputMethodTextChanged property for the instance constructed by this builder. |
void |
Scene.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value) |
void |
Node.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value) |
Modifier and Type | Field and Description |
---|---|
static EventType<InputMethodEvent> |
InputMethodEvent.ANY
Common supertype for all input method event types.
|
static EventType<InputMethodEvent> |
InputMethodEvent.INPUT_METHOD_TEXT_CHANGED
The only valid EventType for the InputMethodEvent.
|
Modifier and Type | Method and Description |
---|---|
InputMethodEvent |
InputMethodEvent.copyFor(Object newSource,
EventTarget newTarget) |
Modifier and Type | Method and Description |
---|---|
EventType<InputMethodEvent> |
InputMethodEvent.getEventType() |
Constructor and Description |
---|
InputMethodEvent(EventType<InputMethodEvent> eventType,
List<InputMethodTextRun> composed,
String committed,
int caretPosition)
Constructs new InputMethodEvent event with empty source and target.
|
InputMethodEvent(Object source,
EventTarget target,
EventType<InputMethodEvent> eventType,
List<InputMethodTextRun> composed,
String committed,
int caretPosition)
Constructs new InputMethodEvent event.
|
Copyright © 2020. All rights reserved.