batgrl.gadgets.tree_view#

A base for creating tree-like views. Tree views are composed of nodes that can be selected and toggled open or closed.

Classes

TreeView(root_node[, size, pos, size_hint, ...])

Base for creating tree-like views.

TreeViewNode([is_leaf, always_release, ...])

A node of a TreeView.

class batgrl.gadgets.tree_view.TreeView(root_node: TreeViewNode, size: Size = (10, 10), pos: Point = (0, 0), size_hint: SizeHint | None = None, pos_hint: PosHint | None = None, is_transparent: bool = False, is_visible: bool = True, is_enabled: bool = True)#

Bases: Gadget

Base for creating tree-like views.

Parameters:
root_nodeTreeViewNode

Root node of tree view.

sizeSize, default: Size(10, 10)

Size of gadget.

posPoint, default: Point(0, 0)

Position of upper-left corner in parent.

size_hintSizeHint | None, default: None

Size as a proportion of parent’s height and width.

pos_hintPosHint | None, default: None

Position as a proportion of parent’s height and width.

is_transparentbool, default: False

Whether gadget is transparent.

is_visiblebool, default: True

Whether gadget is visible. Gadget will still receive input events if not visible.

is_enabledbool, default: True

Whether gadget is enabled. A disabled gadget is not painted and doesn’t receive input events.

Attributes:
root_nodeTreeViewNode

Root node of tree view

sizeSize

Size of gadget.

heightint

Height of gadget.

rowsint

Height of gadget.

widthint

Width of gadget.

columnsint

Width of gadget.

posPoint

Position relative to parent.

topint

y-coordinate of top of gadget.

yint

y-coordinate of top of gadget.

leftint

x-coordinate of left side of gadget.

xint

x-coordinate of left side of gadget.

bottomint

y-coordinate of bottom of gadget.

rightint

x-coordinate of right side of gadget.

centerPoint

Position of center of gadget.

absolute_posPoint

Absolute position on screen.

size_hintSizeHint

Gadget’s size as a proportion of its parent’s size.

pos_hintPosHint

Gadget’s position as a proportion of its parent’s size.

parent: Gadget | None

Parent gadget.

childrenlist[Gadget]

Children gadgets.

is_transparentbool

Whether gadget is transparent.

is_visiblebool

Whether gadget is visible.

is_enabledbool

Whether gadget is enabled.

rootGadget | None

Return the root gadget if connected to gadget tree.

appApp

The running app.

Methods

update_tree_layout()

Update tree layout after a child node is toggled open or closed.

apply_hints()

Apply size and pos hints.

to_local(point)

Convert point in absolute coordinates to local coordinates.

collides_point(point)

Return true if point collides with visible portion of gadget.

collides_gadget(other)

Return true if other is within gadget’s bounding box.

pull_to_front()

Move to end of gadget stack so gadget is drawn last.

walk()

Yield all descendents of this gadget (preorder traversal).

walk_reverse()

Yield all descendents of this gadget (reverse postorder traversal).

ancestors()

Yield all ancestors of this gadget.

add_gadget(gadget)

Add a child gadget.

add_gadgets(*gadgets)

Add multiple child gadgets.

remove_gadget(gadget)

Remove a child gadget.

prolicide()

Recursively remove all children.

destroy()

Remove this gadget and recursively remove all its children.

bind(prop, callback)

Bind callback to a gadget property.

unbind(uid)

Unbind a callback from a gadget property.

tween(…)

Sequentially update gadget properties over time.

on_size()

Update gadget after a resize.

on_transparency()

Update gadget after transparency is enabled/disabled.

on_add()

Update gadget after being added to the gadget tree.

on_remove()

Update gadget after being removed from the gadget tree.

on_key(key_event)

Handle a key press event.

on_mouse(mouse_event)

Handle a mouse event.

on_paste(paste_event)

Handle a paste event.

on_terminal_focus(focus_event)

Handle a focus event.

property absolute_pos: Point | None#

Absolute position on screen.

add_gadget(gadget: Self) None#

Add a child gadget.

Parameters:
gadgetGadget

