pub trait AppChooserDialogExt: 'static {
    // Required methods
    fn heading(&self) -> Option<GString>;
    fn widget(&self) -> Widget;
    fn set_heading(&self, heading: &str);
    fn gfile(&self) -> Option<File>;
    fn connect_heading_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn heading(&self) -> Option<GString>

source

fn widget(&self) -> Widget

source

fn set_heading(&self, heading: &str)

source

fn gfile(&self) -> Option<File>

source

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

Implementors§