o
    `ÊæTÍ  ã                   @   sX   d Z ddlmZ ddlmZmZmZmZmZ G dd„ deƒZ	edƒG dd	„ d	eƒƒZ
d
S )z(
Enumerations used by DrawingML objects
é    )Úabsolute_importé   )ÚaliasÚEnumerationÚ
EnumMemberÚXmlEnumerationÚXmlMappedEnumMemberc                   @   s:   e Zd ZdZdZdZedddƒeddd	ƒed
ddƒfZdS )ÚMSO_COLOR_TYPEz¬
    Specifies the color specification scheme

    Example::

        from docx.enum.dml import MSO_COLOR_TYPE

        assert font.color.type == MSO_COLOR_TYPE.SCHEME
    ZMsoColorTypezIhttp://msdn.microsoft.com/en-us/library/office/ff864912(v=office.15).aspxZRGBr   z*Color is specified by an |RGBColor| value.ZTHEMEé   z(Color is one of the preset theme colors.ZAUTOée   z5Color is determined automatically by the application.N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú__ms_name__Ú__url__r   Ú__members__© r   r   ú=D:\Projects\ConvertPro\env\Lib\site-packages\docx\enum\dml.pyr	      s    
ÿÿÿÿùr	   ZMSO_THEME_COLORc                   @   sæ   e Zd ZdZdZdZedddƒeddd	d
ƒeddddƒeddddƒeddddƒeddddƒeddddƒedd d!d"ƒed#d$d%d&ƒed'd(d)d*ƒed+d,d-d.ƒed/d0d1d2ƒed3d4d5d6ƒed7d8d9d:ƒed;d<d=d>ƒed?d@dAdBƒedCdDdEdFƒfZdGS )HÚMSO_THEME_COLOR_INDEXa  
    Indicates the Office theme color, one of those shown in the color gallery
    on the formatting ribbon.

    Alias: ``MSO_THEME_COLOR``

    Example::

        from docx.enum.dml import MSO_THEME_COLOR

        font.color.theme_color = MSO_THEME_COLOR.ACCENT_1
    ZMsoThemeColorIndexzIhttp://msdn.microsoft.com/en-us/library/office/ff860782(v=office.15).aspxZNOT_THEME_COLORr   z)Indicates the color is not a theme color.ZACCENT_1é   Zaccent1z#Specifies the Accent 1 theme color.ZACCENT_2é   Zaccent2z#Specifies the Accent 2 theme color.ZACCENT_3é   Zaccent3z#Specifies the Accent 3 theme color.ZACCENT_4é   Zaccent4z#Specifies the Accent 4 theme color.ZACCENT_5é	   Zaccent5z#Specifies the Accent 5 theme color.ZACCENT_6é
   Zaccent6z#Specifies the Accent 6 theme color.ZBACKGROUND_1é   Zbackground1z'Specifies the Background 1 theme color.ZBACKGROUND_2é   Zbackground2z'Specifies the Background 2 theme color.ZDARK_1r   Zdark1z!Specifies the Dark 1 theme color.ZDARK_2é   Zdark2z!Specifies the Dark 2 theme color.ZFOLLOWED_HYPERLINKé   ZfollowedHyperlinkz2Specifies the theme color for a clicked hyperlink.Z	HYPERLINKé   Z	hyperlinkz*Specifies the theme color for a hyperlink.ZLIGHT_1r
   Zlight1z"Specifies the Light 1 theme color.ZLIGHT_2é   Zlight2z"Specifies the Light 2 theme color.ZTEXT_1é   Ztext1z!Specifies the Text 1 theme color.ZTEXT_2é   Ztext2z!Specifies the Text 2 theme color.N)	r   r   r   r   r   r   r   r   r   r   r   r   r   r   .   sr    ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿËr   N)r   Z
__future__r   Úbaser   r   r   r   r   r	   r   r   r   r   r   Ú<module>   s    