This commit is contained in:
ccremers 2006-08-11 14:22:45 +00:00
parent cdbb2c72b7
commit 683cae8d90

View File

@ -55,7 +55,7 @@ class MainWindow(wx.Frame):
self.CreateExteriorWindowComponents() self.CreateExteriorWindowComponents()
aTable = wx.AcceleratorTable([ aTable = wx.AcceleratorTable([
(wx.ACCEL_ALT, ord('X'), wx.ID_EXIT), (wx.ACCEL_CTRL, ord('W'), wx.ID_EXIT),
(wx.ACCEL_CTRL, ord('Q'), wx.ID_EXIT), (wx.ACCEL_CTRL, ord('Q'), wx.ID_EXIT),
(wx.ACCEL_NORMAL, wx.WXK_F1, (wx.ACCEL_NORMAL, wx.WXK_F1,
ID_VERIFY), ID_VERIFY),
@ -100,7 +100,7 @@ class MainWindow(wx.Frame):
textfile.close() textfile.close()
self.top.AddPage(self.control,"Protocol description") self.top.AddPage(self.control,"Protocol description")
self.settings = Settingswindow.SettingsWindow(self.top,self) self.settings = Settingswindow.SettingsWindow(self.top,self)
self.top.AddPage(self.settings,"Verification parameters") self.top.AddPage(self.settings,"Settings")
#sizer.Add(self.top,1,wx.EXPAND,1) #sizer.Add(self.top,1,wx.EXPAND,1)
#self.SetSizer(sizer) #self.SetSizer(sizer)