Trait gtk4::prelude::GtkMountOperationExt

source ·
pub trait GtkMountOperationExt: IsA<MountOperation> + Sealed + 'static {
    // Provided 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 { ... }
}

Provided 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

Object Safety§

This trait is not object safe.

Implementors§