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

Provided methods

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

Implementors