Rev 701 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 701 | Rev 721 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | #!/usr/bin/env python |
1 | #!/usr/bin/env python |
2 | # -*- coding: iso-8859-15 -*- |
2 | # -*- coding: iso-8859-15 -*- |
3 | # generated by wxGlade 0.6.3 on Thu Sep 24 15:46:36 2009 |
3 | # generated by wxGlade 0.6.3 on Thu Sep 24 15:46:36 2009 |
Line 4... | Line 4... | ||
4 | 4 | ||
5 | # |
5 | # |
6 | # Mikrokopter VibrationTest Rev: $Rev: 701 $ |
6 | # Mikrokopter VibrationTest Rev: $Rev: 721 $ |
7 | # |
7 | # |
8 | # Author: Frederic Goddeeris (frederic@rc-flight.be) |
8 | # Author: Frederic Goddeeris (frederic@rc-flight.be) |
Line 9... | Line 9... | ||
9 | # |
9 | # |
Line 330... | Line 330... | ||
330 | self.static_line_1 = wx.StaticLine(self, -1) |
330 | self.static_line_1 = wx.StaticLine(self, -1) |
331 | self.graphCtrl = wx.lib.plot.PlotCanvas(self, size=(800,300)) |
331 | self.graphCtrl = wx.lib.plot.PlotCanvas(self, size=(800,300)) |
332 | self.label_40 = wx.StaticText(self, -1, "Graph Type ") |
332 | self.label_40 = wx.StaticText(self, -1, "Graph Type ") |
333 | self.graphTypeChoice = wx.Choice(self, -1, choices=["Raw Signal", "Filtered Signal", "Spectrum"]) |
333 | self.graphTypeChoice = wx.Choice(self, -1, choices=["Raw Signal", "Filtered Signal", "Spectrum"]) |
334 | self.label_41 = wx.StaticText(self, -1, "Y Axis Range ") |
334 | self.label_41 = wx.StaticText(self, -1, "Y Axis Range ") |
335 | self.yAxisChoice = wx.Choice(self, -1, choices=["25", "50", "75", "100", "200"]) |
335 | self.yAxisChoice = wx.Choice(self, -1, choices=["25", "50", "75", "100", "200", "500", "1000"]) |
336 | self.copyGraphButton = wx.Button(self, -1, "Copy Graph Data") |
336 | self.copyGraphButton = wx.Button(self, -1, "Copy Graph Data") |
337 | self.TestListCtrl = wx.ListCtrl(self, -1, style=wx.LC_REPORT|wx.SUNKEN_BORDER) |
337 | self.TestListCtrl = wx.ListCtrl(self, -1, style=wx.LC_REPORT|wx.SUNKEN_BORDER) |
Line 338... | Line 338... | ||
338 | 338 | ||
339 | self.__set_properties() |
339 | self.__set_properties() |
Line 823... | Line 823... | ||
823 | def onAbout(self, event): # wxGlade: MainFrame.<event_handler> |
823 | def onAbout(self, event): # wxGlade: MainFrame.<event_handler> |
824 | # First we create and fill the info object |
824 | # First we create and fill the info object |
825 | print "about" |
825 | print "about" |
826 | info = wx.AboutDialogInfo() |
826 | info = wx.AboutDialogInfo() |
827 | info.Name = "MK Vibration Test - " |
827 | info.Name = "MK Vibration Test - " |
828 | info.Version = "v1.2 ($Rev: 701 $)".replace("$","") |
828 | info.Version = "v1.2 ($Rev: 721 $)".replace("$","") |
829 | info.Copyright = "" |
829 | info.Copyright = "" |
830 | info.Developers=["Frederic Goddeeris (Frederic@rc-flight.be)"] |
830 | info.Developers=["Frederic Goddeeris (Frederic@rc-flight.be)"] |
831 | info.Description = "Please consult the WIKI page for a complete description of the tool:" |
831 | info.Description = "Please consult the WIKI page for a complete description of the tool:" |
832 | info.WebSite = ("http://www.mikrokopter.de/ucwiki/en/VibrationTest", "VibrationTest WIKI page") |
832 | info.WebSite = ("http://www.mikrokopter.de/ucwiki/en/VibrationTest", "VibrationTest WIKI page") |
833 | wx.AboutBox(info) |
833 | wx.AboutBox(info) |