pub trait ComboBoxImplExt: ObjectSubclass {
    // Required methods
    fn parent_activate(&self, combo_box: &Self::Type);
    fn parent_changed(&self, combo_box: &Self::Type);
    fn parent_format_entry_text(
        &self,
        combo_box: &Self::Type,
        path: &str
    ) -> Option<GString>;
}

Required Methods§

source

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

source

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

source

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

Implementors§