A gadget to add as a child.

add_gadgets(*gadgets: Self) None#

Add multiple child gadgets.

Parameters:
*gadgetsGadget

Gadgets to add as children. Can also accept a single iterable of gadgets.

ancestors() Iterator[Self]#

Yield all ancestors of this gadget.

Yields:
Gadget

An ancestor of this gadget.

property app#

The running app.

apply_hints() None#

Apply size and pos hints.

This is called automatically when the gadget is added to the gadget tree and when the gadget’s parent’s size changes.

bind(prop: str, callback: Callable[[], None]) int#

Bind callback to a gadget property. When the property is updated, callback is called with no arguments.

Parameters:
propstr

The name of the gadget property.

callbackCallable[[], None]

Callback to bind to property.

Returns:
int

A unique id used to unbind the callback.

property bottom: int#

y-coordinate of bottom of gadget.

property center: Point#

Position of center of gadget.

children: _GadgetList#

The gadget’s children.

collides_gadget(other: Self) bool#

Return true if other is within gadget’s bounding box.

Parameters:
otherGadget

Another gadget.

Returns:
bool

Whether other collides with gadget.

collides_point(point: Point) bool#

Return true if point collides with visible portion of gadget.

Parameters:
pointPoint

A point.

Returns:
bool

Whether point collides with gadget.

property columns: int#

Width of gadget.

destroy() None#

Remove this gadget and recursively remove all its children.

dispatch_key(key_event: KeyEvent) bool | None#

Dispatch a key press event until handled.

A key press event is handled if a handler returns True.

Parameters:
key_eventKeyEvent

The key event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

dispatch_mouse(mouse_event: MouseEvent) bool | None#

Dispatch a mouse event until handled.

A mouse event is handled if a handler returns True.

Parameters:
mouse_eventMouseEvent

The mouse event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

dispatch_paste(paste_event: PasteEvent) bool | None#

Dispatch a paste event until handled.

A paste event is handled if a handler returns True.

Parameters:
paste_eventPasteEvent

The paste event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

dispatch_terminal_focus(focus_event: FocusEvent) bool | None#

Dispatch a focus event until handled.

A focus event is handled if a handler returns True.

Parameters:
focus_eventFocusEvent

The focus event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

property height: int#

Height of gadget.

property is_enabled: bool#

Whether gadget is enabled. A disabled gadget is not painted and doesn’t receive input events.

property is_transparent: bool#

Whether gadget is transparent.

property is_visible: bool#

Whether gadget is visible. Gadget will still receive input events if not visible.

property left: int#

x-coordinate of left side of gadget.

on_add() None#

Update gadget after being added to the gadget tree.

on_key(key_event: KeyEvent) bool | None#

Handle a key press event.

Handled key presses should return True.

Parameters:
key_eventKeyEvent

The key event to handle.

Returns:
bool | None

Whether the key event was handled.

on_mouse(mouse_event: MouseEvent) bool | None#

Handle a mouse event.

Handled mouse events should return True.

Parameters:
mouse_eventMouseEvent

The mouse event to handle.

Returns:
bool | None

Whether the mouse event was handled.

on_paste(paste_event: PasteEvent) bool | None#

Handle a paste event.

Handled paste events should return True.

Parameters:
paste_eventPasteEvent

The paste event to handle.

Returns:
bool | None

Whether the paste event was handled.

on_remove() None#

Update gadget after being removed from the gadget tree.

on_size() None#

Update gadget after a resize.

on_terminal_focus(focus_event: FocusEvent) bool | None#

Handle a focus event.

Handled focus events should return True.

Parameters:
focus_eventFocusEvent

The focus event to handle.

Returns:
bool | None

Whether the focus event was handled.

on_transparency() None#

Update gadget after transparency is enabled/disabled.

parent: Gadget | None#

The gadget’s parent.

property pos: Point#

Position relative to parent.

property pos_hint: PosHint#

Gadget’s position as a proportion of its parent’s size.

prolicide() None#

Recursively remove all children.

pull_to_front() None#

Move gadget to end of gadget stack so that it is drawn last.

