/************************************************************************* * * $RCSfile: xmltexti.cxx,v $ * * $Revision: 1.5 $ * * last change: $Author: dvo $ $Date: 2001-01-25 11:36:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (the "License"); You may not use this file * except in compliance with the License. You may obtain a copy of the * License at http://www.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #ifdef PRECOMPILED #include "filt_pch.hxx" #endif #pragma hdrstop #ifndef _SO_CLSIDS_HXX #include #endif #ifndef _EMBOBJ_HXX #include #endif #ifndef _COM_SUN_STAR_LANG_XUNOTUNNEL_HPP_ #include #endif #ifndef _UNOCRSR_HXX #include "unocrsr.hxx" #endif #ifndef _UNOOBJ_HXX #include "unoobj.hxx" #endif #ifndef _UNOFRAME_HXX #include "unoframe.hxx" #endif #ifndef _DOC_HXX #include "doc.hxx" #endif #ifndef _UNOCOLL_HXX #include "unocoll.hxx" #endif #ifndef _SW3IO_HXX #include #endif #ifndef _XMLIMP_HXX #include "xmlimp.hxx" #endif #ifndef _XMLTBLI_HXX #include "xmltbli.hxx" #endif #ifndef _XMLTEXTI_HXX #include "xmltexti.hxx" #endif #ifndef _XMLREDLINEIMPORTHELPER_HXX #include "XMLRedlineImportHelper.hxx" #endif using namespace ::rtl; using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::text; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::xml::sax; SwXMLTextImportHelper::SwXMLTextImportHelper( const Reference < XModel>& rModel, sal_Bool bInsertM, sal_Bool bStylesOnlyM, sal_Bool bProgress, sal_Bool bBlockM) : XMLTextImportHelper( rModel, bInsertM, bStylesOnlyM, bProgress ), pRedlineHelper(NULL), bBlockMode(bBlockM) { } SwXMLTextImportHelper::~SwXMLTextImportHelper() { delete pRedlineHelper; } SvXMLImportContext *SwXMLTextImportHelper::CreateTableChildContext( SvXMLImport& rImport, sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList > & xAttrList ) { return new SwXMLTableContext( (SwXMLImport&)rImport, nPrefix, rLocalName, xAttrList ); } sal_Bool SwXMLTextImportHelper::IsInHeaderFooter() const { Reference xCrsrTunnel( ((SwXMLTextImportHelper *)this)->GetCursor(), UNO_QUERY ); ASSERT( xCrsrTunnel.is(), "missing XUnoTunnel for Cursor" ); SwXTextCursor *pTxtCrsr = (SwXTextCursor*)xCrsrTunnel->getSomething( SwXTextCursor::getUnoTunnelId() ); ASSERT( pTxtCrsr, "SwXTextCursor missing" ); SwDoc *pDoc = pTxtCrsr->GetDoc(); return pDoc->IsInHeaderFooter( pTxtCrsr->GetPaM()->GetPoint()->nNode ); } Reference< XPropertySet > SwXMLTextImportHelper::createAndInsertOLEObject( SvXMLImport& rImport, const OUString& rHRef, const OUString& rClassId ) { Reference < XPropertySet > xPropSet; String aObjName; if( 0 == rHRef.compareToAscii( "#./", 3 ) ) aObjName = rHRef.copy( 3 ); else if( rHRef.getLength() && '#' == rHRef[0] ) aObjName = rHRef.copy( 1 ); if( !aObjName.Len() ) return xPropSet; SvGlobalName aClassId; if( !rClassId.getLength() || !aClassId.MakeId( rClassId ) ) return xPropSet; Reference xCrsrTunnel( GetCursor(), UNO_QUERY ); ASSERT( xCrsrTunnel.is(), "missing XUnoTunnel for Cursor" ); SwXTextCursor *pTxtCrsr = (SwXTextCursor*)xCrsrTunnel->getSomething( SwXTextCursor::getUnoTunnelId() ); ASSERT( pTxtCrsr, "SwXTextCursor missing" ); SwDoc *pDoc = pTxtCrsr->GetDoc(); SvStorage *pPackage = ((SwXMLImport&)rImport).GetPackage(); if( !pPackage || !pDoc->GetPersist() ) return xPropSet; String aSrcObjName( aObjName ); SvPersistRef xDstDoc( pDoc->GetPersist() ); SvStorageRef xDst( pDoc->GetPersist()->GetStorage() ); // Sind Objektname und Storagename eindeutig? if( xDstDoc->GetObjectList() ) { for( ULONG i = 0; i < xDstDoc->GetObjectList()->Count(); i++ ) { SvInfoObject* pTst = xDstDoc->GetObjectList()->GetObject(i); // TODO: unicode: is this correct? if( aObjName.EqualsIgnoreCaseAscii( pTst->GetObjName() ) || aObjName.EqualsIgnoreCaseAscii( pTst->GetStorageName() ) ) { aObjName = Sw3Io::UniqueName( xDst, "Obj" ); break; } } } if( !pPackage->CopyTo( aSrcObjName, xDst, aObjName ) ) return xPropSet; SvInfoObjectRef xInfo = new SvEmbeddedInfoObject( aObjName, aClassId ); pDoc->GetPersist()->Insert( xInfo ); SwFrmFmt *pFrmFmt = pTxtCrsr->GetDoc()->InsertOLE( *pTxtCrsr->GetPaM(), aObjName ); xPropSet = SwXFrames::GetObject( *pFrmFmt, FLYCNTTYPE_OLE ); return xPropSet; } XMLTextImportHelper* SwXMLImport::CreateTextImport() { return new SwXMLTextImportHelper( GetModel(), IsInsertMode(), IsStylesOnlyMode(), bShowProgress, IsBlockMode() ); } // redlining helper methods // (override to provide the real implementation) void SwXMLTextImportHelper::RedlineAdd( const OUString& rType, const OUString& rId, const OUString& rAuthor, const OUString& rComment, const util::DateTime& rDateTime) { // create redline helper on demand if (NULL == pRedlineHelper) pRedlineHelper = new XMLRedlineImportHelper(IsInsertMode() || IsBlockMode() ); pRedlineHelper->Add(rType, rId, rAuthor, rComment, rDateTime); } Reference SwXMLTextImportHelper::RedlineCreateText( Reference & rOldCursor, const OUString& rId) { Reference xRet; if (NULL != pRedlineHelper) { xRet = pRedlineHelper->CreateRedlineTextSection(rOldCursor, rId); } return xRet; } void SwXMLTextImportHelper::RedlineSetCursor( const OUString& rId, sal_Bool bStart, sal_Bool bIsOutsideOfParagraph) { if (NULL != pRedlineHelper) pRedlineHelper->SetCursor(rId, bStart, GetCursor()->getStart(), bIsOutsideOfParagraph); // else: ignore redline (wasn't added before, else we'd have a helper) } void SwXMLTextImportHelper::RedlineAdjustStartNodeCursor( sal_Bool bStart) { OUString& rId = GetOpenRedlineId(); if ((NULL != pRedlineHelper) && (rId.getLength() > 0)) { pRedlineHelper->AdjustStartNodeCursor(rId, bStart, GetCursor()->getStart()); ResetOpenRedlineId(); } // else: ignore redline (wasn't added before, or no open redline ID }