Package | Description |
---|---|
com.yworks.yfiles.view |
Contains the main UI classes, interfaces, default implementations and support classes that can be used to display
IGraph instances. |
Modifier and Type | Field and Description |
---|---|
static EventType<CompoundKeyEvent> |
CompoundKeyEvent.ANY
Any CompoundKeyEvent.
|
static EventType<CompoundKeyEvent> |
CompoundKeyEvent.NONE
Neither Pressed, nor Typed, nor Released.
|
static EventType<CompoundKeyEvent> |
CompoundKeyEvent.PRESSED
The key has been pressed.
|
static EventType<CompoundKeyEvent> |
CompoundKeyEvent.RELEASED
The key has been released.
|
static EventType<CompoundKeyEvent> |
CompoundKeyEvent.TYPED
The character has been typed.
|
Modifier and Type | Method and Description |
---|---|
EventType<CompoundKeyEvent> |
CompoundKeyEvent.getKeyEventType()
Gets the type of the event.
|
EventHandler<? super CompoundKeyEvent> |
CanvasControl.getOnCompoundKeyPressed()
Returns the value of the property onCompoundKeyPressed.
|
EventHandler<? super CompoundKeyEvent> |
CanvasControl.getOnCompoundKeyReleased()
Returns the value of the property onCompoundKeyReleased.
|
EventHandler<? super CompoundKeyEvent> |
CanvasControl.getOnCompoundKeyTyped()
Returns the value of the property onCompoundKeyTyped.
|
ObjectProperty<EventHandler<? super CompoundKeyEvent>> |
CanvasControl.onCompoundKeyPressedProperty()
Defines a function to be called when the user has
pressed a key on the CanvasControl . |
ObjectProperty<EventHandler<? super CompoundKeyEvent>> |
CanvasControl.onCompoundKeyReleasedProperty()
Defines a function to be called when the user has
released a key on the CanvasControl . |
ObjectProperty<EventHandler<? super CompoundKeyEvent>> |
CanvasControl.onCompoundKeyTypedProperty()
Defines a function to be called when the user has
typed a key on the CanvasControl . |
Modifier and Type | Method and Description |
---|---|
void |
CanvasControl.setOnCompoundKeyPressed(EventHandler<? super CompoundKeyEvent> value)
Sets the value of the property onCompoundKeyPressed.
|
void |
CanvasControl.setOnCompoundKeyReleased(EventHandler<? super CompoundKeyEvent> value)
Sets the value of the property onCompoundKeyReleased.
|
void |
CanvasControl.setOnCompoundKeyTyped(EventHandler<? super CompoundKeyEvent> value)
Sets the value of the property onCompoundKeyTyped.
|
Constructor and Description |
---|
CompoundKeyEvent(Object source,
EventType<CompoundKeyEvent> type,
KeyEvent keyEvent)
Constructs a new event.
|