| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  | """About Dialog for IDLE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2002-11-30 19:12:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | from Tkinter import * | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  | import string, os | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | import textView | 
					
						
							|  |  |  | import idlever | 
					
						
							| 
									
										
										
										
											2002-11-30 19:12:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | class AboutDialog(Toplevel): | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     """Modal about dialog for idle
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |     def __init__(self,parent,title): | 
					
						
							|  |  |  |         Toplevel.__init__(self, parent) | 
					
						
							|  |  |  |         self.configure(borderwidth=5) | 
					
						
							|  |  |  |         self.geometry("+%d+%d" % (parent.winfo_rootx()+30, | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |                                   parent.winfo_rooty()+30)) | 
					
						
							|  |  |  |         self.bg = "#707070" | 
					
						
							|  |  |  |         self.fg = "#ffffff" | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |         self.CreateWidgets() | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |         self.resizable(height=FALSE, width=FALSE) | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |         self.title(title) | 
					
						
							|  |  |  |         self.transient(parent) | 
					
						
							|  |  |  |         self.grab_set() | 
					
						
							|  |  |  |         self.protocol("WM_DELETE_WINDOW", self.Ok) | 
					
						
							|  |  |  |         self.parent = parent | 
					
						
							|  |  |  |         self.buttonOk.focus_set() | 
					
						
							|  |  |  |         self.bind('<Return>',self.Ok) #dismiss dialog | 
					
						
							|  |  |  |         self.bind('<Escape>',self.Ok) #dismiss dialog | 
					
						
							|  |  |  |         self.wait_window() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |     def CreateWidgets(self): | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |         frameMain = Frame(self, borderwidth=2, relief=SUNKEN) | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |         frameButtons = Frame(self) | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |         frameButtons.pack(side=BOTTOM, fill=X) | 
					
						
							|  |  |  |         frameMain.pack(side=TOP, expand=TRUE, fill=BOTH) | 
					
						
							|  |  |  |         self.buttonOk = Button(frameButtons, text='Close', | 
					
						
							|  |  |  |                                command=self.Ok) | 
					
						
							|  |  |  |         self.buttonOk.pack(padx=5, pady=5) | 
					
						
							|  |  |  |         #self.picture = Image('photo', data=self.pictureData) | 
					
						
							|  |  |  |         frameBg = Frame(frameMain, bg=self.bg) | 
					
						
							|  |  |  |         frameBg.pack(expand=TRUE, fill=BOTH) | 
					
						
							|  |  |  |         labelTitle = Label(frameBg, text='IDLE', fg=self.fg, bg=self.bg, | 
					
						
							|  |  |  |                            font=('courier', 24, 'bold')) | 
					
						
							|  |  |  |         labelTitle.grid(row=0, column=0, sticky=W, padx=10, pady=10) | 
					
						
							|  |  |  |         #labelPicture = Label(frameBg, text='[picture]') | 
					
						
							|  |  |  |         #image=self.picture, bg=self.bg) | 
					
						
							|  |  |  |         #labelPicture.grid(row=1, column=1, sticky=W, rowspan=2, | 
					
						
							|  |  |  |         #                  padx=0, pady=3) | 
					
						
							|  |  |  |         byline = "Python's Integrated DeveLopment Environment" + 5*'\n' | 
					
						
							|  |  |  |         labelDesc = Label(frameBg, text=byline, justify=LEFT, | 
					
						
							|  |  |  |                           fg=self.fg, bg=self.bg) | 
					
						
							|  |  |  |         labelDesc.grid(row=2, column=0, sticky=W, columnspan=3, padx=10, pady=5) | 
					
						
							|  |  |  |         labelEmail = Label(frameBg, text='email:  idle-dev@python.org', | 
					
						
							|  |  |  |                            justify=LEFT, fg=self.fg, bg=self.bg) | 
					
						
							| 
									
										
										
										
											2003-06-16 18:46:42 +00:00
										 |  |  |         labelEmail.grid(row=6, column=0, columnspan=2, | 
					
						
							|  |  |  |                         sticky=W, padx=10, pady=0) | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |         labelWWW = Label(frameBg, text='www:  http://www.python.org/idle/', | 
					
						
							|  |  |  |                          justify=LEFT, fg=self.fg, bg=self.bg) | 
					
						
							|  |  |  |         labelWWW.grid(row=7, column=0, columnspan=2, sticky=W, padx=10, pady=0) | 
					
						
							|  |  |  |         Frame(frameBg, borderwidth=1, relief=SUNKEN, | 
					
						
							|  |  |  |               height=2, bg=self.bg).grid(row=8, column=0, sticky=EW, | 
					
						
							|  |  |  |                                          columnspan=3, padx=5, pady=5) | 
					
						
							|  |  |  |         labelPythonVer = Label(frameBg, text='Python version:  ' + \ | 
					
						
							|  |  |  |                                sys.version.split()[0], fg=self.fg, bg=self.bg) | 
					
						
							|  |  |  |         labelPythonVer.grid(row=9, column=0, sticky=W, padx=10, pady=0) | 
					
						
							|  |  |  |         # handle weird tk version num in windoze python >= 1.6 (?!?) | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |         tkVer = repr(TkVersion).split('.') | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |         tkVer[len(tkVer)-1] = str('%.3g' % (float('.'+tkVer[len(tkVer)-1])))[2:] | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         if tkVer[len(tkVer)-1] == '': | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |             tkVer[len(tkVer)-1] = '0' | 
					
						
							|  |  |  |         tkVer = string.join(tkVer,'.') | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |         labelTkVer = Label(frameBg, text='Tk version:  '+ | 
					
						
							|  |  |  |                            tkVer, fg=self.fg, bg=self.bg) | 
					
						
							|  |  |  |         labelTkVer.grid(row=9, column=1, sticky=W, padx=2, pady=0) | 
					
						
							|  |  |  |         py_button_f = Frame(frameBg, bg=self.bg) | 
					
						
							|  |  |  |         py_button_f.grid(row=10, column=0, columnspan=2, sticky=NSEW) | 
					
						
							|  |  |  |         buttonLicense = Button(py_button_f, text='License', width=8, | 
					
						
							|  |  |  |                                highlightbackground=self.bg, | 
					
						
							|  |  |  |                                command=self.ShowLicense) | 
					
						
							|  |  |  |         buttonLicense.pack(side=LEFT, padx=10, pady=10) | 
					
						
							|  |  |  |         buttonCopyright = Button(py_button_f, text='Copyright', width=8, | 
					
						
							|  |  |  |                                  highlightbackground=self.bg, | 
					
						
							|  |  |  |                                  command=self.ShowCopyright) | 
					
						
							|  |  |  |         buttonCopyright.pack(side=LEFT, padx=10, pady=10) | 
					
						
							|  |  |  |         buttonCredits = Button(py_button_f, text='Credits', width=8, | 
					
						
							|  |  |  |                                highlightbackground=self.bg, | 
					
						
							|  |  |  |                                command=self.ShowPythonCredits) | 
					
						
							|  |  |  |         buttonCredits.pack(side=LEFT, padx=10, pady=10) | 
					
						
							|  |  |  |         Frame(frameBg, borderwidth=1, relief=SUNKEN, | 
					
						
							|  |  |  |               height=2, bg=self.bg).grid(row=11, column=0, sticky=EW, | 
					
						
							|  |  |  |                                          columnspan=3, padx=5, pady=5) | 
					
						
							| 
									
										
										
										
											2003-06-16 18:46:42 +00:00
										 |  |  |         idle_v = Label(frameBg, text='IDLE version:   ' + idlever.IDLE_VERSION, | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |                        fg=self.fg, bg=self.bg) | 
					
						
							|  |  |  |         idle_v.grid(row=12, column=0, sticky=W, padx=10, pady=0) | 
					
						
							|  |  |  |         idle_button_f = Frame(frameBg, bg=self.bg) | 
					
						
							|  |  |  |         idle_button_f.grid(row=13, column=0, columnspan=3, sticky=NSEW) | 
					
						
							|  |  |  |         idle_about_b = Button(idle_button_f, text='README', width=8, | 
					
						
							|  |  |  |                                 highlightbackground=self.bg, | 
					
						
							|  |  |  |                                 command=self.ShowIDLEAbout) | 
					
						
							|  |  |  |         idle_about_b.pack(side=LEFT, padx=10, pady=10) | 
					
						
							|  |  |  |         idle_news_b = Button(idle_button_f, text='NEWS', width=8, | 
					
						
							|  |  |  |                                 highlightbackground=self.bg, | 
					
						
							|  |  |  |                                 command=self.ShowIDLENEWS) | 
					
						
							|  |  |  |         idle_news_b.pack(side=LEFT, padx=10, pady=10) | 
					
						
							|  |  |  |         idle_credits_b = Button(idle_button_f, text='Credits', width=8, | 
					
						
							|  |  |  |                                 highlightbackground=self.bg, | 
					
						
							|  |  |  |                                 command=self.ShowIDLECredits) | 
					
						
							|  |  |  |         idle_credits_b.pack(side=LEFT, padx=10, pady=10) | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     def ShowLicense(self): | 
					
						
							|  |  |  |         self.display_printer_text(license, 'About - License') | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     def ShowCopyright(self): | 
					
						
							|  |  |  |         self.display_printer_text(copyright, 'About - Copyright') | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     def ShowPythonCredits(self): | 
					
						
							|  |  |  |         self.display_printer_text(credits, 'About - Python Credits') | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     def ShowIDLECredits(self): | 
					
						
							| 
									
										
										
										
											2003-06-15 22:28:05 +00:00
										 |  |  |         self.ViewFile('About - Credits','CREDITS.txt', 'iso-8859-1') | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     def ShowIDLEAbout(self): | 
					
						
							|  |  |  |         self.ViewFile('About - Readme', 'README.txt') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def ShowIDLENEWS(self): | 
					
						
							|  |  |  |         self.ViewFile('About - NEWS', 'NEWS.txt') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def display_printer_text(self, printer, title): | 
					
						
							|  |  |  |         printer._Printer__setup() | 
					
						
							|  |  |  |         data = '\n'.join(printer._Printer__lines) | 
					
						
							|  |  |  |         textView.TextViewer(self, title, None, data) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-15 22:28:05 +00:00
										 |  |  |     def ViewFile(self, viewTitle, viewFile, encoding=None): | 
					
						
							| 
									
										
										
										
											2003-06-16 18:46:42 +00:00
										 |  |  |         fn = os.path.join(os.path.abspath(os.path.dirname(__file__)), viewFile) | 
					
						
							| 
									
										
										
										
											2003-06-15 22:28:05 +00:00
										 |  |  |         if encoding: | 
					
						
							|  |  |  |             import codecs | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 textFile = codecs.open(fn, 'r') | 
					
						
							|  |  |  |             except IOError: | 
					
						
							| 
									
										
										
										
											2003-10-28 21:57:10 +00:00
										 |  |  |                 import tkMessageBox | 
					
						
							| 
									
										
										
										
											2003-06-15 22:28:05 +00:00
										 |  |  |                 tkMessageBox.showerror(title='File Load Error', | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |                                        message='Unable to load file %r .' % (fn,), | 
					
						
							| 
									
										
										
										
											2003-10-28 21:57:10 +00:00
										 |  |  |                                        parent=self) | 
					
						
							| 
									
										
										
										
											2003-06-15 22:28:05 +00:00
										 |  |  |                 return | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 data = textFile.read() | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             data = None | 
					
						
							|  |  |  |         textView.TextViewer(self, viewTitle, fn, data=data) | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def Ok(self, event=None): | 
					
						
							|  |  |  |         self.destroy() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-31 06:59:02 +00:00
										 |  |  | if __name__ == '__main__': | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     # test the dialog | 
					
						
							|  |  |  |     root = Tk() | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |     def run(): | 
					
						
							|  |  |  |         import aboutDialog | 
					
						
							| 
									
										
										
										
											2003-06-16 18:46:42 +00:00
										 |  |  |         aboutDialog.AboutDialog(root, 'About') | 
					
						
							| 
									
										
										
										
											2003-06-12 04:20:56 +00:00
										 |  |  |     Button(root, text='Dialog', command=run).pack() | 
					
						
							| 
									
										
										
										
											2001-07-31 10:44:35 +00:00
										 |  |  |     root.mainloop() |