Example #1
0
    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()
Example #2
0
    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()
Example #3
0
    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()
Example #4
0
    def __init__(self, application):
        DHViewProperties.__init__(self)
        BaseTFWindow.__init__(self, application, DHPresenter(self))
        PreprocessComponent.__init__(self, self.plot_preproc)

        SingleSignalComponent.__init__(self, self.signal_plot())

        SurrogateComponent.__init__(
            self, self.slider_surrogate_2, self.line_surrogate_2
        )

        self.presenter.init()
Example #5
0
    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()
Example #6
0
    def __init__(self, application):
        DBViewProperties.__init__(self)
        BaseTFWindow.__init__(self, application, DBPresenter(self))

        SurrogateComponent.__init__(self, self.slider_surrogate,
                                    self.line_surrogate, self.checkbox_surr)
        DualSignalComponent.__init__(self, self.signal_plot())

        self.presenter: DBPresenter = self.presenter
        self.presenter.init()

        self.is_triple_plot = False
        self.on_toggle_plots()