mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Add an example of using SelectionList.SelectedChanged
This commit is contained in:
19
docs/examples/widgets/selection_list_selected.css
Normal file
19
docs/examples/widgets/selection_list_selected.css
Normal file
@@ -0,0 +1,19 @@
|
||||
Screen {
|
||||
align: center middle;
|
||||
}
|
||||
|
||||
Horizontal {
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
}
|
||||
|
||||
SelectionList {
|
||||
padding: 1;
|
||||
border: solid $accent;
|
||||
width: 1fr;
|
||||
}
|
||||
|
||||
Pretty {
|
||||
width: 1fr;
|
||||
border: solid $accent;
|
||||
}
|
||||
40
docs/examples/widgets/selection_list_selected.py
Normal file
40
docs/examples/widgets/selection_list_selected.py
Normal file
@@ -0,0 +1,40 @@
|
||||
from textual import on
|
||||
from textual.app import App, ComposeResult
|
||||
from textual.containers import Horizontal
|
||||
from textual.events import Mount
|
||||
from textual.widgets import Footer, Header, Pretty, SelectionList
|
||||
from textual.widgets.selection_list import Selection
|
||||
|
||||
|
||||
class SelectionListApp(App[None]):
|
||||
CSS_PATH = "selection_list_selected.css"
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
yield Header()
|
||||
with Horizontal():
|
||||
yield SelectionList[str]( # (1)!
|
||||
Selection("Falken's Maze", "secret_back_door", True),
|
||||
Selection("Black Jack", "black_jack"),
|
||||
Selection("Gin Rummy", "gin_rummy"),
|
||||
Selection("Hearts", "hearts"),
|
||||
Selection("Bridge", "bridge"),
|
||||
Selection("Checkers", "checkers"),
|
||||
Selection("Chess", "a_nice_game_of_chess", True),
|
||||
Selection("Poker", "poker"),
|
||||
Selection("Fighter Combat", "fighter_combat", True),
|
||||
)
|
||||
yield Pretty([])
|
||||
yield Footer()
|
||||
|
||||
def on_mount(self) -> None:
|
||||
self.query_one(SelectionList).border_title = "Shall we play some games?"
|
||||
self.query_one(Pretty).border_title = "Selected games"
|
||||
|
||||
@on(Mount)
|
||||
@on(SelectionList.SelectedChanged)
|
||||
def update_selected_view(self) -> None:
|
||||
self.query_one(Pretty).update(self.query_one(SelectionList).selected)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
SelectionListApp().run()
|
||||
Reference in New Issue
Block a user