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.media.callback |
The media callbacks.
|
com.teamdev.jxbrowser.navigation.callback |
The navigation callbacks.
|
com.teamdev.jxbrowser.net.callback |
The network service callbacks.
|
com.teamdev.jxbrowser.plugin.callback |
The plugin service 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 |
BrowserSyncCallback<P,R>
A common interface that all synchronous browser callbacks must extend.
|
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 | Interface and Description |
---|---|
(package private) interface |
com.teamdev.jxbrowser.media.callback.MediaSyncCallback<P,R>
A common interface that all synchronous media callbacks must extend.
|
interface |
SelectMediaDeviceCallback
This callback is invoked when the web page asks which media input device should be used.
|
Modifier and Type | Interface and Description |
---|---|
interface |
NavigationSyncCallback<P,R>
A common interface for all synchronous navigation callbacks must extend.
|
interface |
ShowHttpErrorPageCallback
This callback is invoked when the engine is about to display an error web page because the web
server sends an empty HTTP response with the HTTP status code that represents an error.
|
interface |
ShowNetErrorPageCallback
This callback is invoked when the engine is about to display a network error web page because the
required web resource cannot be loaded because of a network error.
|
interface |
StartNavigationCallback
This callback is invoked before the engine starts navigation to a resource.
|
Modifier and Type | Interface and Description |
---|---|
interface |
BeforeSendUploadDataCallback
The callback that is invoked before the upload data is sent to the web server.
|
interface |
BeforeStartTransactionCallback
The callback that is invoked before the network transaction starts.
|
interface |
BeforeUrlRequestCallback
The callback is invoked when an HTTP request is about to occur.
|
interface |
CanAccessFileCallback
The callback is invoked when the engine checks if the given file can be accessed or not.
|
interface |
CanGetCookiesCallback
The callback is invoked to check if the engine can access the given cookie or not.
|
interface |
CanSetCookieCallback
The callback is invoked to check if the given cookie can be set or not.
|
interface |
InterceptUrlRequestCallback
The callback is invoked when a URL request is about to be sent out.
|
interface |
NetworkSyncCallback<P,R>
A common interface for all synchronous network service callbacks must extend.
|
interface |
ReceiveHeadersCallback
The callback is invoked when the response headers have been received for a URL request.
|
interface |
VerifyCertificateCallback
The callback is invoked when certificate verification is required.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AllowPluginCallback
This callback is invoked when the engine wants to check whether a specific plugin is allowed or
not.
|
interface |
PluginsSyncCallback<P,R>
A common interface for all synchronous plugin service callbacks must extend.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultOpenPopupCallback
The default
OpenPopupCallback implementation that creates and shows a new window with the
embedded popup browser. |