Package | Description |
---|---|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser callback.
|
com.teamdev.jxbrowser.browser.event |
This package provides the classes that allow you to work with browser events.
|
com.teamdev.jxbrowser.dom |
Provides the interfaces and classes for the Document Object Model (DOM).
|
com.teamdev.jxbrowser.ui |
The utility classes for the user interface (UI) related functionality.
|
Modifier and Type | Method and Description |
---|---|
default Rect |
OpenPopupCallback.Params.initialBounds()
Returns the initial bounds of the popup.
|
Modifier and Type | Method and Description |
---|---|
default Rect |
UpdateBoundsRequested.bounds()
Returns the new bounds in screen coordinates.
|
Modifier and Type | Method and Description |
---|---|
Rect |
Element.boundingClientRect()
Returns a
Rect object representing the bounds of the element and its position
relative to the top-left of the viewport of the current document. |
Modifier and Type | Method and Description |
---|---|
static Rect |
Rect.empty()
Returns an empty
Rect with empty origin and size. |
static Rect |
Rect.of(int width,
int height)
Returns the
Rect instance for the given width and height values. |
static Rect |
Rect.of(int x,
int y,
int width,
int height)
Returns the
Rect instance for the given x , y , width , and
height values. |
static Rect |
Rect.of(Point origin,
Size size)
Returns the
Rect instance for the given origin and size values. |
static Rect |
Rect.of(Size size)
Returns the
Rect instance for the empty origin and the given size value. |