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
|
/* -*- 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 <hintids.hxx>
#include <fesh.hxx>
#include <doc.hxx>
#include <IDocumentUndoRedo.hxx>
#include <IDocumentContentOperations.hxx>
#include <IDocumentStylePoolAccess.hxx>
#include <pagefrm.hxx>
#include <rootfrm.hxx>
#include <cntfrm.hxx>
#include <pam.hxx>
#include <fmtpdsc.hxx>
#include <pagedesc.hxx>
#include <tabfrm.hxx>
#include <edimp.hxx>
#include <SwStyleNameMapper.hxx>
size_t SwFEShell::GetPageDescCnt() const
{
return GetDoc()->GetPageDescCnt();
}
void SwFEShell::ChgCurPageDesc( const SwPageDesc& rDesc )
{
#if OSL_DEBUG_LEVEL > 0
// SS does not change PageDesc, but only sets the attibute.
// The Pagedesc should be available in the document
bool bFound = false;
for ( size_t nTst = 0; nTst < GetPageDescCnt(); ++nTst )
if ( &rDesc == &GetPageDesc( nTst ) )
bFound = true;
OSL_ENSURE( bFound, "ChgCurPageDesc with invalid descriptor." );
#endif
StartAllAction();
SwPageFrame *pPage = GetCurrFrame()->FindPageFrame();
const SwFrame *pFlow = nullptr;
::boost::optional<sal_uInt16> oPageNumOffset;
OSL_ENSURE( !GetCursor()->HasMark(), "ChgCurPageDesc only without selection!");
SET_CURR_SHELL( this );
while ( pPage )
{
pFlow = pPage->FindFirstBodyContent();
if ( pFlow )
{
if ( pFlow->IsInTab() )
pFlow = pFlow->FindTabFrame();
const SwFormatPageDesc& rPgDesc = pFlow->GetAttrSet()->GetPageDesc();
if( rPgDesc.GetPageDesc() )
{
// wir haben ihn den Schlingel
oPageNumOffset = rPgDesc.GetNumOffset();
break;
}
}
pPage = static_cast<SwPageFrame*>( pPage->GetPrev() );
}
if ( !pPage )
{
pPage = static_cast<SwPageFrame*>(GetLayout()->Lower());
pFlow = pPage->FindFirstBodyContent();
if ( !pFlow )
{
pPage = static_cast<SwPageFrame*>(pPage->GetNext());
pFlow = pPage->FindFirstBodyContent();
OSL_ENSURE( pFlow, "Dokuemnt ohne Inhalt?!?" );
}
}
// use pagenumber
SwFormatPageDesc aNew( &rDesc );
aNew.SetNumOffset( oPageNumOffset );
if ( pFlow->IsInTab() )
GetDoc()->SetAttr( aNew, *const_cast<SwFormat*>(static_cast<SwFormat const *>(pFlow->FindTabFrame()->GetFormat())) );
else
{
SwPaM aPaM( *static_cast<const SwContentFrame*>(pFlow)->GetNode() );
GetDoc()->getIDocumentContentOperations().InsertPoolItem( aPaM, aNew );
}
EndAllActionAndCall();
}
void SwFEShell::ChgPageDesc( size_t i, const SwPageDesc &rChged )
{
StartAllAction();
SET_CURR_SHELL( this );
//Fix i64842: because Undo has a very special way to handle header/footer content
// we have to copy the page descriptor before calling ChgPageDesc.
SwPageDesc aDesc( rChged );
{
::sw::UndoGuard const undoGuard(GetDoc()->GetIDocumentUndoRedo());
GetDoc()->CopyPageDesc(rChged, aDesc);
}
GetDoc()->ChgPageDesc( i, aDesc );
EndAllActionAndCall();
}
const SwPageDesc& SwFEShell::GetPageDesc( size_t i ) const
{
return GetDoc()->GetPageDesc( i );
}
SwPageDesc* SwFEShell::FindPageDescByName( const OUString& rName,
bool bGetFromPool,
size_t* pPos )
{
SwPageDesc* pDesc = GetDoc()->FindPageDesc(rName, pPos);
if( !pDesc && bGetFromPool )
{
sal_uInt16 nPoolId = SwStyleNameMapper::GetPoolIdFromUIName( rName, nsSwGetPoolIdFromName::GET_POOLID_PAGEDESC );
if( USHRT_MAX != nPoolId &&
nullptr != (pDesc = GetDoc()->getIDocumentStylePoolAccess().GetPageDescFromPool( nPoolId ))
&& pPos )
// appended always
*pPos = GetDoc()->GetPageDescCnt() - 1 ;
}
return pDesc;
}
size_t SwFEShell::GetMousePageDesc( const Point &rPt ) const
{
if( GetLayout() )
{
const SwPageFrame* pPage =
static_cast<const SwPageFrame*>( GetLayout()->Lower() );
if( pPage )
{
while( pPage->GetNext() && rPt.Y() > pPage->Frame().Bottom() )
pPage = static_cast<const SwPageFrame*>( pPage->GetNext() );
SwDoc *pMyDoc = GetDoc();
size_t nPos;
if (pMyDoc->ContainsPageDesc( pPage->GetPageDesc(), &nPos ) )
return nPos;
}
}
return 0;
}
size_t SwFEShell::GetCurPageDesc( const bool bCalcFrame ) const
{
const SwFrame *pFrame = GetCurrFrame( bCalcFrame );
if ( pFrame )
{
const SwPageFrame *pPage = pFrame->FindPageFrame();
if ( pPage )
{
size_t nPos;
if (GetDoc()->ContainsPageDesc( pPage->GetPageDesc(), &nPos ))
return nPos;
}
}
return 0;
}
// if inside all selection only one PageDesc, return this.
// Otherwise return 0 pointer
const SwPageDesc* SwFEShell::GetSelectedPageDescs() const
{
const SwContentNode* pCNd;
const SwFrame* pMkFrame, *pPtFrame;
const SwPageDesc* pFnd, *pRetDesc = reinterpret_cast<SwPageDesc*>(sal_IntPtr(-1));
const Point aNulPt;
for(SwPaM& rPaM : GetCursor()->GetRingContainer())
{
if( nullptr != (pCNd = rPaM.GetContentNode() ) &&
nullptr != ( pPtFrame = pCNd->getLayoutFrame( GetLayout(), &aNulPt, nullptr, false )) )
pPtFrame = pPtFrame->FindPageFrame();
else
pPtFrame = nullptr;
if( rPaM.HasMark() &&
nullptr != (pCNd = rPaM.GetContentNode( false ) ) &&
nullptr != ( pMkFrame = pCNd->getLayoutFrame( GetLayout(), &aNulPt, nullptr, false )) )
pMkFrame = pMkFrame->FindPageFrame();
else
pMkFrame = pPtFrame;
if( !pMkFrame || !pPtFrame )
pFnd = nullptr;
else if( pMkFrame == pPtFrame )
pFnd = static_cast<const SwPageFrame*>(pMkFrame)->GetPageDesc();
else
{
// swap pointer if PtFrame before MkFrame
if( static_cast<const SwPageFrame*>(pMkFrame)->GetPhyPageNum() >
static_cast<const SwPageFrame*>(pPtFrame)->GetPhyPageNum() )
{
const SwFrame* pTmp = pMkFrame; pMkFrame = pPtFrame; pPtFrame = pTmp;
}
// now check from MkFrame to PtFrame for equal PageDescs
pFnd = static_cast<const SwPageFrame*>(pMkFrame)->GetPageDesc();
while( pFnd && pMkFrame != pPtFrame )
{
pMkFrame = pMkFrame->GetNext();
if( !pMkFrame || pFnd != static_cast<const SwPageFrame*>(pMkFrame)->GetPageDesc() )
pFnd = nullptr;
}
}
if( reinterpret_cast<SwPageDesc*>(sal_IntPtr(-1)) == pRetDesc )
pRetDesc = pFnd;
else if( pFnd != pRetDesc )
{
pRetDesc = nullptr;
break;
}
}
return pRetDesc;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|