Hacked By AnonymousFox

Current Path : /opt/alt/python37/lib64/python3.7/idlelib/__pycache__/
Upload File :
Current File : //opt/alt/python37/lib64/python3.7/idlelib/__pycache__/searchbase.cpython-37.opt-1.pyc

B

� fq�@s�dZddlmZddlmZmZmZmZmZm	Z	Gdd�d�Z
Gdd�de
�Zedkr�dd	l
mZed
ddd
�ddlmZee�dS)zBDefine SearchDialogBase used by Search, Replace, and Grep dialogs.�)�Toplevel)�Frame�Entry�Label�Button�Checkbutton�Radiobuttonc@s|eZdZdZdZdZdZdd�Zddd	�Zdd
d�Z	dd
�Z
dd�Zdd�Zddd�Z
dd�Zdd�Zd dd�Zdd�ZdS)!�SearchDialogBaseayCreate most of a 3 or 4 row, 3 column search dialog.

    The left and wide middle column contain:
    1 or 2 labeled text entry lines (make_entry, create_entries);
    a row of standard Checkbuttons (make_frame, create_option_buttons),
    each of which corresponds to a search engine Variable;
    a row of dialog-specific Check/Radiobuttons (create_other_buttons).

    The narrow right column contains command buttons
    (make_button, create_command_buttons).
    These are bound to functions that execute the command.

    Except for command buttons, this base class is not limited to items
    common to all three subclasses.  Rather, it is the Find dialog minus
    the "Find Next" command, its execution function, and the
    default_command attribute needed in create_widgets. The other
    dialogs override attributes and methods, the latter to replace and
    add widgets.
    z
Search DialogZSearch�cCs||_|j|_||_d|_dS)a'Initialize root, engine, and top attributes.

        top (level widget): set in create_widgets() called from open().
        text (Text searched): set in open(), only used in subclasses().
        ent (ry): created in make_entry() called from create_entry().
        row (of grid): 0 in create_widgets(), +1 in make_entry/frame().
        default_command: set in subclasses, used in create_widgets().

        title (of dialog): class attribute, override in subclasses.
        icon (of dialog): ditto, use unclear if cannot minimize dialog.
        N)�rootZbell�engine�top)�selfrr�r�7/opt/alt/python37/lib64/python3.7/idlelib/searchbase.py�__init__ szSearchDialogBase.__init__NcCs�||_|js|��n|j��|j��|j�|���|rZ|j�dd�|j�	d|�|j�
�|j�dd�|j�d�|j�
�dS)z6Make dialog visible on top of others and ready to use.r�endN)�textr
�create_widgetsZ	deiconifyZtkraise�	transientZwinfo_toplevel�ent�delete�insertZ	focus_setZselection_rangeZicursorZgrab_set)rrZsearchphraserrr�open1s



zSearchDialogBase.opencCs*|jr&|j��|j�d�|j��dS)zPut dialog away for later use.�N)r
Zgrab_releaserZwithdraw)rZeventrrr�closeBs
zSearchDialogBase.closecCs�t|j�}|�d|j�|�d|j�|�d|j�|�|j�|�|j	�||_
d|_|j
jdddd�|j
jddddd	�|�
�|��|��|��d
S)z�Create basic 3 row x 3 col search (find) dialog.

        Other dialogs override subsidiary create_x methods as needed.
        Replace and Find-in-Files add another entry row.
        z<Return>z<Escape>ZWM_DELETE_WINDOWr�)�pad�weightr
�d)rZminsizerN)rrZbind�default_commandrZprotocolZwm_title�titleZwm_iconname�iconr
�rowZgrid_columnconfigure�create_entries�create_option_buttons�create_other_buttons�create_command_buttons)rr
rrrrIs
zSearchDialogBase.create_widgetscCsVt|j|d�}|j|jddd�t|j|dd�}|j|jddd�|jd|_||fS)z�Return (entry, label), .

        entry - gridded labeled Entry for text entry.
        label - Label widget, returned for testing.
        )rr�nw)r#�column�sticky)ZtextvariableZexportselectionr
