Package | Description |
---|---|
org.hybird.animation.trident.triggers |
Modifier and Type | Field and Description |
---|---|
static MouseTriggerEvent |
MouseTriggerEvent.CLICK
Event fired when mouse is clicked
|
static MouseTriggerEvent |
MouseTriggerEvent.ENTER
Event fired when mouse enters
|
static MouseTriggerEvent |
MouseTriggerEvent.EXIT
Event fired when mouse exits
|
static MouseTriggerEvent |
MouseTriggerEvent.PRESS
Event fired when mouse button is pressed
|
static MouseTriggerEvent |
MouseTriggerEvent.RELEASE
Event fired when mouse button is released
|
Modifier and Type | Method and Description |
---|---|
static MouseTrigger |
MouseTrigger.addTrigger(JComponent component,
org.pushingpixels.trident.Timeline timeline,
MouseTriggerEvent event)
Creates a non-auto-reversing MouseTrigger and adds it as a listener to
component.
|
static MouseTrigger |
MouseTrigger.addTrigger(JComponent component,
org.pushingpixels.trident.Timeline timeline,
MouseTriggerEvent event,
boolean autoReverse)
Creates a MouseTrigger and adds it as a listener to component.
|
Constructor and Description |
---|
MouseTrigger(org.pushingpixels.trident.Timeline timeline,
MouseTriggerEvent event)
Creates a non-auto-reversing MouseTrigger, which should be added to a
Component that will generate the mouse events of interest
|
MouseTrigger(org.pushingpixels.trident.Timeline timeline,
MouseTriggerEvent event,
boolean autoReverse)
Creates a MouseTrigger, which should be added to a Component that will
generate the mouse events of interest
|