
ddc           @` s  d  Z  d d l m Z m Z m Z m Z d d l Td d l Z d d l Z d d l	 Z	 d d d d d	 d
 d d d d d d d g Z
 d Z d Z d e f d     YZ d e f d     YZ d   Z d   Z d   Z d   Z d   Z d   Z d   Z d d  Z d    Z d S(!   uB   Helper classes and functions for modules in the `setting` package.i    (   t   absolute_importt   divisiont   print_functiont   unicode_literals(   t   *Nu   SETTING_PATH_SEPARATORu   SETTING_ATTRIBUTE_SEPARATORu   SettingParentMixinu   SettingEventsMixinu   get_pdb_nameu   get_setting_nameu   value_to_str_prefixu   get_processed_display_nameu   generate_display_nameu   get_processed_descriptionu   generate_descriptionu   get_setting_pathu   check_setting_nameu   /u   .t   SettingParentMixinc           B` s>   e  Z d  Z d   Z e d    Z e d    Z d   Z RS(   u   
  This mixin provides `Setting` and `Group` instances with a parent reference,
  allowing settings and groups to form a tree-like structure.
  c         C` s   t    j   d  |  _ d  S(   N(   t   supert   __init__t   Nonet   _parent(   t   self(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyR   '   s    c         C` s   |  j  S(   N(   R	   (   R
   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   parent,   s    c         C` s?   |  j  } g  } x) | d k	 r: | j d |  | j } q W| S(   uV   
    Return a list of parents (setting groups), starting from the topmost parent.
    i    N(   R	   R   t   insertR   (   R
   R   t   parents(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyR   0   s    	c         C` s   |  | _  d  S(   N(   R	   (   R
   t   setting(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   _set_as_parent_for_setting>   s    (   t   __name__t
   __module__t   __doc__R   t   propertyR   R   R   (    (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyR   !   s
   	t   SettingEventsMixinc           B` sV   e  Z d  Z e j d d  Z d   Z d   Z d   Z d   Z	 d   Z
 d   Z RS(	   ur   
  This mixin provides `Setting` and `Group` instances with the capability of
  setting up and invoking events.
  t   starti   c         C` s/   t    j   t j t j  |  _ i  |  _ d  S(   N(   R   R   t   collectionst   defaultdictt   OrderedDictt   _event_handlerst   _event_handler_ids_and_types(   R
   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyR   J   s    c         O` sX   t  |  s t d   n  |  j j   } | | | t g |  j | | <| |  j | <| S(   u  
    Connect an event handler.
    
    `event_type` can be an arbitrary string. To invoke an event manually, call
    `invoke_event`.
    
    Several event types are invoked automatically. For the list of such event
    types, consult the documentation for `Setting` or `Group` classes.
    
    The `event_handler` function must always contain at least one argument -
    the instance this method is called from (a setting or a setting group).
    
    Multiple event handlers can be connected. Each new event handler is invoked
    as the last.
    
    Parameters:
    
    * `event_type` - Event type as a string.
    
    * `event_handler` - Function to be called when the event given by
      `event_type` is invoked.
    
    * `*event_handler_args` - Arguments to `event_handler`.
    
    * `**event_handler_kwargs` - Keyword arguments to `event_handler`.
    
    Returns:
    
    * `event_id` - Numeric ID of the event handler (can be used to remove the
      event via `remove_event`).
    
    Raises:
    
    * `TypeError` - `event_handler` is not a function or the wrong number of
      arguments was passed in `event_handler_args`.
    u   not a function(   t   callablet	   TypeErrort   _event_handler_id_countert   nextt   TrueR   R   (   R
   t
   event_typet   event_handlert   event_handler_argst   event_handler_kwargst   event_id(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   connect_eventV   s    &c         C` sP   | |  j  k r' t d j |    n  |  j  | } |  j | | =|  j  | =d S(   u\   
    Remove the event handler specified by its ID as returned by
    `connect_event()`.
    u'   event handler with ID {} does not existN(   R   t
   ValueErrort   formatR   (   R
   R$   R    (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   remove_event   s
    c         C` sM   |  j  |  s' t d j |    n  |  j | } | |  j | | d <d S(   u  
    Enable or disable the event handler specified by its ID.
    
    If the event ID is already enabled and `enabled` is `True` or is already
    disabled and `enabled` is `False`, do nothing.
    
    Raises:
    
    * `ValueError` - Event ID is invalid.
    u   event ID {} is invalidi   N(   t	   has_eventR&   R'   R   R   (   R
   R$   t   enabledR    (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   set_event_enabled   s    c         C` s   | |  j  k S(   ut   
    Return `True` if the event handler specified by its ID is connected to the
    setting, `False` otherwise.
    (   R   (   R
   R$   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyR)      s    c   
      O` sf   x_ |  j  | j   D]J \ } } } } | r | t |  } t | |  }	 | |  | |	  q q Wd S(   u  
    Call all connected event handlers of the specified event type.
    
    Additional arguments and keyword arguments are passed via
    `*additional_args` and `**additional_kwargs`, respectively. These arguments
    are prepended to the arguments specified in `connect_event` (if any).
    The same keyword arguments in `connect_event` override keyword arguments in
    `**additional_kwargs`.
    N(   R   t   valuest   tuplet   dict(
   R
   R    t   additional_argst   additional_kwargsR!   t   argst   kwargsR*   R"   R#   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   invoke_event   s    
#(   R   R   R   t	   itertoolst   countR   R   R%   R(   R+   R)   R3   (    (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyR   B   s   		0			c         C` s   |  j  d d  S(   uN   
  Return name suitable for the description of the setting in the GIMP PDB.
  u   _u   -(   t   replace(   t   setting_name(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   get_pdb_name   s    c         C` s   |  j  d d  S(   uD   
  Return setting name based on the specified name from GIMP PDB.
  u   -u   _(   R6   (   t   pdb_name(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   get_setting_name   s    c         C` s   |  r d j  |   Sd Sd S(   u   
  Return stringified setting value useful as a prefix to an error message.
  
  If `value` is empty or `None`, return empty string.
  u   "{}": u    N(   R'   (   t   value(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   value_to_str_prefix   s    c         C` s   |  d  k	 r |  St |  Sd  S(   N(   R   t   generate_display_name(   t   setting_display_nameR7   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   get_processed_display_name   s    c         C` s   |  j  d d  j   S(   Nu   _u    (   R6   t
   capitalize(   R7   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyR=      s    c         C` s   |  d  k	 r |  St |  Sd  S(   N(   R   t   generate_description(   t   setting_descriptionR>   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   get_processed_description   s    c         C` s   |  j  d d  S(   u   
  Generate setting description from a display name.
  
  Underscores in display names used as mnemonics are usually undesired in
  descriptions, hence their removal.
  u   _u    (   R6   (   t   display_name(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyRA      s    c         C` s   d   } | d k rF |  j  r< | |  j  |  g d  } | S|  j Sn` | |  j  |  g  } | d k	 r | | j  | g  } | j |  r | t | t  Sn  | Sd S(   u  
  Get the full setting path consisting of names of parent setting groups and the
  specified setting. The path components are separated by '/'.
  
  If `relative_path_group` is specified, the setting group is used to
  relativize the setting path. If the path of the setting group to the topmost
  parent does not match, return the full path.
  
  If `relative_path_group` is equal to `'root'` and the setting has at
  least one parent, omit the topmost group.
  c         S` s#   t  j g  |  D] } | j ^ q  S(   N(   t   SETTING_PATH_SEPARATORt   joint   name(   t   path_componentsR   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   _get_setting_path   s    u   rooti   N(   R   RG   R   t
   startswitht   lenRE   (   R   t   relative_path_groupRI   t   setting_path_without_roott   setting_patht	   root_path(    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   get_setting_path   s    		
c         C` sU   t  |  t j  s! t d   n  t |  k s9 t |  k rQ t d j |     n  d S(   u   
  Check if the specified setting name is valid. If not, raise `ValueError`.
  
  A setting name must not contain `SETTING_PATH_SEPARATOR` or
  `SETTING_ATTRIBUTE_SEPARATOR`.
  u   setting name must be a stringu   setting name "{}" is not validN(   t
   isinstancet   typest   StringTypesR   RE   t   SETTING_ATTRIBUTE_SEPARATORR&   R'   (   R7   (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   check_setting_name  s
    (   R   t
   __future__R    R   R   R   t   future.builtinsR   R4   RR   t   __all__RE   RT   t   objectR   R   R8   R:   R<   R?   R=   RC   RA   R   RP   RU   (    (    (    sO   /home/josie/.config/GIMP/2.10/plug-ins/export_layers/pygimplib/setting/utils.pyt   <module>   s>   "
	!|							
"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-airbrush-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-airbrush-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # GIMP gimp-align-tool options


# end of gimp-align-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              # GIMP gimp-brightness-contrast-tool options


# end of gimp-brightness-contrast-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  # GIMP gimp-bucket-fill-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(pattern "Pine")
(brush-size 51)
(brush-hardness 0.5)

# end of gimp-bucket-fill-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    # GIMP gimp-by-color-select-tool options


# end of gimp-by-color-select-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          # GIMP gimp-cage-tool options


# end of gimp-cage-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-clone-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(pattern "Pine")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-clone-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             # GIMP gimp-color-picker-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))

# end of gimp-color-picker-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        # GIMP gimp-convolve-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-convolve-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        # GIMP gimp-crop-tool options

(aspect-denominator 606)
(aspect-numerator 1185)
(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(pattern "Pine")

# end of gimp-crop-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      # GIMP gimp-curves-tool options


# end of gimp-curves-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # GIMP gimp-dodge-burn-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-dodge-burn-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    # GIMP gimp-ellipse-select-tool options


# end of gimp-ellipse-select-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # GIMP gimp-eraser-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-eraser-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # GIMP gimp-flip-tool options


# end of gimp-flip-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-foreground-select-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))

# end of gimp-foreground-select-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              # GIMP gimp-free-select-tool options


# end of gimp-free-select-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  # GIMP gimp-fuzzy-select-tool options

(operation add)

# end of gimp-fuzzy-select-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-gegl-tool options


# end of gimp-gegl-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-gradient-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(gradient "FG to BG (RGB)")
(brush-size 51)
(brush-hardness 0.5)

# end of gimp-gradient-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               # GIMP gimp-handle-transform-tool options


# end of gimp-handle-transform-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        # GIMP gimp-heal-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-heal-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-ink-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush-size 51)
(brush-hardness 0.5)

# end of gimp-ink-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     # GIMP gimp-iscissors-tool options


# end of gimp-iscissors-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      # GIMP gimp-levels-tool options


# end of gimp-levels-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # GIMP gimp-measure-tool options


# end of gimp-measure-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          # GIMP gimp-move-tool options


# end of gimp-move-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-mypaint-brush-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(mybrush "100% Opaque")
(brush-size 51)
(brush-hardness 0.5)
(radius 3.0099999904632568)
(hardness 0.94999998807907104)

# end of gimp-mypaint-brush-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              # GIMP gimp-offset-tool options


# end of gimp-offset-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # GIMP gimp-operation-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(blending-options-expanded yes)

# end of gimp-operation-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              # GIMP gimp-paintbrush-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(opacity 0.8909999999999999)
(brush "2. Block 02")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-paintbrush-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           # GIMP gimp-pencil-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-pencil-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-perspective-clone-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(pattern "Pine")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-perspective-clone-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     # GIMP gimp-perspective-tool options


# end of gimp-perspective-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  # GIMP gimp-rect-select-tool options


# end of gimp-rect-select-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  # GIMP gimp-rotate-tool options


# end of gimp-rotate-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # GIMP gimp-scale-tool options

(interpolation linear)

# end of gimp-scale-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       # GIMP gimp-shear-tool options


# end of gimp-shear-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              # GIMP gimp-smudge-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(gradient "FG to BG (RGB)")
(palette "Color History")
(brush-size 51)
(brush-aspect-ratio 1.5789473684210527)
(brush-hardness 0.75)

# end of gimp-smudge-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-text-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(palette "Color History")
(font "Fira Sans Compressed Heavy Ultra-Condensed")
(box-mode fixed)

# end of gimp-text-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         # GIMP gimp-threshold-tool options


# end of gimp-threshold-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      # GIMP gimp-transform-3d-tool options


# end of gimp-transform-3d-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-unified-transform-tool options


# end of gimp-unified-transform-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      # GIMP gimp-vector-tool options

(foreground (color-rgb 0.070588238537311554 0.070588238537311554 0.070588238537311554))
(brush "2. Block 02")
(dynamics "Dynamics Off")
(pattern "Pine")
(gradient "FG to BG (RGB)")
(palette "Color History")

# end of gimp-vector-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             # GIMP gimp-warp-tool options


# end of gimp-warp-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                # GIMP gimp-zoom-tool options


# end of gimp-zoom-tool options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                