remove_gadget(gadget: Self) None#

Remove a child gadget.

Parameters:
gadgetGadget

The gadget to remove from children.

property right: int#

x-coordinate of right side of gadget.

property root: Self | None#

Return the root gadget if connected to gadget tree.

property rows: int#

Height of gadget.

property size: Size#

Size of gadget.

property size_hint: SizeHint#

Gadget’s size as a proportion of its parent’s size.

to_local(point: Point) Point#

Convert point in absolute coordinates to local coordinates.

Parameters:
pointPoint

Point in absolute (screen) coordinates.

Returns:
Point

The point in local coordinates.

property top: int#

y-coordinate of top of gadget.

async tween(*, duration: float = 1.0, easing: Literal['linear', 'in_quad', 'out_quad', 'in_out_quad', 'in_cubic', 'out_cubic', 'in_out_cubic', 'in_quart', 'out_quart', 'in_out_quart', 'in_quint', 'out_quint', 'in_out_quint', 'in_sine', 'out_sine', 'in_out_sine', 'in_exp', 'out_exp', 'in_out_exp', 'in_circ', 'out_circ', 'in_out_circ', 'in_elastic', 'out_elastic', 'in_out_elastic', 'in_back', 'out_back', 'in_out_back', 'in_bounce', 'out_bounce', 'in_out_bounce'] = 'linear', on_start: Callable[[], None] | None = None, on_progress: Callable[[float], None] | None = None, on_complete: Callable[[], None] | None = None, **properties: Real | ndarray[Any, dtype[number]] | Sequence[Real] | PosHint | SizeHint) None#

Coroutine that sequentially updates gadget properties over a duration (in seconds).

Parameters:
durationfloat, default: 1.0

The duration of the tween in seconds.

easingEasing, default: “linear”

The easing used for tweening.

on_startCallable[[], None] | None, default: None

Called when tween starts.

on_progressCallable[[float], None] | None, default: None

Called as tween updates with current progress.

on_completeCallable[[], None] | None, default: None

Called when tween completes.

**propertiesReal | NDArray[np.number] | Sequence[Real] | PosHint | SizeHint

Gadget properties’ target values. E.g., to smoothly tween a gadget’s position to (5, 10) over 2.5 seconds, specify the pos property as a keyword-argument: await gadget.tween(pos=(5, 10), duration=2.5, easing="out_bounce")

Warning

Running several tweens on the same properties concurrently will probably result in unexpected behavior.

Notes

Tweened values will be coerced to match the type of the initial value of their corresponding property.

Non-numeric values will be set immediately.

unbind(uid: int) None#

Unbind a callback from a gadget property.

Parameters:
uidint

Unique id returned by the bind() method.

update_tree_layout() None#

Update tree layout after a child node is opened or closed.

walk() Iterator[Self]#

Yield all descendents of this gadget (preorder traversal).

Yields:
Gadget

A descendent of this gadget.

walk_reverse() Iterator[Self]#

Yield all descendents of this gadget (reverse postorder traversal).

Yields:
Gadget

A descendent of this gadget.

property width: int#

Width of gadget.

property x: int#

x-coordinate of left side of gadget.

property y: int#

y-coordinate of top of gadget.

class batgrl.gadgets.tree_view.TreeViewNode(is_leaf=True, always_release: bool = False, default_cell: ndarray[Any, dtype[dtype(['char', '<U1', 'bold', '?', 'italic', '?', 'underline', '?', 'strikethrough', '?', 'overline', '?', 'reverse', '?', 'fg_color', 'u1', 3, 'bg_color', 'u1', 3])]] | str = ' ', alpha: float = 0.0, size: Size = (10, 10), pos: Point = (0, 0), size_hint: SizeHint | None = None, pos_hint: PosHint | None = None, is_transparent: bool = False, is_visible: bool = True, is_enabled: bool = True)#

Bases: Themable, ButtonBehavior, Text

A node of a TreeView.

Parameters:
is_leafbool, default: True

Whether node is a leaf node.

always_releasebool, default: False

Whether a mouse up event outside the button will trigger it.

