Trait gtk::prelude::ComboBoxTextExt  
                   
                       [−]
                   
               [src]
pub trait ComboBoxTextExt {
    fn append<'a, P: Into<Option<&'a str>>>(&self, id: P, text: &str);
    fn append_text(&self, text: &str);
    fn get_active_text(&self) -> Option<String>;
    fn insert<'a, P: Into<Option<&'a str>>>(
        &self, 
        position: i32, 
        id: P, 
        text: &str
    );
    fn insert_text(&self, position: i32, text: &str);
    fn prepend<'a, P: Into<Option<&'a str>>>(&self, id: P, text: &str);
    fn prepend_text(&self, text: &str);
    fn remove(&self, position: i32);
    fn remove_all(&self);
}
            Required Methods
fn append<'a, P: Into<Option<&'a str>>>(&self, id: P, text: &str)
fn append_text(&self, text: &str)
fn get_active_text(&self) -> Option<String>
fn insert<'a, P: Into<Option<&'a str>>>(&self, position: i32, id: P, text: &str)
fn insert_text(&self, position: i32, text: &str)
fn prepend<'a, P: Into<Option<&'a str>>>(&self, id: P, text: &str)
fn prepend_text(&self, text: &str)
fn remove(&self, position: i32)
fn remove_all(&self)
Implementors
impl<O: IsA<ComboBoxText>> ComboBoxTextExt for O