pub trait FileChooserNativeExt: 'static {
    fn get_accept_label(&self) -> Option<GString>;
    fn get_cancel_label(&self) -> Option<GString>;
    fn set_accept_label(&self, accept_label: Option<&str>);
    fn set_cancel_label(&self, cancel_label: Option<&str>);
    fn get_property_accept_label(&self) -> Option<GString>;
    fn set_property_accept_label(&self, accept_label: Option<&str>);
    fn get_property_cancel_label(&self) -> Option<GString>;
    fn set_property_cancel_label(&self, cancel_label: Option<&str>);
    fn connect_property_accept_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_cancel_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors