Exemple #1
0
 def OnCalcContinousMeasure(self, event):
     calcontinousmeasureapp = wx.App()
     frame = CalContinousMeasureFrame()
     calcontinousmeasureapp.MainLoop()
Exemple #2
0
 def OnCalcPM5(self, event):
     calcPM5app = wx.App()
     frame = CalPM5Frame()
     calcPM5app.MainLoop()
Exemple #3
0
 def OnPlots(self, event):
     plotsapp = wx.App()
     frame = PlotsFrame()
     plotsapp.MainLoop()
Exemple #4
0
 def OnCalcAdev(self, event):
     calcAdevapp = wx.App()
     frame = PlotAllanDevFrame()
     calcAdevapp.MainLoop()
Exemple #5
0
 def OnCalcSpurius(self, event):
     calcspuriusapp = wx.App()
     frame = SpuriusFrame()
     calcspuriusapp.MainLoop()
Exemple #6
0
 def OnCalCablePM(self, event):
     calcableapppm = wx.App()
     frame = CalCableFramePM()
     calcableapppm.MainLoop()
Exemple #7
0
 def OnCalCable(self, event):
     calcableapp = wx.App()
     frame = CalCableFrame()
     calcableapp.MainLoop()
Exemple #8
0
    def OnCalcSpurius(self, event):
        calcspuriusapp = wx.App()
        frame = SpuriusFrame()
        calcspuriusapp.MainLoop()

    def OnCalcAdev(self, event):
        calcAdevapp = wx.App()
        frame = PlotAllanDevFrame()
        calcAdevapp.MainLoop()

    def OnCalcPM5(self, event):
        calcPM5app = wx.App()
        frame = CalPM5Frame()
        calcPM5app.MainLoop()

    def OnPlots(self, event):
        plotsapp = wx.App()
        frame = PlotsFrame()
        plotsapp.MainLoop()

    def OnExit(self, event):
        sys.exit()


# ----------------------------------------------------------------------
if __name__ == "__main__":
    app = wx.App()
    frame = MainFrame(None)
    app.MainLoop()