Files
rocm-systems/src/rocprof_compute_tui/widgets/right_panel/right.py
T
xuchen-amd ca0cdaf948 Introduce rocprof-compute TUI (Text User Interface) (#682)
* rocprof-compute TUI (Text User Interface) - providing users interactive analyze experience with visuals.

* Analyze results with tables, charts, plots.

* Add menu bar, terminal, directory dialog. Improve logging and ui.

* Add display config file to manipulate result categorization.

* Add support for recently opened dirs.

* Update licensing and version.
2025-06-04 17:06:08 -04:00

25 строки
568 B
Python

"""
Panel Widget Modules
-------------------
Contains the panel widgets used in the main layout.
"""
from textual.containers import Vertical
from textual.widgets import Label
class RightPanel(Vertical):
"""Right panel for additional tools."""
def __init__(self):
"""Initialize the right panel."""
super().__init__()
def compose(self):
"""Compose the right panel."""
yield Label("🚧 Under Construction")
def _on_mount(self):
self.border_title = "🚧 UNDER CONSTRUCTION"
self.add_class("section")