Struct wry::webview::WebViewBuilder

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

Builder type of WebView.

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

Fields§

§webview: WebViewAttributes

Implementations§

source§

impl<'a> WebViewBuilder<'a>

source

pub fn new(window: Window) -> Result<Self>

Create WebViewBuilder from provided Window.

source

pub fn with_back_forward_navigation_gestures(self, gesture: bool) -> Self

Indicates whether horizontal swipe gestures trigger backward and forward page navigation.

Platform-specific:
  • Android / iOS: Unsupported.
source

pub fn with_transparent(self, transparent: bool) -> Self

Sets whether the WebView should be transparent.

Platform-specific:

Windows 7: Not supported.

source

pub fn with_background_color(self, background_color: RGBA) -> Self

Specify the webview background color. This will be ignored if transparent is set to true.

The color uses the RGBA format.

Platfrom-specific:
  • macOS / iOS: Not implemented.
  • Windows:
    • on Windows 7, transparency is not supported and the alpha value will be ignored.
    • on Windows higher than 7: translucent colors are not supported so any alpha value other than 0 will be replaced by 255
source

pub fn with_visible(self, visible: bool) -> Self

Sets whether the WebView should be transparent.

source

pub fn with_autoplay(self, autoplay: bool) -> Self

Sets whether all media can be played without user interaction.

source

pub fn with_initialization_script(self, js: &str) -> Self

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.

Platform-specific
  • Android: The Android WebView does not provide an API for initialization scripts, so we prepend them to each HTML head. They are only implemented on custom protocol URLs.
source

pub fn with_custom_protocol<F>(self, name: String, handler: F) -> Selfwhere F: Fn(Request<Vec<u8>>) -> HttpResponse<Cow<'static, [u8]>> + 'static,

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

The closure takes a Request and returns a [Response]

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, iOS and Linux: <scheme_name>://<path> (so it will be wry://examples in custom_protocol example). On Linux, You need to enable linux-headers feature flag.
  • Windows and Android: http://<scheme_name>.<path> by default (so it will be http://wry.examples in custom_protocol example). To use https instead of http, use [WebViewBuilderExtWindows::with_https_scheme] and [WebViewBuilderExtAndroid::with_https_scheme].
Reading assets on mobile
  • Android: For loading content from the assets folder (which is copied to the Andorid apk) please use the function [with_asset_loader] from [WebViewBuilderExtAndroid] instead. This function on Android can only be used to serve assets you can embed in the binary or are elsewhere in Android (provided the app has appropriate access), but not from the assets folder which lives within the apk. For the cases where this can be used, it works the same as in macOS and Linux.
  • iOS: To get the path of your assets, you can call CFBundle::resources_path. So url like wry://assets/index.html could get the html file in assets directory.
source

pub fn with_asynchronous_custom_protocol<F>( self, name: String, handler: F ) -> Selfwhere F: Fn(Request<Vec<u8>>, RequestAsyncResponder) + 'static,

Same as Self::with_custom_protocol but with an asynchronous responder.

Examples
use wry::{
  application::{
    event_loop::EventLoop,
    window::WindowBuilder
  },
  webview::WebViewBuilder,
};

let event_loop = EventLoop::new();
let window = WindowBuilder::new()
  .build(&event_loop)
  .unwrap();
WebViewBuilder::new(window)
  .unwrap()
  .with_asynchronous_custom_protocol("wry".into(), |request, responder| {
    // here you can use a tokio task, thread pool or anything
    // to do heavy computation to resolve your request
    // e.g. downloading files, opening the camera...
    std::thread::spawn(move || {
      std::thread::sleep(std::time::Duration::from_secs(2));
      responder.respond(http::Response::builder().body(Vec::new()).unwrap());
    });
  });
source

pub fn with_ipc_handler<F>(self, handler: F) -> Selfwhere F: Fn(&Window, String) + 'static,

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");.

source

pub fn with_file_drop_handler<F>(self, handler: F) -> Selfwhere F: Fn(&Window, FileDropEvent) -> bool + 'static,

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.

source

pub fn with_url_and_headers(self, url: &str, headers: HeaderMap) -> Result<Self>

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

source

pub fn with_url(self, url: &str) -> Result<Self>

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

source

pub fn with_html(self, html: impl Into<String>) -> Result<Self>

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

Warning

The Page loaded from html string will have null origin.

PLatform-specific:
  • Windows: the string can not be larger than 2 MB (2 * 1024 * 1024 bytes) in total size
source

