Package | Description |
---|---|
com.sun.javafx.embed | |
com.sun.javafx.scene | |
com.sun.javafx.scene.control.skin | |
com.sun.javafx.tk | |
com.sun.javafx.tk.quantum | |
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.
|
javafx.scene.web |
This package provides means for loading and displaying Web content.
|
Modifier and Type | Method and Description |
---|---|
void |
EmbeddedSceneInterface.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition) |
Modifier and Type | Field and Description |
---|---|
private EventHandlerProperties.EventHandlerProperty<InputMethodEvent> |
EventHandlerProperties.onInputMethodTextChanged |
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,
java.lang.String committed,
int caretPosition)
Pass an input method event to the scene to handle
|
Modifier and Type | Method and Description |
---|---|
void |
EmbeddedScene.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition) |
Modifier and Type | Method and Description |
---|---|
static WCInputMethodEvent |
InputMethodClientImpl.convertToWCInputMethodEvent(InputMethodEvent ie)
Converts the given InputMethodEvent to a WCInputMethodEvent.
|
Modifier and Type | Field and Description |
---|---|
private EventHandler<? super InputMethodEvent> |
SceneBuilder.onInputMethodTextChanged
Deprecated.
|
private EventHandler<? super InputMethodEvent> |
NodeBuilder.onInputMethodTextChanged
Deprecated.
|
private ObjectProperty<EventHandler<? super InputMethodEvent>> |
Scene.onInputMethodTextChanged
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 |
---|---|
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 |
---|---|
private void |
Scene.processInputMethodEvent(InputMethodEvent e) |
Modifier and Type | Method and Description |
---|---|
void |
Scene.ScenePeerListener.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition) |
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(java.lang.Object newSource,
EventTarget newTarget) |
Modifier and Type | Method and Description |
---|---|
EventType<InputMethodEvent> |
InputMethodEvent.getEventType() |
Constructor and Description |
---|
InputMethodEvent(EventType<InputMethodEvent> eventType,
java.util.List<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition)
Constructs new InputMethodEvent event with empty source and target.
|
InputMethodEvent(java.lang.Object source,
EventTarget target,
EventType<InputMethodEvent> eventType,
java.util.List<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition)
Constructs new InputMethodEvent event.
|
Modifier and Type | Method and Description |
---|---|
private void |
WebView.processInputMethodEvent(InputMethodEvent ie) |