diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2023-05-11 23:01:10 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2023-06-01 11:19:28 +0200 |
commit | 0e155e7ba984262200e3589d594325fe36b0ec14 (patch) | |
tree | 2e3cec3a227fc49edc12b195b5c0369d5ec63d76 /offapi | |
parent | b0da2f52374c04192ac92951519e0a47410d0a24 (diff) |
change ComplexColor to show more useful properties
Change-Id: Ie19f080f2faf388f9b8ba3e9a4b3c0926d5ebdd4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151674
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
(cherry picked from commit ca3bfa9bded6103d4d172ace486b697beeb191be)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152238
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/util/XComplexColor.idl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/offapi/com/sun/star/util/XComplexColor.idl b/offapi/com/sun/star/util/XComplexColor.idl index 864e4b1516de..668b7b310eb2 100644 --- a/offapi/com/sun/star/util/XComplexColor.idl +++ b/offapi/com/sun/star/util/XComplexColor.idl @@ -17,8 +17,13 @@ module com { module sun { module star { module util { */ interface XComplexColor { - /** */ - Color getColor(); + long getType(); + + long getSchemeColorType(); + + /** resolve the color */ + Color resolveColor([in] com::sun::star::util::XTheme xTheme); + }; }; }; }; }; |