Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "hintids.hxx"
21 : #include "cntfrm.hxx"
22 : #include "doc.hxx"
23 : #include <IDocumentUndoRedo.hxx>
24 : #include <IDocumentLayoutAccess.hxx>
25 : #include "pam.hxx"
26 : #include "flyfrm.hxx"
27 : #include "ndtxt.hxx"
28 : #include "frmfmt.hxx"
29 : #include <fmtflcnt.hxx>
30 : #include <txtflcnt.hxx>
31 : #include <fmtanchr.hxx>
32 : #include "swfont.hxx"
33 : #include "txtfrm.hxx"
34 : #include "flyfrms.hxx"
35 : #include <objectformatter.hxx>
36 : #include <calbck.hxx>
37 :
38 7179 : SwFormatFlyCnt::SwFormatFlyCnt( SwFrameFormat *pFrameFormat )
39 : : SfxPoolItem( RES_TXTATR_FLYCNT ),
40 : pTextAttr( 0 ),
41 7179 : pFormat( pFrameFormat )
42 : {
43 7179 : }
44 :
45 0 : bool SwFormatFlyCnt::operator==( const SfxPoolItem& rAttr ) const
46 : {
47 : assert(SfxPoolItem::operator==(rAttr));
48 0 : return( pTextAttr && static_cast<const SwFormatFlyCnt&>(rAttr).pTextAttr &&
49 0 : pTextAttr->GetStart() == static_cast<const SwFormatFlyCnt&>(rAttr).pTextAttr->GetStart() &&
50 0 : pFormat == static_cast<const SwFormatFlyCnt&>(rAttr).GetFrameFormat() );
51 : }
52 :
53 3648 : SfxPoolItem* SwFormatFlyCnt::Clone( SfxItemPool* ) const
54 : {
55 3648 : return new SwFormatFlyCnt( pFormat );
56 : }
57 :
58 3648 : SwTextFlyCnt::SwTextFlyCnt( SwFormatFlyCnt& rAttr, sal_Int32 nStartPos )
59 3648 : : SwTextAttr( rAttr, nStartPos )
60 : {
61 3648 : rAttr.pTextAttr = this;
62 3648 : SetHasDummyChar(true);
63 3648 : }
64 :
65 : /*
66 : * An dieser Stelle soll einmal der Gesamtzusammenhang bei der Erzeugung
67 : * eines neuen SwTextFlyCnt erlaeutert werden.
68 : * Das MakeTextHint() wird z.B. im SwTextNode::Copy() gerufen.
69 : * Fuer die komplette Verdopplung sind folgende Schritte notwendig:
70 : * 1) Duplizieren des pFormat incl. Inhalt, Attributen etc.
71 : * 2) Setzen des Ankers
72 : * 3) Benachrichtigung
73 : * Da fuer die Bewaeltigung der Aufgaben nicht immer alle Informationen
74 : * bereitstehen und darueber hinaus bestimmte Methoden erst zu einem
75 : * spaeteren Zeitpunkt gerufen werden duerfen (weil nocht nicht alle
76 : * Nodeinformationen vorliegen), verteilt sich der Ablauf.
77 : * ad 1) MakeTextHint() wird durch den Aufruf von SwDoc::CopyLayout()
78 : * der das neue FlyFrameFormat erzeugt und mit dem duplizierten Inhalt des
79 : * FlyFrm verbunden.
80 : * ad 2) SetAnchor() wird von SwTextNode::Insert() gerufen und sorgt fuer das
81 : * setzen des Ankers (die SwPosition des Dummy-Zeichens wird dem FlyFrameFormat
82 : * per SetAttr bekannt gegeben). Dies kann nicht im MakeTextHint erledigt
83 : * werden, da der Zielnode unbestimmt ist.
84 : * ad 3) _GetFlyFrm() wird im Formatierungsprozess vom LineIter gerufen
85 : * und sucht den FlyFrm zum Dummyzeichen des aktuellen ContentFrm. Wird keiner
86 : * gefunden, so wird ein neuer FlyFrm angelegt.
87 : * Kritisch an diesem Vorgehen ist, dass das pContent->AppendFly() eine
88 : * sofortige Neuformatierung von pContent anstoesst. Die Rekursion kommt
89 : * allerdings durch den Lockmechanismus in SwTextFrm::Format() nicht
90 : * zu stande.
91 : * Attraktiv ist der Umstand, dass niemand ueber die vom Node abhaengigen
92 : * ContentFrms iterieren braucht, um die FlyInCntFrm anzulegen. Dies geschieht
93 : * bei der Arbeit.
94 : */
95 :
96 176 : void SwTextFlyCnt::CopyFlyFormat( SwDoc* pDoc )
97 : {
98 176 : SwFrameFormat* pFormat = GetFlyCnt().GetFrameFormat();
99 : OSL_ENSURE( pFormat, "von welchem Format soll ich eine Kopie erzeugen?" );
100 : // Das FlyFrameFormat muss dupliziert werden.
101 : // In CopyLayoutFormat (siehe doclay.cxx) wird das FlyFrameFormat erzeugt
102 : // und der Inhalt dupliziert.
103 :
104 : // disable undo while copying attribute
105 176 : ::sw::UndoGuard const undoGuard(pDoc->GetIDocumentUndoRedo());
106 352 : SwFormatAnchor aAnchor( pFormat->GetAnchor() );
107 352 : if ((FLY_AT_PAGE != aAnchor.GetAnchorId()) &&
108 176 : (pDoc != pFormat->GetDoc())) // different documents?
109 : {
110 : // JP 03.06.96: dann sorge dafuer, das der koperierte Anker auf
111 : // gueltigen Content zeigt! Die Umsetzung auf die
112 : // richtige Position erfolgt spaeter.
113 0 : SwNodeIndex aIdx( pDoc->GetNodes().GetEndOfExtras(), +2 );
114 0 : SwContentNode* pCNd = aIdx.GetNode().GetContentNode();
115 0 : if( !pCNd )
116 0 : pCNd = pDoc->GetNodes().GoNext( &aIdx );
117 :
118 0 : SwPosition pos = *aAnchor.GetContentAnchor();
119 0 : pos.nNode = aIdx;
120 0 : if (FLY_AS_CHAR == aAnchor.GetAnchorId())
121 : {
122 0 : pos.nContent.Assign( pCNd, 0 );
123 : }
124 : else
125 : {
126 0 : pos.nContent.Assign( 0, 0 );
127 : OSL_ENSURE( false, "CopyFlyFormat: Was fuer ein Anker?" );
128 : }
129 0 : aAnchor.SetAnchor( &pos );
130 : }
131 :
132 176 : SwFrameFormat* pNew = pDoc->getIDocumentLayoutAccess().CopyLayoutFormat( *pFormat, aAnchor, false, false );
133 352 : ((SwFormatFlyCnt&)GetFlyCnt()).SetFlyFormat( pNew );
134 176 : }
135 :
136 : // SetAnchor() wird von SwTextNode::Insert() gerufen und sorgt fuer das
137 : // setzen des Ankers (die SwPosition des Dummy-Zeichens wird dem FlyFrameFormat
138 : // per SetAttr bekannt gegeben). Dies kann nicht im MakeTextHint erledigt
139 : // werden, da der Zielnode unbestimmt ist.
140 : // (siehe Kommentar in SwTextFlyCnt::MakeTextHint)
141 3653 : void SwTextFlyCnt::SetAnchor( const SwTextNode *pNode )
142 : {
143 : // fuers Undo muss der neue Anker schon bekannt sein !
144 :
145 : // Wir ermitteln den Index im Nodesarray zum Node
146 :
147 3653 : SwDoc* pDoc = const_cast<SwDoc*>(pNode->GetDoc());
148 :
149 3653 : SwIndex aIdx( const_cast<SwTextNode*>(pNode), GetStart() );
150 7306 : SwPosition aPos( *pNode->StartOfSectionNode(), aIdx );
151 3653 : SwFrameFormat* pFormat = GetFlyCnt().GetFrameFormat();
152 7306 : SwFormatAnchor aAnchor( pFormat->GetAnchor() );
153 :
154 10959 : if( !aAnchor.GetContentAnchor() ||
155 7306 : !aAnchor.GetContentAnchor()->nNode.GetNode().GetNodes().IsDocNodes() ||
156 3653 : &aAnchor.GetContentAnchor()->nNode.GetNode() != static_cast<SwNode const *>(pNode) )
157 890 : aPos.nNode = *pNode;
158 : else
159 2763 : aPos.nNode = aAnchor.GetContentAnchor()->nNode;
160 :
161 3653 : aAnchor.SetType( FLY_AS_CHAR ); // default!
162 3653 : aAnchor.SetAnchor( &aPos );
163 :
164 : // beim Ankerwechsel werden immer alle FlyFrms vom Attribut geloescht
165 : // JP 25.04.95: wird innerhalb des SplitNodes die Frames verschoben
166 : // koennen die Frames erhalten bleiben.
167 7882 : if( ( !pNode->GetpSwpHints() || !pNode->GetpSwpHints()->IsInSplitNode() )
168 7306 : && RES_DRAWFRMFMT != pFormat->Which() )
169 869 : pFormat->DelFrms();
170 :
171 : // stehen wir noch im falschen Dokument ?
172 3653 : if( pDoc != pFormat->GetDoc() )
173 : {
174 : // disable undo while copying attribute
175 0 : ::sw::UndoGuard const undoGuard(pDoc->GetIDocumentUndoRedo());
176 0 : SwFrameFormat* pNew = pDoc->getIDocumentLayoutAccess().CopyLayoutFormat( *pFormat, aAnchor, false, false );
177 :
178 : ::sw::UndoGuard const undoGuardFormat(
179 0 : pFormat->GetDoc()->GetIDocumentUndoRedo());
180 0 : pFormat->GetDoc()->getIDocumentLayoutAccess().DelLayoutFormat( pFormat );
181 0 : ((SwFormatFlyCnt&)GetFlyCnt()).SetFlyFormat( pNew );
182 : }
183 7882 : else if( pNode->GetpSwpHints() &&
184 3653 : pNode->GetpSwpHints()->IsInSplitNode() &&
185 0 : RES_DRAWFRMFMT != pFormat->Which() )
186 : {
187 0 : pFormat->LockModify();
188 0 : pFormat->SetFormatAttr( aAnchor ); // nur den Anker neu setzen
189 0 : pFormat->UnlockModify();
190 : }
191 : else
192 7306 : pFormat->SetFormatAttr( aAnchor ); // nur den Anker neu setzen
193 :
194 : // Am Node haengen u.a. abhaengige CntFrms.
195 : // Fuer jeden CntFrm wird ein SwFlyInCntFrm angelegt.
196 3653 : }
197 :
198 : // _GetFlyFrm() wird im Formatierungsprozess vom LineIter gerufen
199 : // und sucht den FlyFrm zum Dummyzeichen des aktuellen ContentFrm. Wird keiner
200 : // gefunden, so wird ein neuer FlyFrm angelegt.
201 : // (siehe Kommentar ind SwTextFlyCnt::MakeTextHint)
202 1342 : SwFlyInCntFrm *SwTextFlyCnt::_GetFlyFrm( const SwFrm *pCurrFrm )
203 : {
204 1342 : SwFrameFormat* pFrameFormat = GetFlyCnt().GetFrameFormat();
205 1342 : if( RES_DRAWFRMFMT == pFrameFormat->Which() )
206 : {
207 : OSL_ENSURE( false, "SwTextFlyCnt::_GetFlyFrm: DrawInCnt-Baustelle!" );
208 0 : return NULL;
209 : }
210 :
211 1342 : SwIterator<SwFlyFrm,SwFormat> aIter( *GetFlyCnt().pFormat );
212 : OSL_ENSURE( pCurrFrm->IsTextFrm(), "SwTextFlyCnt::_GetFlyFrm for TextFrms only." );
213 1342 : SwFrm* pFrm = aIter.First();
214 1342 : if ( pFrm )
215 : {
216 758 : SwTextFrm *pFirst = const_cast<SwTextFrm*>(static_cast<const SwTextFrm*>(pCurrFrm));
217 1549 : while ( pFirst->IsFollow() )
218 33 : pFirst = pFirst->FindMaster();
219 2139 : do
220 : {
221 2768 : SwTextFrm *pTmp = pFirst;
222 2175 : do
223 2804 : { if( static_cast<SwFlyFrm*>(pFrm)->GetAnchorFrm() == static_cast<SwFrm*>(pTmp) )
224 : {
225 629 : if ( pTmp != pCurrFrm )
226 : {
227 3 : pTmp->RemoveFly( static_cast<SwFlyFrm*>(pFrm) );
228 3 : const_cast<SwTextFrm*>(static_cast<const SwTextFrm*>(pCurrFrm))->AppendFly( static_cast<SwFlyFrm*>(pFrm) );
229 : }
230 629 : return static_cast<SwFlyInCntFrm*>(pFrm);
231 : }
232 2175 : pTmp = pTmp->GetFollow();
233 : } while ( pTmp );
234 :
235 2139 : pFrm = aIter.Next();
236 :
237 : } while( pFrm );
238 : }
239 :
240 : // Wir haben keinen passenden FlyFrm gefunden, deswegen wird ein
241 : // neuer angelegt.
242 : // Dabei wird eine sofortige Neuformatierung von pCurrFrm angestossen.
243 : // Die Rekursion wird durch den Lockmechanismus in SwTextFrm::Format()
244 : // abgewuergt.
245 713 : SwFrm* pCurrFrame = const_cast< SwFrm* >(pCurrFrm);
246 713 : SwFlyInCntFrm *pFly = new SwFlyInCntFrm( static_cast<SwFlyFrameFormat*>(pFrameFormat), pCurrFrame, pCurrFrame );
247 713 : pCurrFrame->AppendFly( pFly );
248 713 : pFly->RegistFlys();
249 :
250 : // 7922: Wir muessen dafuer sorgen, dass der Inhalt des FlyInCnt
251 : // nach seiner Konstruktion stramm durchformatiert wird.
252 : // #i26945# - Use new object formatter to format Writer
253 : // fly frame and its content.
254 : SwObjectFormatter::FormatObj( *pFly, const_cast<SwFrm*>(pCurrFrm),
255 713 : pCurrFrm->FindPageFrm() );
256 :
257 713 : return pFly;
258 177 : }
259 :
260 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|