diff --git a/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py b/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py index 7a6caf5ffa6f9d36319f2523c254e9fcac0c2667..35d207e62a5bb46624d6c4b362a66c89b5f863b2 100644 --- a/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py +++ b/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py @@ -310,29 +310,3 @@ class MultiThreadedPlottingWidget(PlottingWidget): f'{self.name} plot stopped', 'info') self.is_working = False self.stopped.emit() - - def set_lim(self, first_time=False, is_waveform=False): - """ - The set_lim method of the base class PlottingWidget was not designed - with multi-threading in mind, so it made some assumption that is - difficult to satisfy in a multi-threaded design. While these - assumptions do not affect the initial plotting of the data, they make - designing a system for zooming more difficult. - - Rather than trying to comply with the design of PlottingWidget.set_lim, - we decide to work around. This set_lim method still keeps the - functionality of processing the data based on the zoom range. However, - it delegates setting the new limit of the x and y axes to - PlottingWidget.set_lim. - - :param first_time: flag that indicate whether set_lim is called the - fist time for a data set. - """ - self.data_processors = [] - if not self.is_working: - self.is_working = True - start_msg = 'Zooming in...' - display_tracking_info(self.tracking_box, start_msg, 'info') - self.create_plotting_channel_processors(self.plotting_data1) - self.create_plotting_channel_processors(self.plotting_data2) - self.process_channel() diff --git a/sohstationviewer/view/plotting/state_of_health_widget.py b/sohstationviewer/view/plotting/state_of_health_widget.py index acb00711d666b1c595aa2f9553a50eb1bf41f1b2..847a7024ee5cdfd1a6b3f0b19a96300077635eb4 100644 --- a/sohstationviewer/view/plotting/state_of_health_widget.py +++ b/sohstationviewer/view/plotting/state_of_health_widget.py @@ -79,6 +79,3 @@ class SOHWidget(MultiThreadedPlottingWidget): artist.remove() getattr(self.plotting, plot_functions[plot_type][1])( c_data, chan_db_info, chan_id, c_data['ax'], linked_ax) - - def set_lim(self, first_time=False): - super().set_lim(first_time, is_waveform=False) diff --git a/sohstationviewer/view/plotting/waveform_dialog.py b/sohstationviewer/view/plotting/waveform_dialog.py index ffcc0eac5983498c58d5ea1e48ab4c89dbd535e6..e32537fb3f3ad5bc62e357d122f542c16d0373df 100755 --- a/sohstationviewer/view/plotting/waveform_dialog.py +++ b/sohstationviewer/view/plotting/waveform_dialog.py @@ -65,9 +65,6 @@ class WaveformWidget(MultiThreadedPlottingWidget): getattr(self.plotting, plot_functions[plot_type][1])( c_data, chan_db_info, chan_id, c_data['ax_wf'], None) - def set_lim(self, first_time=False): - super().set_lim(first_time, is_waveform=True) - class WaveformDialog(QtWidgets.QWidget): def __init__(self, parent):