Trait webkit2gtk::WindowPropertiesExt[][src]

pub trait WindowPropertiesExt {
    fn get_fullscreen(&self) -> bool;
fn get_geometry(&self) -> Rectangle;
fn get_locationbar_visible(&self) -> bool;
fn get_menubar_visible(&self) -> bool;
fn get_resizable(&self) -> bool;
fn get_scrollbars_visible(&self) -> bool;
fn get_statusbar_visible(&self) -> bool;
fn get_toolbar_visible(&self) -> bool;
fn connect_property_fullscreen_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_geometry_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_locationbar_visible_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_menubar_visible_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_resizable_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_scrollbars_visible_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_statusbar_visible_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_toolbar_visible_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors