1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XMLTrackedChangesImportContext.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_xmloff.hxx"
33 #include "XMLTrackedChangesImportContext.hxx"
34 #include "XMLChangedRegionImportContext.hxx"
35 #include <com/sun/star/uno/Reference.h>
36 #include <com/sun/star/uno/Sequence.h>
37 #include <xmloff/xmlimp.hxx>
38 #include "xmlnmspe.hxx"
39 #include <xmloff/nmspmap.hxx>
40 #include <xmloff/xmluconv.hxx>
41 #include <xmloff/xmltoken.hxx>
44 using ::rtl::OUString
;
45 using ::com::sun::star::uno::Reference
;
46 using ::com::sun::star::uno::Sequence
;
47 using ::com::sun::star::xml::sax::XAttributeList
;
48 using namespace ::xmloff::token
;
52 TYPEINIT1( XMLTrackedChangesImportContext
, SvXMLImportContext
);
54 XMLTrackedChangesImportContext::XMLTrackedChangesImportContext(
57 const OUString
& rLocalName
) :
58 SvXMLImportContext(rImport
, nPrefix
, rLocalName
)
62 XMLTrackedChangesImportContext::~XMLTrackedChangesImportContext()
66 void XMLTrackedChangesImportContext::StartElement(
67 const Reference
<XAttributeList
> & xAttrList
)
69 sal_Bool bTrackChanges
= sal_True
;
71 // scan for text:track-changes and text:protection-key attributes
72 sal_Int16 nLength
= xAttrList
->getLength();
73 for( sal_Int16 i
= 0; i
< nLength
; i
++ )
76 sal_uInt16 nPrefix
= GetImport().GetNamespaceMap().
77 GetKeyByAttrName( xAttrList
->getNameByIndex(i
), &sLocalName
);
79 if ( XML_NAMESPACE_TEXT
== nPrefix
)
81 if ( IsXMLToken( sLocalName
, XML_TRACK_CHANGES
) )
84 if( SvXMLUnitConverter::convertBool(
85 bTmp
, xAttrList
->getValueByIndex(i
)) )
93 // set tracked changes
94 GetImport().GetTextImport()->SetRecordChanges( bTrackChanges
);
98 SvXMLImportContext
* XMLTrackedChangesImportContext::CreateChildContext(
100 const OUString
& rLocalName
,
101 const Reference
<XAttributeList
> & xAttrList
)
103 SvXMLImportContext
* pContext
= NULL
;
105 if ( (XML_NAMESPACE_TEXT
== nPrefix
) &&
106 IsXMLToken( rLocalName
, XML_CHANGED_REGION
) )
108 pContext
= new XMLChangedRegionImportContext(GetImport(),
109 nPrefix
, rLocalName
);
112 if (NULL
== pContext
)
114 pContext
= SvXMLImportContext::CreateChildContext(nPrefix
, rLocalName
,