pub trait ComboBoxTextExt: 'static {
    // Required methods
    fn append(&self, id: Option<&str>, text: &str);
    fn append_text(&self, text: &str);
    fn active_text(&self) -> Option<GString>;
    fn insert(&self, position: i32, id: Option<&str>, text: &str);
    fn insert_text(&self, position: i32, text: &str);
    fn prepend(&self, id: Option<&str>, text: &str);
    fn prepend_text(&self, text: &str);
    fn remove(&self, position: i32);
    fn remove_all(&self);
}

Required Methods§

source

fn append(&self, id: Option<&str>, text: &str)

source

fn append_text(&self, text: &str)

source

fn active_text(&self) -> Option<GString>

source

fn insert(&self, position: i32, id: Option<&str>, text: &str)

source

fn insert_text(&self, position: i32, text: &str)

source

fn prepend(&self, id: Option<&str>, text: &str)

source

fn prepend_text(&self, text: &str)

source

fn remove(&self, position: i32)

source

fn remove_all(&self)

Implementors§