o
    ˷e6                     @   s   d Z ddlmZmZmZmZmZmZ ddlm	Z	 ddl
mZmZmZmZmZ ddlmZmZmZ g dZeee	eef ZG dd	 d	ZG d
d deZddededee fddZdS )z
Wrapper for the layout.
    )Dict	GeneratorIterableListOptionalUnion)Buffer   )AnyContainerConditionalContainer	ContainerWindowto_container)BufferControlSearchBufferControl	UIControl)LayoutInvalidLayoutErrorwalkc                   @   s  e Zd ZdZ	d;dedee ddfddZdefdd	Z	de
eddf fd
dZdee fddZdeddfddZdedefddZedefddZejdeddfddZedefddZejdeddfddZedefddZedee fddZdee fddZdee fd d!Zedee fd"d#Zd$edee fd%d&Zedefd'd(Z edefd)d*Z!d<d+d,Z"d<d-d.Z#d<d/d0Z$dee% fd1d2Z&dee% fd3d4Z'd<d5d6Z(d<d7d8Z)de%dee% fd9d:Z*dS )=r   aL  
    The layout for a prompt_toolkit
    :class:`~prompt_toolkit.application.Application`.
    This also keeps track of which user control is focused.

    :param container: The "root" container for the layout.
    :param focused_element: element to be focused initially. (Can be anything
        the `focus` function accepts.)
    N	containerfocused_elementreturnc              
   C   st   t || _g | _i | _i | _|d u r0z| jt|   W n ty/ } zt	d|d }~ww | 
| g | _d S )Nz>Invalid layout. The layout does not contain any Window object.)r   r   _stacksearch_links_child_to_parentappendnextfind_all_windowsStopIterationr   focusvisible_windows)selfr   r   e r#   S/var/www/ideatree/venv/lib/python3.10/site-packages/prompt_toolkit/layout/layout.py__init__%   s"   


zLayout.__init__c                 C   s   d| j d| jdS )NzLayout(z, current_window=))r   current_windowr!   r#   r#   r$   __repr__H   s   zLayout.__repr__c                 c   s$    |   D ]
}t|tr|V  qdS )zJ
        Find all the :class:`.UIControl` objects in this layout.
        N)r   
isinstancer   )r!   itemr#   r#   r$   r   K   s   
zLayout.find_all_windowsc                 c   s    |   D ]}|jV  qd S N)r   contentr!   r   r#   r#   r$   find_all_controlsS   s   
zLayout.find_all_controlsvaluec                 C   s  t |tr'|  D ]}t |tr|jj|kr| |  dS q	td|dt |trM|  D ]}t |trD|j|krD| |  dS q0td|dt |t	ri||  vr\td|
 sdtd|| _dS t|}t |tr||  vrtd|f || _dS g }t|ddD ]}t |tr|j
 r|| qt| jD ]}||v r|| _ dS q|r|d	 | _dS td
|)a  
        Focus the given UI element.

        `value` can be either:

        - a :class:`.UIControl`
        - a :class:`.Buffer` instance or the name of a :class:`.Buffer`
        - a :class:`.Window`
        - Any container object. In this case we will focus the :class:`.Window`
          from this container that was focused most recent, or the very first
          focusable :class:`.Window` of the container.
        Nz,Couldn't find Buffer in the current layout: .z7Invalid value. Container does not appear in the layout.z*Invalid value. UIControl is not focusable.z7Invalid value. Window does not appear in the layout: %rTskip_hiddenr   z,Invalid value. Container cannot be focused: )r*   strr/   r   buffernamer   
ValueErrorr   r   is_focusablecurrent_controlr   r   r   r'   r   r-   r   reversedr   )r!   r0   controlwindowscwr#   r#   r$   r   W   s^   









zLayout.focusc                 C   s   t |tr| jdu rdS | jj|kS t |tr| j|kS t |tr&| j|kS t|}t |tr4| j	|kS t
|D ]
}|| j	krB dS q8dS )z
        Check whether the given control has the focus.
        :param value: :class:`.UIControl` or :class:`.Window` instance.
        NFT)r*   r4   current_bufferr6   r   r   r9   r   r   r'   r   )r!   r0   elementr#   r#   r$   	has_focus   s    








zLayout.has_focusc                 C   s   | j d jS )zI
        Get the :class:`.UIControl` to currently has the focus.
        )r   r-   r(   r#   r#   r$   r9      s   zLayout.current_controlr;   c                 C   s,   |   D ]}|j|kr|| _ dS qtd)zC
        Set the :class:`.UIControl` to receive the focus.
        Nz(Control not found in the user interface.)r   r-   r'   r7   )r!   r;   windowr#   r#   r$   r9      s   
c                 C   s
   | j d S )z=Return the :class:`.Window` object that is currently focused.rB   )r   r(   r#   r#   r$   r'      s   
zLayout.current_windowc                 C   s   | j | dS )z8Set the :class:`.Window` object to be currently focused.N)r   r   )r!   r0   r#   r#   r$   r'      s   c                 C   s   | j | jv S )z#True if we are searching right now.)r9   r   r(   r#   r#   r$   is_searching   s   zLayout.is_searchingc                 C   s    | j }t|tr| j|S dS )zY
        Return the :class:`.BufferControl` in which we are searching or `None`.
        N)r9   r*   r   r   get)r!   r;   r#   r#   r$   search_target_buffer_control   s   
