Package | Description |
---|---|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser callback.
|
com.teamdev.jxbrowser.browser.callback.input |
The mouse and keyboard input callbacks.
|
com.teamdev.jxbrowser.view.javafx.callback |
Contains the implementations of the callbacks that display JavaFX UI dialogs.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CreatePopupCallback
This callback is invoked when browser decides whether a new popup instance can be created or not.
|
interface |
InjectCssCallback
This callback is invoked when the document element has been created and a custom style sheet can
be injected into the document.
|
interface |
InjectJsCallback
This callback is invoked when the document element has been created and a custom JavaScript can
be injected into the document.
|
interface |
OpenPopupCallback
This callback is invoked when a new popup browser instance should be opened.
|
Modifier and Type | Interface and Description |
---|---|
interface |
EnterMouseCallback
This callback is invoked when a
MouseEntered event is about to be processed by the
browser. |
interface |
ExitMouseCallback
This callback is invoked when a
MouseExited event is about to be processed by the
browser. |
interface |
MoveMouseCallback
This callback is invoked when a
MouseMoved event is about to be processed by the
browser. |
interface |
MoveMouseWheelCallback
This callback is invoked when a
MouseWheel event is about to be processed by the
browser. |
interface |
PressKeyCallback
This callback is invoked when a
KeyPressed event is about to be processed by the
browser. |
interface |
PressMouseCallback
This callback is invoked when a
MousePressed event is about to be processed by the
browser. |
interface |
ReleaseKeyCallback
This callback is invoked when a
KeyReleased event is about to be processed by the
browser. |
interface |
ReleaseMouseCallback
This callback is invoked when a
MouseReleased event is about to be processed by the
browser. |
interface |
TypeKeyCallback
This callback is invoked when a
KeyTyped event is about to be processed by the browser. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultOpenPopupCallback
The default
OpenPopupCallback implementation that creates and shows a new window with the
embedded popup browser. |