Ejemplo n.º 1
0
 def about_dialog(event=None):
     import aboutDialog
     aboutDialog.AboutDialog(root, 'About IDLE')
Ejemplo n.º 2
0
 def showAbout(self):
     """"""
     aboutDialog.AboutDialog(self).show()
Ejemplo n.º 3
0
 def run():
     import aboutDialog
     aboutDialog.AboutDialog(root, 'About')
Ejemplo n.º 4
0
 def _about_idle(self, event=None):
     aboutDialog.AboutDialog(self.text, 'About IDLE')
Ejemplo n.º 5
0
	def About(self, *event):
		#print("Aboutmenu")
		#about = tkinter.Toplevel(self.parent)
		aboutDlg = aboutDialog.AboutDialog(self.parent)
Ejemplo n.º 6
0
 def OnHelpmenuitems0Menu(self, event): #About
     dlg = aboutDialog.AboutDialog(self)
     try:
         dlg.ShowModal()
     finally:
         dlg.Destroy()
Ejemplo n.º 7
0
 def About(self):
     dlg = aboutDialog.AboutDialog(self)
     dlg.exec_()
Ejemplo n.º 8
0
 def about_dialog(event=None):
     "Handle Help 'About IDLE' event."
     # Synchronize with EditorWindow.EditorWindow.about_dialog.
     import aboutDialog
     aboutDialog.AboutDialog(root, 'About IDLE')