Struct tauri_runtime::webview::WebviewAttributes
source · pub struct WebviewAttributes {Show 14 fields
pub url: WebviewUrl,
pub user_agent: Option<String>,
pub initialization_scripts: Vec<String>,
pub data_directory: Option<PathBuf>,
pub drag_drop_handler_enabled: bool,
pub clipboard: bool,
pub accept_first_mouse: bool,
pub additional_browser_args: Option<String>,
pub window_effects: Option<WindowEffectsConfig>,
pub incognito: bool,
pub transparent: bool,
pub bounds: Option<Rect>,
pub auto_resize: bool,
pub proxy_url: Option<Url>,
}
Expand description
The attributes used to create an webview.
Fields§
§url: WebviewUrl
§user_agent: Option<String>
§initialization_scripts: Vec<String>
§data_directory: Option<PathBuf>
§drag_drop_handler_enabled: bool
§clipboard: bool
§accept_first_mouse: bool
§additional_browser_args: Option<String>
§window_effects: Option<WindowEffectsConfig>
§incognito: bool
§transparent: bool
§bounds: Option<Rect>
§auto_resize: bool
§proxy_url: Option<Url>
Implementations§
source§impl WebviewAttributes
impl WebviewAttributes
sourcepub fn new(url: WebviewUrl) -> Self
pub fn new(url: WebviewUrl) -> Self
Initializes the default attributes for a webview.
sourcepub fn user_agent(self, user_agent: &str) -> Self
pub fn user_agent(self, user_agent: &str) -> Self
Sets the user agent
sourcepub fn initialization_script(self, script: &str) -> Self
pub fn initialization_script(self, script: &str) -> Self
Sets the init script.
sourcepub fn data_directory(self, data_directory: PathBuf) -> Self
pub fn data_directory(self, data_directory: PathBuf) -> Self
Data directory for the webview.
sourcepub fn disable_drag_drop_handler(self) -> Self
pub fn disable_drag_drop_handler(self) -> Self
Disables the drag and drop handler. This is required to use HTML5 drag and drop APIs on the frontend on Windows.
sourcepub fn enable_clipboard_access(self) -> Self
pub fn enable_clipboard_access(self) -> 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.
sourcepub fn accept_first_mouse(self, accept: bool) -> Self
pub fn accept_first_mouse(self, accept: bool) -> Self
Sets whether clicking an inactive window also clicks through to the webview.
sourcepub fn additional_browser_args(self, additional_args: &str) -> Self
pub fn additional_browser_args(self, additional_args: &str) -> Self
Sets additional browser arguments. Windows Only
sourcepub fn window_effects(self, effects: WindowEffectsConfig) -> Self
pub fn window_effects(self, effects: WindowEffectsConfig) -> Self
Sets window effects
sourcepub fn incognito(self, incognito: bool) -> Self
pub fn incognito(self, incognito: bool) -> Self
Enable or disable incognito mode for the WebView.
sourcepub fn transparent(self, transparent: bool) -> Self
pub fn transparent(self, transparent: bool) -> Self
Enable or disable transparency for the WebView.
sourcepub fn auto_resize(self) -> Self
pub fn auto_resize(self) -> Self
Sets the webview to automatically grow and shrink its size and position when the parent window resizes.
Trait Implementations§
source§impl Clone for WebviewAttributes
impl Clone for WebviewAttributes
source§fn clone(&self) -> WebviewAttributes
fn clone(&self) -> WebviewAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more