CellAreaBox
Deprecated since version 4.10: List views use widgets for displaying their contents
Superclasses: CellArea
, InitiallyUnowned
, Object
Implemented Interfaces: Buildable
, CellLayout
, Orientable
- Constructors:
CellAreaBox(**properties)
new() -> Gtk.CellArea
Constructors
Methods
- class CellAreaBox
- get_spacing() int
Gets the spacing added between cell renderers.
Deprecated since version 4.10: Please do not use it in newly written code
- pack_end(renderer: CellRenderer, expand: bool, align: bool, fixed: bool) None
Adds
renderer
tobox
, packed with reference to the end ofbox
.The
renderer
is packed after (away from end of) any otherGtkCellRenderer
packed with reference to the end ofbox
.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
renderer – the
GtkCellRenderer
to addexpand – whether
renderer
should receive extra space when the area receives more than its natural sizealign – whether
renderer
should be aligned in adjacent rowsfixed – whether
renderer
should have the same size in all rows
- pack_start(renderer: CellRenderer, expand: bool, align: bool, fixed: bool) None
Adds
renderer
tobox
, packed with reference to the start ofbox
.The
renderer
is packed after any otherGtkCellRenderer
packed with reference to the start ofbox
.Deprecated since version 4.10: Please do not use it in newly written code
- Parameters:
renderer – the
GtkCellRenderer
to addexpand – whether
renderer
should receive extra space when the area receives more than its natural sizealign – whether
renderer
should be aligned in adjacent rowsfixed – whether
renderer
should have the same size in all rows