acoused: Trace 'full_update' method.
parent
5ea7879896
commit
29e826d34c
|
|
@ -59,6 +59,7 @@ from Model.acoustic_data_loader import AcousticDataLoader
|
|||
from Model.acoustic_data_loader_UBSediFlow import AcousticDataLoaderUBSediFlow
|
||||
from Model.calibration_constant_kt import CalibrationConstantKt
|
||||
|
||||
from tools import trace
|
||||
|
||||
locale.setlocale(locale.LC_ALL, '')
|
||||
|
||||
|
|
@ -733,6 +734,7 @@ class AcousticDataTab(QWidget):
|
|||
|
||||
# -------------------- Functions for Acoustic dataTab --------------------
|
||||
|
||||
@trace
|
||||
def full_update(self):
|
||||
logger.debug(f"{__name__}: Update")
|
||||
self.blockSignals(True)
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ from View.checkable_combobox import CheckableComboBox
|
|||
import settings as stg
|
||||
|
||||
from Model.acoustic_inversion_method_high_concentration import AcousticInversionMethodHighConcentration
|
||||
from tools import trace
|
||||
|
||||
_translate = QCoreApplication.translate
|
||||
|
||||
|
|
@ -371,6 +372,7 @@ class AcousticInversionTab(QWidget):
|
|||
# ------------------------------------ Functions for Acoustic Inversion Tab ----------------------------------------
|
||||
# ==================================================================================================================
|
||||
|
||||
@trace
|
||||
def full_update(self):
|
||||
logger.debug(f"{__name__}: Update")
|
||||
self.blockSignals(True)
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@ from PyQt5.QtCore import Qt
|
|||
|
||||
import settings as stg
|
||||
|
||||
from tools import trace
|
||||
|
||||
logger = logging.getLogger("acoused")
|
||||
|
||||
class NoteTab(QWidget):
|
||||
|
|
@ -136,7 +138,7 @@ class NoteTab(QWidget):
|
|||
## ---------- Functions ----------
|
||||
## -------------------------------
|
||||
|
||||
|
||||
@trace
|
||||
def full_update(self):
|
||||
logger.debug(f"{__name__}: Update")
|
||||
self.blockSignals(True)
|
||||
|
|
|
|||
|
|
@ -48,6 +48,8 @@ import Translation.constant_string as cs
|
|||
|
||||
import settings as stg
|
||||
|
||||
from tools import trace
|
||||
|
||||
_translate = QCoreApplication.translate
|
||||
|
||||
logger = logging.getLogger("acoused")
|
||||
|
|
@ -271,6 +273,7 @@ class SampleDataTab(QWidget):
|
|||
|
||||
self.groupbox_plot_PSD.setTitle(_translate("CONSTANT_STRING", cs.DISTRIBUTION_PLOT))
|
||||
|
||||
@trace
|
||||
def full_update(self):
|
||||
logger.debug(f"{__name__}: Update")
|
||||
self.blockSignals(True)
|
||||
|
|
|
|||
|
|
@ -48,6 +48,8 @@ import settings as stg
|
|||
from View.checkable_combobox import CheckableComboBox
|
||||
from Model.acoustic_inversion_method_high_concentration import AcousticInversionMethodHighConcentration
|
||||
|
||||
from tools import trace
|
||||
|
||||
logger = logging.getLogger("acoused")
|
||||
|
||||
class SedimentCalibrationTab(QWidget):
|
||||
|
|
@ -857,6 +859,7 @@ class SedimentCalibrationTab(QWidget):
|
|||
# ----------------------------------- Functions for Signal processing Tab --------------------------------------
|
||||
# ==============================================================================================================
|
||||
|
||||
@trace
|
||||
def full_update(self):
|
||||
logger.debug(f"{__name__}: Update")
|
||||
self.blockSignals(True)
|
||||
|
|
|
|||
|
|
@ -511,6 +511,7 @@ class SignalProcessingTab(QWidget):
|
|||
self.icon_clear = QIcon(path_icon("clear.png"))
|
||||
self.icon_apply = QIcon(path_icon("circle_green_arrow_right.png"))
|
||||
|
||||
@trace
|
||||
def full_update(self):
|
||||
logger.debug(f"{__name__}: Update")
|
||||
self.blockSignals(True)
|
||||
|
|
|
|||
Loading…
Reference in New Issue