Trait gtk::prelude::CellRendererComboExt[][src]

pub trait CellRendererComboExt: 'static {
    fn has_entry(&self) -> bool;
fn set_has_entry(&self, has_entry: bool);
fn model(&self) -> Option<TreeModel>;
fn set_model<P: IsA<TreeModel>>(&self, model: Option<&P>);
fn text_column(&self) -> i32;
fn set_text_column(&self, text_column: i32);
fn connect_changed<F: Fn(&Self, TreePath, &TreeIter) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_has_entry_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_model_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_text_column_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn has_entry(&self) -> bool

fn set_has_entry(&self, has_entry: bool)

fn connect_has_entry_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Implementors