pub trait ComboBoxImpl: ComboBoxImplExt + WidgetImpl {
    // Provided methods
    fn activate(&self, combo_box: &Self::Type) { ... }
    fn changed(&self, combo_box: &Self::Type) { ... }
    fn format_entry_text(
        &self,
        combo_box: &Self::Type,
        path: &str
    ) -> Option<GString> { ... }
}

Provided Methods§

source

fn activate(&self, combo_box: &Self::Type)

source

fn changed(&self, combo_box: &Self::Type)

source

fn format_entry_text( &self, combo_box: &Self::Type, path: &str ) -> Option<GString>

Implementors§