| from textual.app import App, ComposeResult |
| from textual.widgets import Static |
|
|
| TEXT = """ |
| [b]Set your background[/b] |
| [@click=set_background('cyan')]Cyan[/] |
| [@click=set_background('magenta')]Magenta[/] |
| [@click=set_background('yellow')]Yellow[/] |
| """ |
|
|
|
|
| class ColorSwitcher(Static): |
| def action_set_background(self, color: str) -> None: |
| self.styles.background = color |
|
|
|
|
| class ActionsApp(App): |
| CSS_PATH = "actions05.css" |
| BINDINGS = [ |
| ("r", "set_background('red')", "Red"), |
| ("g", "set_background('green')", "Green"), |
| ("b", "set_background('blue')", "Blue"), |
| ] |
|
|
| def compose(self) -> ComposeResult: |
| yield ColorSwitcher(TEXT) |
| yield ColorSwitcher(TEXT) |
|
|
| def action_set_background(self, color: str) -> None: |
| self.screen.styles.background = color |
| self.bell() |
|
|
|
|
| if __name__ == "__main__": |
| app = ActionsApp() |
| app.run() |
|
|