Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / oox / source / ppt / buildlistcontext.cxx
blob1bee71b7552207158f054ddf810ba53b5cdfad81
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "buildlistcontext.hxx"
21 #include <rtl/ustring.hxx>
22 #include "oox/helper/attributelist.hxx"
23 #include <oox/token/namespaces.hxx>
24 #include <oox/token/tokens.hxx>
26 namespace oox { namespace ppt {
28 BuildListContext::BuildListContext( FragmentHandler2& rParent )
29 : FragmentHandler2( rParent )
30 , mbInBldGraphic( false )
31 , mbBuildAsOne( false )
35 BuildListContext::~BuildListContext( )
39 void BuildListContext::onEndElement()
41 switch( getCurrentElement() )
43 case PPT_TOKEN( bldGraphic ):
44 mbInBldGraphic = false;
45 break;
46 default:
47 break;
51 ::oox::core::ContextHandlerRef BuildListContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& /*rAttribs*/ )
53 switch( aElementToken )
55 case PPT_TOKEN( bldAsOne ):
56 if( mbInBldGraphic )
58 mbBuildAsOne = true;
60 return this;
61 case PPT_TOKEN( bldSub ):
62 if( mbInBldGraphic )
65 return this;
66 case PPT_TOKEN( bldGraphic ):
68 mbInBldGraphic = true;
69 // OUString sShapeId = rAttribs.getString( XML_spid, OUString() );
70 // TODO
71 // bool uiExpand = rAttribs.getBool( XML_uiExpand, true );
72 /* this is unsigned */
73 // sal_uInt32 nGroupId = rAttribs.getUnsignedInteger( XML_grpId, 0 );
74 return this;
76 case A_TOKEN( bldDgm ):
77 case A_TOKEN( bldOleChart ):
78 case A_TOKEN( bldP ):
79 return this;
80 default:
81 break;
84 return this;
87 } }
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */