o
    沪g/                     @  s   d dl mZ d dlmZ d dlmZ d dlmZmZ d dl	m
Z
 d dlmZmZ d dlmZmZmZmZmZ d dlmZ d d	lmZ d d
lmZmZ d dlmZmZmZm Z  er^d dl!m"Z" eG dd dZ#G dd dZ$dS )    )annotations)	dataclass)dedent)TYPE_CHECKINGcast)current_form_id)check_widget_policiesmaybe_raise_label_warnings)KeyLabelVisibilitycompute_and_register_element_id get_label_visibility_proto_valueto_key)Checkbox)gather_metrics)ScriptRunContextget_script_run_ctx)
WidgetArgsWidgetCallbackWidgetKwargsregister_widget)DeltaGeneratorc                   @  s,   e Zd ZU ded< dddZddddZdS )CheckboxSerdeboolvaluevreturnc                 C  s   t |S N)r   )selfr    r   _/var/www/html/chatdoc2/venv/lib/python3.10/site-packages/streamlit/elements/widgets/checkbox.py	serialize3   s   zCheckboxSerde.serialize ui_valuebool | None	widget_idstrc                 C  s   t |d ur|S | jS r   )r   r   )r   r#   r%   r   r   r    deserialize6   s   zCheckboxSerde.deserializeN)r   r   r   r   )r"   )r#   r$   r%   r&   r   r   )__name__
__module____qualname____annotations__r!   r'   r   r   r   r    r   /   s   
 
