blob: 3103391cfe58be0ac7ed9da49e493c62198df45d [file] [log] [blame]
wohlganger58fc71c2017-09-10 16:19:47 -05001"""codecontext - display the block context above the edit window
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +00002
Kurt B. Kaiser0a135792005-10-03 19:26:03 +00003Once code has scrolled off the top of a window, it can be difficult to
4determine which block you are in. This extension implements a pane at the top
5of each IDLE edit window which provides block structure hints. These hints are
6the lines which contain the block opening keywords, e.g. 'if', for the
Cheryl Sabella29996a12018-06-01 19:23:00 -04007enclosing block. The number of hint lines is determined by the maxlines
Terry Jan Reedy6fa5bdc2016-05-28 13:22:31 -04008variable in the codecontext section of config-extensions.def. Lines which do
Kurt B. Kaiser0a135792005-10-03 19:26:03 +00009not open blocks are not shown in the context hints pane.
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000010
11"""
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000012import re
Kurt B. Kaiser3536a5c2007-12-12 17:22:06 +000013from sys import maxsize as INFINITY
Terry Jan Reedybfbaa6b2016-08-31 00:50:55 -040014
15import tkinter
Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)43a74ab2018-11-10 12:15:31 +053016from tkinter.constants import TOP, X, SUNKEN
Terry Jan Reedybfbaa6b2016-08-31 00:50:55 -040017
Terry Jan Reedy6fa5bdc2016-05-28 13:22:31 -040018from idlelib.config import idleConf
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000019
Terry Jan Reedy049882e2014-12-11 05:33:36 -050020BLOCKOPENERS = {"class", "def", "elif", "else", "except", "finally", "for",
Terry Jan Reedyd89ca942018-05-17 20:38:41 -040021 "if", "try", "while", "with", "async"}
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000022
Cheryl Sabella654038d2018-05-19 15:34:03 -040023
Cheryl Sabella85060162018-05-23 22:18:15 -040024def get_spaces_firstword(codeline, c=re.compile(r"^(\s*)(\w*)")):
25 "Extract the beginning whitespace and first word from codeline."
26 return c.match(codeline).groups()
27
28
29def get_line_info(codeline):
30 """Return tuple of (line indent value, codeline, block start keyword).
31
32 The indentation of empty lines (or comment lines) is INFINITY.
33 If the line does not start a block, the keyword value is False.
34 """
35 spaces, firstword = get_spaces_firstword(codeline)
36 indent = len(spaces)
37 if len(codeline) == indent or codeline[indent] == '#':
38 indent = INFINITY
39 opener = firstword in BLOCKOPENERS and firstword
40 return indent, codeline, opener
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000041
wohlganger58fc71c2017-09-10 16:19:47 -050042
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000043class CodeContext:
Cheryl Sabella654038d2018-05-19 15:34:03 -040044 "Display block context above the edit window."
Tal Einat7036e1d2019-07-17 11:15:53 +030045 UPDATEINTERVAL = 100 # millisec
Cheryl Sabella654038d2018-05-19 15:34:03 -040046
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000047 def __init__(self, editwin):
Cheryl Sabella654038d2018-05-19 15:34:03 -040048 """Initialize settings for context block.
49
50 editwin is the Editor window for the context block.
51 self.text is the editor window text widget.
Cheryl Sabella654038d2018-05-19 15:34:03 -040052
Cheryl Sabellab609e682018-06-04 11:58:44 -040053 self.context displays the code context text above the editor text.
Cheryl Sabella85060162018-05-23 22:18:15 -040054 Initially None, it is toggled via <<toggle-code-context>>.
Cheryl Sabella654038d2018-05-19 15:34:03 -040055 self.topvisible is the number of the top text line displayed.
56 self.info is a list of (line number, indent level, line text,
57 block keyword) tuples for the block structure above topvisible.
Cheryl Sabella85060162018-05-23 22:18:15 -040058 self.info[0] is initialized with a 'dummy' line which
59 starts the toplevel 'block' of the module.
Cheryl Sabella654038d2018-05-19 15:34:03 -040060
61 self.t1 and self.t2 are two timer events on the editor text widget to
Cheryl Sabella85060162018-05-23 22:18:15 -040062 monitor for changes to the context text or editor font.
Cheryl Sabella654038d2018-05-19 15:34:03 -040063 """
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000064 self.editwin = editwin
65 self.text = editwin.text
Tal Einate0a1f8f2019-07-18 23:03:18 +030066 self._reset()
67
68 def _reset(self):
Cheryl Sabellab609e682018-06-04 11:58:44 -040069 self.context = None
Tal Einate0a1f8f2019-07-18 23:03:18 +030070 self.t1 = None
Kurt B. Kaiser0a135792005-10-03 19:26:03 +000071 self.topvisible = 1
Cheryl Sabella654038d2018-05-19 15:34:03 -040072 self.info = [(0, -1, "", False)]
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000073
wohlganger58fc71c2017-09-10 16:19:47 -050074 @classmethod
75 def reload(cls):
Cheryl Sabella654038d2018-05-19 15:34:03 -040076 "Load class variables from config."
wohlganger58fc71c2017-09-10 16:19:47 -050077 cls.context_depth = idleConf.GetOption("extensions", "CodeContext",
Tal Einat7036e1d2019-07-17 11:15:53 +030078 "maxlines", type="int",
79 default=15)
Terry Jan Reedya6bb3132017-09-17 00:56:56 -040080
81 def __del__(self):
Cheryl Sabella654038d2018-05-19 15:34:03 -040082 "Cancel scheduled events."
Tal Einat7036e1d2019-07-17 11:15:53 +030083 if self.t1 is not None:
84 try:
85 self.text.after_cancel(self.t1)
86 except tkinter.TclError:
87 pass
88 self.t1 = None
wohlganger58fc71c2017-09-10 16:19:47 -050089
Kurt B. Kaiserd00587a2004-04-24 03:08:13 +000090 def toggle_code_context_event(self, event=None):
Cheryl Sabella654038d2018-05-19 15:34:03 -040091 """Toggle code context display.
92
Cheryl Sabellab609e682018-06-04 11:58:44 -040093 If self.context doesn't exist, create it to match the size of the editor
Cheryl Sabella654038d2018-05-19 15:34:03 -040094 window text (toggle on). If it does exist, destroy it (toggle off).
95 Return 'break' to complete the processing of the binding.
96 """
Tal Einat7036e1d2019-07-17 11:15:53 +030097 if self.context is None:
Thomas Wouterscf297e42007-02-23 15:07:44 +000098 # Calculate the border width and horizontal padding required to
99 # align the context with the text in the main Text widget.
Thomas Wouters89f507f2006-12-13 04:49:30 +0000100 #
Serhiy Storchaka645058d2015-05-06 14:00:04 +0300101 # All values are passed through getint(), since some
Thomas Wouterscf297e42007-02-23 15:07:44 +0000102 # values may be pixel objects, which can't simply be added to ints.
103 widgets = self.editwin.text, self.editwin.text_frame
Cheryl Sabella85060162018-05-23 22:18:15 -0400104 # Calculate the required horizontal padding and border width.
Thomas Wouters89f507f2006-12-13 04:49:30 +0000105 padx = 0
Cheryl Sabella85060162018-05-23 22:18:15 -0400106 border = 0
Thomas Wouterscf297e42007-02-23 15:07:44 +0000107 for widget in widgets:
Serhiy Storchaka645058d2015-05-06 14:00:04 +0300108 padx += widget.tk.getint(widget.pack_info()['padx'])
109 padx += widget.tk.getint(widget.cget('padx'))
Serhiy Storchaka645058d2015-05-06 14:00:04 +0300110 border += widget.tk.getint(widget.cget('border'))
Cheryl Sabellab609e682018-06-04 11:58:44 -0400111 self.context = tkinter.Text(
Tal Einat7036e1d2019-07-17 11:15:53 +0300112 self.editwin.top, font=self.text['font'],
113 height=1,
114 width=1, # Don't request more than we get.
115 padx=padx, border=border, relief=SUNKEN, state='disabled')
116 self.update_highlight_colors()
Cheryl Sabella041272b2018-06-08 01:21:15 -0400117 self.context.bind('<ButtonRelease-1>', self.jumptoline)
Tal Einate0a1f8f2019-07-18 23:03:18 +0300118 # Get the current context and initiate the recurring update event.
119 self.timer_event()
Cheryl Sabellab609e682018-06-04 11:58:44 -0400120 # Pack the context widget before and above the text_frame widget,
Cheryl Sabella85060162018-05-23 22:18:15 -0400121 # thus ensuring that it will appear directly above text_frame.
Cheryl Sabellab609e682018-06-04 11:58:44 -0400122 self.context.pack(side=TOP, fill=X, expand=False,
Tal Einat7036e1d2019-07-17 11:15:53 +0300123 before=self.editwin.text_frame)
Cheryl Sabellac1b4b0f2018-12-22 01:25:45 -0500124 menu_status = 'Hide'
Kurt B. Kaiserd00587a2004-04-24 03:08:13 +0000125 else:
Cheryl Sabellab609e682018-06-04 11:58:44 -0400126 self.context.destroy()
Tal Einat7036e1d2019-07-17 11:15:53 +0300127 self.text.after_cancel(self.t1)
Tal Einate0a1f8f2019-07-18 23:03:18 +0300128 self._reset()
Cheryl Sabellac1b4b0f2018-12-22 01:25:45 -0500129 menu_status = 'Show'
130 self.editwin.update_menu_label(menu='options', index='* Code Context',
131 label=f'{menu_status} Code Context')
Serhiy Storchaka213ce122017-06-27 07:02:32 +0300132 return "break"
Kurt B. Kaiserd00587a2004-04-24 03:08:13 +0000133
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000134 def get_context(self, new_topvisible, stopline=1, stopindent=0):
Cheryl Sabella654038d2018-05-19 15:34:03 -0400135 """Return a list of block line tuples and the 'last' indent.
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000136
Cheryl Sabella654038d2018-05-19 15:34:03 -0400137 The tuple fields are (linenum, indent, text, opener).
138 The list represents header lines from new_topvisible back to
139 stopline with successively shorter indents > stopindent.
140 The list is returned ordered by line number.
141 Last indent returned is the smallest indent observed.
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000142 """
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000143 assert stopline > 0
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000144 lines = []
Cheryl Sabella85060162018-05-23 22:18:15 -0400145 # The indentation level we are currently in.
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000146 lastindent = INFINITY
147 # For a line to be interesting, it must begin with a block opening
148 # keyword, and have less indentation than lastindent.
Guido van Rossum805365e2007-05-07 22:24:25 +0000149 for linenum in range(new_topvisible, stopline-1, -1):
Cheryl Sabella85060162018-05-23 22:18:15 -0400150 codeline = self.text.get(f'{linenum}.0', f'{linenum}.end')
151 indent, text, opener = get_line_info(codeline)
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000152 if indent < lastindent:
153 lastindent = indent
Kurt B. Kaisere3636e02004-04-26 22:26:04 +0000154 if opener in ("else", "elif"):
Cheryl Sabella85060162018-05-23 22:18:15 -0400155 # Also show the if statement.
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000156 lastindent += 1
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000157 if opener and linenum < new_topvisible and indent >= stopindent:
158 lines.append((linenum, indent, text, opener))
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000159 if lastindent <= stopindent:
160 break
161 lines.reverse()
162 return lines, lastindent
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000163
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000164 def update_code_context(self):
165 """Update context information and lines visible in the context pane.
166
Cheryl Sabella654038d2018-05-19 15:34:03 -0400167 No update is done if the text hasn't been scrolled. If the text
168 was scrolled, the lines that should be shown in the context will
Cheryl Sabellab609e682018-06-04 11:58:44 -0400169 be retrieved and the context area will be updated with the code,
170 up to the number of maxlines.
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000171 """
Tal Einat7036e1d2019-07-17 11:15:53 +0300172 new_topvisible = self.editwin.getlineno("@0,0")
Cheryl Sabella85060162018-05-23 22:18:15 -0400173 if self.topvisible == new_topvisible: # Haven't scrolled.
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000174 return
Cheryl Sabella85060162018-05-23 22:18:15 -0400175 if self.topvisible < new_topvisible: # Scroll down.
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000176 lines, lastindent = self.get_context(new_topvisible,
177 self.topvisible)
Cheryl Sabella85060162018-05-23 22:18:15 -0400178 # Retain only context info applicable to the region
179 # between topvisible and new_topvisible.
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000180 while self.info[-1][1] >= lastindent:
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000181 del self.info[-1]
Cheryl Sabella85060162018-05-23 22:18:15 -0400182 else: # self.topvisible > new_topvisible: # Scroll up.
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000183 stopindent = self.info[-1][1] + 1
Cheryl Sabella85060162018-05-23 22:18:15 -0400184 # Retain only context info associated
185 # with lines above new_topvisible.
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000186 while self.info[-1][0] >= new_topvisible:
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000187 stopindent = self.info[-1][1]
188 del self.info[-1]
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000189 lines, lastindent = self.get_context(new_topvisible,
190 self.info[-1][0]+1,
191 stopindent)
192 self.info.extend(lines)
193 self.topvisible = new_topvisible
Cheryl Sabella29996a12018-06-01 19:23:00 -0400194 # Last context_depth context lines.
195 context_strings = [x[2] for x in self.info[-self.context_depth:]]
196 showfirst = 0 if context_strings[0] else 1
Cheryl Sabellab609e682018-06-04 11:58:44 -0400197 # Update widget.
198 self.context['height'] = len(context_strings) - showfirst
199 self.context['state'] = 'normal'
200 self.context.delete('1.0', 'end')
201 self.context.insert('end', '\n'.join(context_strings[showfirst:]))
202 self.context['state'] = 'disabled'
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000203
Cheryl Sabella041272b2018-06-08 01:21:15 -0400204 def jumptoline(self, event=None):
205 "Show clicked context line at top of editor."
206 lines = len(self.info)
207 if lines == 1: # No context lines are showing.
208 newtop = 1
209 else:
210 # Line number clicked.
211 contextline = int(float(self.context.index('insert')))
212 # Lines not displayed due to maxlines.
213 offset = max(1, lines - self.context_depth) - 1
214 newtop = self.info[offset + contextline][0]
215 self.text.yview(f'{newtop}.0')
216 self.update_code_context()
217
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000218 def timer_event(self):
Cheryl Sabella654038d2018-05-19 15:34:03 -0400219 "Event on editor text widget triggered every UPDATEINTERVAL ms."
Tal Einat7036e1d2019-07-17 11:15:53 +0300220 if self.context is not None:
Kurt B. Kaiser0a135792005-10-03 19:26:03 +0000221 self.update_code_context()
Tal Einat7036e1d2019-07-17 11:15:53 +0300222 self.t1 = self.text.after(self.UPDATEINTERVAL, self.timer_event)
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000223
Tal Einat7036e1d2019-07-17 11:15:53 +0300224 def update_font(self, font):
225 if self.context is not None:
226 self.context['font'] = font
227
228 def update_highlight_colors(self):
229 if self.context is not None:
230 colors = idleConf.GetHighlight(idleConf.CurrentTheme(), 'context')
231 self.context['background'] = colors['background']
232 self.context['foreground'] = colors['foreground']
wohlganger58fc71c2017-09-10 16:19:47 -0500233
234
235CodeContext.reload()
Cheryl Sabella654038d2018-05-19 15:34:03 -0400236
237
Terry Jan Reedy4d921582018-06-19 19:12:52 -0400238if __name__ == "__main__":
239 from unittest import main
240 main('idlelib.idle_test.test_codecontext', verbosity=2, exit=False)
241
242 # Add htest.