Skip to content
class CenterBox (start_children: Widget | Iterable[Widget] | None = None, center_children: Widget | Iterable[Widget] | None = None, end_children: Widget | Iterable[Widget] | None = None, spacing: int = 0, orientation: Literal['v', 'vertical', 'h', 'horizontal'] | Orientation = Gtk.Orientation.HORIZONTAL, name: str | None = None, visible: bool = True, all_visible: bool = False, style: str | None = None, style_classes: Iterable[str] | str | None = None, tooltip_text: str | None = None, tooltip_markup: str | None = None, h_align: Literal['fill', 'start', 'end', 'center', 'baseline'] | Align | None = None, v_align: Literal['fill', 'start', 'end', 'center', 'baseline'] | Align | None = None, h_expand: bool = False, v_expand: bool = False, size: Iterable[int] | int | None = None, **kwargs)
Bases: Box
property start_children list[Widget]
property center_children list[Widget]
property end_children list[Widget]
def add_start (widget: Widget)
def add_center (widget: Widget)
def add_end (widget: Widget)
def remove_start (widget: Widget)
def remove_center (widget: Widget)
def remove_end (widget: Widget)