pub fn with_web_context(self, web_context: &'a mut WebContext) -> Self

Set the web context that can share with multiple WebViews.

source

pub fn with_user_agent(self, user_agent: &str) -> Self

Set a custom user-agent for the WebView.

source

pub fn with_devtools(self, devtools: bool) -> Self

Enable or disable web inspector which is usually called dev tool.

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

Platform-specific
  • macOS: This will call private functions on macOS. It’s still enabled if set in debug build on mac, but requires devtools feature flag to actually enable it in release build.
  • Android: Open chrome://inspect/#devices in Chrome to get the devtools window. Wry’s WebView devtools API isn’t supported on Android.
  • iOS: Open Safari > Develop > [Your Device Name] > [Your WebView] to get the devtools window.
source

pub fn with_hotkeys_zoom(self, zoom: bool) -> Self

Whether page zooming by hotkeys or gestures is enabled

Platform-specific

macOS / Linux / Android / iOS: Unsupported

source

pub fn with_navigation_handler( self, callback: impl Fn(String) -> bool + 'static ) -> Self

Set a navigation handler to decide if incoming url is allowed to navigate.

The closure takes a String parameter as url and return bool to determine the url. True is allowed to navigate and false is not.

source

pub fn with_download_started_handler( self, started_handler: impl FnMut(String, &mut PathBuf) -> bool + 'static ) -> Self

Set a download started handler to manage incoming downloads.

The closure takes two parameters - the first is a String representing the url being downloaded from and and the second is a mutable PathBuf reference that (possibly) represents where the file will be downloaded to. The latter parameter can be used to set the download location by assigning a new path to it - the assigned path must be absolute. The closure returns a bool to allow or deny the download.

source

pub fn with_download_completed_handler( self, download_completed_handler: impl Fn(String, Option<PathBuf>, bool) + 'static ) -> Self

Sets a download completion handler to manage downloads that have finished.

The closure is fired when the download completes, whether it was successful or not. The closure takes a String representing the URL of the original download request, an Option<PathBuf> potentially representing the filesystem path the file was downloaded to, and a bool indicating if the download succeeded. A value of None being passed instead of a PathBuf does not necessarily indicate that the download did not succeed, and may instead indicate some other failure - always check the third parameter if you need to know if the download succeeded.

Platform-specific:
  • macOS: The second parameter indicating the path the file was saved to is always empty, due to API limitations.
source

pub fn with_clipboard(self, clipboard: bool) -> Self

Enables clipboard access for the page rendered on Linux and Windows.

macOS doesn’t provide such method and is always enabled by default. But you still need to add menu item accelerators to use shortcuts.

source

pub fn with_new_window_req_handler( self, callback: impl Fn(String) -> bool + 'static ) -> Self

Set a new window request handler to decide if incoming url is allowed to be opened.

The closure takes a String parameter as url and return bool to determine if the url can be opened in a new window. Returning true will open the url in a new window, whilst returning false will neither open a new window nor allow any navigation.

source

pub fn with_accept_first_mouse(self, accept_first_mouse: bool) -> Self

Sets whether clicking an inactive window also clicks through to the webview. Default is false.

Platform-specific

This configuration only impacts macOS.

source

pub fn with_document_title_changed_handler( self, callback: impl Fn(&Window, String) + 'static ) -> Self

Set a handler closure to process the change of the webview’s document title.

source

pub fn with_incognito(self, incognito: bool) -> Self

Run the WebView with incognito mode. Note that WebContext will be ingored if incognito is enabled.

Platform-specific:
  • Android: Unsupported yet.
source

pub fn with_on_page_load_handler( self, handler: impl Fn(PageLoadEvent, String) + 'static ) -> Self

Set a handler to process page loading events.

The handler will be called when the webview begins the indicated loading event.

source

pub fn with_proxy_config(self, configuration: ProxyConfig) -> Self

Set a proxy configuration for the webview.

  • macOS: Requires macOS 14.0+ and the mac-proxy feature flag to be enabled. Supports HTTP CONNECT and SOCKSv5 proxies.
  • Windows / Linux: Supports HTTP CONNECT and SOCKSv5 proxies.
  • Android / iOS: Not supported.
source

pub fn with_focused(self, focused: bool) -> Self

Set whether the webview should be focused when created.

Platform-specific:
  • macOS / Android / iOS: Unsupported.
source

pub fn build(self) -> Result<WebView>

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§

§

impl<'a> !RefUnwindSafe for WebViewBuilder<'a>

§

impl<'a> !Send for WebViewBuilder<'a>

§

impl<'a> !Sync for WebViewBuilder<'a>

§

impl<'a> Unpin for WebViewBuilder<'a>

§

impl<'a> !UnwindSafe for WebViewBuilder<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more