a45bd4ba9b
Reference lines: - Side-panel cluster (ref_line_widget.py): list of lines with Add/Edit/Remove/ Clear and a properties dialog (value, colour, line style, tag) - Lines own their state as RefLineProps (held by MainWindow), drawn with a triangle drag-handle; dragging writes the value back and refreshes the list - Replaces the old centre-only add-and-drag-the-whole-line approach Comparison: - Time-axis mode selector: Absolute (seconds) vs Relative (% of each track's own length), so a long track and a short one line up by song position. Pure view transform (plotspec.apply_x_mode), no recompute - Overlaid different-length tracks now autorange their x union in absolute mode instead of clipping to the first track's span Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
92 lines
3.4 KiB
Python
92 lines
3.4 KiB
Python
"""
|
|
Plot control widget: pick which metric to display and refresh the current plot.
|
|
|
|
Mirrors FontControlWidget's clustered-groupbox style so the two sit naturally
|
|
next to each other in the left panel.
|
|
"""
|
|
|
|
import logging
|
|
from PyQt5.QtWidgets import (
|
|
QWidget, QVBoxLayout, QHBoxLayout, QLabel, QComboBox, QPushButton, QGroupBox,
|
|
QCheckBox,
|
|
)
|
|
from PyQt5.QtCore import pyqtSignal
|
|
|
|
from metrics import METRICS, DEFAULT_METRIC_ID
|
|
from plotspec import ViewState, X_ABSOLUTE, X_RELATIVE
|
|
|
|
|
|
class PlotControlWidget(QWidget):
|
|
"""Metric selector, view-scale/x-mode toggles, and manual plot refresh.
|
|
|
|
Overlay/compare membership is driven by the file-list checkboxes and reference
|
|
lines by their own cluster; this one governs *what* metric and *how* its axes
|
|
are scaled (lin/log frequency) and laid out (absolute vs relative time).
|
|
"""
|
|
|
|
metricChanged = pyqtSignal(str) # metric_id
|
|
viewChanged = pyqtSignal() # view-state (scale / x-mode) changed
|
|
plotRefreshRequested = pyqtSignal()
|
|
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self.logger = logging.getLogger(__name__)
|
|
self.initUI()
|
|
|
|
def initUI(self):
|
|
layout = QVBoxLayout(self)
|
|
layout.setContentsMargins(5, 5, 5, 5)
|
|
|
|
group_box = QGroupBox("Plot")
|
|
group_layout = QVBoxLayout(group_box)
|
|
|
|
group_layout.addWidget(QLabel("Metric:"))
|
|
self.metric_combo = QComboBox()
|
|
for metric_id, metric in METRICS.items():
|
|
self.metric_combo.addItem(metric.display_name, metric_id)
|
|
default_idx = self.metric_combo.findData(DEFAULT_METRIC_ID)
|
|
if default_idx >= 0:
|
|
self.metric_combo.setCurrentIndex(default_idx)
|
|
self.metric_combo.currentIndexChanged.connect(self._on_metric_changed)
|
|
group_layout.addWidget(self.metric_combo)
|
|
|
|
# Frequency-axis scale. Only the spectrogram honours it today; harmless
|
|
# elsewhere (build_spec ignores unsupported toggles).
|
|
self.log_freq_check = QCheckBox("Log frequency (spectrogram)")
|
|
self.log_freq_check.setChecked(True)
|
|
self.log_freq_check.toggled.connect(lambda _: self.viewChanged.emit())
|
|
group_layout.addWidget(self.log_freq_check)
|
|
|
|
# Time axis: absolute seconds vs relative % of each track's own length, so
|
|
# tracks of very different durations line up by song position when overlaid.
|
|
group_layout.addWidget(QLabel("Time axis:"))
|
|
self.x_mode_combo = QComboBox()
|
|
self.x_mode_combo.addItem("Absolute (seconds)", X_ABSOLUTE)
|
|
self.x_mode_combo.addItem("Relative (%)", X_RELATIVE)
|
|
self.x_mode_combo.currentIndexChanged.connect(lambda _: self.viewChanged.emit())
|
|
group_layout.addWidget(self.x_mode_combo)
|
|
|
|
button_row = QHBoxLayout()
|
|
self.refresh_button = QPushButton("Refresh Plot")
|
|
self.refresh_button.setToolTip("Re-render the current plot with current settings")
|
|
self.refresh_button.clicked.connect(self.plotRefreshRequested.emit)
|
|
button_row.addWidget(self.refresh_button)
|
|
group_layout.addLayout(button_row)
|
|
|
|
layout.addWidget(group_box)
|
|
|
|
def _on_metric_changed(self, _index: int):
|
|
metric_id = self.metric_combo.currentData()
|
|
if metric_id:
|
|
self.logger.info(f"Metric changed: {metric_id}")
|
|
self.metricChanged.emit(metric_id)
|
|
|
|
def current_metric_id(self) -> str:
|
|
return self.metric_combo.currentData() or DEFAULT_METRIC_ID
|
|
|
|
def current_view_state(self) -> ViewState:
|
|
return ViewState(
|
|
y_log=self.log_freq_check.isChecked(),
|
|
x_mode=self.x_mode_combo.currentData(),
|
|
)
|