State for a single window in the build tree.
| 199 | |
| 200 | @dataclasses.dataclass |
| 201 | class _WindowStatus: |
| 202 | """State for a single window in the build tree.""" |
| 203 | |
| 204 | name: str |
| 205 | done: bool = False |
| 206 | pane_num: int | None = None |
| 207 | pane_total: int | None = None |
| 208 | pane_done: int = 0 # panes completed in this window (set on window_done) |
| 209 | |
| 210 | |
| 211 | class BuildTree: |