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;
}
Expand description

Trait containing all MountOperation methods.

Implementors

MountOperation

Required Methods§

source

fn display(&self) -> Display

Gets the display on which windows of the MountOperation will be shown.

Returns

the display on which windows of @self are shown

source

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

Gets the transient parent used by the MountOperation.

Returns

the transient parent for windows shown by @self

source

fn is_showing(&self) -> bool

Returns whether the MountOperation is currently displaying a window.

Returns

true if @self is currently displaying a window

source

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

Sets the display to show windows of the MountOperation on.

display

a gdk::Display

source

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

Sets the transient parent for windows shown by the MountOperation.

parent

transient parent of the 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§