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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AlertCallback
This callback is invoked when JavaScript alert dialog should be displayed.
|
interface |
BeforeFormRepostCallback
This callback is invoked when a web page with POST data is going to be reloaded and the user must
confirm that the POST data can be resubmitted.
|
interface |
BeforeUnloadCallback
This callback is invoked when the web page is about to be unloaded.
|
interface |
BrowserAsyncCallback<P,R extends AsyncCallbackAction>
A common interface for all asynchronous browser callbacks.
|
interface |
BrowserSyncCallback<P,R>
A common interface that all synchronous browser callbacks must extend.
|
interface |
CertificateErrorCallback
The callback is invoked when an SSL certificate error occurs during loading a web page.
|
interface |
ConfirmCallback
This callback is invoked when JavaScript confirmation dialog should be displayed.
|
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 |
OpenExternalAppCallback
This callback is invoked when the currently loaded web page wants to open a link in the
associated external application.
|
interface |
OpenFileCallback
This callback is invoked when the browser requests to display a file chooser dialog to open a
file.
|
interface |
OpenFilesCallback
This callback is invoked when the browser requests to display a file chooser dialog to open
several files.
|
interface |
OpenFolderCallback
This callback is invoked when the browser requests to display a file chooser dialog to open a
folder.
|
interface |
OpenPopupCallback
This callback is invoked when a new popup browser instance should be opened.
|
interface |
PrintCallback
This callback is invoked when the printing is about to start.
|
interface |
PrintHtmlCallback
This callback allows you to configure the print settings when printing HTML content.
|
interface |
PrintPdfCallback
This callback allows you to configure the print settings when printing PDF content.
|
interface |
PromptCallback
This callback is invoked when JavaScript dialog prompting the user to input some text should be
displayed.
|
interface |
RequestPdfDocumentPasswordCallback
The callback is invoked when the frame requests the password for an encrypted PDF document.
|
interface |
SaveAsPdfCallback
This callback is invoked when the browser requests to display a file chooser dialog to save
content as PDF.
|
interface |
SaveCreditCardCallback
A callback that is invoked when the user is prompted to save a credit card to the credit card store.
|
interface |
SaveFileCallback
This callback is invoked when the browser requests to display a file chooser dialog to save a
file.
|
interface |
SavePasswordCallback
A callback that is invoked when the user is prompted to save the credentials in the password store.
|
interface |
SaveUserDataProfileCallback
A callback that is invoked when the user is prompted to save the user data profile to the
user data store.
|
interface |
SelectClientCertificateCallback
This callback is invoked when the web server requires authorization via SSL client certificate.
|
interface |
SelectColorCallback
This callback is invoked when the user clicks an
<input type='color'> HTML5 element. |
interface |
ShowContextMenuCallback
This callback is invoked when the browser attempts to display a context menu, for example, when
the user right-clicks on a misspelled word on the web page.
|
interface |
StartCaptureSessionCallback
This callback is invoked when a web page requests permission to start a capture session.
|
interface |
StartDownloadCallback
The callback that is invoked when the browser is about to start downloading the file.
|
interface |
StartPresentationCallback
A callback that is invoked when a presentation has been requested via the JavaScript
Presentation API.
|
interface |
UpdatePasswordCallback
A callback that is invoked when the user is prompted to update the password in the password store.
|
interface |
UpdateUserDataProfileCallback
A callback that is invoked when the user is prompted to update the user data profile in the
user data store.
|
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. |