
    ;3h%                        d Z ddlmZ ddlZddlmZmZ ddlmZm	Z	m
Z
 ddlmZ ddlmZmZ ddlmZ dd	lmZ erdd
lmZ  e        G d de             Zy)zgr.Textbox() component.    )annotationsN)CallableSequence)TYPE_CHECKINGAnyLiteral)document)	ComponentFormComponent)Events)I18nData)Timerc                      e Zd ZdZej
                  ej                  ej                  ej                  ej                  ej                  ej                  ej                  gZ	 ddddddddddddddddddddddddddddd		 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 d fd
ZddZddZddZddZddZ xZS )Textboxz
    Creates a textarea for user to enter string input or display string output.

    Demos: hello_world, diff_texts, sentence_builder
    Guides: creating-a-chatbot, real-time-speech-recognition
    Ntext   T   Fvalue)typelines	max_linesplaceholderlabelinfoeveryinputs
show_label	containerscale	min_widthinteractivevisibleelem_id	autofocus
autoscrollelem_classesrenderkeypreserved_by_key
text_alignrtlshow_copy_button
max_length
submit_btnstop_btnc                  |dvrt        d      |dv r7|dk7  rt        j                  d       d}|dvrt        j                  d       d}|| _        || _        || _        || _        || _        || _        || _	        || _
        t        | 1  ||||	|
|||||||||||       || _        || _        || _        || _        y	)
a  
        Parameters:
            value: text to show in textbox. If a function is provided, the function will be called each time the app loads to set the initial value of this component.
            type: The type of textbox. One of: 'text' (which allows users to enter any text), 'password' (which masks text entered by the user), 'email' (which suggests email input to the browser). For "password" and "email" types, `lines` must be 1 and `max_lines` must be None or 1.
            lines: minimum number of line rows to provide in textarea.
            max_lines: maximum number of line rows to provide in textarea. Must be at least `lines`. If not provided, the maximum number of lines is max(lines, 20) for "text" type, and 1 for "password" and "email" types.
            placeholder: placeholder hint to provide behind textarea.
            label: the label for this component, displayed above the component if `show_label` is `True` and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component corresponds to.
            info: additional component description, appears below the label in smaller font. Supports markdown / HTML syntax.
            every: continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.
            inputs: components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.
            show_label: if True, will display the label. If False, the copy button is hidden as well as well as the label.
            container: if True, will place the component in a container - providing some extra padding around the border.
            scale: relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.
            min_width: minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.
            interactive: if True, will be rendered as an editable textbox; if False, editing will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.
            visible: If False, component will be hidden.
            autofocus: If True, will focus on the textbox when the page loads. Use this carefully, as it can cause usability issues for sighted and non-sighted users.
            elem_id: An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.
            elem_classes: An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.
            render: If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.
            key: in a gr.render, Components with the same key across re-renders are treated as the same component, not a new component. Properties set in 'preserved_by_key' are not reset across a re-render.
            preserved_by_key: A list of parameters from this component's constructor. Inside a gr.render() function, if a component is re-rendered with the same key, these (and only these) parameters will be preserved in the UI (if they have been changed by the user or an event listener) instead of re-rendered based on the values provided during constructor.
            text_align: How to align the text in the textbox, can be: "left", "right", or None (default). If None, the alignment is left if `rtl` is False, or right if `rtl` is True. Can only be changed if `type` is "text".
            rtl: If True and `type` is "text", sets the direction of the text to right-to-left (cursor appears on the left of the text). Default is False, which renders cursor on the right.
            show_copy_button: If True, includes a copy button to copy the text in the textbox. Only applies if show_label is True.
            autoscroll: If True, will automatically scroll to the bottom of the textbox when the value changes, unless the user scrolls up. If False, will not scroll to the bottom of the textbox when the value changes.
            max_length: maximum number of characters (including newlines) allowed in the textbox. If None, there is no maximum length.
            submit_btn: If False, will not show a submit button. If True, will show a submit button with an icon. If a string, will use that string as the submit button text. When the submit button is shown, the border of the textbox will be removed, which is useful for creating a chat interface.
        )r   passwordemailz5`type` must be one of "text", "password", or "email".)r1   r2   r   zZThe `lines` parameter must be 1 for `type` of 'password' or 'email'. Setting `lines` to 1.)Nr   zjThe `max_lines` parameter must be None or 1 for `type` of 'password' or 'email'. Setting `max_lines` to 1.)r   r   r   r   r   r   r   r    r!   r"   r#   r&   r'   r(   r)   r   N)
ValueErrorwarningswarnr   r   r   r,   r.   r/   r$   r%   super__init__r   r+   r*   r-   )selfr   r   r   r   r   r   r   r   r   r   r   r   r    r!   r"   r#   r$   r%   r&   r'   r(   r)   r*   r+   r,   r-   r.   r/   	__class__s                                Y/var/www/html/audio-gradio/venv/lib/python3.12/site-packages/gradio/components/textbox.pyr7   zTextbox.__init__'   s    | 44TUU((zp 	) A 	
"& 0$ "$!#%-! 	 	
$ 	$$    c                     |dS t        |      S )z
        Parameters:
            payload: the text entered in the textarea.
        Returns:
            Passes text value as a {str} into the function.
        Nstr)r8   payloads     r:   
preprocesszTextbox.preprocess   s     t8CL8r;   c                     |dS t        |      S )z
        Parameters:
            value: Expects a {str} returned from function and sets textarea value to it.
        Returns:
            The value to display in the textarea.
        Nr=   )r8   r   s     r:   postprocesszTextbox.postprocess   s     }t4#e*4r;   c                
    ddiS )Nr   string r8   s    r:   api_infozTextbox.api_info   s    !!r;   c                     yNzHello!!rE   rF   s    r:   example_payloadzTextbox.example_payload       r;   c                     yrI   rE   rF   s    r:   example_valuezTextbox.example_value   rK   r;   )N)8r   z str | I18nData | Callable | Noner   z$Literal['text', 'password', 'email']r   intr   
int | Noner   str | I18nData | Noner   rP   r   rP   r   zTimer | float | Noner   z7Component | Sequence[Component] | set[Component] | Noner   bool | Noner   boolr   rO   r    rN   r!   rQ   r"   rR   r#   
str | Noner$   rR   r%   rR   r&   list[str] | str | Noner'   rR   r(   z(int | str | tuple[int | str, ...] | Noner)   rT   r*   zLiteral['left', 'right'] | Noner+   rR   r,   rR   r-   rO   r.   str | bool | Noner/   rU   )r?   rS   returnrS   )r   rS   rV   rS   )rV   zdict[str, Any])rV   r   )__name__
__module____qualname____doc__r   changeinputselectsubmitfocusblurstopcopyEVENTSr7   r@   rB   rG   rJ   rM   __classcell__)r9   s   @r:   r   r      s    		F 37j% 6< $-1'+&*&*JN"& #'"/38<3:6:!&!%(-&+=j%/j% 3	j%
 j% j% +j% %j% $j% $j% Hj%  j% j% j% j%  !!j%" #j%$ %j%& 'j%( )j%* -+j%, -j%. 6/j%0 11j%2 43j%4 5j%6 7j%8 9j%: &;j%< $=j%X95"r;   r   )rZ   
__future__r   r4   collections.abcr   r   typingr   r   r   gradio_client.documentationr	   gradio.components.baser
   r   gradio.eventsr   gradio.i18nr   gradio.componentsr   r   rE   r;   r:   <module>rm      sI     "  . . . 0 ;    ' 
Xm X Xr;   