default_cellNDArray[Cell] | str, default: “ “

Default cell of text canvas.

alphafloat, default: 0.0

Transparency of gadget.

sizeSize, default: Size(10, 10)

Size of gadget.

posPoint, default: Point(0, 0)

Position of upper-left corner in parent.

size_hintSizeHint | None, default: None

Size as a proportion of parent’s height and width.

pos_hintPosHint | None, default: None

Position as a proportion of parent’s height and width.

is_transparentbool, default: False

Whether gadget is transparent.

is_visiblebool, default: True

Whether gadget is visible. Gadget will still receive input events if not visible.

is_enabledbool, default: True

Whether gadget is enabled. A disabled gadget is not painted and doesn’t receive input events.

Attributes:
root_nodeTreeViewNode

Root node of tree.

always_releasebool

Whether a mouse up event outside the button will trigger it.

stateButtonState

Current button state. One of NORMAL, HOVER, DOWN.

canvasNDArray[Cell]

The array of characters for the gadget.

default_cellNDArray[Cell]

Default character for text canvas.

default_fg_colorColor

Foreground color of default character.

default_bg_colorColor

Background color of default character.

alphafloat

Transparency of gadget.

sizeSize

Size of gadget.

heightint

Height of gadget.

rowsint

Height of gadget.

widthint

Width of gadget.

columnsint

Width of gadget.

posPoint

Position relative to parent.

topint

y-coordinate of top of gadget.

yint

y-coordinate of top of gadget.

leftint

x-coordinate of left side of gadget.

xint

x-coordinate of left side of gadget.

bottomint

y-coordinate of bottom of gadget.

rightint

x-coordinate of right side of gadget.

centerPoint

Position of center of gadget.

absolute_posPoint

Absolute position on screen.

size_hintSizeHint

Gadget’s size as a proportion of its parent’s size.

pos_hintPosHint

Gadget’s position as a proportion of its parent’s size.

parent: Gadget | None

Parent gadget.

childrenlist[Gadget]

Children gadgets.

is_transparentbool

Whether gadget is transparent.

is_visiblebool

Whether gadget is visible.

is_enabledbool

Whether gadget is enabled.

rootGadget | None

Return the root gadget if connected to gadget tree.

appApp

The running app.

Methods

iter_open_nodes()

Yield all open descendent nodes.

add_node(node: TreeViewNode)

Add a child node.

remove_node(node: TreeViewNode)

Remove a child node.

toggle()

Toggle node open or closed.

select()

Select this node.

unselect()

Unselect this node.

update_theme()

Paint the gadget with current theme.

update_normal()

Paint the normal state.

update_hover()

Paint the hover state.

update_down()

Paint the down state.

on_release()

Triggered when a button is released.

add_border(style=”light”, …)

Add a border to the gadget.

add_syntax_highlighting(lexer, style)

Add syntax highlighting to current text in canvas.

add_str(str, pos, …)

Add a single line of text to the canvas.

set_text(text, …)

Resize gadget to fit text, erase canvas, then fill canvas with text.

clear()

Fill canvas with default cell.

shift(n=1)

Shift content in canvas up (or down in case of negative n).

apply_hints()

Apply size and pos hints.

to_local(point)

Convert point in absolute coordinates to local coordinates.

collides_point(point)

Return true if point collides with visible portion of gadget.

collides_gadget(other)

Return true if other is within gadget’s bounding box.

pull_to_front()

Move to end of gadget stack so gadget is drawn last.

walk()

Yield all descendents of this gadget (preorder traversal).

walk_reverse()

Yield all descendents of this gadget (reverse postorder traversal).

ancestors()

Yield all ancestors of this gadget.

add_gadget(gadget)

Add a child gadget.

add_gadgets(*gadgets)

Add multiple child gadgets.

remove_gadget(gadget)

Remove a child gadget.

prolicide()

Recursively remove all children.

destroy()

Remove this gadget and recursively remove all its children.

bind(prop, callback)

Bind callback to a gadget property.

unbind(uid)

Unbind a callback from a gadget property.

tween(…)

