Uses of Interface
com.teamdev.jxbrowser.ui.Point
Packages that use Point
Package
Description
This package provides the classes that allow you to work with browser callback.
Provides the interfaces and classes for the Document Object Model (DOM).
Contains the classes and interfaces of the DOM events.
This package provides the classes that allow you to work with frames in browser.
The utility classes for the user interface (UI) related functionality.
The user interface events.
-
Uses of Point in com.teamdev.jxbrowser.browser.callback
Methods in com.teamdev.jxbrowser.browser.callback that return Point -
Uses of Point in com.teamdev.jxbrowser.dom
Methods in com.teamdev.jxbrowser.dom that return PointModifier and TypeMethodDescriptiondefault Point
PointInspection.localPoint()
Returns coordinates of the point relative to the node. -
Uses of Point in com.teamdev.jxbrowser.dom.event
Methods in com.teamdev.jxbrowser.dom.event that return PointModifier and TypeMethodDescriptionMouseEvent.clientLocation()
Returns the location of the mouse cursor in the local (DOM content) 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.default Point
WheelEventParams.clientLocation()
Returns the location of the mouse cursor in the component's coordinate system at the time the event occurred.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.MouseEvent.pageLocation()
Returns the location of the mouse cursor in thedocument
coordinate system at the time the event occurred.default Point
MouseEventParams.pageLocation()
Returns the location of the mouse cursor in thedocument
coordinate system at the time the event occurred.MouseEvent.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.default Point
WheelEventParams.screenLocation()
Returns the location of the mouse cursor in the screen's coordinate system at the time the event occurred.Methods in com.teamdev.jxbrowser.dom.event with parameters of type PointModifier and TypeMethodDescriptionMouseEventParams.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.screenLocation
(Point location) Sets the location of the mouse cursor in the screen's coordinate system at the time the event occurred. -
Uses of Point in com.teamdev.jxbrowser.frame
Methods in com.teamdev.jxbrowser.frame with parameters of type PointModifier and TypeMethodDescriptionInspects the givenlocation
on the web page containing this frame and returns the result of the inspection. -
Uses of Point in com.teamdev.jxbrowser.ui
Methods in com.teamdev.jxbrowser.ui that return PointModifier and TypeMethodDescriptionstatic Point
Point.empty()
Returns an emptyPoint
that has x and y values set to zero.static Point
Point.of
(int x, int y) Returns thePoint
instance for the given x and y values.default Point
Rect.origin()
Returns the upper-left corner of the rectangle.Methods in com.teamdev.jxbrowser.ui with parameters of type Point -
Uses of Point in com.teamdev.jxbrowser.ui.event
Methods in com.teamdev.jxbrowser.ui.event that return PointModifier and TypeMethodDescriptiondefault Point
MouseDragged.location()
default Point
MouseEntered.location()
MouseEvent.location()
Returns the mouse position relative to the bounds of the browser instance.default Point
MouseExited.location()
default Point
MouseMoved.location()
default Point
MousePressed.location()
default Point
MouseReleased.location()
default Point
MouseWheel.location()
default Point
MouseDragged.locationOnScreen()
default Point
MouseEntered.locationOnScreen()
MouseEvent.locationOnScreen()
Returns the mouse position relative to the bounds of the screen.default Point
MouseExited.locationOnScreen()
default Point
MouseMoved.locationOnScreen()
default Point
MousePressed.locationOnScreen()
default Point
MouseReleased.locationOnScreen()
default Point
MouseWheel.locationOnScreen()
Methods in com.teamdev.jxbrowser.ui.event with parameters of type PointModifier and TypeMethodDescriptionMouseDragged.Builder.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.MouseEntered.Builder.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.MouseExited.Builder.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.MouseMoved.Builder.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.MousePressed.Builder.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.MouseReleased.Builder.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.MouseWheel.Builder.locationOnScreen
(Point locationOnScreen) Sets the mouse position relative to the bounds of the screen.static MouseDragged.Builder
MouseDragged.newBuilder
(Point location) Creates a newMouseDragged
builder with the given required parameters.static MouseEntered.Builder
MouseEntered.newBuilder
(Point location) Creates a newMouseEntered
builder with the given required parameters.static MouseExited.Builder
MouseExited.newBuilder
(Point location) Creates a newMouseExited
builder with the given required parameters.static MouseMoved.Builder
MouseMoved.newBuilder
(Point location) Creates a newMouseMoved
builder with the given required parameters.static MousePressed.Builder
MousePressed.newBuilder
(Point location) Creates a newMousePressed
builder with the given required parameters.static MouseReleased.Builder
MouseReleased.newBuilder
(Point location) Creates a newMouseReleased
builder with the given required parameters.static MouseWheel.Builder
MouseWheel.newBuilder
(Point location) Creates a newMouseWheel
builder with the given required parameters.