LibreOffice Module oox (master)
1
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
oox
source
drawingml
themefragmenthandler.cxx
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
* This file is part of the LibreOffice project.
4
*
5
* This Source Code Form is subject to the terms of the Mozilla Public
6
* License, v. 2.0. If a copy of the MPL was not distributed with this
7
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
*
9
* This file incorporates work covered by the following license notice:
10
*
11
* Licensed to the Apache Software Foundation (ASF) under one or more
12
* contributor license agreements. See the NOTICE file distributed
13
* with this work for additional information regarding copyright
14
* ownership. The ASF licenses this file to you under the Apache
15
* License, Version 2.0 (the "License"); you may not use this file
16
* except in compliance with the License. You may obtain a copy of
17
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
18
*/
19
20
#include <
oox/drawingml/themefragmenthandler.hxx
>
21
#include <
drawingml/objectdefaultcontext.hxx
>
22
#include <
oox/drawingml/theme.hxx
>
23
#include <oox/token/namespaces.hxx>
24
#include <
oox/helper/attributelist.hxx
>
25
#include <
drawingml/themeelementscontext.hxx
>
26
27
using namespace
::
oox::core
;
28
29
namespace
oox::drawingml
{
30
31
ThemeFragmentHandler::ThemeFragmentHandler
(
XmlFilterBase
& rFilter,
const
OUString& rFragmentPath,
Theme
& rTheme ) :
32
FragmentHandler2
( rFilter, rFragmentPath ),
33
mrTheme( rTheme )
34
{
35
}
36
37
ThemeFragmentHandler::~ThemeFragmentHandler
()
38
{
39
}
40
41
ContextHandlerRef
ThemeFragmentHandler::onCreateContext
( sal_Int32 nElement,
const
AttributeList
& rAttribs)
42
{
43
// CT_OfficeStyleSheet
44
switch
(
getCurrentElement
() )
45
{
46
case
XML_ROOT_CONTEXT
:
47
switch
( nElement )
48
{
49
case
A_TOKEN( theme ):
50
{
51
mrTheme
.
setThemeName
(rAttribs.
getString
(XML_name).
get
());
52
return
this
;
53
}
54
}
55
break
;
56
57
case
A_TOKEN( theme ):
58
switch
( nElement )
59
{
60
case
A_TOKEN( themeElements ):
// CT_BaseStyles
61
return
new
ThemeElementsContext
( *
this
,
mrTheme
);
62
case
A_TOKEN( objectDefaults ):
// CT_ObjectStyleDefaults
63
return
new
objectDefaultContext
( *
this
,
mrTheme
);
64
case
A_TOKEN( extraClrSchemeLst ):
// CT_ColorSchemeList
65
return
nullptr
;
66
case
A_TOKEN( custClrLst ):
// CustomColorList
67
return
nullptr
;
68
case
A_TOKEN( ext ):
// CT_OfficeArtExtension
69
return
nullptr
;
70
}
71
break
;
72
}
73
return
nullptr
;
74
}
75
76
}
// namespace oox::drawingml
77
78
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
oox::drawingml::ThemeFragmentHandler::mrTheme
Theme & mrTheme
Definition:
themefragmenthandler.hxx:49
oox::core::FragmentHandler2
Definition:
fragmenthandler2.hxx:46
oox::drawingml::objectDefaultContext
Definition:
objectdefaultcontext.hxx:29
oox::drawingml::Theme
Definition:
theme.hxx:57
rtl::Reference
Definition:
xmlfilterbase.hxx:58
oox::drawingml
oox::core
attributelist.hxx
oox::AttributeList::getString
OptValue< OUString > getString(sal_Int32 nAttrToken) const
Returns the string value of the specified attribute.
Definition:
attributelist.cxx:169
oox::drawingml::ThemeFragmentHandler::onCreateContext
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElement, const AttributeList &rAttribs) override
Will be called to create a context handler for the passed element.
Definition:
themefragmenthandler.cxx:41
oox::drawingml::ThemeFragmentHandler::~ThemeFragmentHandler
virtual ~ThemeFragmentHandler() override
Definition:
themefragmenthandler.cxx:37
oox::drawingml::ThemeFragmentHandler::ThemeFragmentHandler
ThemeFragmentHandler(::oox::core::XmlFilterBase &rFilter, const OUString &rFragmentPath, Theme &rTheme)
Definition:
themefragmenthandler.cxx:31
oox::OptValue::get
const Type & get() const
Definition:
helper.hxx:185
themeelementscontext.hxx
oox::core::ContextHandler2Helper::getCurrentElement
sal_Int32 getCurrentElement() const
Returns the identifier of the currently processed element.
Definition:
contexthandler2.cxx:73
theme.hxx
oox::AttributeList
Provides access to attribute values of an element.
Definition:
attributelist.hxx:82
themefragmenthandler.hxx
oox::core::XmlFilterBase
Definition:
xmlfilterbase.hxx:91
oox::drawingml::ThemeElementsContext
Definition:
themeelementscontext.hxx:29
oox::core::XML_ROOT_CONTEXT
const sal_Int32 XML_ROOT_CONTEXT
Definition:
contexthandler2.hxx:45
oox::drawingml::Theme::setThemeName
void setThemeName(const OUString &rThemeName)
Definition:
theme.hxx:61
objectdefaultcontext.hxx
Generated on Tue May 24 2022 12:40:34 for LibreOffice Module oox (master) by
1.8.10