d CQ d Z ddlZddlZd Z G d d Zedk r*d Z ej e Z e d e e dS dS ) z:Simple textbox editing widget with Emacs-like keybindings. Nc f | |dz |t j ||z dz | ||dz t j ||z dz | ||dz t j ||z dz | |dz |t j ||z dz | ||t j | ||t j | ||t j | ||t j dS )z^Draw a rectangle with corners at the provided upper-left and lower-right coordinates. N) vlinecurses ACS_VLINEhline ACS_HLINEaddchACS_ULCORNERACS_URCORNERACS_LRCORNERACS_LLCORNER)winulyulxlrylrxs ;/opt/alt/python-internal/lib64/python3.11/curses/textpad.py rectangler s IIc!eS&*C#IM:::IIc3q5&*C#IM:::IIc3q5&*C#IM:::IIc!eS&*C#IM:::IIc3+,,,IIc3+,,,IIc3+,,,IIc3+,,,,, c @ e Zd ZdZddZd Zd Zd Zd Zd Z dd Z d S ) Textboxad Editing widget using the interior of a window object. Supports the following Emacs-like key bindings: Ctrl-A Go to left edge of window. Ctrl-B Cursor left, wrapping to previous line if appropriate. Ctrl-D Delete character under cursor. Ctrl-E Go to right edge (stripspaces off) or end of line (stripspaces on). Ctrl-F Cursor right, wrapping to next line when appropriate. Ctrl-G Terminate, returning the window contents. Ctrl-H Delete character backward. Ctrl-J Terminate if the window is 1 line, otherwise insert newline. Ctrl-K If line is blank, delete it, otherwise clear to end of line. Ctrl-L Refresh screen. Ctrl-N Cursor down; move down one line. Ctrl-O Insert a blank line at cursor location. Ctrl-P Cursor up; move up one line. Move operations do nothing if the cursor is at an edge where the movement is not possible. The following synonyms are supported where possible: KEY_LEFT = Ctrl-B, KEY_RIGHT = Ctrl-F, KEY_UP = Ctrl-P, KEY_DOWN = Ctrl-N KEY_BACKSPACE = Ctrl-h Fc || _ || _ | d| _ d | _ | d d S Nr )r insert_mode_update_max_yxstripspaceslastcmdkeypad)selfr r s r __init__zTextbox.__init__+ sE & 1 r c f | j \ }}|dz | _ |dz | _ d S r )r getmaxyxmaxymaxx)r r$ r% s r r zTextbox._update_max_yx3 s3 X&&(( d1H 1H r c | | j } t j | j || t j j k rt | j |dz }n |dk rn|dz }q|S )zuGo to the location of the first blank on the given line, returning the index of the last non-blank character.Tr r )r r% r asciir inchSPmin)r ylasts r _end_of_linezTextbox._end_of_line8 s y |!!$(--4"8"899V\_LL49d1f--!8D r c | | j \ }}d }|| j k s|| j k r| j r| j } | j | n# t j $ r Y nw xY w| j rt j | sn:|}| j \ }}|||f}|| j k || j k | | j j | d S d S N) r r getyxr$ r% r r( r r errorr' isprintmove)r chr+ xbackyxoldchs r _insert_printable_charzTextbox._insert_printable_charF s& !!A$)mmq49}} ( r""""<