[][src]Trait gtk::CellRendererComboExt

pub trait CellRendererComboExt: 'static {
    fn get_property_has_entry(&self) -> bool;
fn set_property_has_entry(&self, has_entry: bool);
fn get_property_model(&self) -> Option<TreeModel>;
fn set_property_model<P: IsA<TreeModel> + SetValueOptional>(
        &self,
        model: Option<&P>
    );
fn get_property_text_column(&self) -> i32;
fn set_property_text_column(&self, text_column: i32);
fn connect_changed<F: Fn(&Self, TreePath, &TreeIter) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_has_entry_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_model_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_text_column_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_property_has_entry(&self) -> bool

fn set_property_has_entry(&self, has_entry: bool)

fn get_property_model(&self) -> Option<TreeModel>

fn set_property_model<P: IsA<TreeModel> + SetValueOptional>(
    &self,
    model: Option<&P>
)

fn get_property_text_column(&self) -> i32

fn set_property_text_column(&self, text_column: i32)

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

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

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

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

Loading content...

Implementors

impl<O: IsA<CellRendererCombo>> CellRendererComboExt for O[src]

Loading content...