nss: upgrade to release 3.73
[LibreOffice.git] / xmloff / source / transform / DlgOASISTContext.cxx
blob03578dc4584e19828998daac00a97d03406f26e4
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 "DlgOASISTContext.hxx"
21 #include "MutableAttrList.hxx"
22 #include "ActionMapTypesOASIS.hxx"
23 #include "AttrTransformerAction.hxx"
24 #include "TransformerActions.hxx"
25 #include "TransformerBase.hxx"
26 #include <osl/diagnose.h>
28 using namespace ::com::sun::star::uno;
29 using namespace ::com::sun::star::xml::sax;
30 using namespace ::xmloff::token;
32 XMLDlgOASISTransformerContext::XMLDlgOASISTransformerContext(
33 XMLTransformerBase& rImp,
34 const OUString& rQName ) :
35 XMLTransformerContext( rImp, rQName )
39 XMLDlgOASISTransformerContext::~XMLDlgOASISTransformerContext()
43 void XMLDlgOASISTransformerContext::StartElement(
44 const Reference< XAttributeList >& rAttrList )
46 XMLTransformerActions *pActions =
47 GetTransformer().GetUserDefinedActions( OASIS_DLG_ACTIONS );
48 OSL_ENSURE( pActions, "go no actions" );
50 Reference< XAttributeList > xAttrList( rAttrList );
51 XMLMutableAttributeList *pMutableAttrList = nullptr;
52 sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
54 for( sal_Int16 i=0; i < nAttrCount; i++ )
56 const OUString& rAttrName = xAttrList->getNameByIndex( i );
57 OUString aLocalName;
58 sal_uInt16 nPrefix =
59 GetTransformer().GetNamespaceMap().GetKeyByAttrName( rAttrName,
60 &aLocalName );
62 XMLTransformerActions::key_type aKey( nPrefix, aLocalName );
63 XMLTransformerActions::const_iterator aIter =
64 pActions->find( aKey );
66 if( aIter != pActions->end() )
68 if( !pMutableAttrList )
70 pMutableAttrList =
71 new XMLMutableAttributeList( xAttrList );
72 xAttrList = pMutableAttrList;
74 const OUString& rAttrValue = xAttrList->getValueByIndex( i );
75 switch( (*aIter).second.m_nActionType )
77 case XML_ATACTION_DLG_BORDER:
79 if ( rAttrValue != GetXMLToken( XML_NONE ) &&
80 rAttrValue != GetXMLToken( XML_SIMPLE ) &&
81 rAttrValue != GetXMLToken( XML_3D ) )
83 pMutableAttrList->SetValueByIndex(
84 i, GetXMLToken( XML_NONE ) );
87 break;
88 default:
89 OSL_ENSURE( false, "unknown action" );
90 break;
95 XMLTransformerContext::StartElement( xAttrList );
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */