pub trait GtkMountOperationExt: IsA<MountOperation> + Sealed + 'static {
    // Provided methods
    fn parent(&self) -> Option<Window> { ... }
    fn screen(&self) -> Option<Screen> { ... }
    fn is_showing(&self) -> bool { ... }
    fn set_parent(&self, parent: Option<&impl IsA<Window>>) { ... }
    fn set_screen(&self, screen: &Screen) { ... }
    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 { ... }
    fn connect_screen_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

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

source

fn screen(&self) -> Option<Screen>

source

fn is_showing(&self) -> bool

source

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

source

fn set_screen(&self, screen: &Screen)

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

source

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

Implementors§