diff --git a/jcef/navigation.html b/jcef/navigation.html index cb066f93..4fdf19b1 100644 --- a/jcef/navigation.html +++ b/jcef/navigation.html @@ -9532,139 +9532,144 @@ -
Specify a custom repository to use for JCEF packages.
the owner of the GitHub repo
Specify a custom repository to use for JCEF packages.
the owner of the GitHub repo
Specify a custom repository to use for JCEF packages.
the specific release used for downloading packages.
Specify a custom repository to use for JCEF packages.
the specific release used for downloading packages.
Specify a custom repository to use for JCEF packages.
the owner of the GitHub repo
the name of the GitHub repo
Specify a custom repository to use for JCEF packages.
the name of the GitHub repo
Specify a custom repository to use for JCEF packages.
the owner of the GitHub repo
the name of the GitHub repo
Specify a custom repository to use for JCEF packages.
the name of the GitHub repo
Specify the buffer size the download will use.
your buffer size.
Specify the buffer size the download will use.
your buffer size.
Specify a custom HttpClient for requesting and downloading packages.
your custom HttpClient
Specify a custom HttpClient for requesting and downloading packages.
your custom HttpClient
Specify a custom download link, instead of the default GitHub.
a direct package download link or transformable.
Specify a custom download link, instead of the default GitHub.
a direct package download link or transformable.
Specify that you download from GitHub.
Specify that you download from GitHub.
Transform the download link response. Used for GitHub downloads by default.
transform the initial response.
Transform the download link response. Used for GitHub downloads by default.
transform the initial response.
Default logging (currently INFO logging).
Default logging (currently INFO logging).
Completely disable logging.
Completely disable logging.
ERROR logging.
ERROR logging.
FATAL logging.
FATAL logging.
INFO logging.
INFO logging.
Verbose logging.
Verbose logging.
WARNING logging.
WARNING logging.
Opaque background color used for accelerated content. By default the background color will be white. Only the RGB compontents of the specified value will be used. The alpha component must greater than 0 to enable use of the background color but will be otherwise ignored.
Opaque background color used for accelerated content. By default the background color will be white. Only the RGB compontents of the specified value will be used. The alpha component must greater than 0 to enable use of the background color but will be otherwise ignored.
The path to a separate executable that will be launched for sub-processes. By default the browser process executable is used. See the comments on CefExecuteProcess() for details. Also configurable using the "browser-subprocess-path" command-line switch.
The path to a separate executable that will be launched for sub-processes. By default the browser process executable is used. See the comments on CefExecuteProcess() for details. Also configurable using the "browser-subprocess-path" command-line switch.
Set to true to disable configuration of browser process features using standard CEF and Chromium command-line arguments. Configuration can still be specified using CEF data structures or via the CefApp::OnBeforeCommandLineProcessing() method.
Set to true to disable configuration of browser process features using standard CEF and Chromium command-line arguments. Configuration can still be specified using CEF data structures or via the CefApp::OnBeforeCommandLineProcessing() method.
Custom flags that will be used when initializing the V8 JavaScript engine. The consequences of using custom flags may not be well tested. Also configurable using the "js-flags" command-line switch.
Custom flags that will be used when initializing the V8 JavaScript engine. The consequences of using custom flags may not be well tested. Also configurable using the "js-flags" command-line switch.
The locale string that will be passed to Blink. If empty the default locale of "en-US" will be used. This value is ignored on Linux where locale is determined using environment variable parsing with the precedence order: LANGUAGE, LC_ALL, LC_MESSAGES and LANG. Also configurable using the "lang" command-line switch.
The locale string that will be passed to Blink. If empty the default locale of "en-US" will be used. This value is ignored on Linux where locale is determined using environment variable parsing with the precedence order: LANGUAGE, LC_ALL, LC_MESSAGES and LANG. Also configurable using the "lang" command-line switch.
The fully qualified path for the locales directory. If this value is empty the locales directory must be located in the module directory. This value is ignored on Mac OS X where pack files are always loaded from the app bundle Resources directory. Also configurable using the "locales-dir-path" command-line switch.
The fully qualified path for the locales directory. If this value is empty the locales directory must be located in the module directory. This value is ignored on Mac OS X where pack files are always loaded from the app bundle Resources directory. Also configurable using the "locales-dir-path" command-line switch.
The log severity. Only messages of this severity level or higher will be logged. Also configurable using the "log-severity" command-line switch with a value of "verbose", "info", "warning", "error", "error-report" or "disable".
The log severity. Only messages of this severity level or higher will be logged. Also configurable using the "log-severity" command-line switch with a value of "verbose", "info", "warning", "error", "error-report" or "disable".
Set to true to disable loading of pack files for resources and locales. A resource bundle handler must be provided for the browser and render processes via CefApp::GetResourceBundleHandler() if loading of pack files is disabled. Also configurable using the "disable-pack-loading" command- line switch.
Set to true to disable loading of pack files for resources and locales. A resource bundle handler must be provided for the browser and render processes via CefApp::GetResourceBundleHandler() if loading of pack files is disabled. Also configurable using the "disable-pack-loading" command- line switch.
To persist session cookies (cookies without an expiry date or validity interval) by default when using the global cookie manager set this value to true. Session cookies are generally intended to be transient and most Web browsers do not persist them. A |cache_path| value must also be specified to enable this feature. Also configurable using the "persist-session-cookies" command-line switch.
To persist session cookies (cookies without an expiry date or validity interval) by default when using the global cookie manager set this value to true. Session cookies are generally intended to be transient and most Web browsers do not persist them. A |cache_path| value must also be specified to enable this feature. Also configurable using the "persist-session-cookies" command-line switch.
Set to a value between 1024 and 65535 to enable remote debugging on the specified port. For example, if 8080 is specified the remote debugging URL will be http: *localhost:8080. CEF can be remotely debugged from any CEF or Chrome browser window. Also configurable using the "remote-debugging-port" command-line switch.
Set to a value between 1024 and 65535 to enable remote debugging on the specified port. For example, if 8080 is specified the remote debugging URL will be http: *localhost:8080. CEF can be remotely debugged from any CEF or Chrome browser window. Also configurable using the "remote-debugging-port" command-line switch.
The fully qualified path for the resources directory. If this value is empty the cef.pak and/or devtools_resources.pak files must be located in the module directory on Windows/Linux or the app bundle Resources directory on Mac OS X. Also configurable using the "resources-dir-path" command-line switch.
The fully qualified path for the resources directory. If this value is empty the cef.pak and/or devtools_resources.pak files must be located in the module directory on Windows/Linux or the app bundle Resources directory on Mac OS X. Also configurable using the "resources-dir-path" command-line switch.
The number of stack trace frames to capture for uncaught exceptions. Specify a positive value to enable the CefV8ContextHandler:: OnUncaughtException() callback. Specify 0 (default value) and OnUncaughtException() will not be called. Also configurable using the "uncaught-exception-stack-size" command-line switch.
The number of stack trace frames to capture for uncaught exceptions. Specify a positive value to enable the CefV8ContextHandler:: OnUncaughtException() callback. Specify 0 (default value) and OnUncaughtException() will not be called. Also configurable using the "uncaught-exception-stack-size" command-line switch.
Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version will be used. If |userAgent| is specified this value will be ignored. Also configurable using the "user_agent_product" command-line switch.
Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version will be used. If |userAgent| is specified this value will be ignored. Also configurable using the "user_agent_product" command-line switch.
Set to true to enable windowless (off-screen) rendering support. Do not enable this value if the application does not use windowless rendering as it may reduce rendering performance on some systems.
Set to true to enable windowless (off-screen) rendering support. Do not enable this value if the application does not use windowless rendering as it may reduce rendering performance on some systems.
Add one or multiple arguments to pass to the JCef library. Arguments may contain spaces.
Due to installation using gradle some arguments may be overwritten again depending on your platform.
Make sure to not specify arguments that break the installation process (e.g. subprocess path, resources path...)!
the arguments to add
Add one or multiple arguments to pass to the JCef library. Arguments may contain spaces.
Due to installation using gradle some arguments may be overwritten again depending on your platform.
Make sure to not specify arguments that break the installation process (e.g. subprocess path, resources path...)!
the arguments to add
Assign an AppHandler to CefApp. The AppHandler can be used to evaluate application arguments, to register your own schemes and to hook into the shutdown sequence. See CefAppHandler for more details.
An instance of KCEF.AppHandler.
Assign an AppHandler to CefApp. The AppHandler can be used to evaluate application arguments, to register your own schemes and to hook into the shutdown sequence. See CefAppHandler for more details.
An instance of KCEF.AppHandler.
Clear all previous added arguments and use the specified ones to pass to the JCef library. Arguments may contain spaces.
Due to installation using gradle some arguments may be overwritten again depending on your platform.
Make sure to not specify arguments that break the installation process (e.g. subprocess path, resources path...)!
the arguments to add
Clear all previous added arguments and use the specified ones to pass to the JCef library. Arguments may contain spaces.
Due to installation using gradle some arguments may be overwritten again depending on your platform.
Make sure to not specify arguments that break the installation process (e.g. subprocess path, resources path...)!
the arguments to add
Use download builder instead
Overwrite the buffer size to download the runtime package on the client.
the buffer size used to while downloading
Use download builder instead
Overwrite the buffer size to download the runtime package on the client.
the buffer size used to while downloading
Specify your download options.
your Download instance.
Specify your download options.
Specify your download options.
your Download instance.
Specify your download options.
Overwrite the buffer size to extract the runtime package on the client.
the buffer size used to while extracting
Overwrite the buffer size to extract the runtime package on the client.
the buffer size used to while extracting
Class used to configure the JCef environment. Specify an installation directory, arguments to be passed to JCef and configure the Settings to your needs.
Class used to configure the JCef environment. Specify an installation directory, arguments to be passed to JCef and configure the Settings to your needs.
Sets the installation directory to use. Defaults to "./jcef-bundle".
the directory to install to
Sets the installation directory to use. Defaults to "./jcef-bundle".
the directory to install to
Specify a progress listener to receive install progress updates.
a InitProgress to use
Specify a progress listener to receive install progress updates.
a builder method to create InitProgress to use
Specify a progress listener to receive install progress updates.
a InitProgress to use
Specify a progress listener to receive install progress updates.
a builder method to create InitProgress to use
Use download builder instead
Specify and pin the used runtime package to a tag.
the release that will be downloaded and used on the client.
Use download builder instead
Set the used runtime package to the latest release.
if true the latest release will be used, make sure to use release with a tag if you want to pin it instead.
Use download builder instead
Specify and pin the used runtime package to a tag.
the release that will be downloaded and used on the client.
Use download builder instead
Set the used runtime package to the latest release.
if true the latest release will be used, make sure to use release with a tag if you want to pin it instead.
Class used to initialize the JCef environment.
Create a new KCEFClient after initialization easily.
Dispose the JCef environment if you don't need it anymore.
Class used to initialize the JCef environment.
Create a new KCEFClient after initialization easily.
Dispose the JCef environment if you don't need it anymore.
Blocking equivalent of init
Blocking equivalent of init
Download, install and initialize CEF on the client.
builder method to create a KCEFBuilder to use
an optional listener for errors
an optional listener to be notified when the application needs a restart, may happen on some platforms if CEF couldn't be initialized after downloading and installing.
if you called dispose or disposeBlocking previously
Download, install and initialize CEF on the client.
the KCEFBuilder to use
an optional listener for errors
an optional listener to be notified when the application needs a restart, may happen on some platforms if CEF couldn't be initialized after downloading and installing.
if you called dispose or disposeBlocking previously
Mark CEF as initialized on the client.
the initialized CefApp instance, used to create clients.
Download, install and initialize CEF on the client.
builder method to create a KCEFBuilder to use
an optional listener for errors
an optional listener to be notified when the application needs a restart, may happen on some platforms if CEF couldn't be initialized after downloading and installing.
if you called dispose or disposeBlocking previously
Download, install and initialize CEF on the client.
the KCEFBuilder to use
an optional listener for errors
an optional listener to be notified when the application needs a restart, may happen on some platforms if CEF couldn't be initialized after downloading and installing.
if you called dispose or disposeBlocking previously
Mark CEF as initialized on the client.
the initialized CefApp instance, used to create clients.
Blocking equivalent of newClientOrNull
to initialize CEF
Blocking equivalent of newClientOrNull
to initialize CEF
Create a new CefClient after CEF has been initialized.
Waits for initialization if it isn't finished yet.
KCEFClient after initialization or null if any error occurred
an optional listener for any error occurred during initialization
to initialize CEF
Create a new CefClient after CEF has been initialized.
Waits for initialization if it isn't finished yet.
KCEFClient after initialization or null if any error occurred
an optional listener for any error occurred during initialization
to initialize CEF
Create a new CefClient after CEF has been initialized.
Waits for initialization if it isn't finished yet.
KCEFClient after initialization
to initialize CEF
if the init method have not been called.
if you called dispose or disposeBlocking previously
if any other error occurred during initialization
Create a new CefClient after CEF has been initialized.
Waits for initialization if it isn't finished yet.
KCEFClient after initialization
to initialize CEF
if the init method have not been called.
if you called dispose or disposeBlocking previously
if any other error occurred during initialization
Create a new client if CEF has been initialized.
KCEFClient if the initialization process already finished else null.
Create a new client if CEF has been initialized.
KCEFClient if the initialization process already finished else null.