pub trait MountOperationExt: 'static {
    // Required methods
    fn display(&self) -> Display;
    fn parent(&self) -> Option<Window>;
    fn is_showing(&self) -> bool;
    fn set_display(&self, display: &impl IsA<Display>);
    fn set_parent(&self, parent: Option<&impl IsA<Window>>);
    fn connect_display_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_is_showing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_parent_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn display(&self) -> Display

source

fn parent(&self) -> Option<Window>

source

fn is_showing(&self) -> bool

source

fn set_display(&self, display: &impl IsA<Display>)

source

fn set_parent(&self, parent: Option<&impl IsA<Window>>)

source

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

source

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

source

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

Implementors§