
    Տkh0                        d Z ddlmZ ddlZddlmZmZmZ ddl	m
Z
 ddlmZ ddlmZmZmZ ddlmZmZmZmZ erdd	lmZ dd
lmZ  G d de      Z G d de      Zy)z4Custom element classes related to document comments.    )annotationsN)TYPE_CHECKINGCallablecast)nsdecls)	parse_xml)ST_DateTimeST_DecimalNumber	ST_String)BaseOxmlElementOptionalAttributeRequiredAttribute
ZeroOrMore)CT_Tbl)CT_Pc                  D    e Zd ZU dZded<    ed      Zd	dZd
dZddZ	y)CT_Commentsa  `w:comments` element, the root element for the comments part.

    Simply contains a collection of `w:comment` elements, each representing a single comment. Each
    contained comment is identified by a unique `w:id` attribute, used to reference the comment
    from the document text. The offset of the comment in this collection is arbitrary; it is
    essentially a _set_ implemented as a list.
    zlist[CT_Comment]comment_lstz	w:commentc           
         | j                         }t        t        t        dt	        d       d| d            }| j                  |       |S )a  Return newly added `w:comment` child of this `w:comments`.

        The returned `w:comment` element is the minimum valid value, having a `w:id` value unique
        within the existing comments and the required `w:author` attribute present but set to the
        empty string. It's content is limited to a single run containing the necessary annotation
        reference but no text. Content is added by adding runs to this first paragraph and by
        adding additional paragraphs as needed.
        z<w:comment wz w:id="z" w:author="">  <w:p>    <w:pPr>      <w:pStyle w:val="CommentText"/>    </w:pPr>    <w:r>      <w:rPr>        <w:rStyle w:val="CommentReference"/>      </w:rPr>      <w:annotationRef/>    </w:r>  </w:p></w:comment>)_next_available_comment_idr   
CT_Commentr   r   append)selfnext_idcomments      N/var/www/teggl/fontify/venv/lib/python3.12/site-packages/docx/oxml/comments.pyadd_commentzCT_Comments.add_comment    sU     113gcl^77) <  
$ 	G    c                >    | j                  d| d      }|r|d   S dS )zRReturn the `w:comment` element identified by `comment_id`, or |None| if not found.z(./w:comment[@w:id='z'])[1]r   Nxpath)r   
comment_idcomment_elmss      r   get_comment_by_idzCT_Comments.get_comment_by_id?   s+    zz$8F"KL".|A8D8r   c                    | j                  d      D cg c]  }t        |       }}t        |d      dz   }|dk  r|S t        t	        |            D ]  \  }}||k7  s|c S  t        |      S c c}w )an  The next available comment id.

        According to the schema, this can be any positive integer, as big as you like, and the
        default mechanism is to use `max() + 1`. However, if that yields a value larger than will
        fit in a 32-bit signed integer, we take a more deliberate approach to use the first
        ununsed integer starting from 0.
        z./w:comment/@w:id)default   i)r"   intmax	enumeratesortedlen)r   xused_idsr   expectedactuals         r   r   z&CT_Comments._next_available_comment_idD   s     %)JJ/B$CDqCFDDh+a/iN !*&*: ; 	 Hf6!	  8} Es   A/N)returnr   )r#   r*   r3   zCT_Comment | None)r3   r*   )
__name__
__module____qualname____doc____annotations__r   r   r   r%   r    r   r   r   r      s(     "!%G>9
r   r   c                      e Zd ZU dZ ede      Zded<    ede      Z	ded<    e
de      Zd	ed
<    e
de      Zded<    edd      Z edd      Zded<   ded<   ded<   ded<   edd       Zy)r   aQ  `w:comment` element, representing a single comment.

    A comment is a so-called "story" and can contain paragraphs and tables much like a table-cell.
    While probably most often used for a single sentence or phrase, a comment can contain rich
    content, including multiple rich-text paragraphs, hyperlinks, images, and tables.
    zw:idr*   idzw:authorstrauthorz
w:initialsz
str | Noneinitialszw:datezdt.datetime | Nonedatezw:pr9   )
successorszw:tblzCallable[[], CT_P]add_pz
list[CT_P]p_lstzlist[CT_Tbl]tbl_lstzCallable[[CT_Tbl], CT_Tbl]_insert_tblc                $    | j                  d      S )z8Generate all `w:p` and `w:tbl` elements in this comment.z./w:p | ./w:tblr!   )r   s    r   inner_content_elementsz!CT_Comment.inner_content_elementsy   s     zz+,,r   N)r3   zlist[CT_P | CT_Tbl])r4   r5   r6   r7   r   r
   r;   r8   r   r=   r   r>   r	   r?   r   ptblpropertyrF   r9   r   r   r   r   [   s      (89B9#J	:FC:,iHj   1+ D
  	5R(A
W
,C ++- -r   r   )r7   
__future__r   datetimedttypingr   r   r   docx.oxml.nsr   docx.oxml.parserr   docx.oxml.simpletypesr	   r
   r   docx.oxml.xmlchemyr   r   r   r   docx.oxml.tabler   docx.oxml.text.paragraphr   r   r   r9   r   r   <module>rT      sJ    : "  0 0   & J J ` `&-F/ FR!- !-r   