Trait gtk4::subclass::cell_layout::CellLayoutImplExt
source · [−]pub trait CellLayoutImplExt: ObjectSubclass {
fn parent_add_attribute<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
attribute: &str,
column: i32
);
fn parent_clear_attributes<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R
);
fn parent_cells(&self, cell_layout: &Self::Type) -> Vec<CellRenderer>;
fn parent_set_cell_data_func<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
callback: Option<CellLayoutDataCallback>
);
fn parent_reorder<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
position: i32
);
fn parent_clear(&self, cell_layout: &Self::Type);
fn parent_pack_start<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
expand: bool
);
fn parent_pack_end<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
expand: bool
);
fn parent_area(&self, cell_layout: &Self::Type) -> Option<CellArea>;
}
Required Methods
sourcefn parent_add_attribute<R: IsA<CellRenderer>>(
fn parent_add_attribute<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
attribute: &str,
column: i32
)
sourcefn parent_clear_attributes<R: IsA<CellRenderer>>(
fn parent_clear_attributes<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R
)
source
fn parent_cells(&self, cell_layout: &Self::Type) -> Vec<CellRenderer>
sourcefn parent_set_cell_data_func<R: IsA<CellRenderer>>(
fn parent_set_cell_data_func<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
callback: Option<CellLayoutDataCallback>
)
sourcefn parent_reorder<R: IsA<CellRenderer>>(
fn parent_reorder<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
position: i32
)
source
fn parent_clear(&self, cell_layout: &Self::Type)
sourcefn parent_pack_start<R: IsA<CellRenderer>>(
fn parent_pack_start<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
expand: bool
)
sourcefn parent_pack_end<R: IsA<CellRenderer>>(
fn parent_pack_end<R: IsA<CellRenderer>>(
&self,
cell_layout: &Self::Type,
cell: &R,
expand: bool
)
source