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

Trait containing all WebEditor methods.

Implementors

WebEditor

Required Methods

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

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.

Implementors