Trait webkit2gtk_webextension::prelude::WebEditorExt
source · [−]pub trait WebEditorExt: 'static {
fn page(&self) -> Option<WebPage>;
fn connect_selection_changed<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Available on crate feature
v2_10
only.Expand description
Required Methods
sourcefn page(&self) -> Option<WebPage>
fn page(&self) -> Option<WebPage>
Gets the WebPage
that is associated with the WebEditor
that can
be used to access the DOMDocument
currently loaded into it.
Returns
the associated WebPage
sourcefn connect_selection_changed<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
fn connect_selection_changed<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
This signal is emitted for every selection change inside a WebPage
as well as for every caret position change as the caret is a collapsed
selection.