[][src]Trait webkit2gtk_webextension::DOMHTMLDocumentExt

pub trait DOMHTMLDocumentExt: 'static {
    fn capture_events(&self);
fn clear(&self);
fn close(&self);
fn get_alink_color(&self) -> Option<GString>;
fn get_bg_color(&self) -> Option<GString>;
fn get_compat_mode(&self) -> Option<GString>;
fn get_design_mode(&self) -> Option<GString>;
fn get_dir(&self) -> Option<GString>;
fn get_embeds(&self) -> Option<DOMHTMLCollection>;
fn get_fg_color(&self) -> Option<GString>;
fn get_height(&self) -> c_long;
fn get_link_color(&self) -> Option<GString>;
fn get_plugins(&self) -> Option<DOMHTMLCollection>;
fn get_scripts(&self) -> Option<DOMHTMLCollection>;
fn get_vlink_color(&self) -> Option<GString>;
fn get_width(&self) -> c_long;
fn release_events(&self);
fn set_alink_color(&self, value: &str);
fn set_bg_color(&self, value: &str);
fn set_design_mode(&self, value: &str);
fn set_dir(&self, value: &str);
fn set_fg_color(&self, value: &str);
fn set_link_color(&self, value: &str);
fn set_vlink_color(&self, value: &str);
fn connect_property_alink_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_bg_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_dir_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_fg_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_height_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_link_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_vlink_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn capture_events(&self)

fn clear(&self)

fn close(&self)

fn get_bg_color(&self) -> Option<GString>

fn get_compat_mode(&self) -> Option<GString>

fn get_design_mode(&self) -> Option<GString>

fn get_dir(&self) -> Option<GString>

fn get_embeds(&self) -> Option<DOMHTMLCollection>

fn get_fg_color(&self) -> Option<GString>

fn get_height(&self) -> c_long

fn get_plugins(&self) -> Option<DOMHTMLCollection>

fn get_scripts(&self) -> Option<DOMHTMLCollection>

fn get_width(&self) -> c_long

fn release_events(&self)

fn set_bg_color(&self, value: &str)

fn set_design_mode(&self, value: &str)

fn set_dir(&self, value: &str)

fn set_fg_color(&self, value: &str)

fn connect_property_bg_color_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_dir_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_fg_color_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_height_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_width_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<DOMHTMLDocument>> DOMHTMLDocumentExt for O[src]

Loading content...