Esempio n. 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()
Esempio n. 2
0
File: Main.py Progetto: 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()
Esempio n. 3
0
 def loaddefaultconfig(self):
     window = Config_menu(self,config_dict=self.mainconf)
     window.update_values()
Esempio n. 4
0
File: Main.py Progetto: vbanos/PyGMI
 def loaddefaultconfig(self):
     window = Config_menu(self, config_dict=self.mainconf)
     window.update_values()