Example #1
0
 def about_dialog(event=None):
     import aboutDialog
     aboutDialog.AboutDialog(root, 'About IDLE')
Example #2
0
 def showAbout(self):
     """"""
     aboutDialog.AboutDialog(self).show()
Example #3
0
 def run():
     import aboutDialog
     aboutDialog.AboutDialog(root, 'About')
Example #4
0
 def _about_idle(self, event=None):
     aboutDialog.AboutDialog(self.text, 'About IDLE')
Example #5
0
	def About(self, *event):
		#print("Aboutmenu")
		#about = tkinter.Toplevel(self.parent)
		aboutDlg = aboutDialog.AboutDialog(self.parent)
Example #6
0
 def OnHelpmenuitems0Menu(self, event): #About
     dlg = aboutDialog.AboutDialog(self)
     try:
         dlg.ShowModal()
     finally:
         dlg.Destroy()
Example #7
0
 def About(self):
     dlg = aboutDialog.AboutDialog(self)
     dlg.exec_()
Example #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')