LibreOffice Module oox (master) 1
layoutfragmenthandler.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
23#include <oox/token/namespaces.hxx>
24#include <oox/token/tokens.hxx>
25#include <utility>
26
27using namespace ::com::sun::star;
28using namespace ::oox::core;
29using namespace ::oox::drawingml;
30using namespace ::com::sun::star::uno;
31using namespace ::com::sun::star::xml::sax;
32
33namespace oox::ppt {
34
35// CT_SlideLayout
36
37LayoutFragmentHandler::LayoutFragmentHandler(XmlFilterBase& rFilter, const OUString& rFragmentPath,
38 const SlidePersistPtr& pMasterPersistPtr)
39 : SlideFragmentHandler(rFilter, rFragmentPath, pMasterPersistPtr, Layout)
40{
41}
42
44{
45
46}
47
49{
50 switch( aElementToken )
51 {
52 case PPT_TOKEN( sldLayout ): // CT_SlideLayout
53 {
54 mpSlidePersistPtr->setLayoutValueToken( rAttribs.getToken( XML_type, 0 ) ); // CT_SlideLayoutType
55
56 std::optional< bool > aShowMasterShapes = rAttribs.getBool( XML_showMasterSp );
57 if( aShowMasterShapes.has_value() && !aShowMasterShapes.value() ) {
58 mpSlidePersistPtr->hideShapesAsMasterShapes();
59 }
60 break;
61 }
62 case PPT_TOKEN( hf ): // CT_HeaderFooter
63 return new HeaderFooterContext( *this, rAttribs, mpSlidePersistPtr->getHeaderFooter() );
64 default:
65 return SlideFragmentHandler::onCreateContext( aElementToken, rAttribs );
66 }
67 return this;
68}
69
70}
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides access to attribute values of an element.
std::optional< bool > getBool(sal_Int32 nAttrToken) const
Returns the boolean value of the specified attribute.
std::optional< sal_Int32 > getToken(sal_Int32 nAttrToken) const
Returns the token identifier of the value of the specified attribute.
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 aElementToken, const AttributeList &rAttribs) override
LayoutFragmentHandler(::oox::core::XmlFilterBase &rFilter, const OUString &rFragmentPath, const SlidePersistPtr &pMasterPersistPtr)
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 aElementToken, const AttributeList &rAttribs) override
::rtl::Reference< ContextHandler > ContextHandlerRef
std::shared_ptr< SlidePersist > SlidePersistPtr
XML_type