z#Layout.search_target_buffer_controlc                 c   s.    |   D ]}t|tr|j r|V  qdS )zl
        Return all the :class:`.Window` objects which are focusable (in the
        'modal' area).
        N)walk_through_modal_arear*   r   r-   r8   )r!   r>   r#   r#   r$   get_focusable_windows   s   zLayout.get_focusable_windowsc                    s   | j   fdd|  D S )zO
        Return a list of :class:`.Window` objects that are focusable.
        c                    s   g | ]}| v r|qS r#   r#   ).0r>   r    r#   r$   
<listcomp>   s    z8Layout.get_visible_focusable_windows.<locals>.<listcomp>)r    rH   r(   r#   rJ   r$   get_visible_focusable_windows   s   z$Layout.get_visible_focusable_windowsc                 C   s   | j }t|tr|jS dS )zD
        The currently focused :class:`~.Buffer` or `None`.
        N)r9   r*   r   r5   r!   
ui_controlr#   r#   r$   r?     s   
zLayout.current_bufferbuffer_namec                 C   sB   |   D ]}t|trt|jtr|jjj|kr|jj  S qdS )zt
        Look in the layout for a buffer with the given name.
        Return `None` when nothing was found.
        N)r   r*   r   r-   r   r5   r6   )r!   rO   r>   r#   r#   r$   get_buffer_by_name  s   zLayout.get_buffer_by_namec                 C   s   | j }t|tS )z
        Return `True` if the currently focused control is a
        :class:`.BufferControl`. (For instance, used to determine whether the
        default key bindings should be active or not.)
        )r9   r*   r   rM   r#   r#   r$   buffer_has_focus  s   
zLayout.buffer_has_focusc                 C   s.   z| j d jW S  ty   | j d j Y S w )zJ
        Get the :class:`.UIControl` to previously had the focus.
        rB   )r   r-   
IndexErrorr(   r#   r#   r$   previous_control   s
   zLayout.previous_controlc                 C   s&   t | jdkr| jdd | _dS dS )z=
        Give the focus to the last focused control.
        r	   NrB   )lenr   r(   r#   r#   r$   
focus_last*  s   zLayout.focus_lastc                 C   sb   |   }t|dkr/z|| j}W n ty   d}Y n	w |d t| }| ||  dS dS )z:
        Focus the next visible/focusable Window.
        r   r	   NrL   rU   indexr'   r7   r   r!   r<   rX   r#   r#   r$   
focus_next1     zLayout.focus_nextc                 C   sb   |   }t|dkr/z|| j}W n ty   d}Y n	w |d t| }| ||  dS dS )z>
        Focus the previous visible/focusable Window.
        r   r	   NrW   rY   r#   r#   r$   focus_previousA  r[   zLayout.focus_previousc                 c   s    t | jE dH  dS )zX
        Walk through all the layout nodes (and their children) and yield them.
        N)r   r   r(   r#   r#   r$   r   Q  s   zLayout.walkc                 c   sH    | j }| s|| jv r| j| }| s|| jv st|E dH  dS )zn
        Walk through all the containers which are in the current 'modal' part
        of the layout.
        N)r'   is_modalr   r   )r!   rootr#   r#   r$   rG   W  s   
zLayout.walk_through_modal_areac                    s0   i  dt ddf fdd| j  | _dS )z=
        Update child->parent relationships mapping.
        r"   r   Nc                    s"   |   D ]
}|  |< | qd S r,   )get_children)r"   r=   parentsr   r#   r$   r   j  s   
z-Layout.update_parents_relations.<locals>.walk)r   r   r   r(   r#   r`   r$   update_parents_relationsd  s   

zLayout.update_parents_relationsc                 C   s   | j   | j  d S r,   )r   clearr   resetr(   r#   r#   r$   rd   s  s   
zLayout.resetc                 C   s"   z| j | W S  ty   Y dS w )zo
        Return the parent container for the given container, or ``None``, if it
        wasn't found.
        N)r   KeyErrorr.   r#   r#   r$   
get_parent|  s
   zLayout.get_parentr,   )r   N)+__name__
__module____qualname____doc__r
   r   FocusableElementr%   r4   r)   r   r   r   r   r   r/   r   boolrA   propertyr9   setterr'   rD   r   rF   rH   r   rL   r   r?   rP   rQ   rT   rV   rZ   r\   r   r   rG   rb   rd   rf   r#   r#   r#   r$   r      sX    
#O				
	



	r   c                   @   s   e Zd ZdS )r   N)rg   rh   ri   r#   r#   r#   r$   r     s    r   Fr   r3   r   c                 c   sF    |rt | tr|  sdS | V  |  D ]}t||dE dH  qdS )z:
    Walk through layout, starting at this container.
    Nr2   )r*   r   filterr_   r   )r   r3   r=   r#   r#   r$   r     s   r   N)F)rj   typingr   r   r   r   r   r   prompt_toolkit.bufferr   
containersr
   r   r   r   r   controlsr   r   r   __all__r4   rk   r   	Exceptionr   rl   r   r#   r#   r#   r$   <module>   s       o 