pub trait AdwApplicationWindowExt: 'static {
    // Required methods
    fn content(&self) -> Option<Widget>;
    fn set_content(&self, content: Option<&impl IsA<Widget>>);
    fn connect_content_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn content(&self) -> Option<Widget>

source

fn set_content(&self, content: Option<&impl IsA<Widget>>)

source

fn connect_content_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§