pub trait InvisibleExt: 'static {
    fn set_screen(&self, screen: &Screen);
    fn connect_screen_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all Invisible methods.

Implementors

Invisible

Required Methods

Sets the gdk::Screen where the Invisible object will be displayed.

screen

a gdk::Screen.

Implementors