blob: a7eac05cbd9bdc101ca064d8ae6e9d46fdb60c34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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/.
*
*/
#include <docmodel/uno/UnoTheme.hxx>
#include <docmodel/theme/ThemeColorType.hxx>
#include <cppuhelper/queryinterface.hxx>
#include <o3tl/enumrange.hxx>
#include <comphelper/sequence.hxx>
#include <docmodel/theme/Theme.hxx>
using namespace css;
OUString UnoTheme::getName() { return mpTheme->GetName(); }
css::uno::Sequence<sal_Int32> UnoTheme::getColorSet()
{
std::vector<sal_Int32> aColorScheme(12);
auto pColorSet = mpTheme->getColorSet();
if (pColorSet)
{
size_t i = 0;
for (auto eThemeColorType : o3tl::enumrange<model::ThemeColorType>())
{
if (eThemeColorType == model::ThemeColorType::Unknown)
continue;
Color aColor = pColorSet->getColor(eThemeColorType);
aColorScheme[i] = sal_Int32(aColor);
i++;
}
}
return comphelper::containerToSequence(aColorScheme);
}
namespace model::theme
{
uno::Reference<util::XTheme> createXTheme(std::shared_ptr<model::Theme> const& pTheme)
{
return new UnoTheme(pTheme);
}
} // end model::theme
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|