Package-level declarations

Types

Link copied to clipboard
value class JxBrowserLicense(val value: String)
value class JxBrowserLicense(val value: String)

JxBrowser license key.

Properties

Link copied to clipboard

A store that allows managing cookies.

Link copied to clipboard

A service that allows managing downloads.

Link copied to clipboard

A service for working with HTTP authentication cache.

Link copied to clipboard

A service for working with HTTP cache.

Link copied to clipboard

Returns a license that was used to create this Engine.

Link copied to clipboard

A service that allows managing media stream devices.

Link copied to clipboard

A service that allows working with network.

Link copied to clipboard

Returns options of this Engine.

Link copied to clipboard

A service that allows managing permissions.

Link copied to clipboard

A service that allows configuring plugins.

Link copied to clipboard

A service for managing profiles.

Link copied to clipboard

A service that allows working with proxy.

Link copied to clipboard

A service that allows working with spell checking functionality.

Link copied to clipboard

A service that allows working with zoom.

Functions

Link copied to clipboard
inline fun <C : Callback> Advisable<in C>.callback(): C?
inline fun <C : Callback> Advisable<in C>.callback(): C?

Returns the currently registered callback of type C, if any.

Link copied to clipboard
fun Engine(options: EngineOptions): Engine
fun Engine(options: EngineOptions): Engine

Creates a new instance of Engine with the given options.

fun Engine(renderingMode: RenderingMode, configuration: OptionsDsl.() -> Unit = { /* Matches defaults. */ }): Engine
fun Engine(renderingMode: RenderingMode, configuration: OptionsDsl.() -> Unit = { /* Matches defaults. */ }): Engine

Creates a new instance of Engine with the given renderingMode and configuration.

Link copied to clipboard
inline fun <C : Callback> Advisable<in C>.register(callback: C): C?
inline fun <C : Callback> Advisable<in C>.register(callback: C): C?

Registers the given callback in this Advisable.

Link copied to clipboard
inline fun <C : Callback> Advisable<in C>.removeCallback(): C?
inline fun <C : Callback> Advisable<in C>.removeCallback(): C?

Removes a callback of type C from this Advisable, if any.

Link copied to clipboard
inline fun <E : Event> Observable<in E>.subscribe(observer: Observer<E>): Subscription
inline fun <E : Event> Observable<in E>.subscribe(observer: Observer<E>): Subscription

Subscribes the given observer to receive events of type E from this Observable.