/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sc.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "xeescher.hxx" #include "global.hxx" #include "document.hxx" #include "drwlayer.hxx" #include "xcl97rec.hxx" #include "xehelper.hxx" #include "xechart.hxx" #include "xcl97esc.hxx" using ::rtl::OUString; using ::com::sun::star::uno::Any; using ::com::sun::star::uno::Exception; using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::Sequence; using ::com::sun::star::uno::UNO_QUERY; using ::com::sun::star::uno::UNO_QUERY_THROW; using ::com::sun::star::container::XIndexAccess; using ::com::sun::star::embed::XClassifiedObject; using ::com::sun::star::drawing::XShape; using ::com::sun::star::awt::XControlModel; using ::com::sun::star::beans::XPropertySet; using ::com::sun::star::uno::Any; using ::com::sun::star::form::XForm; using ::com::sun::star::form::XFormComponent; using ::com::sun::star::form::XFormsSupplier; using ::com::sun::star::script::ScriptEventDescriptor; using ::com::sun::star::script::XEventAttacherManager; // ============================================================================ XclEscherExGlobal::XclEscherExGlobal( const XclExpRoot& rRoot ) : XclExpRoot( rRoot ) { SetBaseURI( GetMedium().GetBaseURL( true ) ); } SvStream* XclEscherExGlobal::ImplQueryPictureStream() { mxPicTempFile.reset( new ::utl::TempFile ); if( mxPicTempFile->IsValid() ) { mxPicTempFile->EnableKillingFile(); mxPicStrm.reset( ::utl::UcbStreamHelper::CreateStream( mxPicTempFile->GetURL(), STREAM_STD_READWRITE ) ); mxPicStrm->SetNumberFormatInt( NUMBERFORMAT_INT_LITTLEENDIAN ); } return mxPicStrm.get(); } // ============================================================================ XclEscherEx::XclEscherEx( const XclExpRoot& rRoot, XclExpObjectManager& rObjMgr, SvStream& rStrm, const XclEscherEx* pParent ) : EscherEx( pParent ? pParent->mxGlobal : EscherExGlobalRef( new XclEscherExGlobal( rRoot ) ), rStrm ), XclExpRoot( rRoot ), mrObjMgr( rObjMgr ), pCurrXclObj( NULL ), pCurrAppData( NULL ), pTheClientData( new XclEscherClientData ), pAdditionalText( NULL ), nAdditionalText( 0 ), mnNextKey( 0 ), mbIsRootDff( pParent == 0 ) { InsertPersistOffset( mnNextKey, 0 ); } XclEscherEx::~XclEscherEx() { DBG_ASSERT( !aStack.Count(), "~XclEscherEx: stack not empty" ); DeleteCurrAppData(); delete pTheClientData; } sal_uInt32 XclEscherEx::InitNextDffFragment() { /* Current value of mnNextKey will be used by caller to refer to the starting point of the DFF fragment. The key exists already in the PersistTable (has been inserted by c'tor of previous call of InitNextDffFragment(), has been updated by UpdateDffFragmentEnd(). */ sal_uInt32 nPersistKey = mnNextKey; /* Prepare the next key that is used by caller as end point of the DFF fragment. Will be updated by caller when writing to the DFF stream, using the UpdateDffFragmentEnd() function. This is needed to find DFF data written by the SVX base class implementation without interaction, e.g. the solver container that will be written after the last shape. */ ++mnNextKey; InsertPersistOffset( mnNextKey, mpOutStrm->Tell() ); return nPersistKey; } void XclEscherEx::UpdateDffFragmentEnd() { // update existing fragment key with new stream position ReplacePersistOffset( mnNextKey, mpOutStrm->Tell() ); } sal_uInt32 XclEscherEx::GetDffFragmentPos( sal_uInt32 nFragmentKey ) { /* TODO: this function is non-const because PersistTable::PtGetOffsetByID() is non-const due to tools/List usage. */ return GetPersistOffset( nFragmentKey ); } sal_uInt32 XclEscherEx::GetDffFragmentSize( sal_uInt32 nFragmentKey ) { /* TODO: this function is non-const because PersistTable::PtGetOffsetByID() is non-const due to tools/List usage. */ return GetDffFragmentPos( nFragmentKey + 1 ) - GetDffFragmentPos( nFragmentKey ); } bool XclEscherEx::HasPendingDffData() { /* TODO: this function is non-const because PersistTable::PtGetOffsetByID() is non-const due to tools/List usage. */ return GetDffFragmentPos( mnNextKey ) < GetStreamPos(); } XclExpDffAnchorBase* XclEscherEx::CreateDffAnchor( const SdrObject& rSdrObj ) const { // the object manager creates the correct anchor type according to context XclExpDffAnchorBase* pAnchor = mrObjMgr.CreateDffAnchor(); // pass the drawing object, that will calculate the anchor position pAnchor->SetSdrObject( rSdrObj ); return pAnchor; } namespace { bool lcl_IsFontwork( const SdrObject* pObj ) { bool bIsFontwork = false; if( pObj->GetObjIdentifier() == OBJ_CUSTOMSHAPE ) { const OUString aTextPath = CREATE_OUSTRING( "TextPath" ); SdrCustomShapeGeometryItem& rGeometryItem = (SdrCustomShapeGeometryItem&) pObj->GetMergedItem( SDRATTR_CUSTOMSHAPE_GEOMETRY ); if( Any* pAny = rGeometryItem.GetPropertyValueByName( aTextPath, aTextPath ) ) *pAny >>= bIsFontwork; } return bIsFontwork; } } // namespace EscherExHostAppData* XclEscherEx::StartShape( const Reference< XShape >& rxShape, const Rectangle* pChildAnchor ) { if ( nAdditionalText ) nAdditionalText++; sal_Bool bInGroup = ( pCurrXclObj != NULL ); if ( bInGroup ) { // stacked recursive group object if ( !pCurrAppData->IsStackedGroup() ) { //! UpdateDffFragmentEnd only once pCurrAppData->SetStackedGroup( sal_True ); UpdateDffFragmentEnd(); } } aStack.Push( pCurrXclObj ); aStack.Push( pCurrAppData ); pCurrAppData = new XclEscherHostAppData; SdrObject* pObj = GetSdrObjectFromXShape( rxShape ); //added for exporting OCX control sal_Int16 nMsCtlType = 0; if ( !pObj ) pCurrXclObj = new XclObjAny( mrObjMgr ); // just what is it?!? else { pCurrXclObj = NULL; sal_uInt16 nObjType = pObj->GetObjIdentifier(); if( nObjType == OBJ_OLE2 ) { // no OLE objects in embedded drawings (chart shapes) if( mbIsRootDff ) { //! not-const because GetObjRef may load the OLE object Reference < XClassifiedObject > xObj( ((SdrOle2Obj*)pObj)->GetObjRef(), UNO_QUERY ); if ( xObj.is() ) { SvGlobalName aObjClsId( xObj->getClassID() ); if ( SotExchange::IsChart( aObjClsId ) ) { // yes, it's a chart diagram mrObjMgr.AddObj( new XclExpChartObj( mrObjMgr, rxShape, pChildAnchor ) ); pCurrXclObj = NULL; // no metafile or whatsoever } else // metafile and OLE object pCurrXclObj = new XclObjOle( mrObjMgr, *pObj ); } else // just a metafile pCurrXclObj = new XclObjAny( mrObjMgr ); } else pCurrXclObj = new XclObjAny( mrObjMgr ); } else if( nObjType == OBJ_UNO ) { //added for exporting OCX control Reference< XPropertySet > xPropSet( rxShape, UNO_QUERY ); Any aAny; try{ aAny = xPropSet->getPropertyValue(rtl::OUString::createFromAscii("ControlTypeinMSO")); }catch(...) { OSL_TRACE("XclEscherEx::StartShape, this control can't get the property ControlTypeinMSO!"); } aAny >>= nMsCtlType; if( nMsCtlType == 2 ) //OCX Form Control pCurrXclObj = CreateOCXCtrlObj( rxShape, pChildAnchor ); else //TBX Form Control pCurrXclObj = CreateTBXCtrlObj( rxShape, pChildAnchor ); if( !pCurrXclObj ) pCurrXclObj = new XclObjAny( mrObjMgr ); // just a metafile } else if( !ScDrawLayer::IsNoteCaption( pObj ) ) { // #107540# ignore permanent note shapes // #i12190# do not ignore callouts (do not filter by object type ID) pCurrXclObj = new XclObjAny( mrObjMgr ); // just a metafile } } if ( pCurrXclObj ) { if ( !mrObjMgr.AddObj( pCurrXclObj ) ) { // maximum count reached, object got deleted pCurrXclObj = NULL; } else { pCurrAppData->SetClientData( pTheClientData ); if ( nAdditionalText == 0 ) { if ( pObj ) { if ( !bInGroup ) { /* Create a dummy anchor carrying the flags. Real coordinates are calculated later in virtual call of WriteData(EscherEx&,const Rectangle&). */ XclExpDffAnchorBase* pAnchor = mrObjMgr.CreateDffAnchor(); pAnchor->SetFlags( *pObj ); pCurrAppData->SetClientAnchor( pAnchor ); } const SdrTextObj* pTextObj = PTR_CAST( SdrTextObj, pObj ); if( pTextObj && !lcl_IsFontwork( pTextObj ) && (pObj->GetObjIdentifier() != OBJ_CAPTION) ) { const OutlinerParaObject* pParaObj = pTextObj->GetOutlinerParaObject(); if( pParaObj ) pCurrAppData->SetClientTextbox( new XclEscherClientTextbox( GetRoot(), *pTextObj, pCurrXclObj ) ); } } else { if ( !bInGroup ) pCurrAppData->SetClientAnchor( mrObjMgr.CreateDffAnchor() ); } } else if ( nAdditionalText == 3 ) { if ( pAdditionalText ) { pAdditionalText->SetXclObj( pCurrXclObj ); pCurrAppData->SetClientTextbox( pAdditionalText ); } } } } //add for exporting OCX control //for OCX control import from MS office file,we need keep the id value as MS office file. //GetOldRoot().pObjRecs->Add( pCurrXclObj ) statement has generated the id value as aoo obj id rule; //but we trick it here. sal_uInt16 nObjType = pObj->GetObjIdentifier(); if( nObjType == OBJ_UNO && pCurrXclObj ) { Reference< XPropertySet > xPropSet( rxShape, UNO_QUERY ); Any aAny; try{ aAny = xPropSet->getPropertyValue(rtl::OUString::createFromAscii("ObjIDinMSO")); }catch(...) { OSL_TRACE("XclEscherEx::StartShape, this control can't get the property ObjIDinMSO!"); } sal_uInt16 nObjIDinMSO = 0xFFFF; aAny >>= nObjIDinMSO; if( nObjIDinMSO != 0xFFFF && nMsCtlType == 2) //OCX { pCurrXclObj->SetId(nObjIDinMSO); } } if ( !pCurrXclObj ) pCurrAppData->SetDontWriteShape( sal_True ); return pCurrAppData; } void XclEscherEx::EndShape( sal_uInt16 nShapeType, sal_uInt32 nShapeID ) { // own escher data created? -> never delete such objects bool bOwnEscher = pCurrXclObj && pCurrXclObj->IsOwnEscher(); // post process the current object - not for objects with own escher data if( pCurrXclObj && !bOwnEscher ) { // escher data of last shape not written? -> delete it from object list if( nShapeID == 0 ) { XclObj* pLastObj = mrObjMgr.RemoveLastObj(); DBG_ASSERT( pLastObj == pCurrXclObj, "XclEscherEx::EndShape - wrong object" ); DELETEZ( pLastObj ); pCurrXclObj = 0; } if( pCurrXclObj ) { // set shape type if ( pCurrAppData->IsStackedGroup() ) pCurrXclObj->SetEscherShapeTypeGroup(); else { pCurrXclObj->SetEscherShapeType( nShapeType ); UpdateDffFragmentEnd(); } } } // get next object from stack DeleteCurrAppData(); pCurrAppData = static_cast< XclEscherHostAppData* >( aStack.Pop() ); pCurrXclObj = static_cast< XclObj* >( aStack.Pop() ); if( nAdditionalText == 3 ) nAdditionalText = 0; } EscherExHostAppData* XclEscherEx::EnterAdditionalTextGroup() { nAdditionalText = 1; pAdditionalText = (XclEscherClientTextbox*) pCurrAppData->GetClientTextbox(); pCurrAppData->SetClientTextbox( NULL ); return pCurrAppData; } void XclEscherEx::EndDocument() { if( mbIsRootDff ) Flush( static_cast< XclEscherExGlobal& >( *mxGlobal ).GetPictureStream() ); // seek back DFF stream to prepare saving the MSODRAWING[GROUP] records mpOutStrm->Seek( 0 ); } //delete for exporting OCX //#if EXC_EXP_OCX_CTRL XclExpOcxControlObj* XclEscherEx::CreateOCXCtrlObj( Reference< XShape > xShape, const Rectangle* pChildAnchor ) { ::std::auto_ptr< XclExpOcxControlObj > xOcxCtrl; Reference< XControlModel > xCtrlModel = XclControlHelper::GetControlModel( xShape ); if( xCtrlModel.is() ) { // output stream if( !mxCtlsStrm.Is() ) mxCtlsStrm = OpenStream( EXC_STREAM_CTLS ); if( mxCtlsStrm.Is() ) { String aClassName; sal_uInt32 nStrmStart = static_cast< sal_uInt32 >( mxCtlsStrm->Tell() ); // writes from xCtrlModel into mxCtlsStrm, raw class name returned in aClassName if( SvxMSConvertOCXControls::WriteOCXExcelKludgeStream( mxCtlsStrm, xCtrlModel, xShape->getSize(), aClassName ) ) { sal_uInt32 nStrmSize = static_cast< sal_uInt32 >( mxCtlsStrm->Tell() - nStrmStart ); // adjust the class name to "Forms.***.1" aClassName.InsertAscii( "Forms.", 0 ).AppendAscii( ".1" ); xOcxCtrl.reset( new XclExpOcxControlObj( mrObjMgr, xShape, pChildAnchor, aClassName, nStrmStart, nStrmSize ) ); } } } return xOcxCtrl.release(); } //#else XclExpTbxControlObj* XclEscherEx::CreateTBXCtrlObj( Reference< XShape > xShape, const Rectangle* pChildAnchor ) { ::std::auto_ptr< XclExpTbxControlObj > xTbxCtrl( new XclExpTbxControlObj( mrObjMgr, xShape, pChildAnchor ) ); if( xTbxCtrl->GetObjType() == EXC_OBJTYPE_UNKNOWN ) xTbxCtrl.reset(); if( xTbxCtrl.get() ) { // find attached macro Reference< XControlModel > xCtrlModel = XclControlHelper::GetControlModel( xShape ); ConvertTbxMacro( *xTbxCtrl, xCtrlModel ); } return xTbxCtrl.release(); } void XclEscherEx::ConvertTbxMacro( XclExpTbxControlObj& rTbxCtrlObj, Reference< XControlModel > xCtrlModel ) { SdrPage* pSdrPage = GetSdrPage( GetCurrScTab() ); if( xCtrlModel.is() && GetDocShell() && pSdrPage ) try { Reference< XFormsSupplier > xFormsSupplier( pSdrPage->getUnoPage(), UNO_QUERY_THROW ); Reference< XIndexAccess > xFormsIA( xFormsSupplier->getForms(), UNO_QUERY_THROW ); // 1) try to find the index of the processed control in the form Reference< XIndexAccess > xFormIA; // needed in step 2) below sal_Int32 nFoundIdx = -1; // search all existing forms in the draw page for( sal_Int32 nFormIdx = 0, nFormCount = xFormsIA->getCount(); (nFoundIdx < 0) && (nFormIdx < nFormCount); ++nFormIdx ) { // get the XIndexAccess interface of the form with index nFormIdx if( xFormIA.set( xFormsIA->getByIndex( nFormIdx ), UNO_QUERY ) ) { // search all elements (controls) of the current form by index for( sal_Int32 nCtrlIdx = 0, nCtrlCount = xFormIA->getCount(); (nFoundIdx < 0) && (nCtrlIdx < nCtrlCount); ++nCtrlIdx ) { // compare implementation pointers of the control models Reference< XControlModel > xCurrModel( xFormIA->getByIndex( nCtrlIdx ), UNO_QUERY ); if( xCtrlModel.get() == xCurrModel.get() ) nFoundIdx = nCtrlIdx; } } } // 2) try to find an attached macro if( xFormIA.is() && (nFoundIdx >= 0) ) { Reference< XEventAttacherManager > xEventMgr( xFormIA, UNO_QUERY_THROW ); // loop over all events attached to the found control const Sequence< ScriptEventDescriptor > aEventSeq( xEventMgr->getScriptEvents( nFoundIdx ) ); bool bFound = false; for( sal_Int32 nEventIdx = 0, nEventCount = aEventSeq.getLength(); !bFound && (nEventIdx < nEventCount); ++nEventIdx ) { // try to set the event data at the Excel control object, returns true on success bFound = rTbxCtrlObj.SetMacroLink( aEventSeq[ nEventIdx ] ); } } } catch( Exception& ) { } } //#endif void XclEscherEx::DeleteCurrAppData() { if ( pCurrAppData ) { delete pCurrAppData->GetClientAnchor(); // delete pCurrAppData->GetClientData(); delete pCurrAppData->GetClientTextbox(); delete pCurrAppData; } } // ============================================================================ // --- class XclEscherClientData ------------------------------------- void XclEscherClientData::WriteData( EscherEx& rEx ) const { // actual data is in the following OBJ record rEx.AddAtom( 0, ESCHER_ClientData ); } // --- class XclEscherClientTextbox ------------------------------------- XclEscherClientTextbox::XclEscherClientTextbox( const XclExpRoot& rRoot, const SdrTextObj& rObj, XclObj* pObj ) : XclExpRoot( rRoot ), rTextObj( rObj ), pXclObj( pObj ) { } void XclEscherClientTextbox::WriteData( EscherEx& /*rEx*/ ) const { pXclObj->SetText( GetRoot(), rTextObj ); }