From bd0f526f2d3e1ffe43a74672485815768eee6e9e Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Wed, 28 Dec 2022 09:43:46 +0900 Subject: introduce docmodel comp., model::ThemeColor, use it in SvxColorItem MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a new component docmodel, that has the document model types, which only depend on other basic components. This is needed so the types can be used in every relevant component - xmloff, oox, svx, editeng,... Introduces model::ThemeColor, which is a class used to store the theme color data, including transformations (svx::Transformation). For UNO use XThemeColor is added, and the implementation UnoThemeColor which wraps svx::ThemeColor, so it can be tranported around. Reactor all the code and tests to accomodate for this change. Change-Id: I7ce6752cdfaf5e4d3b8e4d90314afa469dd65cfc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144847 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- editeng/inc/pch/precompiled_editeng.hxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'editeng/inc') diff --git a/editeng/inc/pch/precompiled_editeng.hxx b/editeng/inc/pch/precompiled_editeng.hxx index 8472a893b5a1..3f5d71018ac5 100644 --- a/editeng/inc/pch/precompiled_editeng.hxx +++ b/editeng/inc/pch/precompiled_editeng.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2022-09-03 23:10:43 using: + Generated on 2023-01-10 23:29:32 using: ./bin/update_pch editeng editeng --cutoff=5 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -107,7 +107,6 @@ #include #include #include -#include #include #include #include @@ -128,6 +127,7 @@ #if PCH_LEVEL >= 3 #include #include +#include #include #include #include @@ -136,6 +136,7 @@ #include #include #include +#include #include #include #include @@ -145,6 +146,7 @@ #include #include #include +#include #include #include #include @@ -190,6 +192,7 @@ #include #include #include +#include #include #include #include -- cgit