Skip to content
Snippets Groups Projects
Commit 7185d1dd authored by Petter Källström's avatar Petter Källström Committed by Oscar Gustafsson
Browse files

PlotWindow: Added NavigationToolbar. Still the same canvas

parent 705153cc
No related branches found
No related tags found
1 merge request!228Update plot window
"""PlotWindow is a window in which simulation results are plotted."""
# TODO's: # TODO's:
# * Solve the legend update. That isn't working at all. # * Solve the legend update. That isn't working at all.
# * Zoom etc. Might need to change FigureCanvas. Or just something very little. # * Zoom etc. Might need to change FigureCanvas. Or just something very little.
...@@ -5,9 +7,8 @@ ...@@ -5,9 +7,8 @@
import re import re
import sys import sys
from matplotlib.backends.backend_qt5agg import ( from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
FigureCanvasQTAgg as FigureCanvas, from matplotlib.backends.backend_qt5agg import NavigationToolbar2QT as NavigationToolbar
)
from matplotlib.figure import Figure from matplotlib.figure import Figure
from matplotlib.ticker import MaxNLocator from matplotlib.ticker import MaxNLocator
from qtpy.QtCore import Qt from qtpy.QtCore import Qt
...@@ -46,9 +47,7 @@ class PlotCanvas(FigureCanvas): ...@@ -46,9 +47,7 @@ class PlotCanvas(FigureCanvas):
def _save_plot_figure(self): def _save_plot_figure(self):
self.logger.info(f"Saving plot of figure: {self.sfg.name}.") self.logger.info(f"Saving plot of figure: {self.sfg.name}.")
file_choices = "PNG (*.png)|*.png" file_choices = "PNG (*.png)|*.png"
path, ext = QFileDialog.getSaveFileName( path, ext = QFileDialog.getSaveFileName(self, "Save file", "", file_choices)
self, "Save file", "", file_choices
)
path = path.encode("utf-8") path = path.encode("utf-8")
if not path[-4:] == file_choices[-4:].encode("utf-8"): if not path[-4:] == file_choices[-4:].encode("utf-8"):
path += file_choices[-4:].encode("utf-8") path += file_choices[-4:].encode("utf-8")
...@@ -79,10 +78,10 @@ class PlotWindow(QDialog): ...@@ -79,10 +78,10 @@ class PlotWindow(QDialog):
| Qt.WindowCloseButtonHint | Qt.WindowCloseButtonHint
| Qt.WindowMinimizeButtonHint | Qt.WindowMinimizeButtonHint
| Qt.WindowMaximizeButtonHint | Qt.WindowMaximizeButtonHint
| Qt.WindowStaysOnTopHint # | Qt.WindowStaysOnTopHint
) )
self.setWindowTitle("Simulation result") self.setWindowTitle("Simulation result")
self.sim_result = sim_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
...@@ -110,26 +109,27 @@ class PlotWindow(QDialog): ...@@ -110,26 +109,27 @@ class PlotWindow(QDialog):
self.setLayout(self.dialog_layout) self.setLayout(self.dialog_layout)
listlayout = QVBoxLayout() listlayout = QVBoxLayout()
self.plotcanvas = PlotCanvas( plotlayout = QVBoxLayout()
logger=logger, parent=self, width=5, height=4, dpi=100
)
self.dialog_layout.addLayout(listlayout) self.dialog_layout.addLayout(listlayout)
self.dialog_layout.addWidget(self.plotcanvas) self.dialog_layout.addLayout(plotlayout)
########### Plot: ############## ########### Plot: ##############
# Do this before the list layout, as the list layout will re/set visibility # Do this before the list layout, as the list layout will re/set visibility
# Note: The order is of importens. Interesting lines last, to be on top. # Note: The order is of importens. Interesting lines last, to be on top.
self.plotcanvas = PlotCanvas(
logger=logger, parent=self, width=5, height=4, dpi=100
)
self._lines = {} self._lines = {}
for key in ( for key in sim_res_others | sim_res_delays | sim_res_ins | sim_res_outs:
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
)
self._lines[key] = line self._lines[key] = line
self.plotcanvas.legend = self.plotcanvas.axes.legend() self.plotcanvas.legend = self.plotcanvas.axes.legend()
plotlayout.addWidget(NavigationToolbar(self.plotcanvas, self))
plotlayout.addWidget(self.plotcanvas)
########### List layout: ############## ########### List layout: ##############
# Add two buttons for selecting all/none: # Add two buttons for selecting all/none:
...@@ -146,9 +146,7 @@ class PlotWindow(QDialog): ...@@ -146,9 +146,7 @@ class PlotWindow(QDialog):
self.checklist = QListWidget() self.checklist = QListWidget()
self.checklist.itemChanged.connect(self._item_change) self.checklist.itemChanged.connect(self._item_change)
listitems = {} listitems = {}
for key in ( for key in sim_res_ins | sim_res_outs | sim_res_delays | sim_res_others:
sim_res_ins | sim_res_outs | sim_res_delays | sim_res_others
):
listitem = QListWidgetItem(key) listitem = QListWidgetItem(key)
listitems[key] = listitem listitems[key] = listitem
self.checklist.addItem(listitem) self.checklist.addItem(listitem)
...@@ -180,9 +178,7 @@ class PlotWindow(QDialog): ...@@ -180,9 +178,7 @@ class PlotWindow(QDialog):
self._auto_redraw = True self._auto_redraw = True
def _legend_checkbox_change(self, checkState): def _legend_checkbox_change(self, checkState):
self.plotcanvas.legend.set( self.plotcanvas.legend.set(visible=(checkState == Qt.CheckState.Checked))
visible=(checkState == Qt.CheckState.Checked)
)
if self._auto_redraw: if self._auto_redraw:
if checkState == Qt.CheckState.Checked: if checkState == Qt.CheckState.Checked:
self.plotcanvas.legend = self.plotcanvas.axes.legend() self.plotcanvas.legend = self.plotcanvas.axes.legend()
......
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