diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2022-04-27 08:53:13 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-04-27 10:16:19 +0200 |
commit | c2fab664a887b16cb78570851ceffcacd26815f7 (patch) | |
tree | 8625ed3500df507e48b40f289eb077055a4d987e /schema | |
parent | 7fbfefaedec93d7b49d1f53e23aed3cbbb55b315 (diff) |
sw content controls, checkbox: add ODT filter
Map the 4 new UNO properties to XML attributes:
- Checkbox <-> loext:checkbox="..."
- Checked <-> loext:checked="..."
- CheckedState <-> loext:checked-state="..."
- UncheckedState <-> loext:unchecked-state="..."
Change-Id: Ia4623004ee39c77f5f242c2d720bc188e4dd9433
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133467
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'schema')
-rw-r--r-- | schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng index 68ac5c155d6a..511f31629eb4 100644 --- a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng +++ b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng @@ -2812,6 +2812,28 @@ xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1. <rng:ref name="boolean"/> </rng:attribute> </rng:optional> + <rng:optional> + <!-- default value: false --> + <rng:attribute name="loext:checkbox"> + <rng:ref name="boolean"/> + </rng:attribute> + </rng:optional> + <rng:optional> + <!-- default value: false --> + <rng:attribute name="loext:checked"> + <rng:ref name="boolean"/> + </rng:attribute> + </rng:optional> + <rng:optional> + <rng:attribute name="loext:checked-state"> + <rng:ref name="string"/> + </rng:attribute> + </rng:optional> + <rng:optional> + <rng:attribute name="loext:unchecked-state"> + <rng:ref name="string"/> + </rng:attribute> + </rng:optional> <rng:zeroOrMore> <rng:ref name="paragraph-content-or-hyperlink"/> </rng:zeroOrMore> |