Sequentially update gadget properties over time.

on_size()

Update gadget after a resize.

on_transparency()

Update gadget after transparency is enabled/disabled.

on_add()

Update gadget after being added to the gadget tree.

on_remove()

Update gadget after being removed from the gadget tree.

on_key(key_event)

Handle a key press event.

on_mouse(mouse_event)

Handle a mouse event.

on_paste(paste_event)

Handle a paste event.

on_terminal_focus(focus_event)

Handle a focus event.

property absolute_pos: Point | None#

Absolute position on screen.

add_border(style: Literal['light', 'heavy', 'double', 'curved', 'ascii', 'outer', 'inner', 'thick', 'dashed', 'dashed_2', 'dashed_3', 'heavy_dashed', 'heavy_dashed_2', 'heavy_dashed_3', 'near', 'mcgugan_tall', 'mcgugan_wide'] = 'light', bold: bool = False, fg_color: Color | None = None, bg_color: Color | None = None)#

Add a text border (gadget height and width must be at least 2).

Parameters:
styleBorder, default: “light”

Style of border. Default style uses light box-drawing characters.

boldbool, default: False

Whether the border is bold.

fg_colorColor | None, default: None

Foreground color of border if not None.

bg_colorColor | None, default: None

Background color of border if not None.

add_gadget(gadget: Self) None#

Add a child gadget.

Parameters:
gadgetGadget

A gadget to add as a child.

add_gadgets(*gadgets: Self) None#

Add multiple child gadgets.

Parameters:
*gadgetsGadget

Gadgets to add as children. Can also accept a single iterable of gadgets.

add_node(node: Self)#

Add a child node.

Parameters:
nodeTreeViewNode

The node to add.

add_str(str: str, *, pos: Point = (0, 0), fg_color: Color | None = None, bg_color: Color | None = None, markdown: bool = False, truncate_str: bool = False)#

Add a single line of text to the canvas at position pos.

If markdown is true, text can be styled using batgrl markdown. The syntax is: - italic: *this is italic text* - bold: **this is bold text** - strikethrough: ~~this is strikethrough text~~ - underlined: __this is underlined text__ - overlined: ^^this is overlined text^^

Parameters:
strstr

A single line of text to add to canvas.

posPoint, default: Point(0, 0)

Position of first character of string. Negative coordinates position from the right or bottom of canvas (like negative indices).

fg_colorColor | None, default: None

Foreground color of text.

bg_colorColor | None, default: None

Background color of text.

markdownbool, default: False

Whether to parse text for batgrl markdown.

truncate_strbool, default: False

If false, an IndexError is raised if the text would not fit on canvas.

See also

text_tools.add_text

Add multiple lines of text to a view of a canvas.

add_syntax_highlighting(lexer: ~pygments.lexer.Lexer | None = None, style: ~pygments.style.Style = <class 'batgrl.colors.colors.Neptune'>)#

Add syntax highlighting to current text in canvas.

Parameters:
lexerpygments.lexer.Lexer | None, default: None

Lexer for text. If not given, the lexer is guessed.

stylepygments.style.Style, default: Neptune

A pygments style to use for syntax highlighting.

property alpha: float#

Transparency of gadget.

ancestors() Iterator[Self]#

Yield all ancestors of this gadget.

Yields:
Gadget

An ancestor of this gadget.

property app#

The running app.

apply_hints() None#

Apply size and pos hints.

This is called automatically when the gadget is added to the gadget tree and when the gadget’s parent’s size changes.

bind(prop: str, callback: Callable[[], None]) int#

Bind callback to a gadget property. When the property is updated, callback is called with no arguments.

Parameters:
propstr

The name of the gadget property.

callbackCallable[[], None]

Callback to bind to property.

Returns:
int

A unique id used to unbind the callback.

property bottom: int#

y-coordinate of bottom of gadget.

property button_state: Literal['normal', 'hover', 'down', 'disallowed']#

Current button state.

property center: Point#

Position of center of gadget.

children: _GadgetList#

The gadget’s children.

clear()#

Fill canvas with default cell.

collides_gadget(other: Self) bool#