r   c                   @  s   e Zd Zed						d'dddd(ddZed						d'dddd(ddZ						d'ddejjddd)d"d#Z	e
d*d%d&ZdS )+CheckboxMixincheckboxFNvisible)disabledlabel_visibilitylabelr&   r   r   key
Key | Nonehelp
str | None	on_changeWidgetCallback | NoneargsWidgetArgs | NonekwargsWidgetKwargs | Noner/   r0   r   r   c                C  *   t  }
| j|||||||||	tjj|
dS )at  Display a checkbox widget.

        Parameters
        ----------
        label : str
            A short label explaining to the user what this checkbox is for.
            The label can optionally contain GitHub-flavored Markdown of the
            following types: Bold, Italics, Strikethroughs, Inline Code, Links,
            and Images. Images display like icons, with a max height equal to
            the font height.

            Unsupported Markdown elements are unwrapped so only their children
            (text contents) render. Display unsupported elements as literal
            characters by backslash-escaping them. E.g.,
            ``"1\. Not an ordered list"``.

            See the ``body`` parameter of |st.markdown|_ for additional,
            supported Markdown directives.

            For accessibility reasons, you should never set an empty label, but
            you can hide it with ``label_visibility`` if needed. In the future,
            we may disallow empty labels by raising an exception.

            .. |st.markdown| replace:: ``st.markdown``
            .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown

        value : bool
            Preselect the checkbox when it first renders. This will be
            cast to bool internally.

        key : str or int
            An optional string or integer to use as the unique key for the widget.
            If this is omitted, a key will be generated for the widget
            based on its content. No two widgets may have the same key.

        help : str or None
            A tooltip that gets displayed next to the widget label. Streamlit
            only displays the tooltip when ``label_visibility="visible"``. If
            this is ``None`` (default), no tooltip is displayed.

            The tooltip can optionally contain GitHub-flavored Markdown,
            including the Markdown directives described in the ``body``
            parameter of ``st.markdown``.

        on_change : callable
            An optional callback invoked when this checkbox's value changes.

        args : tuple
            An optional tuple of args to pass to the callback.

        kwargs : dict
            An optional dict of kwargs to pass to the callback.

        disabled : bool
            An optional boolean that disables the checkbox if set to ``True``.
            The default is ``False``.

        label_visibility : "visible", "hidden", or "collapsed"
            The visibility of the label. The default is ``"visible"``. If this
            is ``"hidden"``, Streamlit displays an empty spacer instead of the
            label, which can help keep the widget alligned with other widgets.
            If this is ``"collapsed"``, Streamlit displays no label or spacer.

        Returns
        -------
        bool
            Whether or not the checkbox is checked.

        Example
        -------
        >>> import streamlit as st
        >>>
        >>> agree = st.checkbox("I agree")
        >>>
        >>> if agree:
        ...     st.write("Great!")

        .. output::
           https://doc-checkbox.streamlit.app/
           height: 220px

        r1   r   r2   r4   r6   r8   r:   r/   r0   typectx)r   	_checkboxCheckboxProto	StyleTypeDEFAULTr   r1   r   r2   r4   r6   r8   r:   r/   r0   r?   r   r   r    r-   ;      `zCheckboxMixin.checkboxtogglec                C  r<   )as  Display a toggle widget.

        Parameters
        ----------
        label : str
            A short label explaining to the user what this toggle is for.
            The label can optionally contain GitHub-flavored Markdown of the
            following types: Bold, Italics, Strikethroughs, Inline Code, Links,
            and Images. Images display like icons, with a max height equal to
            the font height.

            Unsupported Markdown elements are unwrapped so only their children
            (text contents) render. Display unsupported elements as literal
            characters by backslash-escaping them. E.g.,
            ``"1\. Not an ordered list"``.

            See the ``body`` parameter of |st.markdown|_ for additional,
            supported Markdown directives.

            For accessibility reasons, you should never set an empty label, but
            you can hide it with ``label_visibility`` if needed. In the future,
            we may disallow empty labels by raising an exception.

            .. |st.markdown| replace:: ``st.markdown``
            .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown

        value : bool
            Preselect the toggle when it first renders. This will be
            cast to bool internally.

        key : str or int
            An optional string or integer to use as the unique key for the widget.
            If this is omitted, a key will be generated for the widget
            based on its content. No two widgets may have the same key.

        help : str or None
            A tooltip that gets displayed next to the widget label. Streamlit
            only displays the tooltip when ``label_visibility="visible"``. If
            this is ``None`` (default), no tooltip is displayed.

            The tooltip can optionally contain GitHub-flavored Markdown,
            including the Markdown directives described in the ``body``
            parameter of ``st.markdown``.

        on_change : callable
            An optional callback invoked when this toggle's value changes.

        args : tuple
            An optional tuple of args to pass to the callback.

        kwargs : dict
            An optional dict of kwargs to pass to the callback.

        disabled : bool
            An optional boolean that disables the toggle if set to ``True``.
            The default is ``False``.

        label_visibility : "visible", "hidden", or "collapsed"
            The visibility of the label. The default is ``"visible"``. If this
            is ``"hidden"``, Streamlit displays an empty spacer instead of the
            label, which can help keep the widget alligned with other widgets.
            If this is ``"collapsed"``, Streamlit displays no label or spacer.

        Returns
        -------
        bool
            Whether or not the toggle is checked.

        Example
        -------
        >>> import streamlit as st
        >>>
        >>> on = st.toggle("Activate feature")
        >>>
        >>> if on:
        ...     st.write("Feature activated!")

        .. output::
           https://doc-toggle.streamlit.app/
           height: 220px

        r=   )r   r@   rA   rB   TOGGLErD   r   r   r    rF      rE   zCheckboxMixin.toggle)r/   r0   r>   r?   r>   !CheckboxProto.StyleType.ValueTyper?   ScriptRunContext | Nonec             
   C  s   t |}t| j|||du rd n|d t||	 t|
tjjkr!dnd|t| j|t	||d}t }||_
||_t	||_|
|_t| j|_||_t|	|j_|d urXt||_t|}t|j
||||j|j|dd}|jru|j|_d|_| jd| |jS )	NF)default_valuerF   r-   )user_keyform_idr1   r   r4   
bool_value)on_change_handlerr8   r:   deserializer
serializerr?   
value_typeT)r   r   dgr	   r   rA   rB   rG   r   r   idr1   defaultr>   rL   r/   r   r0   r   r   r4   r   r   r'   r!   value_changed	set_value_enqueue)r   r1   r   r2   r4   r6   r8   r:   r/   r0   r>   r?   
element_idcheckbox_protoserdecheckbox_stater   r   r    r@     sX   
	

zCheckboxMixin._checkboxr   c                 C  s
   t d| S )zGet our DeltaGenerator.r   )r   )r   r   r   r    rR   ]  s   
zCheckboxMixin.dg)FNNNNN)r1   r&   r   r   r2   r3   r4   r5   r6   r7   r8   r9   r:   r;   r/   r   r0   r   r   r   )r1   r&   r   r   r2   r3   r4   r5   r6   r7   r8   r9   r:   r;   r/   r   r0   r   r>   rH   r?   rI   r   r   )r   r   )r(   r)   r*   r   r-   rF   rA   rB   rC   r@   propertyrR   r   r   r   r    r,   :   sJ    
n
q
Dr,   N)%
__future__r   dataclassesr   textwrapr   typingr   r   !streamlit.elements.lib.form_utilsr   streamlit.elements.lib.policiesr   r	   streamlit.elements.lib.utilsr
   r   r   r   r   streamlit.proto.Checkbox_pb2r   rA   streamlit.runtime.metrics_utilr   streamlit.runtime.scriptrunnerr   r   streamlit.runtime.stater   r   r   r   streamlit.delta_generatorr   r   r,   r   r   r   r    <module>   s    
