Skip to content
Snippets Groups Projects
Commit cc4a041d authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Simulation legend almost working

parent d48b4ebe
No related branches found
No related tags found
1 merge request!229Simulation legend almost working
Pipeline #90284 passed
...@@ -34,7 +34,6 @@ from b_asic.GUI._preferences import GAP, GRID, MINBUTTONSIZE, PORTHEIGHT ...@@ -34,7 +34,6 @@ from b_asic.GUI._preferences import GAP, GRID, MINBUTTONSIZE, PORTHEIGHT
from b_asic.GUI.arrow import Arrow from b_asic.GUI.arrow import Arrow
from b_asic.GUI.drag_button import DragButton from b_asic.GUI.drag_button import DragButton
from b_asic.GUI.gui_interface import Ui_main_window from b_asic.GUI.gui_interface import Ui_main_window
from b_asic.GUI.plot_window import PlotWindow
from b_asic.GUI.port_button import PortButton from b_asic.GUI.port_button import PortButton
from b_asic.GUI.select_sfg_window import SelectSFGWindow from b_asic.GUI.select_sfg_window import SelectSFGWindow
from b_asic.GUI.show_pc_window import ShowPCWindow from b_asic.GUI.show_pc_window import ShowPCWindow
...@@ -44,6 +43,7 @@ from b_asic.GUI.simulate_sfg_window import SimulateSFGWindow ...@@ -44,6 +43,7 @@ from b_asic.GUI.simulate_sfg_window import SimulateSFGWindow
from b_asic.GUI.util_dialogs import FaqWindow, KeybindsWindow from b_asic.GUI.util_dialogs import FaqWindow, KeybindsWindow
from b_asic.GUI.utils import decorate_class, handle_error from b_asic.GUI.utils import decorate_class, handle_error
from b_asic.gui_utils.about_window import AboutWindow from b_asic.gui_utils.about_window import AboutWindow
from b_asic.gui_utils.plot_window import PlotWindow
from b_asic.operation import Operation from b_asic.operation import Operation
from b_asic.port import InputPort, OutputPort from b_asic.port import InputPort, OutputPort
from b_asic.save_load_structure import python_to_sfg, sfg_to_python from b_asic.save_load_structure import python_to_sfg, sfg_to_python
......
...@@ -25,36 +25,6 @@ from qtpy.QtWidgets import ( # QFrame,; QScrollArea,; QLineEdit,; QSizePolicy,; ...@@ -25,36 +25,6 @@ from qtpy.QtWidgets import ( # QFrame,; QScrollArea,; QLineEdit,; QSizePolicy,;
QVBoxLayout, QVBoxLayout,
) )
# from qtpy.QtGui import QKeySequence
# class PlotCanvas(FigureCanvas):
# """PlotCanvas is used as a part in the PlotWindow."""
# def __init__(self, logger, parent=None, width=5, height=4, dpi=100):
# fig = Figure(figsize=(width, height), dpi=dpi)
# super().__init__(fig)
# self.axes = fig.add_subplot(111)
# self.axes.xaxis.set_major_locator(MaxNLocator(integer=True))
# self.legend = None
# self.logger = logger
# FigureCanvas.updateGeometry(self)
# self.save_figure = QShortcut(QKeySequence("Ctrl+S"), self)
# self.save_figure.activated.connect(self._save_plot_figure)
# def _save_plot_figure(self):
# self.logger.info(f"Saving plot of figure: {self.sfg.name}.")
# file_choices = "PNG (*.png)|*.png"
# path, ext = QFileDialog.getSaveFileName(self, "Save file", "", file_choices)
# path = path.encode("utf-8")
# if not path[-4:] == file_choices[-4:].encode("utf-8"):
# path += file_choices[-4:].encode("utf-8")
# if path:
# self.print_figure(path.decode(), dpi=self.dpi)
# self.logger.info(f"Saved plot: {self.sfg.name} to path: {path}.")
class PlotWindow(QDialog): class PlotWindow(QDialog):
"""Dialog for plotting the result of a simulation.""" """Dialog for plotting the result of a simulation."""
...@@ -62,25 +32,17 @@ class PlotWindow(QDialog): ...@@ -62,25 +32,17 @@ class PlotWindow(QDialog):
def __init__( def __init__(
self, self,
sim_result, sim_result,
# sfg_name="{sfg_name}",
# window=None,
logger=print, logger=print,
parent=None, parent=None,
# width=5,
# height=4,
# dpi=100,
): ):
super().__init__(parent=parent) super().__init__(parent=parent)
# self._window = window
self.setWindowFlags( self.setWindowFlags(
Qt.WindowTitleHint Qt.WindowTitleHint
| Qt.WindowCloseButtonHint | Qt.WindowCloseButtonHint
| Qt.WindowMinimizeButtonHint | Qt.WindowMinimizeButtonHint
| Qt.WindowMaximizeButtonHint | Qt.WindowMaximizeButtonHint
# | Qt.WindowStaysOnTopHint
) )
self.setWindowTitle("Simulation result") self.setWindowTitle("Simulation result")
# self.sim_result = sim_result
self._auto_redraw = False self._auto_redraw = False
# Categorise sim_results into inputs, outputs, delays, others # Categorise sim_results into inputs, outputs, delays, others
...@@ -119,15 +81,15 @@ class PlotWindow(QDialog): ...@@ -119,15 +81,15 @@ class PlotWindow(QDialog):
# self.plotcanvas = PlotCanvas( # self.plotcanvas = PlotCanvas(
# logger=logger, parent=self, width=5, height=4, dpi=100 # logger=logger, parent=self, width=5, height=4, dpi=100
# ) # )
self._plot_fig = Figure(figsize=(5, 4), dpi=100) self._plot_fig = Figure(figsize=(5, 4), layout="compressed")
self._plot_axes = self._plot_fig.add_subplot(111) self._plot_axes = self._plot_fig.add_subplot(111)
self._plot_axes.xaxis.set_major_locator(MaxNLocator(integer=True)) self._plot_axes.xaxis.set_major_locator(MaxNLocator(integer=True))
self._lines = {} self._lines = {}
for key in sim_res_others | sim_res_delays | sim_res_ins | sim_res_outs: for key in sim_res_others | sim_res_delays | sim_res_ins | sim_res_outs:
# line = self.plotcanvas.axes.plot(sim_result[key], visible=False, label=key) # line = self.plotcanvas.axes.plot(sim_result[key], visible=False, label=key)
line = self._plot_axes.plot(sim_result[key], visible=False, label=key) line = self._plot_axes.plot(sim_result[key], label=key)
self._lines[key] = line self._lines[key] = line[0]
# self.plotcanvas.legend = self.plotcanvas.axes.legend() # self.plotcanvas.legend = self.plotcanvas.axes.legend()
self._legend = self._plot_axes.legend() self._legend = self._plot_axes.legend()
...@@ -161,7 +123,7 @@ class PlotWindow(QDialog): ...@@ -161,7 +123,7 @@ class PlotWindow(QDialog):
) )
for key in sim_res_outs: for key in sim_res_outs:
listitems[key].setCheckState(Qt.CheckState.Checked) listitems[key].setCheckState(Qt.CheckState.Checked)
self.checklist.setFixedWidth(150) # self.checklist.setFixedWidth(150)
listlayout.addWidget(self.checklist) listlayout.addWidget(self.checklist)
# Add additional checkboxes # Add additional checkboxes
...@@ -202,6 +164,10 @@ class PlotWindow(QDialog): ...@@ -202,6 +164,10 @@ class PlotWindow(QDialog):
for x in range(self.checklist.count()): for x in range(self.checklist.count()):
self.checklist.item(x).setCheckState(Qt.CheckState.Checked) self.checklist.item(x).setCheckState(Qt.CheckState.Checked)
self._auto_redraw = True self._auto_redraw = True
self._update_legend()
def _update_legend(self):
self._legend = self._plot_axes.legend()
self._plot_canvas.draw() self._plot_canvas.draw()
def _button_none_click(self, event): def _button_none_click(self, event):
...@@ -209,17 +175,16 @@ class PlotWindow(QDialog): ...@@ -209,17 +175,16 @@ class PlotWindow(QDialog):
for x in range(self.checklist.count()): for x in range(self.checklist.count()):
self.checklist.item(x).setCheckState(Qt.CheckState.Unchecked) self.checklist.item(x).setCheckState(Qt.CheckState.Unchecked)
self._auto_redraw = True self._auto_redraw = True
self._plot_canvas.draw() self._update_legend()
def _item_change(self, listitem): def _item_change(self, listitem):
key = listitem.text() key = listitem.text()
self._lines[key][0].set( if listitem.checkState() == Qt.CheckState.Checked:
visible=(listitem.checkState() == Qt.CheckState.Checked) self._plot_axes.add_line(self._lines[key])
) else:
self._lines[key].remove()
if self._auto_redraw: if self._auto_redraw:
if self.legend_checkbox.checkState == Qt.CheckState.Checked: self._update_legend()
self._legend = self._plot_axes.legend()
self._plot_canvas.draw()
# Simple test of the dialog # Simple test of the dialog
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment