servo::webview_delegate

Struct DefaultWebViewDelegate

Source
pub(crate) struct DefaultWebViewDelegate;

Trait Implementations§

Source§

impl WebViewDelegate for DefaultWebViewDelegate

Source§

fn screen_geometry(&self, _webview: WebView) -> Option<ScreenGeometry>

Get the ScreenGeometry for this WebView. If this is unimplemented or returns None the screen will have the size of the WebView’s RenderingContext and WebView will be considered to be positioned at the screen’s origin.
Source§

fn notify_url_changed(&self, _webview: WebView, _url: Url)

The URL of the currently loaded page in this WebView has changed. The new URL can accessed via WebView::url.
Source§

fn notify_page_title_changed(&self, _webview: WebView, _title: Option<String>)

The page title of the currently loaded page in this WebView has changed. The new title can accessed via WebView::page_title.
Source§

fn notify_status_text_changed(&self, _webview: WebView, _status: Option<String>)

The status text of the currently loaded page in this WebView has changed. The new status text can accessed via WebView::status_text.
Source§

fn notify_focus_changed(&self, _webview: WebView, _focused: bool)

This WebView has either become focused or lost focus. Whether or not the WebView is focused can be accessed via WebView::focused.
Source§

fn notify_animating_changed(&self, _webview: WebView, _animating: bool)

This WebView has either started to animate or stopped animating. When a WebView is animating, it is up to the embedding application ensure that Servo::spin_event_loop is called at regular intervals in order to update the painted contents of the WebView.
Source§

fn notify_load_status_changed(&self, _webview: WebView, _status: LoadStatus)

The LoadStatus of the currently loading or loaded page in this WebView has changed. The new status can accessed via WebView::load_status.
Source§

fn notify_cursor_changed(&self, _webview: WebView, _: Cursor)

The Cursor of the currently loaded page in this WebView has changed. The new cursor can accessed via WebView::cursor.
Source§

fn notify_favicon_url_changed(&self, _webview: WebView, _: Url)

The favicon Url of the currently loaded page in this WebView has changed. The new favicon Url can accessed via WebView::favicon_url.
Source§

fn notify_new_frame_ready(&self, _webview: WebView)

Notify the embedder that it needs to present a new frame.
Source§

fn notify_history_changed(&self, _webview: WebView, _: Vec<Url>, _: usize)

The history state has changed.
Source§

fn notify_closed(&self, _webview: WebView)

Page content has closed this WebView via window.close(). It’s the embedder’s responsibility to remove the WebView from the interface when this notification occurs.
Source§

fn notify_keyboard_event(&self, _webview: WebView, _: KeyboardEvent)

A keyboard event has been sent to Servo, but remains unprocessed. This allows the embedding application to handle key events while first letting the WebView have an opportunity to handle it first. Apart from builtin keybindings, page content may expose custom keybindings as well.
Source§

fn notify_crashed( &self, _webview: WebView, _reason: String, _backtrace: Option<String>, )

A pipeline in the webview panicked. First string is the reason, second one is the backtrace.
Source§

fn notify_media_session_event( &self, _webview: WebView, _event: MediaSessionEvent, )

Notifies the embedder about media session events (i.e. when there is metadata for the active media session, playback state changes…).
Source§

fn notify_fullscreen_state_changed(&self, _webview: WebView, _: bool)

A notification that the WebView has entered or exited fullscreen mode. This is an opportunity for the embedder to transition the containing window into or out of fullscreen mode and to show or hide extra UI elements. Regardless of how the notification is handled, the page will enter or leave fullscreen state internally according to the Fullscreen API.
Source§

fn request_navigation( &self, _webview: WebView, _navigation_request: NavigationRequest, )

Whether or not to allow a WebView to load a URL in its main frame or one of its nested <iframe>s. NavigationRequests are accepted by default.
Source§

fn request_unload(&self, _webview: WebView, _unload_request: AllowOrDenyRequest)

Whether or not to allow a WebView to unload a Document in its main frame or one of its nested <iframe>s. By default, unloads are allowed.
Source§

fn request_move_to(&self, _webview: WebView, _: DeviceIntPoint)

Move the window to a point
Source§

fn request_resize_to(&self, _webview: WebView, _: DeviceIntSize)

Resize the window to size
Source§

fn request_open_auxiliary_webview( &self, _parent_webview: WebView, ) -> Option<WebView>

Whether or not to allow script to open a new WebView. If not handled by the embedder, these requests are automatically denied.
Source§

fn request_permission(&self, _webview: WebView, _: PermissionRequest)

Content in a WebView is requesting permission to access a feature requiring permission from the user. The embedder should allow or deny the request, either by reading a cached value or querying the user for permission via the user interface.
Source§

fn request_authentication( &self, _webview: WebView, _authentication_request: AuthenticationRequest, )

Source§

fn show_simple_dialog(&self, _webview: WebView, dialog: SimpleDialog)

Show the user a simple dialog (alert(), confirm(), or prompt()). Since their messages are controlled by web content, they should be presented to the user in a way that makes them impossible to mistake for browser UI. TODO: This API needs to be reworked to match the new model of how responses are sent.
Source§

fn show_context_menu( &self, _webview: WebView, result_sender: IpcSender<ContextMenuResult>, _: Option<String>, _: Vec<String>, )

Show a context menu to the user
Source§

fn show_bluetooth_device_dialog( &self, _webview: WebView, _: Vec<String>, response_sender: IpcSender<Option<String>>, )

Open dialog to select bluetooth device. TODO: This API needs to be reworked to match the new model of how responses are sent.
Source§

fn show_file_selection_dialog( &self, _webview: WebView, _filter_pattern: Vec<FilterPattern>, _allow_select_mutiple: bool, response_sender: IpcSender<Option<Vec<PathBuf>>>, )

Open file dialog to select files. Set boolean flag to true allows to select multiple files.
Source§

fn show_ime( &self, _webview: WebView, _type: InputMethodType, _text: Option<(String, i32)>, _multiline: bool, _position: DeviceIntRect, )

Request to present an IME to the user when an editable element is focused. If type is InputMethodType::Text, then the text parameter specifies the pre-existing text content and the zero-based index into the string of the insertion point.
Source§

fn hide_ime(&self, _webview: WebView)

Request to hide the IME when the editable element is blurred.
Source§

fn show_form_control(&self, _webview: WebView, _form_control: FormControl)

Request that the embedder show UI elements for form controls that are not integrated into page content, such as dropdowns for <select> elements.
Source§

fn play_gamepad_haptic_effect( &self, _webview: WebView, _: usize, _: GamepadHapticEffectType, _: IpcSender<bool>, )

Request to play a haptic effect on a connected gamepad.
Source§

fn stop_gamepad_haptic_effect( &self, _webview: WebView, _: usize, _: IpcSender<bool>, )

Request to stop a haptic effect on a connected gamepad.
Source§

fn load_web_resource(&self, _webview: WebView, _load: WebResourceLoad)

Triggered when this WebView will load a web (HTTP/HTTPS) resource. The load may be intercepted and alternate contents can be loaded by the client by calling WebResourceLoad::intercept. If not handled, the load will continue as normal. Read more
Source§

fn show_notification(&self, _webview: WebView, _notification: Notification)

Request to display a notification.

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsVoidPtr for T

Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> Filterable for T

Source§

fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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 T
where 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> MaybeBoxed<Box<T>> for T

Source§

fn maybe_boxed(self) -> Box<T>

Convert
Source§

impl<T> MaybeBoxed<T> for T

Source§

fn maybe_boxed(self) -> T

Convert
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,