Trait gtk::FileChooserNativeExt[][src]

pub trait FileChooserNativeExt: 'static {
    fn get_accept_label(&self) -> Option<GString>;
fn get_cancel_label(&self) -> Option<GString>;
fn set_accept_label<'a, P: Into<Option<&'a str>>>(&self, accept_label: P);
fn set_cancel_label<'a, P: Into<Option<&'a str>>>(&self, cancel_label: P);
fn get_property_accept_label(&self) -> Option<GString>;
fn set_property_accept_label<'a, P: Into<Option<&'a str>>>(
        &self,
        accept_label: P
    );
fn get_property_cancel_label(&self) -> Option<GString>;
fn set_property_cancel_label<'a, P: Into<Option<&'a str>>>(
        &self,
        cancel_label: P
    );
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

fn get_accept_label(&self) -> Option<GString>[src]

fn get_cancel_label(&self) -> Option<GString>[src]

fn set_accept_label<'a, P: Into<Option<&'a str>>>(&self, accept_label: P)[src]

fn set_cancel_label<'a, P: Into<Option<&'a str>>>(&self, cancel_label: P)[src]

fn get_property_accept_label(&self) -> Option<GString>[src]

fn set_property_accept_label<'a, P: Into<Option<&'a str>>>(
    &self,
    accept_label: P
)
[src]

fn get_property_cancel_label(&self) -> Option<GString>[src]

fn set_property_cancel_label<'a, P: Into<Option<&'a str>>>(
    &self,
    cancel_label: P
)
[src]

fn connect_property_accept_label_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_cancel_label_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<FileChooserNative>> FileChooserNativeExt for O[src]

Loading content...