pub trait MountOperationExt: 'static {
    fn get_parent(&self) -> Option<Window>;
    fn get_screen(&self) -> Option<Screen>;
    fn is_showing(&self) -> bool;
    fn set_parent<P: IsA<Window>>(&self, parent: Option<&P>);
    fn set_screen(&self, screen: &Screen);
    fn get_property_is_showing(&self) -> bool;
    fn connect_property_is_showing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_parent_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_screen_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors