Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / oox / source / ppt / buildlistcontext.cxx
blobb220755984c5b708fb365ee0de16294e3d9779f4
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 const & 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 return this;
63 case PPT_TOKEN( bldGraphic ):
65 mbInBldGraphic = true;
66 // OUString sShapeId = rAttribs.getString( XML_spid, OUString() );
67 // TODO
68 // bool uiExpand = rAttribs.getBool( XML_uiExpand, true );
69 /* this is unsigned */
70 // sal_uInt32 nGroupId = rAttribs.getUnsignedInteger( XML_grpId, 0 );
71 return this;
73 case A_TOKEN( bldDgm ):
74 case A_TOKEN( bldOleChart ):
75 case A_TOKEN( bldP ):
76 return this;
77 default:
78 break;
81 return this;
84 } }
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */