introduce docmodel comp., model::ThemeColor, use it in SvxColorItem
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 <quikee@gmail.com>
2022-12-27 18:43:46 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 100 -*-
|
|
|
|
#
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,docmodel))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,docmodel,\
|
2023-04-30 06:58:14 -05:00
|
|
|
docmodel/source/uno/UnoComplexColor \
|
2023-08-09 06:27:49 -05:00
|
|
|
docmodel/source/uno/UnoGradientTools \
|
2023-01-26 21:13:29 -06:00
|
|
|
docmodel/source/uno/UnoTheme \
|
2023-01-26 08:43:00 -06:00
|
|
|
docmodel/source/theme/ColorSet \
|
2023-01-26 17:41:16 -06:00
|
|
|
docmodel/source/theme/Theme \
|
2023-05-08 00:09:00 -05:00
|
|
|
docmodel/source/color/ComplexColorJSON \
|
introduce docmodel comp., model::ThemeColor, use it in SvxColorItem
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 <quikee@gmail.com>
2022-12-27 18:43:46 -06:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,docmodel,\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
-I$(SRCDIR)/docmodel/inc \
|
|
|
|
))
|
|
|
|
|
2023-01-26 08:43:00 -06:00
|
|
|
$(eval $(call gb_Library_use_externals,docmodel,\
|
2023-02-10 20:24:05 -06:00
|
|
|
libxml2 \
|
|
|
|
boost_headers \
|
2023-01-26 08:43:00 -06:00
|
|
|
))
|
|
|
|
|
introduce docmodel comp., model::ThemeColor, use it in SvxColorItem
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 <quikee@gmail.com>
2022-12-27 18:43:46 -06:00
|
|
|
$(eval $(call gb_Library_add_defs,docmodel,\
|
|
|
|
-DDOCMODEL_DLLIMPLEMENTATION \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_precompiled_header,docmodel,docmodel/inc/pch/precompiled_docmodel))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_sdk_api,docmodel))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_libraries,docmodel,\
|
2023-08-09 06:27:49 -05:00
|
|
|
basegfx \
|
introduce docmodel comp., model::ThemeColor, use it in SvxColorItem
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 <quikee@gmail.com>
2022-12-27 18:43:46 -06:00
|
|
|
comphelper \
|
|
|
|
cppuhelper \
|
|
|
|
cppu \
|
|
|
|
sal \
|
|
|
|
tl \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|