LibreOffice Module oox (master) 1
customshowlistcontext.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
21
23#include <oox/token/namespaces.hxx>
24#include <oox/token/tokens.hxx>
25
26using namespace ::oox::core;
27using namespace ::com::sun::star::uno;
28using namespace ::com::sun::star::xml::sax;
29
30namespace oox::ppt {
31
32namespace {
33
34class CustomShowContext : public ::oox::core::FragmentHandler2
35{
36 std::vector< CustomShow >& mrCustomShowList;
37
38public:
39 CustomShowContext( ::oox::core::FragmentHandler2 const & rParent,
40 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs,
41 std::vector< CustomShow >& rCustomShowList );
42
43 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
44};
45
46}
47
48CustomShowContext::CustomShowContext( FragmentHandler2 const & rParent,
49 const Reference< XFastAttributeList >& rxAttribs,
50 std::vector< CustomShow >& rCustomShowList )
51: FragmentHandler2( rParent )
52, mrCustomShowList( rCustomShowList )
53{
54 CustomShow aCustomShow;
55 aCustomShow.maCustomShowName = rxAttribs->getOptionalValue( XML_name );
56 aCustomShow.mnId = rxAttribs->getOptionalValue( XML_id );
57 mrCustomShowList.push_back(aCustomShow);
58}
59
60::oox::core::ContextHandlerRef CustomShowContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
61{
62 switch( aElementToken )
63 {
64 case PPT_TOKEN( sld ) :
65 mrCustomShowList.back().maSldLst.push_back(
66 getRelations()
67 .getRelationFromRelId(rAttribs.getStringDefaulted(R_TOKEN(id)))
68 ->maTarget);
69 return this;
70 default:
71 break;
72 }
73
74 return this;
75}
76
77CustomShowListContext::CustomShowListContext( FragmentHandler2 const & rParent,
78 std::vector< CustomShow >& rCustomShowList )
79: FragmentHandler2( rParent )
80, mrCustomShowList( rCustomShowList )
81{
82}
83
85{
86}
87
89{
90 switch( aElementToken )
91 {
92 case PPT_TOKEN( custShow ) :
93 {
94 return new CustomShowContext( *this, rAttribs.getFastAttributeList(), mrCustomShowList );
95 }
96 default:
97 break;
98 }
99
100 return this;
101}
102
103}
104
105/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Any maTarget
Provides access to attribute values of an element.
const css::uno::Reference< css::xml::sax::XFastAttributeList > & getFastAttributeList() const
Returns the wrapped com.sun.star.xml.sax.XFastAttributeList object.
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 aElementToken, const AttributeList &rAttribs) override
std::vector< CustomShow > & mrCustomShowList
std::vector< CustomShow > & mrCustomShowList
::rtl::Reference< ContextHandler > ContextHandlerRef