Return true if other is within gadget’s bounding box.

Parameters:
otherGadget

Another gadget.

Returns:
bool

Whether other collides with gadget.

collides_point(point: Point) bool#

Return true if point collides with visible portion of gadget.

Parameters:
pointPoint

A point.

Returns:
bool

Whether point collides with gadget.

color_theme: _ColorTheme#
property columns: int#

Width of gadget.

property default_bg_color: Color#

Background color of default character.

property default_cell: ndarray[Any, dtype[dtype(['char', '<U1', 'bold', '?', 'italic', '?', 'underline', '?', 'strikethrough', '?', 'overline', '?', 'reverse', '?', 'fg_color', 'u1', 3, 'bg_color', 'u1', 3])]]#

Default character for text canvas.

property default_fg_color: Color#

Foreground color of default character.

destroy() None#

Remove this gadget and recursively remove all its children.

dispatch_key(key_event: KeyEvent) bool | None#

Dispatch a key press event until handled.

A key press event is handled if a handler returns True.

Parameters:
key_eventKeyEvent

The key event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

dispatch_mouse(mouse_event: MouseEvent) bool | None#

Dispatch a mouse event until handled.

A mouse event is handled if a handler returns True.

Parameters:
mouse_eventMouseEvent

The mouse event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

dispatch_paste(paste_event: PasteEvent) bool | None#

Dispatch a paste event until handled.

A paste event is handled if a handler returns True.

Parameters:
paste_eventPasteEvent

The paste event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

dispatch_terminal_focus(focus_event: FocusEvent) bool | None#

Dispatch a focus event until handled.

A focus event is handled if a handler returns True.

Parameters:
focus_eventFocusEvent

The focus event to dispatch.

Returns:
bool | None

Whether the dispatch was handled.

property height: int#

Height of gadget.

property is_enabled: bool#

Whether gadget is enabled. A disabled gadget is not painted and doesn’t receive input events.

property is_transparent: bool#

Whether gadget is transparent.

property is_visible: bool#

Whether gadget is visible. Gadget will still receive input events if not visible.

iter_open_nodes() Iterator[Self]#

Yield all open descendent nodes.

Yields:
TreeViewNode

A descendent open node.

property left: int#

x-coordinate of left side of gadget.

on_add()#

Update theme.

on_key(key_event: KeyEvent) bool | None#

Handle a key press event.

Handled key presses should return True.

Parameters:
key_eventKeyEvent

The key event to handle.

Returns:
bool | None

Whether the key event was handled.

on_mouse(mouse_event) bool | None#

Determine button state from mouse event.

on_paste(paste_event: PasteEvent) bool | None#

Handle a paste event.

Handled paste events should return True.

Parameters:
paste_eventPasteEvent

The paste event to handle.

Returns:
bool | None

Whether the paste event was handled.

on_release()#

Select and toggle node on release.

on_remove() None#

Update gadget after being removed from the gadget tree.

on_size()#

Repaint tree on resize.

on_terminal_focus(focus_event: FocusEvent) bool | None#

Handle a focus event.

Handled focus events should return True.

Parameters:
focus_eventFocusEvent

The focus event to handle.

Returns:
bool | None

Whether the focus event was handled.

on_transparency() None#

Update gadget after transparency is enabled/disabled.

parent: Gadget | None#

The gadget’s parent.

property pos: Point#

Position relative to parent.

property pos_hint: PosHint#

Gadget’s position as a proportion of its parent’s size.

prolicide() None#

Recursively remove all children.

pull_to_front() None#

Move gadget to end of gadget stack so that it is drawn last.

remove_gadget(gadget: Self) None#

Remove a child gadget.

Parameters:
gadgetGadget

The gadget to remove from children.

remove_node(node: Self)#

Remove a child node.

Parameters:
nodeTreeViewNode

The node to remove.

property right: int#

x-coordinate of right side of gadget.

property root: Self | None#

Return the root gadget if connected to gadget tree.

property root_node: Self#

Root node of tree.

property rows: int#

Height of gadget.

select()#

Select node.

