/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /// Ctor moves all lines/boxes from a SwTable into itself. /// Afterwards the SwTable is empty and must be deleted. SwDDETable::SwDDETable( SwTable& rTable, SwDDEFieldType* pDDEType, bool bUpdate ) : SwTable( rTable ), aDepend( this, pDDEType ) { // copy the table data m_TabSortContentBoxes.insert(rTable.GetTabSortBoxes()); rTable.GetTabSortBoxes().clear(); m_aLines.insert( m_aLines.begin(), rTable.GetTabLines().begin(), rTable.GetTabLines().end() ); // move lines rTable.GetTabLines().clear(); if( !m_aLines.empty() ) { const SwNode& rNd = *GetTabSortBoxes()[0]->GetSttNd(); if( rNd.GetNodes().IsDocNodes() ) { pDDEType->IncRefCnt(); // update box content only if update flag is set (false in import) if (bUpdate) ChangeContent(); } } } SwDDETable::~SwDDETable() { SwDDEFieldType* pFieldTyp = static_cast(aDepend.GetRegisteredIn()); SwDoc* pDoc = GetFrameFormat()->GetDoc(); if (!pDoc->IsInDtor() && !m_aLines.empty()) { assert(m_pTableNode); if (m_pTableNode->GetNodes().IsDocNodes()) { pFieldTyp->DecRefCnt(); } } // If it is the last dependent of the "deleted field" than delete it finally if( pFieldTyp->IsDeleted() && pFieldTyp->HasOnlyOneListener() ) { pFieldTyp->Remove( &aDepend ); delete pFieldTyp; } } void SwDDETable::Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew ) { if( pNew && RES_UPDATEDDETBL == pNew->Which() ) ChangeContent(); else SwTable::Modify( pOld, pNew ); } void SwDDETable::SwClientNotify( const SwModify& rModify, const SfxHint& rHint ) { SwClient::SwClientNotify(rModify, rHint); const SwFieldHint* pHint = dynamic_cast( &rHint ); if ( pHint ) // replace DDETable by real table NoDDETable(); } void SwDDETable::ChangeContent() { OSL_ENSURE( GetFrameFormat(), "No FrameFormat" ); // Is this the correct NodesArray? (because of UNDO) if( m_aLines.empty() ) return; OSL_ENSURE( !GetTabSortBoxes().empty(), "Table without content?" ); if( !GetTabSortBoxes()[0]->GetSttNd()->GetNodes().IsDocNodes() ) return; // access to DDEFieldType SwDDEFieldType* pDDEType = static_cast(aDepend.GetRegisteredIn()); OUString aExpand = pDDEType->GetExpansion().replaceAll("\r", ""); sal_Int32 nExpandTokenPos = 0; for( size_t n = 0; n < m_aLines.size(); ++n ) { OUString aLine = aExpand.getToken( 0, '\n', nExpandTokenPos ); sal_Int32 nLineTokenPos = 0; SwTableLine* pLine = m_aLines[ n ]; for( size_t i = 0; i < pLine->GetTabBoxes().size(); ++i ) { SwTableBox* pBox = pLine->GetTabBoxes()[ i ]; OSL_ENSURE( pBox->GetSttIdx(), "no content box" ); SwNodeIndex aNdIdx( *pBox->GetSttNd(), 1 ); SwTextNode* pTextNode = aNdIdx.GetNode().GetTextNode(); OSL_ENSURE( pTextNode, "No Node" ); SwIndex aCntIdx( pTextNode, 0 ); pTextNode->EraseText( aCntIdx ); pTextNode->InsertText( aLine.getToken( 0, '\t', nLineTokenPos ), aCntIdx ); SwTableBoxFormat* pBoxFormat = static_cast(pBox->GetFrameFormat()); pBoxFormat->LockModify(); pBoxFormat->ResetFormatAttr( RES_BOXATR_VALUE ); pBoxFormat->UnlockModify(); } } const IDocumentSettingAccess& rIDSA = GetFrameFormat()->getIDocumentSettingAccess(); SwDoc* pDoc = GetFrameFormat()->GetDoc(); if( AUTOUPD_FIELD_AND_CHARTS == rIDSA.getFieldUpdateFlags(true) ) pDoc->getIDocumentFieldsAccess().SetFieldsDirty( true, nullptr, 0 ); } SwDDEFieldType* SwDDETable::GetDDEFieldType() { return static_cast(aDepend.GetRegisteredIn()); } bool SwDDETable::NoDDETable() { // search table node OSL_ENSURE( GetFrameFormat(), "No FrameFormat" ); SwDoc* pDoc = GetFrameFormat()->GetDoc(); // Is this the correct NodesArray? (because of UNDO) if( m_aLines.empty() ) return false; OSL_ENSURE( !GetTabSortBoxes().empty(), "Table without content?" ); SwNode* pNd = const_cast(static_cast(GetTabSortBoxes()[0]->GetSttNd())); if( !pNd->GetNodes().IsDocNodes() ) return false; SwTableNode* pTableNd = pNd->FindTableNode(); OSL_ENSURE( pTableNd, "Where is the table?"); SwTable* pNewTable = new SwTable( *this ); // copy the table data pNewTable->GetTabSortBoxes().insert( GetTabSortBoxes() ); // move content boxes GetTabSortBoxes().clear(); pNewTable->GetTabLines().insert( pNewTable->GetTabLines().begin(), GetTabLines().begin(), GetTabLines().end() ); // move lines GetTabLines().clear(); if( pDoc->getIDocumentLayoutAccess().GetCurrentViewShell() ) static_cast(aDepend.GetRegisteredIn())->DecRefCnt(); pTableNd->SetNewTable( pNewTable ); // replace table return true; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */