public interface Click
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Click.Clickable<C>
Direct click actions
|
| Modifier and Type | Method and Description |
|---|---|
static Operation |
click()
Create a click operation with the
MouseButton.PRIMARY at the current
cursor location |
static Operation |
click(double x,
double y)
Create a click operation with the
MouseButton.PRIMARY at the provided
x/y location on screen |
static Operation |
click(javafx.scene.input.MouseButton button)
Create a click operation with the provided
MouseButton at the current
cursor location |
static Operation |
click(javafx.scene.input.MouseButton button,
double x,
double y)
Create a click operation with the provided
MouseButton at the
provided x/y location on screen |
static Operation |
doubleClick()
Create a double click operation with the
MouseButton.PRIMARY at the
current mouse location |
static Operation |
doubleClick(double x,
double y)
Create a double click operation with the
MouseButton.PRIMARY at the
provided x/y coordinate on the screen |
static Operation |
doubleClick(javafx.scene.input.MouseButton button)
Create a double click operation with the provided
MouseButton at the
current mouse location |
static Operation |
doubleClick(javafx.scene.input.MouseButton button,
double x,
double y)
Create a double click operation with the provided
MouseButton at the
provided x/y coordinate on the screen |
static Operation click()
MouseButton.PRIMARY at the current
cursor locationstatic Operation click(javafx.scene.input.MouseButton button)
MouseButton at the current
cursor locationbutton - the buttonstatic Operation click(double x, double y)
MouseButton.PRIMARY at the provided
x/y location on screenx - the x coordinate on screeny - the y coordinate on screenstatic Operation click(javafx.scene.input.MouseButton button, double x, double y)
MouseButton at the
provided x/y location on screenbutton - the mouse buttonx - the x coordinate on screeny - the y coordinate on screenstatic Operation doubleClick()
MouseButton.PRIMARY at the
current mouse locationstatic Operation doubleClick(javafx.scene.input.MouseButton button)
MouseButton at the
current mouse locationbutton - the button typestatic Operation doubleClick(double x, double y)
MouseButton.PRIMARY at the
provided x/y coordinate on the screenx - the x coordinate on the screeny - the y coordinate on the screenstatic Operation doubleClick(javafx.scene.input.MouseButton button, double x, double y)
MouseButton at the
provided x/y coordinate on the screenbutton - the button typex - the x coordinate on the screeny - the y coordinate on the screenCopyright © 2017. All rights reserved.