set_text(text: str, *, fg_color: Color | None = None, bg_color: Color | None = None, markdown: bool = False)#

Resize gadget to fit text, erase canvas, then fill canvas with text.

If markdown is true, text can be styled using batgrl markdown. The syntax is: - italic: *this is italic text* - bold: **this is bold text** - strikethrough: ~~this is strikethrough text~~ - underlined: __this is underlined text__ - overlined: ^^this is overlined text^^

Parameters:
textstr

Text to add to canvas.

fg_colorColor | None, default: None

Foreground color of text.

bg_colorColor | None, default: None

Background color of text.

markdownbool, default: False

Whether to parse text for batgrl markdown.

See also

text_tools.add_text

Add multiple lines of text to a view of a canvas.

classmethod set_theme(color_theme: ColorTheme)#

Set color theme.

shift(n: int = 1)#

Shift content in canvas up (or down in case of negative n).

Rows at the bottom (or top) will be filled with the default cell.

property size: Size#

Size of gadget.

property size_hint: SizeHint#

Gadget’s size as a proportion of its parent’s size.

to_local(point: Point) Point#

Convert point in absolute coordinates to local coordinates.

Parameters:
pointPoint

Point in absolute (screen) coordinates.

Returns:
Point

The point in local coordinates.

toggle()#

Toggle node open or closed.

property top: int#

y-coordinate of top of gadget.

async tween(*, duration: float = 1.0, easing: Literal['linear', 'in_quad', 'out_quad', 'in_out_quad', 'in_cubic', 'out_cubic', 'in_out_cubic', 'in_quart', 'out_quart', 'in_out_quart', 'in_quint', 'out_quint', 'in_out_quint', 'in_sine', 'out_sine', 'in_out_sine', 'in_exp', 'out_exp', 'in_out_exp', 'in_circ', 'out_circ', 'in_out_circ', 'in_elastic', 'out_elastic', 'in_out_elastic', 'in_back', 'out_back', 'in_out_back', 'in_bounce', 'out_bounce', 'in_out_bounce'] = 'linear', on_start: Callable[[], None] | None = None, on_progress: Callable[[float], None] | None = None, on_complete: Callable[[], None] | None = None, **properties: Real | ndarray[Any, dtype[number]] | Sequence[Real] | PosHint | SizeHint) None#

Coroutine that sequentially updates gadget properties over a duration (in seconds).

Parameters:
durationfloat, default: 1.0

The duration of the tween in seconds.

easingEasing, default: “linear”

The easing used for tweening.

on_startCallable[[], None] | None, default: None

Called when tween starts.

on_progressCallable[[float], None] | None, default: None

Called as tween updates with current progress.

on_completeCallable[[], None] | None, default: None

Called when tween completes.

**propertiesReal | NDArray[np.number] | Sequence[Real] | PosHint | SizeHint

Gadget properties’ target values. E.g., to smoothly tween a gadget’s position to (5, 10) over 2.5 seconds, specify the pos property as a keyword-argument: await gadget.tween(pos=(5, 10), duration=2.5, easing="out_bounce")

Warning

Running several tweens on the same properties concurrently will probably result in unexpected behavior.

Notes

Tweened values will be coerced to match the type of the initial value of their corresponding property.

Non-numeric values will be set immediately.

unbind(uid: int) None#

Unbind a callback from a gadget property.

Parameters:
uidint

Unique id returned by the bind() method.

unselect()#

Unselect node.

update_disallowed()#

Paint the disallowed state.

update_down()#

Paint the down state.

update_hover()#

Paint the hover state.

update_normal()#

Paint the normal state.

update_theme()#

Paint the gadget with current theme.

walk() Iterator[Self]#

Yield all descendents of this gadget (preorder traversal).

Yields:
Gadget

A descendent of this gadget.

walk_reverse() Iterator[Self]#

Yield all descendents of this gadget (reverse postorder traversal).

Yields:
Gadget

A descendent of this gadget.

property width: int#

Width of gadget.

property x: int#

x-coordinate of left side of gadget.

property y: int#

y-coordinate of top of gadget.