�nwe)rr
�gridr#r)rZ
label_text�var�label�entryrrr�
make_entry`szSearchDialogBase.make_entrycCs|�d|jj�d|_dS)z/Create one or more entry lines with make_entry.zFind:rN)r0rZpatvarr)rrrrr$mszSearchDialogBase.create_entriescCs\|r&t|j|d�}|j|jddd�nd}t|j�}|j|jdddd�|jd|_||fS)	z�Return (frame, label).

        frame - gridded labeled Frame for option or other buttons.
        label - Label widget, returned for testing.
        )rrr()r#r)r*rr
r+)r#r)Z
columnspanr*)rr
r,r#r)rZ	labeltextr.�framerrr�
make_frameqs
zSearchDialogBase.make_framecCs||�d�d}|j}|jdf|jdf|jdfg}|jrF|�|jdf�x,|D]$\}}t|||d�}|j	dd	d
�qLW||fS)aReturn (filled frame, options) for testing.

        Options is a list of searchengine booleanvar, label pairs.
        A gridded frame from make_frame is filled with a Checkbutton
        for each pair, bound to the var, with the corresponding label.
        ZOptionsrzRegular expressionz
Match casez
Whole wordzWrap around)�variabler�left�both)�side�fill)
r2rZrevarZcasevarZwordvar�needwrapbutton�appendZwrapvarr�pack)rr1rZoptionsr-r.�btnrrrr%�sz&SearchDialogBase.create_option_buttonscCsV|�d�d}|jj}ddg}x.|D]&\}}t||||d�}|jddd�q$W||fS)	z�Return (frame, others) for testing.

        Others is a list of value, label pairs.
        A gridded frame from make_frame is filled with radio buttons.
        Z	Directionr)r
ZUp)rZDown)r3�valuerr4r5)r6r7)r2rZbackvarrr:)rr1r-Zothers�valr.r;rrrr&�sz%SearchDialogBase.create_other_buttonsrcCsPt|j|||rdpdd�}|j��\}}|jd|ddd�|jj|dd�|S)	z/Return command button gridded in command frame.ZactiveZnormal)r�command�defaultr
rZew)�padyr#r)r*)Zrowspan)r�buttonframeZ	grid_sizer,)rr.r>Zisdef�bZcolsZrowsrrr�make_button�szSearchDialogBase.make_buttoncCs@t|j�}|_|jddddddd�|�d|j�}|��dS)z9Place buttons in vertical command frame gridded on right.rr)r#r)Zpadxr@ZipadxZipadyZCloseN)rr
rAr,rCr�lower)r�frBrrrr'�sz'SearchDialogBase.create_command_buttons)N)N)N)r)�__name__�
__module__�__qualname__�__doc__r!r"r8rrrrr0r$r2r%r&rCr'rrrrr	s





r	c@s eZdZdZdd�Zdd�ZdS)�_searchbasez3Create auto-opening dialog with no text connection.cCs|ddl}ddlm}||_|�|�|_|��t|���t	t
t|�d|�����\}}}}|j
�d|d|df�dS)Nr)�searchenginez[x+]z+%d+%d�(�)�reZidlelibrKr�getrr�printZgeometry�list�map�int�splitr
)r�parentrNrK�widthZheight�x�yrrrr�s"z_searchbase.__init__cCsdS)Nr)rZdummyrrrr ��z_searchbase.default_commandN)rFrGrHrIrr rrrrrJ�srJ�__main__)�mainz!idlelib.idle_test.test_searchbaserF)�	verbosity�exit)�runN)rIZtkinterrZtkinter.ttkrrrrrrr	rJrFZunittestr[Zidlelib.idle_test.htestr^rrrr�<module>s /

Hacked By AnonymousFox1.0, Coded By AnonymousFox