mirror of
https://github.com/hypervortex/VH-Bombsquad-Modded-Server-Files
synced 2025-11-07 17:36:08 +00:00
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
"""UI functionality for creating radio groups of buttons."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
import ba
|
|
|
|
if TYPE_CHECKING:
|
|
from typing import Any, Callable, Sequence
|
|
|
|
|
|
def make_radio_group(
|
|
check_boxes: Sequence[ba.Widget],
|
|
value_names: Sequence[str],
|
|
value: str,
|
|
value_change_call: Callable[[str], Any],
|
|
) -> None:
|
|
"""Link the provided check_boxes together into a radio group."""
|
|
|
|
def _radio_press(
|
|
check_string: str, other_check_boxes: list[ba.Widget], val: int
|
|
) -> None:
|
|
if val == 1:
|
|
value_change_call(check_string)
|
|
for cbx in other_check_boxes:
|
|
ba.checkboxwidget(edit=cbx, value=False)
|
|
|
|
for i, check_box in enumerate(check_boxes):
|
|
ba.checkboxwidget(
|
|
edit=check_box,
|
|
value=(value == value_names[i]),
|
|
is_radio_button=True,
|
|
on_value_change_call=ba.Call(
|
|
_radio_press,
|
|
value_names[i],
|
|
[c for c in check_boxes if c != check_box],
|
|
),
|
|
)
|