| 
									
										
										
										
											2008-05-17 18:39:55 +00:00
										 |  |  | from tkinter import * | 
					
						
							| 
									
										
										
										
											2007-08-22 23:01:33 +00:00
										 |  |  | from idlelib.EditorWindow import EditorWindow | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2008-05-17 18:39:55 +00:00
										 |  |  | import tkinter.messagebox as tkMessageBox | 
					
						
							| 
									
										
										
										
											2007-08-22 23:01:33 +00:00
										 |  |  | from idlelib import IOBinding | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  | class OutputWindow(EditorWindow): | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |     """An editor window that can serve as an output file.
 | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |     Also the future base class for the Python shell window. | 
					
						
							|  |  |  |     This class has no input facilities. | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |     def __init__(self, *args): | 
					
						
							| 
									
										
										
										
											2003-07-09 18:48:24 +00:00
										 |  |  |         EditorWindow.__init__(self, *args) | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |         self.text.bind("<<goto-file-line>>", self.goto_file_line) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Customize EditorWindow | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def ispythonsource(self, filename): | 
					
						
							|  |  |  |         # No colorization needed | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def short_title(self): | 
					
						
							|  |  |  |         return "Output" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def maybesave(self): | 
					
						
							|  |  |  |         # Override base class method -- don't ask any questions | 
					
						
							|  |  |  |         if self.get_saved(): | 
					
						
							|  |  |  |             return "yes" | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return "no" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Act as output file | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |     def write(self, s, tags=(), mark="insert"): | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  |         if isinstance(s, (bytes, bytes)): | 
					
						
							| 
									
										
										
										
											2007-08-13 06:26:48 +00:00
										 |  |  |             s = s.decode(IOBinding.encoding, "replace") | 
					
						
							| 
									
										
										
										
											2002-09-02 21:29:40 +00:00
										 |  |  |         self.text.insert(mark, s, tags) | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |         self.text.see(mark) | 
					
						
							|  |  |  |         self.text.update() | 
					
						
							| 
									
										
										
										
											2012-07-25 11:32:26 +02:00
										 |  |  |         return len(s) | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-09 18:00:23 +00:00
										 |  |  |     def writelines(self, lines): | 
					
						
							|  |  |  |         for line in lines: | 
					
						
							|  |  |  |             self.write(line) | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def flush(self): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Our own right-button menu | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rmenu_specs = [ | 
					
						
							| 
									
										
										
										
											2012-11-01 22:41:19 +02:00
										 |  |  |         ("Cut", "<<cut>>", "rmenu_check_cut"), | 
					
						
							|  |  |  |         ("Copy", "<<copy>>", "rmenu_check_copy"), | 
					
						
							|  |  |  |         ("Paste", "<<paste>>", "rmenu_check_paste"), | 
					
						
							|  |  |  |         (None, None, None), | 
					
						
							|  |  |  |         ("Go to file/line", "<<goto-file-line>>", None), | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |     ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     file_line_pats = [ | 
					
						
							| 
									
										
										
										
											2009-05-06 03:23:37 +00:00
										 |  |  |         # order of patterns matters | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |         r'file "([^"]*)", line (\d+)', | 
					
						
							|  |  |  |         r'([^\s]+)\((\d+)\)', | 
					
						
							| 
									
										
										
										
											2009-05-06 03:23:37 +00:00
										 |  |  |         r'^(\s*\S.*?):\s*(\d+):',  # Win filename, maybe starting with spaces | 
					
						
							|  |  |  |         r'([^\s]+):\s*(\d+):',     # filename or path, ltrim | 
					
						
							|  |  |  |         r'^\s*(\S.*?):\s*(\d+):',  # Win abs path with embedded spaces, ltrim | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |     ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     file_line_progs = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def goto_file_line(self, event=None): | 
					
						
							|  |  |  |         if self.file_line_progs is None: | 
					
						
							|  |  |  |             l = [] | 
					
						
							|  |  |  |             for pat in self.file_line_pats: | 
					
						
							|  |  |  |                 l.append(re.compile(pat, re.IGNORECASE)) | 
					
						
							|  |  |  |             self.file_line_progs = l | 
					
						
							|  |  |  |         # x, y = self.event.x, self.event.y | 
					
						
							|  |  |  |         # self.text.mark_set("insert", "@%d,%d" % (x, y)) | 
					
						
							|  |  |  |         line = self.text.get("insert linestart", "insert lineend") | 
					
						
							|  |  |  |         result = self._file_line_helper(line) | 
					
						
							|  |  |  |         if not result: | 
					
						
							|  |  |  |             # Try the previous line.  This is handy e.g. in tracebacks, | 
					
						
							|  |  |  |             # where you tend to right-click on the displayed source line | 
					
						
							|  |  |  |             line = self.text.get("insert -1line linestart", | 
					
						
							|  |  |  |                                  "insert -1line lineend") | 
					
						
							|  |  |  |             result = self._file_line_helper(line) | 
					
						
							|  |  |  |             if not result: | 
					
						
							|  |  |  |                 tkMessageBox.showerror( | 
					
						
							|  |  |  |                     "No special line", | 
					
						
							|  |  |  |                     "The line you point at doesn't look like " | 
					
						
							|  |  |  |                     "a valid file name followed by a line number.", | 
					
						
							|  |  |  |                     master=self.text) | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  |         filename, lineno = result | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |         edit = self.flist.open(filename) | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |         edit.gotoline(lineno) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _file_line_helper(self, line): | 
					
						
							|  |  |  |         for prog in self.file_line_progs: | 
					
						
							| 
									
										
										
										
											2009-04-27 16:58:05 +00:00
										 |  |  |             match = prog.search(line) | 
					
						
							|  |  |  |             if match: | 
					
						
							|  |  |  |                 filename, lineno = match.group(1, 2) | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     f = open(filename, "r") | 
					
						
							|  |  |  |                     f.close() | 
					
						
							|  |  |  |                     break | 
					
						
							| 
									
										
										
										
											2012-12-25 16:47:37 +02:00
										 |  |  |                 except OSError: | 
					
						
							| 
									
										
										
										
											2009-04-27 16:58:05 +00:00
										 |  |  |                     continue | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             return None | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             return filename, int(lineno) | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             return None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  | # These classes are currently not used but might come in handy | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class OnDemandOutputWindow: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tagdefs = { | 
					
						
							|  |  |  |         # XXX Should use IdlePrefs.ColorPrefs | 
					
						
							|  |  |  |         "stdout":  {"foreground": "blue"}, | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |         "stderr":  {"foreground": "#007700"}, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |     def __init__(self, flist): | 
					
						
							|  |  |  |         self.flist = flist | 
					
						
							|  |  |  |         self.owin = None | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def write(self, s, tags, mark): | 
					
						
							|  |  |  |         if not self.owin: | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |             self.setup() | 
					
						
							|  |  |  |         self.owin.write(s, tags, mark) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def setup(self): | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |         self.owin = owin = OutputWindow(self.flist) | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |         text = owin.text | 
					
						
							|  |  |  |         for tag, cnf in self.tagdefs.items(): | 
					
						
							|  |  |  |             if cnf: | 
					
						
							| 
									
										
										
										
											2003-07-09 18:48:24 +00:00
										 |  |  |                 text.tag_configure(tag, **cnf) | 
					
						
							| 
									
										
										
										
											2000-08-15 01:13:23 +00:00
										 |  |  |         text.tag_raise('sel') | 
					
						
							| 
									
										
										
										
											2002-06-12 03:28:57 +00:00
										 |  |  |         self.write = self.owin.write |