Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / oox / source / drawingml / diagram / constraintlistcontext.cxx
blobcc71c89b226a1784743a649ca7554616f193ceef
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 "constraintlistcontext.hxx"
21 #include <oox/helper/attributelist.hxx>
22 #include <oox/token/namespaces.hxx>
23 #include <oox/token/tokens.hxx>
25 using namespace ::oox::core;
26 using namespace ::com::sun::star::uno;
27 using namespace ::com::sun::star::xml::sax;
29 namespace oox { namespace drawingml {
31 // CT_ConstraintLists
32 ConstraintListContext::ConstraintListContext( ContextHandler2Helper const & rParent,
33 const LayoutAtomPtr &pNode )
34 : ContextHandler2( rParent )
35 , mpNode( pNode )
37 assert( pNode && "Node must NOT be NULL" );
40 ConstraintListContext::~ConstraintListContext()
44 ContextHandlerRef
45 ConstraintListContext::onCreateContext( ::sal_Int32 aElement,
46 const AttributeList& rAttribs )
48 switch( aElement )
50 case DGM_TOKEN( constr ):
52 std::shared_ptr< ConstraintAtom > pNode( new ConstraintAtom(mpNode->getLayoutNode()) );
53 LayoutAtom::connect(mpNode, pNode);
55 Constraint& rConstraint = pNode->getConstraint();
56 rConstraint.mnFor = rAttribs.getToken( XML_for, XML_none );
57 rConstraint.msForName = rAttribs.getString( XML_forName, "" );
58 rConstraint.mnPointType = rAttribs.getToken( XML_ptType, XML_none );
59 rConstraint.mnType = rAttribs.getToken( XML_type, XML_none );
60 rConstraint.mnRefFor = rAttribs.getToken( XML_refFor, XML_none );
61 rConstraint.msRefForName = rAttribs.getString( XML_refForName, "" );
62 rConstraint.mnRefType = rAttribs.getToken( XML_refType, XML_none );
63 rConstraint.mnRefPointType = rAttribs.getToken( XML_refPtType, XML_none );
64 rConstraint.mfFactor = rAttribs.getDouble( XML_fact, 1.0 );
65 rConstraint.mfValue = rAttribs.getDouble( XML_val, 0.0 );
66 rConstraint.mnOperator = rAttribs.getToken( XML_op, XML_none );
67 break;
69 default:
70 break;
73 return this;
76 } }
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */