Trait gtk::prelude::FileChooserButtonExt[][src]

pub trait FileChooserButtonExt: 'static {
    fn gets_focus_on_click(&self) -> bool;
fn title(&self) -> Option<GString>;
fn width_chars(&self) -> i32;
fn set_focus_on_click(&self, focus_on_click: bool);
fn set_title(&self, title: &str);
fn set_width_chars(&self, n_chars: i32);
fn connect_file_set<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_width_chars_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

This is supported on non-crate feature v3_20 only.
This is supported on non-crate feature v3_20 only.

Implementors