You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spiel/spiel/widgets/widget.py

22 lines
471 B
Python

from __future__ import annotations
from typing import TYPE_CHECKING
from textual.reactive import watch
from textual.widget import Widget
if TYPE_CHECKING:
from spiel.app import SpielApp
class SpielWidget(Widget):
app: "SpielApp"
def on_mount(self) -> None:
watch(self.app, "deck", self.r)
watch(self.app, "current_slide_idx", self.r)
watch(self.app, "message", self.r)
def r(self, _: object) -> None:
self.refresh()