def __init__(self, application: Application): GCViewProperties.__init__(self) BaseTFWindow.__init__(self, application, GCPresenter(self)) FreqComponent.__init__(self, self.line_fmax, self.line_fmin, self.line_res) self.presenter.init()
def __init__(self, application: Application): PCViewProperties.__init__(self) BaseTFWindow.__init__(self, application, PCPresenter(self)) SurrogateComponent.__init__(self, self.slider_surrogate, self.line_surrogate) FreqComponent.__init__(self, self.line_fmax, self.line_fmin, self.line_res) DualSignalComponent.__init__(self, self.signal_plot()) self.presenter.init()
def __init__(self, application, presenter=None): TFViewProperties.__init__(self) BaseTFWindow.__init__(self, application, presenter or TFPresenter(self)) FreqComponent.__init__(self, self.line_fmax, self.line_fmin, self.line_res) SingleSignalComponent.__init__(self, self.signal_plot()) PreprocessComponent.__init__(self, self.plot_preproc) self.presenter.init()
def __init__(self, application): BAViewProperties.__init__(self) BaseTFWindow.__init__(self, application, BAPresenter(self)) DualSignalComponent.__init__(self, self.signal_plot()) FreqComponent.__init__(self, self.line_fmax, self.line_fmin, self.line_res) SurrogateComponent.__init__(self, self.slider_surrogate, self.line_surrogate, self.checkbox_surr) VerticalMultiPlotComponent.__init__(self, self.vbox_right) self.presenter: BAPresenter = self.presenter self.presenter.init()