Trait gtk::MountOperationExt
[−]
[src]
pub trait MountOperationExt {
fn get_parent(&self) -> Option<Window>;
fn get_screen(&self) -> Option<Screen>;
fn is_showing(&self) -> bool;
fn set_parent<'a, P: IsA<Window> + 'a, Q: Into<Option<&'a P>>>(
&self,
parent: Q
);
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
fn get_parent(&self) -> Option<Window>
fn get_screen(&self) -> Option<Screen>
fn is_showing(&self) -> bool
fn set_parent<'a, P: IsA<Window> + 'a, Q: Into<Option<&'a P>>>(&self, parent: Q)
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
&self,
f: F
) -> SignalHandlerId
fn connect_property_parent_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_screen_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<MountOperation> + IsA<Object>> MountOperationExt for O