3
f( @ s d Z ddlZddlmZ ddlZddlmZmZm Z ddl
mZ dddd d
ddd
ddddhZdZ
dZejdfddZdd ZG dd dZej edkrddlmZ edddd dS )!a< codecontext - display the block context above the edit window
Once code has scrolled off the top of a window, it can be difficult to
determine which block you are in. This extension implements a pane at the top
of each IDLE edit window which provides block structure hints. These hints are
the lines which contain the block opening keywords, e.g. 'if', for the
enclosing block. The number of hint lines is determined by the maxlines
variable in the codecontext section of config-extensions.def. Lines which do
not open blocks are not shown in the context hints pane.
N)maxsize)TOPXSUNKEN)idleConfclassdefelifelseexceptfinallyforiftrywhilewithasyncd i z^(\s*)(\w*)c C s |j | j S )z>Extract the beginning whitespace and first word from codeline.)matchgroups)codelinec r 8/opt/alt/python36/lib64/python3.6/idlelib/codecontext.pyget_spaces_firstword s r c C sF t | \}}t|}t| |ks,| | dkr0t}|tko:|}|| |fS )zReturn tuple of (line indent value, codeline, block start keyword).
The indentation of empty lines (or comment lines) is INFINITY.
If the line does not start a block, the keyword value is False.
#)r lenINFINITYBLOCKOPENERS)r ZspacesZ firstwordindentopenerr r r
get_line_info s r! c @ sb e Zd ZdZdd Zedd Zdd Zdd d
Zdd
dZ dd Z
dddZdd Zdd Z
dS )CodeContextz,Display block context above the edit window.c C s^ || _ |j| _| jd | _tj| _d| _d| _dg| _| jj t
| j| _| jj t
| j| _dS ) a> Initialize settings for context block.
editwin is the Editor window for the context block.
self.text is the editor window text widget.
self.textfont is the editor window font.
self.context displays the code context text above the editor text.
Initially None, it is toggled via <