diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2023-02-11 11:24:05 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2023-03-01 12:57:21 +0000 |
commit | 855f7c08d1feab7669670bfbc4ed2b3b3225db16 (patch) | |
tree | 0d8f8cd014bb74cfd88aea2283e1d30ad7b2b547 /svx/sdi | |
parent | 79434c321597790de6cb8db18f4b9fb6dc8c60bb (diff) |
send theme info when changing color (in the picker) via UNO command
Change-Id: I288f8fb3375e152b5ee746fab2c05d08150d6c99
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146817
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'svx/sdi')
-rw-r--r-- | svx/sdi/svxitems.sdi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/svx/sdi/svxitems.sdi b/svx/sdi/svxitems.sdi index 66eaf39b675b..a26c02c46ebb 100644 --- a/svx/sdi/svxitems.sdi +++ b/svx/sdi/svxitems.sdi @@ -169,7 +169,14 @@ item INT16 SvxParaVertAlignItem; item INT16 SvxCharReliefItem; item BOOL SvxBlinkItem; item BOOL SvxAutoKernItem; -item INT32 SvxColorItem; + +struct SvxColor +{ + INT32 Color MID_COLOR_RGB; + String ThemeReferenceJSON MID_COLOR_THEME_REFERENCE_JSON; +}; +item SvxColor SvxColorItem; + item BOOL SvxContourItem; item INT16 SvxFormatBreakItem; // enum item BOOL SvxFormatKeepItem; |