pub struct WebViewBuilder<'a> {
    pub webview: WebViewAttributes,
    /* private fields */
}
Expand description

Builder type of WebView.

WebViewBuilder / WebView are the basic building blocks to constrcut WebView contents and scripts for those who prefer to control fine grained window creation and event handling. WebViewBuilder privides ability to setup initialization before web engine starts.

Fields

webview: WebViewAttributes

Implementations

Create WebViewBuilder from provided Window.

Sets whether the WebView should be transparent. Not supported on Windows 7.

Sets whether the WebView should be transparent.

Initialize javascript code when loading new pages. When webview load a new page, this initialization code will be executed. It is guaranteed that code is executed before window.onload.

Register custom file loading protocols with pairs of scheme uri string and a handling closure.

The closure takes a url string slice, and returns a two item tuple of a vector of bytes which is the content and a mimetype string of the content.

Warning

Pages loaded from custom protocol will have different Origin on different platforms. And servers which enforce CORS will need to add exact same Origin header in Access-Control-Allow-Origin if you wish to send requests with native fetch and XmlHttpRequest APIs. Here are the different Origin headers across platforms:

  • macOS: <scheme_name>://<path> (so it will be wry://examples in custom_protocol example)
  • Linux: Though it’s same as macOS, there’s a bug that Origin header in the request will be empty. So the only way to pass the server is setting Access-Control-Allow-Origin: *.
  • Windows: https://<scheme_name>.<path> (so it will be https://wry.examples in custom_protocol example)

Set the IPC handler to receive the message from Javascript on webview to host Rust code. The message sent from webview should call window.ipc.postMessage("insert_message_here");.

Both functions return promises but notify() resolves immediately.

Set a handler closure to process incoming FileDropEvent of the webview.

Blocking OS Default Behavior

Return true in the callback to block the OS’ default behavior of handling a file drop.

Note, that if you do block this behavior, it won’t be possible to drop files on <input type="file"> forms. Also note, that it’s not possible to manually set the value of a <input type="file"> via JavaScript for security reasons.

Load the provided URL when the builder calling WebViewBuilder::build to create the WebView. The provided URL must be valid.

Load the provided HTML string when the builder calling WebViewBuilder::build to create the WebView. This will be ignored if url is already provided.

Warning

The Page loaded from html string will have different Origin on different platforms. And servers which enforce CORS will need to add exact same Origin header in Access-Control-Allow-Origin if you wish to send requests with native fetch and XmlHttpRequest APIs. Here are the different Origin headers across platforms:

  • macOS: http://localhost
  • Linux: http://localhost
  • Windows: null

Set the web context that can share with multiple WebViews.

Set a custom user-agent for the WebView.

Enable web insepctor which is usually called dev tool.

Note this only enables dev tool to the webview. To open it, you can call WebView::devtool, or right click the page and open it from the context menu.

Warning

This will call private functions on macOS. It’s still enabled if set in debug build on mac, but requires devtool feature flag to actually enable it in release build.

Consume the builder and create the WebView.

Platform-specific behavior:

  • Unix: This method must be called in a gtk thread. Usually this means it should be called in the same thread with the EventLoop you create.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.