pub trait ComboBoxImpl: ComboBoxImplExt + WidgetImpl {
    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 format_entry_text(&self, combo_box: &Self::Type, path: &str) -> Option<GString>

Implementors