1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
|
/* -*- 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 <memory>
#include <cellatr.hxx>
#include <charfmt.hxx>
#include <fchrfmt.hxx>
#include <doc.hxx>
#include <IDocumentListsAccess.hxx>
#include <editeng/editeng.hxx>
#include <fmtanchr.hxx>
#include <fmtpdsc.hxx>
#include <fmtautofmt.hxx>
#include <hintids.hxx>
#include <list.hxx>
#include <node.hxx>
#include <numrule.hxx>
#include <pagedesc.hxx>
#include <paratr.hxx>
#include <o3tl/unit_conversion.hxx>
#include <osl/diagnose.h>
#include <svl/whiter.hxx>
#include <svx/svdpool.hxx>
#include <svx/sxenditm.hxx>
#include <svx/sdsxyitm.hxx>
SwAttrPool::SwAttrPool( SwDoc* pD )
: SfxItemPool( "SWG",
POOLATTR_BEGIN, POOLATTR_END-1,
aSlotTab, &aAttrTab ),
m_pDoc( pD )
{
// create SfxItemPool and EditEngine pool and add these in a chain. These
// belong us and will be removed/destroyed in removeAndDeleteSecondaryPools() used from
// the destructor
rtl::Reference<SfxItemPool> pSdrPool = new SdrItemPool(this);
// #75371# change DefaultItems for the SdrEdgeObj distance items
// to TWIPS.
constexpr tools::Long nDefEdgeDist
= o3tl::convert(500, o3tl::Length::mm100, o3tl::Length::twip);
pSdrPool->SetPoolDefaultItem(SdrEdgeNode1HorzDistItem(nDefEdgeDist));
pSdrPool->SetPoolDefaultItem(SdrEdgeNode1VertDistItem(nDefEdgeDist));
pSdrPool->SetPoolDefaultItem(SdrEdgeNode2HorzDistItem(nDefEdgeDist));
pSdrPool->SetPoolDefaultItem(SdrEdgeNode2VertDistItem(nDefEdgeDist));
// #i33700# // Set shadow distance defaults as PoolDefaultItems
constexpr tools::Long nDefShadowDist
= o3tl::convert(300, o3tl::Length::mm100, o3tl::Length::twip);
pSdrPool->SetPoolDefaultItem(makeSdrShadowXDistItem(nDefShadowDist));
pSdrPool->SetPoolDefaultItem(makeSdrShadowYDistItem(nDefShadowDist));
rtl::Reference<SfxItemPool> pEEgPool = EditEngine::CreatePool();
pSdrPool->SetSecondaryPool(pEEgPool.get());
if(GetFrozenIdRanges().empty())
{
FreezeIdRanges();
}
else
{
pSdrPool->FreezeIdRanges();
}
}
SwAttrPool::~SwAttrPool()
{
// cleanup secondary pools
SfxItemPool *pSdrPool = GetSecondaryPool();
// first delete the items, then break the linking
pSdrPool->Delete();
SetSecondaryPool(nullptr);
}
SwAttrSet::SwAttrSet( SwAttrPool& rPool, sal_uInt16 nWh1, sal_uInt16 nWh2 )
: SfxItemSet( rPool, nWh1, nWh2 ), m_pOldSet( nullptr ), m_pNewSet( nullptr )
{
}
SwAttrSet::SwAttrSet( SwAttrPool& rPool, const WhichRangesContainer& nWhichPairTable )
: SfxItemSet( rPool, nWhichPairTable )
, m_pOldSet( nullptr ), m_pNewSet( nullptr )
{
}
SwAttrSet::SwAttrSet( const SwAttrSet& rSet )
: SfxItemSet( rSet ), m_pOldSet( nullptr ), m_pNewSet( nullptr )
{
}
std::unique_ptr<SfxItemSet> SwAttrSet::Clone( bool bItems, SfxItemPool *pToPool ) const
{
if ( pToPool && pToPool != GetPool() )
{
SwAttrPool* pAttrPool = dynamic_cast< SwAttrPool* >(pToPool);
std::unique_ptr<SfxItemSet> pTmpSet;
if ( !pAttrPool )
pTmpSet = SfxItemSet::Clone( bItems, pToPool );
else
{
pTmpSet.reset(new SwAttrSet( *pAttrPool, GetRanges() ));
if ( bItems )
{
SfxWhichIter aIter(*pTmpSet);
sal_uInt16 nWhich = aIter.FirstWhich();
while ( nWhich )
{
const SfxPoolItem* pItem;
if ( SfxItemState::SET == GetItemState( nWhich, false, &pItem ) )
pTmpSet->Put( *pItem );
nWhich = aIter.NextWhich();
}
}
}
return pTmpSet;
}
else
return std::unique_ptr<SfxItemSet>(
bItems
? new SwAttrSet( *this )
: new SwAttrSet( *GetPool(), GetRanges() ));
}
bool SwAttrSet::Put_BC( const SfxPoolItem& rAttr,
SwAttrSet* pOld, SwAttrSet* pNew )
{
m_pNewSet = pNew;
m_pOldSet = pOld;
bool bRet = nullptr != SfxItemSet::Put( rAttr );
m_pOldSet = m_pNewSet = nullptr;
return bRet;
}
bool SwAttrSet::Put_BC( const SfxItemSet& rSet,
SwAttrSet* pOld, SwAttrSet* pNew )
{
m_pNewSet = pNew;
m_pOldSet = pOld;
bool bRet = SfxItemSet::Put( rSet );
m_pOldSet = m_pNewSet = nullptr;
return bRet;
}
sal_uInt16 SwAttrSet::ClearItem_BC( sal_uInt16 nWhich,
SwAttrSet* pOld, SwAttrSet* pNew )
{
m_pNewSet = pNew;
m_pOldSet = pOld;
sal_uInt16 nRet = SfxItemSet::ClearItem( nWhich );
m_pOldSet = m_pNewSet = nullptr;
return nRet;
}
sal_uInt16 SwAttrSet::ClearItem_BC( sal_uInt16 nWhich1, sal_uInt16 nWhich2,
SwAttrSet* pOld, SwAttrSet* pNew )
{
OSL_ENSURE( nWhich1 <= nWhich2, "no valid range" );
m_pNewSet = pNew;
m_pOldSet = pOld;
sal_uInt16 nRet = 0;
for( ; nWhich1 <= nWhich2; ++nWhich1 )
nRet = nRet + SfxItemSet::ClearItem( nWhich1 );
m_pOldSet = m_pNewSet = nullptr;
return nRet;
}
int SwAttrSet::Intersect_BC( const SfxItemSet& rSet,
SwAttrSet* pOld, SwAttrSet* pNew )
{
m_pNewSet = pNew;
m_pOldSet = pOld;
SfxItemSet::Intersect( rSet );
m_pOldSet = m_pNewSet = nullptr;
return pNew ? pNew->Count() : ( pOld ? pOld->Count() : 0 );
}
/// Notification callback
void SwAttrSet::Changed( const SfxPoolItem& rOld, const SfxPoolItem& rNew )
{
if( m_pOldSet )
m_pOldSet->PutChgd( rOld );
if( m_pNewSet )
m_pNewSet->PutChgd( rNew );
}
/** special treatment for some attributes
Set the Modify pointer (old pDefinedIn) for the following attributes:
- SwFormatDropCaps
- SwFormatPageDesc
(Is called at inserts into formats/nodes)
*/
bool SwAttrSet::SetModifyAtAttr( const sw::BroadcastingModify* pModify )
{
bool bSet = false;
const SwFormatPageDesc* pPageDescItem = GetItemIfSet( RES_PAGEDESC, false );
if( pPageDescItem &&
pPageDescItem->GetDefinedIn() != pModify )
{
const_cast<SwFormatPageDesc&>(*pPageDescItem).ChgDefinedIn( pModify );
bSet = true;
}
if(SwFormatDrop* pFormatDrop = const_cast<SwFormatDrop*>(GetItemIfSet( RES_PARATR_DROP, false )))
{
auto pDropDefiner = dynamic_cast<const sw::FormatDropDefiner*>(pModify);
// If CharFormat is set and it is set in different attribute pools then
// the CharFormat has to be copied.
SwCharFormat* pCharFormat = pFormatDrop->GetCharFormat();
if(pCharFormat && GetPool() != pCharFormat->GetAttrSet().GetPool())
{
pCharFormat = GetDoc()->CopyCharFormat(*pCharFormat);
pFormatDrop->SetCharFormat(pCharFormat);
}
pFormatDrop->ChgDefinedIn(pDropDefiner);
bSet = true;
}
const SwTableBoxFormula* pBoxFormula = GetItemIfSet( RES_BOXATR_FORMULA, false );
if( pBoxFormula && pBoxFormula->GetDefinedIn() != pModify )
{
const_cast<SwTableBoxFormula&>(*pBoxFormula).ChgDefinedIn( pModify );
bSet = true;
}
return bSet;
}
void SwAttrSet::CopyToModify( sw::BroadcastingModify& rMod ) const
{
// copy attributes across multiple documents if needed
SwContentNode* pCNd = dynamic_cast<SwContentNode*>( &rMod );
SwFormat* pFormat = dynamic_cast<SwFormat*>( &rMod );
if( pCNd || pFormat )
{
if( Count() )
{
// #i92811#
std::unique_ptr<SfxStringItem> pNewListIdItem;
const SwDoc *pSrcDoc = GetDoc();
SwDoc *pDstDoc = pCNd ? &pCNd->GetDoc() : pFormat->GetDoc();
// Does the NumRule has to be copied?
const SwNumRuleItem* pNumRuleItem;
if( pSrcDoc != pDstDoc &&
(pNumRuleItem = GetItemIfSet( RES_PARATR_NUMRULE, false )) )
{
const OUString& rNm = pNumRuleItem->GetValue();
if( !rNm.isEmpty() )
{
SwNumRule* pDestRule = pDstDoc->FindNumRulePtr( rNm );
if( pDestRule )
pDestRule->SetInvalidRule( true );
else
pDstDoc->MakeNumRule( rNm, pSrcDoc->FindNumRulePtr( rNm ) );
}
}
// copy list and if needed also the corresponding list style
// for text nodes
const SfxStringItem* pStrItem;
if ( pSrcDoc != pDstDoc &&
pCNd && pCNd->IsTextNode() &&
(pStrItem = GetItemIfSet( RES_PARATR_LIST_ID, false )) )
{
const OUString& sListId = pStrItem->GetValue();
if ( !sListId.isEmpty() &&
!pDstDoc->getIDocumentListsAccess().getListByName( sListId ) )
{
const SwList* pList = pSrcDoc->getIDocumentListsAccess().getListByName( sListId );
// copy list style, if needed
const OUString& sDefaultListStyleName =
pList->GetDefaultListStyleName();
// #i92811#
const SwNumRule* pDstDocNumRule =
pDstDoc->FindNumRulePtr( sDefaultListStyleName );
if ( !pDstDocNumRule )
{
pDstDoc->MakeNumRule( sDefaultListStyleName,
pSrcDoc->FindNumRulePtr( sDefaultListStyleName ) );
}
else
{
const SwNumRule* pSrcDocNumRule =
pSrcDoc->FindNumRulePtr( sDefaultListStyleName );
// If list id of text node equals the list style's
// default list id in the source document, the same
// should be hold in the destination document.
// Thus, create new list id item.
if (pSrcDocNumRule && sListId == pSrcDocNumRule->GetDefaultListId())
{
pNewListIdItem.reset(new SfxStringItem (
RES_PARATR_LIST_ID,
pDstDocNumRule->GetDefaultListId() ));
}
}
// check again, if list exist, because <SwDoc::MakeNumRule(..)>
// could have also created it.
if ( pNewListIdItem == nullptr &&
!pDstDoc->getIDocumentListsAccess().getListByName( sListId ) )
{
// copy list
pDstDoc->getIDocumentListsAccess().createList( sListId, sDefaultListStyleName );
}
}
}
std::optional< SfxItemSet > tmpSet;
const SwFormatPageDesc* pPageDescItem;
if( pSrcDoc != pDstDoc && (pPageDescItem = GetItemIfSet(
RES_PAGEDESC, false )))
{
const SwPageDesc* pPgDesc = pPageDescItem->GetPageDesc();
if( pPgDesc )
{
tmpSet.emplace(*this);
SwPageDesc* pDstPgDesc = pDstDoc->FindPageDesc(pPgDesc->GetName());
if( !pDstPgDesc )
{
pDstPgDesc = pDstDoc->MakePageDesc(pPgDesc->GetName());
pDstDoc->CopyPageDesc( *pPgDesc, *pDstPgDesc );
}
SwFormatPageDesc aDesc( pDstPgDesc );
aDesc.SetNumOffset( pPageDescItem->GetNumOffset() );
tmpSet->Put( aDesc );
}
}
const SwFormatAnchor* pAnchorItem;
if( pSrcDoc != pDstDoc && (pAnchorItem = GetItemIfSet( RES_ANCHOR, false ))
&& pAnchorItem->GetContentAnchor() != nullptr )
{
if( !tmpSet )
tmpSet.emplace( *this );
// Anchors at any node position cannot be copied to another document, because the SwPosition
// would still point to the old document. It needs to be fixed up explicitly.
tmpSet->ClearItem( RES_ANCHOR );
}
const SwFormatAutoFormat* pAutoFormatItem;
if (pSrcDoc != pDstDoc &&
(pAutoFormatItem = GetItemIfSet(RES_PARATR_LIST_AUTOFMT, false)) &&
pAutoFormatItem->GetStyleHandle())
{
SfxItemSet const& rAutoStyle(*pAutoFormatItem->GetStyleHandle());
std::shared_ptr<SfxItemSet> const pNewSet(
rAutoStyle.SfxItemSet::Clone(true, &pDstDoc->GetAttrPool()));
// fix up character style, it contains pointers to pSrcDoc
if (const SwFormatCharFormat* pCharFormatItem = pNewSet->GetItemIfSet(RES_TXTATR_CHARFMT, false))
{
SwCharFormat *const pCopy(pDstDoc->CopyCharFormat(*pCharFormatItem->GetCharFormat()));
const_cast<SwFormatCharFormat&>(*pCharFormatItem).SetCharFormat(pCopy);
}
SwFormatAutoFormat item(RES_PARATR_LIST_AUTOFMT);
// TODO: for ODF export we'd need to add it to the autostyle pool
item.SetStyleHandle(pNewSet);
if (!tmpSet)
{
tmpSet.emplace(*this);
}
tmpSet->Put(item);
}
if( tmpSet )
{
if( pCNd )
{
// #i92811#
if ( pNewListIdItem != nullptr )
{
tmpSet->Put( std::move(pNewListIdItem) );
}
pCNd->SetAttr( *tmpSet );
}
else
{
pFormat->SetFormatAttr( *tmpSet );
}
}
else if( pCNd )
{
// #i92811#
if ( pNewListIdItem != nullptr )
{
SfxItemSet aTmpSet( *this );
aTmpSet.Put( std::move(pNewListIdItem) );
pCNd->SetAttr( aTmpSet );
}
else
{
pCNd->SetAttr( *this );
}
}
else
{
pFormat->SetFormatAttr( *this );
}
}
if (pCNd && pCNd->HasSwAttrSet())
{
SfxWhichIter it(*this);
std::vector<sal_uInt16> toClear;
for (sal_uInt16 nWhich = it.FirstWhich(); nWhich != 0; nWhich = it.NextWhich())
{
if (GetItemState(nWhich, false) != SfxItemState::SET
&& pCNd->GetSwAttrSet().GetItemState(nWhich, false) == SfxItemState::SET)
{
toClear.emplace_back(nWhich);
}
}
if (!toClear.empty())
{
pCNd->ResetAttr(toClear);
}
}
}
#if OSL_DEBUG_LEVEL > 0
else
OSL_FAIL("neither Format nor ContentNode - no Attributes copied");
#endif
}
/// check if ID is in range of attribute set IDs
bool IsInRange( const WhichRangesContainer& pRange, const sal_uInt16 nId )
{
for(const auto& rPair : pRange)
{
if( rPair.first <= nId && nId <= rPair.second )
return true;
}
return false;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|