PATH:
lib64
/
python2.7
/
idlelib
"""About Dialog for IDLE """ import os from sys import version from Tkinter import * from idlelib import textView class AboutDialog(Toplevel): """Modal about dialog for idle """ def __init__(self, parent, title, _htest=False): """ _htest - bool, change box location when running htest """ Toplevel.__init__(self, parent) self.configure(borderwidth=5) # place dialog below parent if running htest self.geometry("+%d+%d" % ( parent.winfo_rootx()+30, parent.winfo_rooty()+(30 if not _htest else 100))) self.bg = "#707070" self.fg = "#ffffff" self.CreateWidgets() self.resizable(height=FALSE, width=FALSE) 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() def CreateWidgets(self): release = version[:version.index(' ')] frameMain = Frame(self, borderwidth=2, relief=SUNKEN) frameButtons = Frame(self) 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) labelEmail.grid(row=6, column=0, columnspan=2, sticky=W, padx=10, pady=0) labelWWW = Label(frameBg, text='https://docs.python.org/' + version[:3] + '/library/idle.html', 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: ' + release, fg=self.fg, bg=self.bg) labelPythonVer.grid(row=9, column=0, sticky=W, padx=10, pady=0) tkVer = self.tk.call('info', 'patchlevel') 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) idle_v = Label(frameBg, text='IDLE version: ' + release, 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) # License, et all, are of type _sitebuiltins._Printer def ShowLicense(self): self.display_printer_text('About - License', license) def ShowCopyright(self): self.display_printer_text('About - Copyright', copyright) def ShowPythonCredits(self): self.display_printer_text('About - Python Credits', credits) # Encode CREDITS.txt to utf-8 for proper version of Loewis. # Specify others as ascii until need utf-8, so catch errors. def ShowIDLECredits(self): self.display_file_text('About - Credits', 'CREDITS.txt', 'utf-8') def ShowIDLEAbout(self): self.display_file_text('About - Readme', 'README.txt', 'ascii') def ShowIDLENEWS(self): self.display_file_text('About - NEWS', 'NEWS.txt', 'utf-8') def display_printer_text(self, title, printer): printer._Printer__setup() text = '\n'.join(printer._Printer__lines) textView.view_text(self, title, text) def display_file_text(self, title, filename, encoding=None): fn = os.path.join(os.path.abspath(os.path.dirname(__file__)), filename) textView.view_file(self, title, fn, encoding) def Ok(self, event=None): self.grab_release() self.destroy() if __name__ == '__main__': import unittest unittest.main('idlelib.idle_test.test_helpabout', verbosity=2, exit=False) from idlelib.idle_test.htest import run run(AboutDialog)
[+]
..
[-] IdleHistory.pyo
[edit]
[-] help.pyc
[edit]
[-] help.pyo
[edit]
[-] WidgetRedirector.pyc
[edit]
[-] SearchDialogBase.pyc
[edit]
[-] MultiCall.pyo
[edit]
[-] FileList.py
[edit]
[-] EditorWindow.py
[edit]
[-] SearchDialogBase.pyo
[edit]
[-] GrepDialog.py
[edit]
[-] ClassBrowser.py
[edit]
[-] ReplaceDialog.pyo
[edit]
[-] SearchDialogBase.py
[edit]
[-] idle.pyo
[edit]
[-] StackViewer.pyc
[edit]
[-] configHelpSourceEdit.pyc
[edit]
[-] __init__.pyo
[edit]
[-] idlever.pyo
[edit]
[-] WindowList.py
[edit]
[-] Delegator.py
[edit]
[-] EditorWindow.pyo
[edit]
[-] AutoCompleteWindow.pyo
[edit]
[-] AutoCompleteWindow.py
[edit]
[-] PathBrowser.py
[edit]
[-] configDialog.py
[edit]
[-] RemoteDebugger.pyo
[edit]
[-] FileList.pyc
[edit]
[-] rpc.pyc
[edit]
[-] MultiStatusBar.py
[edit]
[-] keybindingDialog.py
[edit]
[-] AutoComplete.pyc
[edit]
[-] configDialog.pyo
[edit]
[-] textView.pyc
[edit]
[-] run.pyc
[edit]
[-] IdleHistory.py
[edit]
[+]
idle_test
[-] extend.txt
[edit]
[-] configSectionNameDialog.pyo
[edit]
[-] StackViewer.py
[edit]
[-] configHandler.pyc
[edit]
[-] dynOptionMenuWidget.py
[edit]
[-] ReplaceDialog.pyc
[edit]
[-] RemoteDebugger.py
[edit]
[-] TreeWidget.py
[edit]
[-] AutoExpand.pyo
[edit]
[-] RstripExtension.pyc
[edit]
[-] help.html
[edit]
[-] IOBinding.pyc
[edit]
[-] AutoCompleteWindow.pyc
[edit]
[-] MultiCall.pyc
[edit]
[-] Bindings.pyc
[edit]
[-] Bindings.pyo
[edit]
[-] CallTips.py
[edit]
[-] RstripExtension.pyo
[edit]
[-] textView.py
[edit]
[-] ClassBrowser.pyo
[edit]
[-] Percolator.pyc
[edit]
[-] CallTipWindow.pyo
[edit]
[-] configDialog.pyc
[edit]
[-] ClassBrowser.pyc
[edit]
[-] ScrolledList.py
[edit]
[-] textView.pyo
[edit]
[-] __init__.pyc
[edit]
[-] ColorDelegator.py
[edit]
[-] keybindingDialog.pyc
[edit]
[-] ParenMatch.pyo
[edit]
[-] ScriptBinding.py
[edit]
[-] WidgetRedirector.pyo
[edit]
[-] rpc.py
[edit]
[-] help.txt
[edit]
[-] ParenMatch.py
[edit]
[-] IOBinding.py
[edit]
[-] FormatParagraph.pyc
[edit]
[-] SearchDialog.pyc
[edit]
[-] ToolTip.pyc
[edit]
[-] macosxSupport.pyc
[edit]
[-] SearchEngine.pyo
[edit]
[-] Percolator.py
[edit]
[-] HyperParser.pyo
[edit]
[-] ZoomHeight.pyo
[edit]
[-] config-keys.def
[edit]
[-] ObjectBrowser.pyo
[edit]
[-] keybindingDialog.pyo
[edit]
[+]
Icons
[-] PyShell.pyo
[edit]
[-] MultiCall.py
[edit]
[-] __init__.py
[edit]
[-] ToolTip.py
[edit]
[-] HISTORY.txt
[edit]
[-] NEWS.txt
[edit]
[-] idle.pyw
[edit]
[-] AutoComplete.pyo
[edit]
[-] idle.pyc
[edit]
[-] SearchEngine.pyc
[edit]
[-] OutputWindow.py
[edit]
[-] ZoomHeight.pyc
[edit]
[-] RemoteObjectBrowser.py
[edit]
[-] configHandler.pyo
[edit]
[-] rpc.pyo
[edit]
[-] dynOptionMenuWidget.pyc
[edit]
[-] UndoDelegator.py
[edit]
[-] ObjectBrowser.py
[edit]
[-] TODO.txt
[edit]
[-] CallTipWindow.py
[edit]
[-] MultiStatusBar.pyo
[edit]
[-] AutoComplete.py
[edit]
[-] RstripExtension.py
[edit]
[-] PyParse.py
[edit]
[-] tabbedpages.pyc
[edit]
[-] TreeWidget.pyo
[edit]
[-] macosxSupport.pyo
[edit]
[-] RemoteDebugger.pyc
[edit]
[-] Delegator.pyo
[edit]
[-] idlever.py
[edit]
[-] UndoDelegator.pyc
[edit]
[-] StackViewer.pyo
[edit]
[-] SearchEngine.py
[edit]
[-] Delegator.pyc
[edit]
[-] PyParse.pyc
[edit]
[-] Debugger.py
[edit]
[-] OutputWindow.pyo
[edit]
[-] SearchDialog.py
[edit]
[-] idlever.pyc
[edit]
[-] UndoDelegator.pyo
[edit]
[-] CallTips.pyc
[edit]
[-] CodeContext.pyc
[edit]
[-] macosxSupport.py
[edit]
[-] ToolTip.pyo
[edit]
[-] README.txt
[edit]
[-] EditorWindow.pyc
[edit]
[-] Debugger.pyo
[edit]
[-] HyperParser.pyc
[edit]
[-] WidgetRedirector.py
[edit]
[-] config-highlight.def
[edit]
[-] dynOptionMenuWidget.pyo
[edit]
[-] Percolator.pyo
[edit]
[-] configHelpSourceEdit.pyo
[edit]
[-] ObjectBrowser.pyc
[edit]
[-] aboutDialog.py
[edit]
[-] ReplaceDialog.py
[edit]
[-] CallTips.pyo
[edit]
[-] config-extensions.def
[edit]
[-] WindowList.pyo
[edit]
[-] SearchDialog.pyo
[edit]
[-] IdleHistory.pyc
[edit]
[-] CREDITS.txt
[edit]
[-] CodeContext.pyo
[edit]
[-] RemoteObjectBrowser.pyo
[edit]
[-] ScrolledList.pyc
[edit]
[-] AutoExpand.pyc
[edit]
[-] GrepDialog.pyo
[edit]
[-] configHandler.py
[edit]
[-] FormatParagraph.pyo
[edit]
[-] OutputWindow.pyc
[edit]
[-] WindowList.pyc
[edit]
[-] idle.py
[edit]
[-] HyperParser.py
[edit]
[-] GrepDialog.pyc
[edit]
[-] TreeWidget.pyc
[edit]
[-] tabbedpages.pyo
[edit]
[-] configSectionNameDialog.pyc
[edit]
[-] ZoomHeight.py
[edit]
[-] PathBrowser.pyo
[edit]
[-] aboutDialog.pyo
[edit]
[-] run.py
[edit]
[-] ScrolledList.pyo
[edit]
[-] Bindings.py
[edit]
[-] FileList.pyo
[edit]
[-] config-main.def
[edit]
[-] help.py
[edit]
[-] ScriptBinding.pyc
[edit]
[-] run.pyo
[edit]
[-] ColorDelegator.pyc
[edit]
[-] aboutDialog.pyc
[edit]
[-] FormatParagraph.py
[edit]
[-] CallTipWindow.pyc
[edit]
[-] ParenMatch.pyc
[edit]
[-] PyShell.py
[edit]
[-] configSectionNameDialog.py
[edit]
[-] PyParse.pyo
[edit]
[-] tabbedpages.py
[edit]
[-] PyShell.pyc
[edit]
[-] MultiStatusBar.pyc
[edit]
[-] configHelpSourceEdit.py
[edit]
[-] ChangeLog
[edit]
[-] PathBrowser.pyc
[edit]
[-] ColorDelegator.pyo
[edit]
[-] CodeContext.py
[edit]
[-] AutoExpand.py
[edit]
[-] RemoteObjectBrowser.pyc
[edit]
[-] Debugger.pyc
[edit]
[-] ScriptBinding.pyo
[edit]
[-] IOBinding.pyo
[edit]