diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-12-17 09:19:20 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-12-17 11:40:09 +0100 |
commit | 4bbbd15fb8e8269a8bdfd188d3ca2a2a84c00922 (patch) | |
tree | 02092477d27d6662eb5613e11b3fc4280aa05ea6 /sfx2 | |
parent | b33a4d3c4acc37b9284c611caaaa661d2fe34db8 (diff) |
sd theme: add a "theme" palette to the color picker
This implements listing the current theme colors (which depend on what
is the master page of the current slide) in the color picker and also
allows picking those colors.
The colors are picked as-is for now, not yet setting the color theme
index in the document model.
Change-Id: I2553725c29c2a9f9de80f86b38d22a06bf9c0364
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126994
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/objcont.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/source/doc/objcont.cxx b/sfx2/source/doc/objcont.cxx index fa1d444bb6be..8313cfc3dc75 100644 --- a/sfx2/source/doc/objcont.cxx +++ b/sfx2/source/doc/objcont.cxx @@ -321,6 +321,8 @@ std::set<Color> SfxObjectShell::GetDocColors() return empty; } +std::vector<Color> SfxObjectShell::GetThemeColors() { return std::vector<Color>(); } + sfx::AccessibilityIssueCollection SfxObjectShell::runAccessibilityCheck() { sfx::AccessibilityIssueCollection aCollection; |