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 <doc.hxx>
21 : #include <IDocumentUndoRedo.hxx>
22 : #include <IDocumentSettingAccess.hxx>
23 : #include <IDocumentState.hxx>
24 : #include <editsh.hxx>
25 : #include <pam.hxx>
26 : #include <ndtxt.hxx>
27 : #include <docary.hxx>
28 : #include <swwait.hxx>
29 : #include <swundo.hxx>
30 : #include <section.hxx>
31 : #include <doctxm.hxx>
32 : #include <edglbldc.hxx>
33 :
34 246 : bool SwEditShell::IsGlobalDoc() const
35 : {
36 246 : return getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT);
37 : }
38 :
39 0 : void SwEditShell::SetGlblDocSaveLinks( bool bFlag )
40 : {
41 0 : getIDocumentSettingAccess()->set(IDocumentSettingAccess::GLOBAL_DOCUMENT_SAVE_LINKS, bFlag);
42 0 : if( !GetDoc()->getIDocumentState().IsModified() ) // Bug 57028
43 : {
44 0 : GetDoc()->GetIDocumentUndoRedo().SetUndoNoResetModified();
45 : }
46 0 : GetDoc()->getIDocumentState().SetModified();
47 0 : }
48 :
49 0 : bool SwEditShell::IsGlblDocSaveLinks() const
50 : {
51 0 : return getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT_SAVE_LINKS);
52 : }
53 :
54 0 : sal_uInt16 SwEditShell::GetGlobalDocContent( SwGlblDocContents& rArr ) const
55 : {
56 0 : rArr.DeleteAndDestroyAll();
57 :
58 0 : if( !getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) )
59 0 : return 0;
60 :
61 : // then all linked areas on the topmost level
62 0 : SwDoc* pMyDoc = GetDoc();
63 0 : const SwSectionFmts& rSectFmts = pMyDoc->GetSections();
64 : sal_uInt16 n;
65 :
66 0 : for( n = rSectFmts.size(); n; )
67 : {
68 0 : const SwSection* pSect = rSectFmts[ --n ]->GetGlobalDocSection();
69 0 : if( pSect )
70 : {
71 : SwGlblDocContent* pNew;
72 0 : switch( pSect->GetType() )
73 : {
74 : case TOX_HEADER_SECTION:
75 0 : break; // ignore
76 : case TOX_CONTENT_SECTION:
77 : OSL_ENSURE( pSect->ISA( SwTOXBaseSection ), "no TOXBaseSection!" );
78 0 : pNew = new SwGlblDocContent( (SwTOXBaseSection*)pSect );
79 0 : break;
80 :
81 : default:
82 0 : pNew = new SwGlblDocContent( pSect );
83 0 : break;
84 : }
85 0 : if( !rArr.insert( pNew ).second )
86 0 : delete pNew;
87 : }
88 : }
89 :
90 : // and finally add the dummies (other text)
91 : SwNode* pNd;
92 0 : sal_uLong nSttIdx = pMyDoc->GetNodes().GetEndOfExtras().GetIndex() + 2;
93 0 : for( n = 0; n < rArr.size(); ++n )
94 : {
95 0 : const SwGlblDocContent& rNew = *rArr[ n ];
96 : // Search from StartPos until rNew.DocPos for a content node.
97 : // If one exists then a dummy entry is needed.
98 0 : for( ; nSttIdx < rNew.GetDocPos(); ++nSttIdx )
99 0 : if( ( pNd = pMyDoc->GetNodes()[ nSttIdx ])->IsCntntNode()
100 0 : || pNd->IsSectionNode() || pNd->IsTableNode() )
101 : {
102 0 : SwGlblDocContent* pNew = new SwGlblDocContent( nSttIdx );
103 0 : if( !rArr.insert( pNew ).second )
104 0 : delete pNew;
105 : else
106 0 : ++n; // to the next position
107 0 : break;
108 : }
109 :
110 : // set StartPosition to the end
111 0 : nSttIdx = pMyDoc->GetNodes()[ rNew.GetDocPos() ]->EndOfSectionIndex();
112 0 : ++nSttIdx;
113 : }
114 :
115 : // Should the end also be set?
116 0 : if( !rArr.empty() )
117 : {
118 0 : sal_uLong nNdEnd = pMyDoc->GetNodes().GetEndOfContent().GetIndex();
119 0 : for( ; nSttIdx < nNdEnd; ++nSttIdx )
120 0 : if( ( pNd = pMyDoc->GetNodes()[ nSttIdx ])->IsCntntNode()
121 0 : || pNd->IsSectionNode() || pNd->IsTableNode() )
122 : {
123 0 : SwGlblDocContent* pNew = new SwGlblDocContent( nSttIdx );
124 0 : if( !rArr.insert( pNew ).second )
125 0 : delete pNew;
126 0 : break;
127 : }
128 : }
129 : else
130 : {
131 : SwGlblDocContent* pNew = new SwGlblDocContent(
132 0 : pMyDoc->GetNodes().GetEndOfExtras().GetIndex() + 2 );
133 0 : rArr.insert( pNew );
134 : }
135 0 : return rArr.size();
136 : }
137 :
138 0 : bool SwEditShell::InsertGlobalDocContent( const SwGlblDocContent& rInsPos,
139 : SwSectionData & rNew)
140 : {
141 0 : if( !getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) )
142 0 : return false;
143 :
144 0 : SET_CURR_SHELL( this );
145 0 : StartAllAction();
146 :
147 0 : SwPaM* pCrsr = GetCrsr();
148 0 : if( pCrsr->GetNext() != pCrsr || IsTableMode() )
149 0 : ClearMark();
150 :
151 0 : SwPosition& rPos = *pCrsr->GetPoint();
152 0 : rPos.nNode = rInsPos.GetDocPos();
153 :
154 0 : bool bEndUndo = false;
155 0 : SwDoc* pMyDoc = GetDoc();
156 0 : SwTxtNode *const pTxtNd = rPos.nNode.GetNode().GetTxtNode();
157 0 : if( pTxtNd )
158 0 : rPos.nContent.Assign( pTxtNd, 0 );
159 : else
160 : {
161 0 : bEndUndo = true;
162 0 : pMyDoc->GetIDocumentUndoRedo().StartUndo( UNDO_START, NULL );
163 0 : rPos.nNode--;
164 0 : pMyDoc->getIDocumentContentOperations().AppendTxtNode( rPos );
165 0 : pCrsr->SetMark();
166 : }
167 :
168 0 : InsertSection( rNew );
169 :
170 0 : if( bEndUndo )
171 : {
172 0 : pMyDoc->GetIDocumentUndoRedo().EndUndo( UNDO_END, NULL );
173 : }
174 0 : EndAllAction();
175 :
176 0 : return true;
177 : }
178 :
179 0 : bool SwEditShell::InsertGlobalDocContent( const SwGlblDocContent& rInsPos,
180 : const SwTOXBase& rTOX )
181 : {
182 0 : if( !getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) )
183 0 : return false;
184 :
185 0 : SET_CURR_SHELL( this );
186 0 : StartAllAction();
187 :
188 0 : SwPaM* pCrsr = GetCrsr();
189 0 : if( pCrsr->GetNext() != pCrsr || IsTableMode() )
190 0 : ClearMark();
191 :
192 0 : SwPosition& rPos = *pCrsr->GetPoint();
193 0 : rPos.nNode = rInsPos.GetDocPos();
194 :
195 0 : bool bEndUndo = false;
196 0 : SwDoc* pMyDoc = GetDoc();
197 0 : SwTxtNode* pTxtNd = rPos.nNode.GetNode().GetTxtNode();
198 0 : if (pTxtNd && pTxtNd->GetTxt().getLength() && rPos.nNode.GetIndex() + 1 !=
199 0 : pMyDoc->GetNodes().GetEndOfContent().GetIndex() )
200 0 : rPos.nContent.Assign( pTxtNd, 0 );
201 : else
202 : {
203 0 : bEndUndo = true;
204 0 : pMyDoc->GetIDocumentUndoRedo().StartUndo( UNDO_START, NULL );
205 0 : rPos.nNode--;
206 0 : pMyDoc->getIDocumentContentOperations().AppendTxtNode( rPos );
207 : }
208 :
209 0 : InsertTableOf( rTOX );
210 :
211 0 : if( bEndUndo )
212 : {
213 0 : pMyDoc->GetIDocumentUndoRedo().EndUndo( UNDO_END, NULL );
214 : }
215 0 : EndAllAction();
216 :
217 0 : return true;
218 : }
219 :
220 0 : bool SwEditShell::InsertGlobalDocContent( const SwGlblDocContent& rInsPos )
221 : {
222 0 : if( !getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) )
223 0 : return false;
224 :
225 0 : SET_CURR_SHELL( this );
226 0 : StartAllAction();
227 :
228 0 : SwPaM* pCrsr = GetCrsr();
229 0 : if( pCrsr->GetNext() != pCrsr || IsTableMode() )
230 0 : ClearMark();
231 :
232 0 : SwPosition& rPos = *pCrsr->GetPoint();
233 0 : rPos.nNode = rInsPos.GetDocPos() - 1;
234 0 : rPos.nContent.Assign( 0, 0 );
235 :
236 0 : SwDoc* pMyDoc = GetDoc();
237 0 : pMyDoc->getIDocumentContentOperations().AppendTxtNode( rPos );
238 0 : EndAllAction();
239 0 : return true;
240 : }
241 :
242 0 : bool SwEditShell::DeleteGlobalDocContent( const SwGlblDocContents& rArr ,
243 : size_t nDelPos )
244 : {
245 0 : if( !getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) )
246 0 : return false;
247 :
248 0 : SET_CURR_SHELL( this );
249 0 : StartAllAction();
250 0 : StartUndo( UNDO_START );
251 :
252 0 : SwPaM* pCrsr = GetCrsr();
253 0 : if( pCrsr->GetNext() != pCrsr || IsTableMode() )
254 0 : ClearMark();
255 :
256 0 : SwPosition& rPos = *pCrsr->GetPoint();
257 :
258 0 : SwDoc* pMyDoc = GetDoc();
259 0 : const SwGlblDocContent& rDelPos = *rArr[ nDelPos ];
260 0 : sal_uLong nDelIdx = rDelPos.GetDocPos();
261 0 : if( 1 == rArr.size() )
262 : {
263 : // we need at least one node!
264 0 : rPos.nNode = nDelIdx - 1;
265 0 : rPos.nContent.Assign( 0, 0 );
266 :
267 0 : pMyDoc->getIDocumentContentOperations().AppendTxtNode( rPos );
268 0 : ++nDelIdx;
269 : }
270 :
271 0 : switch( rDelPos.GetType() )
272 : {
273 : case GLBLDOC_UNKNOWN:
274 : {
275 0 : rPos.nNode = nDelIdx;
276 0 : pCrsr->SetMark();
277 0 : if( ++nDelPos < rArr.size() )
278 0 : rPos.nNode = rArr[ nDelPos ]->GetDocPos();
279 : else
280 0 : rPos.nNode = pMyDoc->GetNodes().GetEndOfContent();
281 0 : rPos.nNode--;
282 0 : if( !pMyDoc->getIDocumentContentOperations().DelFullPara( *pCrsr ) )
283 0 : Delete();
284 : }
285 0 : break;
286 :
287 : case GLBLDOC_TOXBASE:
288 : {
289 0 : SwTOXBaseSection* pTOX = (SwTOXBaseSection*)rDelPos.GetTOX();
290 0 : pMyDoc->DeleteTOX( *pTOX, true );
291 : }
292 0 : break;
293 :
294 : case GLBLDOC_SECTION:
295 : {
296 0 : SwSectionFmt* pSectFmt = (SwSectionFmt*)rDelPos.GetSection()->GetFmt();
297 0 : pMyDoc->DelSectionFmt( pSectFmt, true );
298 : }
299 0 : break;
300 : }
301 :
302 0 : EndUndo( UNDO_END );
303 0 : EndAllAction();
304 0 : return true;
305 : }
306 :
307 0 : bool SwEditShell::MoveGlobalDocContent( const SwGlblDocContents& rArr ,
308 : size_t nFromPos, size_t nToPos,
309 : size_t nInsPos )
310 : {
311 0 : if( !getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) ||
312 0 : nFromPos >= rArr.size() || nToPos > rArr.size() ||
313 0 : nInsPos > rArr.size() || nFromPos >= nToPos ||
314 0 : ( nFromPos <= nInsPos && nInsPos <= nToPos ) )
315 0 : return false;
316 :
317 0 : SET_CURR_SHELL( this );
318 0 : StartAllAction();
319 :
320 0 : SwPaM* pCrsr = GetCrsr();
321 0 : if( pCrsr->GetNext() != pCrsr || IsTableMode() )
322 0 : ClearMark();
323 :
324 0 : SwDoc* pMyDoc = GetDoc();
325 0 : SwNodeRange aRg( pMyDoc->GetNodes(), rArr[ nFromPos ]->GetDocPos() );
326 0 : if( nToPos < rArr.size() )
327 0 : aRg.aEnd = rArr[ nToPos ]->GetDocPos();
328 : else
329 0 : aRg.aEnd = pMyDoc->GetNodes().GetEndOfContent();
330 :
331 0 : SwNodeIndex aInsPos( pMyDoc->GetNodes() );
332 0 : if( nInsPos < rArr.size() )
333 0 : aInsPos = rArr[ nInsPos ]->GetDocPos();
334 : else
335 0 : aInsPos = pMyDoc->GetNodes().GetEndOfContent();
336 :
337 0 : bool bRet = pMyDoc->getIDocumentContentOperations().MoveNodeRange( aRg, aInsPos,
338 : static_cast<IDocumentContentOperations::SwMoveFlags>(
339 : IDocumentContentOperations::DOC_MOVEALLFLYS
340 0 : | IDocumentContentOperations::DOC_CREATEUNDOOBJ ));
341 :
342 0 : EndAllAction();
343 0 : return bRet;
344 : }
345 :
346 0 : bool SwEditShell::GotoGlobalDocContent( const SwGlblDocContent& rPos )
347 : {
348 0 : if( !getIDocumentSettingAccess()->get(IDocumentSettingAccess::GLOBAL_DOCUMENT) )
349 0 : return false;
350 :
351 0 : SET_CURR_SHELL( this );
352 0 : SttCrsrMove();
353 :
354 0 : SwPaM* pCrsr = GetCrsr();
355 0 : if( pCrsr->GetNext() != pCrsr || IsTableMode() )
356 0 : ClearMark();
357 :
358 0 : SwPosition& rCrsrPos = *pCrsr->GetPoint();
359 0 : rCrsrPos.nNode = rPos.GetDocPos();
360 :
361 0 : SwDoc* pMyDoc = GetDoc();
362 0 : SwCntntNode * pCNd = rCrsrPos.nNode.GetNode().GetCntntNode();
363 0 : if( !pCNd )
364 0 : pCNd = pMyDoc->GetNodes().GoNext( &rCrsrPos.nNode );
365 :
366 0 : rCrsrPos.nContent.Assign( pCNd, 0 );
367 :
368 0 : EndCrsrMove();
369 0 : return true;
370 : }
371 :
372 0 : SwGlblDocContent::SwGlblDocContent( sal_uLong nPos )
373 : {
374 0 : eType = GLBLDOC_UNKNOWN;
375 0 : PTR.pTOX = 0;
376 0 : nDocPos = nPos;
377 0 : }
378 :
379 0 : SwGlblDocContent::SwGlblDocContent( const SwTOXBaseSection* pTOX )
380 : {
381 0 : eType = GLBLDOC_TOXBASE;
382 0 : PTR.pTOX = pTOX;
383 :
384 0 : const SwSectionNode* pSectNd = pTOX->GetFmt()->GetSectionNode();
385 0 : nDocPos = pSectNd ? pSectNd->GetIndex() : 0;
386 0 : }
387 :
388 0 : SwGlblDocContent::SwGlblDocContent( const SwSection* pSect )
389 : {
390 0 : eType = GLBLDOC_SECTION;
391 0 : PTR.pSect = pSect;
392 :
393 0 : const SwSectionNode* pSectNd = pSect->GetFmt()->GetSectionNode();
394 0 : nDocPos = pSectNd ? pSectNd->GetIndex() : 0;
395 270 : }
396 :
397 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|