simvx.core.ui.toolbar

Toolbar — horizontal button strip with toggle/radio group support.

Module Contents

Classes

ToolbarButton

Button that can toggle on/off and participate in radio groups.

Toolbar

Horizontal toolbar with buttons, separators, and a background bar.

Data

API

simvx.core.ui.toolbar.__all__

[‘Toolbar’, ‘ToolbarButton’]

class simvx.core.ui.toolbar.ToolbarButton(text: str = 'Button', toggle_mode: bool = False, group: str = '', on_press=None, **kwargs)

Bases: simvx.core.ui.widgets.Button

Button that can toggle on/off and participate in radio groups.

When toggle_mode is True, the button stays pressed after clicking. When group is set, clicking deselects other ToolbarButtons in the same group (radio behaviour).

Example: btn = ToolbarButton(“Move”, toggle=True, group=”tools”) btn.toggled.connect(lambda active: print(f”active={active}”))

Initialization

active_bg_color: tuple | None

None

draw(renderer)
text

‘Property(…)’

font_size

‘Property(…)’

bg_color

‘ThemeColour(…)’

hover_color

‘ThemeColour(…)’

pressed_color

‘ThemeColour(…)’

text_color

‘ThemeColour(…)’

border_color

‘ThemeColour(…)’

border_width

‘Property(…)’

size_x

‘Property(…)’

size_y

‘Property(…)’

property size: simvx.core.math.types.Vec2
get_theme() simvx.core.ui.core.Theme
get_rect() tuple[float, float, float, float]
get_global_rect() tuple[float, float, float, float]
is_point_inside(point) bool
set_anchor_preset(preset: simvx.core.ui.core.AnchorPreset)
set_focus()
grab_focus()
release_focus()
has_focus() bool
focus_next_control()
focus_previous_control()
grab_mouse()
release_mouse()
set_drag_preview(control: simvx.core.ui.core.Control)
draw_popup(renderer)
is_popup_point_inside(point) bool
popup_input(event)
dismiss_popup()
z_index

‘Property(…)’

z_as_relative

‘Property(…)’

property absolute_z_index: int
property position: simvx.core.math.types.Vec2
property rotation: float
property rotation_degrees: float
property scale: simvx.core.math.types.Vec2
property global_position: simvx.core.math.types.Vec2
property global_rotation: float
property global_scale: simvx.core.math.types.Vec2
property forward: simvx.core.math.types.Vec2
property right: simvx.core.math.types.Vec2
translate(offset: tuple[float, float] | numpy.ndarray)
rotate(radians: float)
rotate_deg(degrees: float)
look_at(target: tuple[float, float] | numpy.ndarray)
transform_points(points: list[simvx.core.math.types.Vec2]) list[simvx.core.math.types.Vec2]
draw_polygon(renderer, points: list[simvx.core.math.types.Vec2], closed=True, color=None)
wrap_screen(margin: float = 20)
script_error_raised

‘Signal(…)’

classmethod __init_subclass__(**kwargs)
property name: str
property process_mode: simvx.core.descriptors.ProcessMode
reset_error() None
add_child(node: simvx.core.node.Node) simvx.core.node.Node
remove_child(node: simvx.core.node.Node)
reparent(new_parent: simvx.core.node.Node)
get_node(path: str) simvx.core.node.Node
find_child(name: str, recursive: bool = False) simvx.core.node.Node | None
find(node_type: type) simvx.core.node.Node | None
find_all(node_type: type, recursive: bool = True) list
property path: str
add_to_group(group: str)
remove_from_group(group: str)
is_in_group(group: str) bool
ready() None
enter_tree() None
exit_tree() None
process(dt: float) None
physics_process(dt: float) None
input_event(event: simvx.core.events.InputEvent) None
input(event: simvx.core.events.TreeInputEvent) None
unhandled_input(event: simvx.core.events.TreeInputEvent) None
start_coroutine(gen: simvx.core.descriptors.Coroutine) simvx.core.descriptors.CoroutineHandle
stop_coroutine(gen_or_handle)
destroy()
queue_free

None

property tree: simvx.core.scene_tree.SceneTree
get_tree() simvx.core.scene_tree.SceneTree
__getitem__(key: str)
classmethod get_properties() dict[str, simvx.core.descriptors.Property]
get_settings

