Changes between Version 40 and Version 41 of TaggingPresets


Ignore:
Timestamp:
2011-10-19T20:34:24+02:00 (14 years ago)
Author:
jttt
Comment:

readonly only is implemented, but its named editable

Legend:

Unmodified
Added
Removed
Modified
  • TaggingPresets

    v40 v41  
    7373   A text edit field to enter any arbitrary string from the user. ''key'' is mandatory, ''text'', ''default'' and ''required'' is optional
    7474 '''<combo>'''::
    75    Displays a multiple choice combo box. ''key'' and ''values'' are mandatory and ''text'', ''default'', ''readonly'' and ''required'' is optional.
    76    If readonly is not set, combo boxes can be edited as if they were text fields (additional to the drop down menu). Readonly
    77    combo boxes can only contain one of the specified values.  (Warning '''Readonly does not work''' yet as indicated in #6156 and #409)
     75   Displays a multiple choice combo box. ''key'' and ''values'' are mandatory and ''text'', ''default'', ''editable'' and ''required'' is optional.
     76   If editable is true (default), combo boxes can be edited as if they were text fields (additional to the drop down menu). Non editable
     77   combo boxes can only contain one of the specified values.
    7878
    7979 '''<multiselect>'''::
     
    110110   Translation context for name attribute to separate equals words with different meaning (not required for in-file translations).
    111111 '''display_values="Entry1,Entry2,Entry3"'''::
    112    A list of entries that is displayed to the user. Must be the same number of entries as values and '''readonly''' must be true or not specified. For the delimiter character and escaping, see the remarks at ''values''.
     112   A list of entries that is displayed to the user. Must be the same number of entries as values and '''editable''' must be false or not specified. For the delimiter character and escaping, see the remarks at ''values''.
    113113 '''value="foobar"'''::
    114114   Specify a value to be entered in the <key> tag.
     
    117117 '''value_off="foobar"'''::
    118118   Specify the false value to be entered in the <key> tag (default is "no").
    119  '''readonly="true"'''::
    120    The combo box is readonly, which means that the user can only select an item in the list. (Warning '''Readonly does not work''' yet as indicated in #6156 and #409)
     119 '''editable="false"'''::
     120   The combo box is readonly, which means that the user can only select an item in the list.
    121121 '''use_last_as_default="true"'''::
    122122   For combo boxes or text fields the last value is used as default. Using "force" enforces this behaviour also for already tagged objects.