Package | Description |
---|---|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser callback.
|
com.teamdev.jxbrowser.dom |
Provides the interfaces and classes for the Document Object Model (DOM).
|
com.teamdev.jxbrowser.dom.event |
Contains the classes and interfaces of the DOM events.
|
com.teamdev.jxbrowser.frame |
This package provides the classes that allow you to work with frames in browser.
|
com.teamdev.jxbrowser.ui |
The utility classes for the user interface (UI) related functionality.
|
com.teamdev.jxbrowser.ui.event |
The user interface events.
|
Modifier and Type | Method and Description |
---|---|
default Point |
ShowContextMenuCallback.Params.location()
Returns the context menu location.
|
Modifier and Type | Method and Description |
---|---|
default Point |
PointInspection.localPoint()
Returns coordinates of the point relative to the node.
|
Modifier and Type | Method and Description |
---|---|
Point |
MouseEvent.clientLocation()
Returns the location of the mouse cursor in the local (DOM content) coordinate system at the
time the event occurred.
|
default Point |
WheelEventParams.clientLocation()
Returns the location of the mouse cursor in the component's coordinate system at the time the
event occurred.
|
default Point |
MouseEventParams.clientLocation()
Returns the location of the mouse cursor in the local (DOM content) coordinate system at the
time the event occurred.
|
Point |
MouseEvent.offsetLocation()
Returns the location of the mouse cursor in the component's coordinate system at the time the
event occurred.
|
default Point |
MouseEventParams.offsetLocation()
Returns the location of the mouse cursor in the component's coordinate system at the time the
event occurred.
|
Point |
MouseEvent.pageLocation()
Returns the location of the mouse cursor in the
document coordinate system at the
time the event occurred. |
default Point |
MouseEventParams.pageLocation()
Returns the location of the mouse cursor in the
document coordinate system at the
time the event occurred. |
Point |
MouseEvent.screenLocation()
Returns the location of the mouse cursor in the screen's coordinate system at the time the
event occurred.
|
default Point |
WheelEventParams.screenLocation()
Returns the location of the mouse cursor in the screen's coordinate system at the time the
event occurred.
|
default Point |
MouseEventParams.screenLocation()
Returns the location of the mouse cursor in the screen's coordinate system at the time the
event occurred.
|
Modifier and Type | Method and Description |
---|---|
MouseEventParams.Builder |
MouseEventParams.Builder.clientLocation(Point location)
Sets the location of the mouse cursor in the component's coordinate system at the time
the event occurred.
|
MouseEventParams.Builder |
MouseEventParams.Builder.screenLocation(Point location)
Sets the location of the mouse cursor in the screen's coordinate system at the time the
event occurred.
|
Modifier and Type | Method and Description |
---|---|
PointInspection |
Frame.inspect(Point location)
Inspects the given
location on the web page containing this frame and returns the
result of the inspection. |
Modifier and Type | Method and Description |
---|---|
static Point |
Point.empty()
Returns an empty
Point that has x and y values set to zero. |
static Point |
Point.of(int x,
int y)
Returns the
Point instance for the given x and y values. |
default Point |
Rect.origin()
Returns the upper-left corner of the rectangle.
|
Modifier and Type | Method and Description |
---|---|
static Rect |
Rect.of(Point origin,
Size size)
Returns the
Rect instance for the given origin and size values. |
Modifier and Type | Method and Description |
---|---|
default Point |
MouseExited.location() |
default Point |
MouseDragged.location() |
default Point |
MouseWheel.location() |
default Point |
MousePressed.location() |
Point |
MouseEvent.location()
Returns the mouse position relative to the bounds of the browser instance.
|
default Point |
MouseEntered.location() |
default Point |
MouseMoved.location() |
default Point |
MouseReleased.location() |
default Point |
MouseExited.locationOnScreen() |
default Point |
MouseDragged.locationOnScreen() |
default Point |
MouseWheel.locationOnScreen() |
default Point |
MousePressed.locationOnScreen() |
Point |
MouseEvent.locationOnScreen()
Returns the mouse position relative to the bounds of the screen.
|
default Point |
MouseEntered.locationOnScreen() |
default Point |
MouseMoved.locationOnScreen() |
default Point |
MouseReleased.locationOnScreen() |
Modifier and Type | Method and Description |
---|---|
MouseExited.Builder |
MouseExited.Builder.locationOnScreen(Point locationOnScreen)
Sets the mouse position relative to the bounds of the screen.
|
MouseDragged.Builder |
MouseDragged.Builder.locationOnScreen(Point locationOnScreen)
Sets the mouse position relative to the bounds of the screen.
|
MouseWheel.Builder |
MouseWheel.Builder.locationOnScreen(Point locationOnScreen)
Sets the mouse position relative to the bounds of the screen.
|
MousePressed.Builder |
MousePressed.Builder.locationOnScreen(Point locationOnScreen)
Sets the mouse position relative to the bounds of the screen.
|
MouseEntered.Builder |
MouseEntered.Builder.locationOnScreen(Point locationOnScreen)
Sets the mouse position relative to the bounds of the screen.
|
MouseMoved.Builder |
MouseMoved.Builder.locationOnScreen(Point locationOnScreen)
Sets the mouse position relative to the bounds of the screen.
|
MouseReleased.Builder |
MouseReleased.Builder.locationOnScreen(Point locationOnScreen)
Sets the mouse position relative to the bounds of the screen.
|
static MouseExited.Builder |
MouseExited.newBuilder(Point location)
Creates a new
MouseExited builder with the given required parameters. |
static MouseDragged.Builder |
MouseDragged.newBuilder(Point location)
Creates a new
MouseDragged builder with the given required parameters. |
static MouseWheel.Builder |
MouseWheel.newBuilder(Point location)
Creates a new
MouseWheel builder with the given required parameters. |
static MousePressed.Builder |
MousePressed.newBuilder(Point location)
Creates a new
MousePressed builder with the given required parameters. |
static MouseEntered.Builder |
MouseEntered.newBuilder(Point location)
Creates a new
MouseEntered builder with the given required parameters. |
static MouseMoved.Builder |
MouseMoved.newBuilder(Point location)
Creates a new
MouseMoved builder with the given required parameters. |
static MouseReleased.Builder |
MouseReleased.newBuilder(Point location)
Creates a new
MouseReleased builder with the given required parameters. |