None

__repr__()
class simvx.core.ui.toolbar.Toolbar(**kwargs)

Bases: simvx.core.ui.containers.HBoxContainer

Horizontal toolbar with buttons, separators, and a background bar.

Example: toolbar = Toolbar() toolbar.add_button(“File”) toolbar.add_separator() toolbar.add_button(“Move”, toggle=True, group=”tools”) toolbar.add_button(“Rotate”, toggle=True, group=”tools”)

Initialization

toolbar_bg

‘ThemeColour(…)’

toolbar_border

‘ThemeColour(…)’

separator_color

‘ThemeColour(…)’

add_button(text: str, icon=None, toggle: bool = False, group: str = '', on_press=None) simvx.core.ui.toolbar.ToolbarButton

Add a toolbar button.

Args: text: Button label text. icon: Reserved for future icon support. toggle: If True, button stays pressed when clicked. group: Radio group name; clicking deselects other buttons in group. on_press: Callback invoked when button is clicked.

Returns: The created ToolbarButton instance.

add_separator()

Add a thin vertical separator line between buttons.

draw(renderer)
alignment

‘Property(…)’

separation

‘Property(…)’

ready()
add_child(node)
remove_child(node)
mark_layout_dirty()
process(dt: float)
size_x

‘Property(…)’

size_y

‘Property(…)’

property size: simvx.core.math.types.Vec2
get_theme() simvx.core.ui.core.Theme
get_rect() tuple[float, float, float, float]
get_global_rect() tuple[float, float, float, float]
is_point_inside(point) bool
set_anchor_preset(preset: simvx.core.ui.core.AnchorPreset)
set_focus()
grab_focus()
release_focus()
has_focus() bool
focus_next_control()
focus_previous_control()
grab_mouse()
release_mouse()
set_drag_preview(control: simvx.core.ui.core.Control)
draw_popup(renderer)
is_popup_point_inside(point) bool
popup_input(event)
dismiss_popup()
z_index

‘Property(…)’

z_as_relative

‘Property(…)’

property absolute_z_index: int
property position: simvx.core.math.types.Vec2
property rotation: float
property rotation_degrees: float
property scale: simvx.core.math.types.Vec2
property global_position: simvx.core.math.types.Vec2
property global_rotation: float
property global_scale: simvx.core.math.types.Vec2
property forward: simvx.core.math.types.Vec2
property right: simvx.core.math.types.Vec2
translate(offset: tuple[float, float] | numpy.ndarray)
rotate(radians: float)
rotate_deg(degrees: float)
look_at(target: tuple[float, float] | numpy.ndarray)
transform_points(points: list[simvx.core.math.types.Vec2]) list[simvx.core.math.types.Vec2]
draw_polygon(renderer, points: list[simvx.core.math.types.Vec2], closed=True, color=None)
wrap_screen(margin: float = 20)
script_error_raised

‘Signal(…)’

classmethod __init_subclass__(**kwargs)
property name: str
property process_mode: simvx.core.descriptors.ProcessMode
reset_error() None
reparent(new_parent: simvx.core.node.Node)
get_node(path: str) simvx.core.node.Node
find_child(name: str, recursive: bool = False) simvx.core.node.Node | None
find(node_type: type) simvx.core.node.Node | None
find_all(node_type: type, recursive: bool = True) list
property path: str
add_to_group(group: str)
remove_from_group(group: str)
is_in_group(group: str) bool
enter_tree() None
exit_tree() None
physics_process(dt: float) None
input_event(event: simvx.core.events.InputEvent) None
input(event: simvx.core.events.TreeInputEvent) None
unhandled_input(event: simvx.core.events.TreeInputEvent) None
start_coroutine(gen: simvx.core.descriptors.Coroutine) simvx.core.descriptors.CoroutineHandle
stop_coroutine(gen_or_handle)
destroy()
queue_free

None

property tree: simvx.core.scene_tree.SceneTree
get_tree() simvx.core.scene_tree.SceneTree
__getitem__(key: str)
classmethod get_properties() dict[str, simvx.core.descriptors.Property]
get_settings

None

__repr__()