コード例 #1
0
 def create_config_menu(self):
     newwindow=Config_menu(self,config_dict=self.mainconf)
     #a reference to the window must be kept, otherwise the new window is immediately garbage collected !
     self.plotwindows.append(newwindow)
     newwindow.show()
コード例 #2
0
ファイル: Main.py プロジェクト: vbanos/PyGMI
 def create_config_menu(self):
     newwindow = Config_menu(self, config_dict=self.mainconf)
     #a reference to the window must be kept, otherwise the new window is immediately garbage collected !
     self.plotwindows.append(newwindow)
     newwindow.show()
コード例 #3
0
 def loaddefaultconfig(self):
     window = Config_menu(self,config_dict=self.mainconf)
     window.update_values()
コード例 #4
0
ファイル: Main.py プロジェクト: vbanos/PyGMI
 def loaddefaultconfig(self):
     window = Config_menu(self, config_dict=self.mainconf)
     window.update_values()