LCOV - code coverage report
Current view: top level - sw/source/core/doc - docglbl.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 234 0.0 %
Date: 2014-04-14 Functions: 0 9 0.0 %
Legend: Lines: hit not hit

          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 <unotools/tempfile.hxx>
      22             : #include <svl/urihelper.hxx>
      23             : #include <svl/stritem.hxx>
      24             : #include <svl/eitem.hxx>
      25             : #include <sfx2/app.hxx>
      26             : #include <sfx2/docfile.hxx>
      27             : #include <sfx2/docfilt.hxx>
      28             : #include <sfx2/fcontnr.hxx>
      29             : #include <sfx2/bindings.hxx>
      30             : #include <sfx2/request.hxx>
      31             : #include <fmtinfmt.hxx>
      32             : #include <fmtanchr.hxx>
      33             : #include <doc.hxx>
      34             : #include <IDocumentUndoRedo.hxx>
      35             : #include <docary.hxx>
      36             : #include <pam.hxx>
      37             : #include <ndtxt.hxx>
      38             : #include <docsh.hxx>
      39             : #include <globdoc.hxx>
      40             : #include <shellio.hxx>
      41             : #include <swundo.hxx>
      42             : #include <section.hxx>
      43             : #include <doctxm.hxx>
      44             : #include <poolfmt.hxx>
      45             : #include <switerator.hxx>
      46             : #include <boost/scoped_ptr.hpp>
      47             : #include <com/sun/star/uno/Reference.h>
      48             : #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
      49             : #include <com/sun/star/document/XDocumentProperties.hpp>
      50             : 
      51             : using namespace ::com::sun::star;
      52             : 
      53             : enum SwSplitDocType
      54             : {
      55             :     SPLITDOC_TO_GLOBALDOC,
      56             :     SPLITDOC_TO_HTML
      57             : };
      58             : 
      59           0 : sal_Bool SwDoc::GenerateGlobalDoc( const OUString& rPath,
      60             :                                    const SwTxtFmtColl* pSplitColl )
      61             : {
      62           0 :     return SplitDoc( SPLITDOC_TO_GLOBALDOC, rPath, false, pSplitColl, 0 );
      63             : }
      64             : 
      65           0 : sal_Bool SwDoc::GenerateGlobalDoc( const OUString& rPath, int nOutlineLevel )
      66             : {
      67           0 :     return SplitDoc( SPLITDOC_TO_GLOBALDOC, rPath, true, 0, nOutlineLevel );
      68             : }
      69             : 
      70           0 : sal_Bool SwDoc::GenerateHTMLDoc( const OUString& rPath, int nOutlineLevel )
      71             : {
      72           0 :     return SplitDoc( SPLITDOC_TO_HTML, rPath, true, 0, nOutlineLevel );
      73             : }
      74             : 
      75           0 : sal_Bool SwDoc::GenerateHTMLDoc( const OUString& rPath,
      76             :                                  const SwTxtFmtColl* pSplitColl )
      77             : {
      78           0 :     return SplitDoc( SPLITDOC_TO_HTML, rPath, false, pSplitColl, 0 );
      79             : }
      80             : 
      81             : // two helpers for outline mode
      82           0 : SwNodePtr GetStartNode( SwOutlineNodes* pOutlNds, int nOutlineLevel, sal_uInt16* nOutl )
      83             : {
      84             :     SwNodePtr pNd;
      85             : 
      86           0 :     for( ; *nOutl < pOutlNds->size(); ++(*nOutl) )
      87           0 :         if( ( pNd = (*pOutlNds)[ *nOutl ])->GetTxtNode()->GetAttrOutlineLevel() == nOutlineLevel && !pNd->FindTableNode() )
      88             :         {
      89           0 :             return pNd;
      90             :         }
      91             : 
      92           0 :     return 0;
      93             : }
      94             : 
      95           0 : SwNodePtr GetEndNode( SwOutlineNodes* pOutlNds, int nOutlineLevel, sal_uInt16* nOutl )
      96             : {
      97             :     SwNodePtr pNd;
      98             : 
      99           0 :     for( ++(*nOutl); (*nOutl) < pOutlNds->size(); ++(*nOutl) )
     100             :     {
     101           0 :         pNd = (*pOutlNds)[ *nOutl ];
     102             : 
     103           0 :         const int nLevel = pNd->GetTxtNode()->GetAttrOutlineLevel();
     104             : 
     105           0 :         if( ( 0 < nLevel && nLevel <= nOutlineLevel ) &&
     106           0 :             !pNd->FindTableNode() )
     107             :         {
     108           0 :             return pNd;
     109             :         }
     110             :     }
     111           0 :     return 0;
     112             : }
     113             : 
     114             : // two helpers for collection mode
     115           0 : SwNodePtr GetStartNode( const SwOutlineNodes* pOutlNds, const SwTxtFmtColl* pSplitColl, sal_uInt16* nOutl )
     116             : {
     117             :     SwNodePtr pNd;
     118           0 :     for( ; *nOutl < pOutlNds->size(); ++(*nOutl) )
     119           0 :         if( ( pNd = (*pOutlNds)[ *nOutl ])->GetTxtNode()->
     120           0 :                     GetTxtColl() == pSplitColl &&
     121           0 :             !pNd->FindTableNode() )
     122             :         {
     123           0 :             return pNd;
     124             :         }
     125           0 :     return 0;
     126             : }
     127             : 
     128           0 : SwNodePtr GetEndNode( const SwOutlineNodes* pOutlNds, const SwTxtFmtColl* pSplitColl, sal_uInt16* nOutl )
     129             : {
     130             :     SwNodePtr pNd;
     131             : 
     132           0 :     for( ++(*nOutl); *nOutl < pOutlNds->size(); ++(*nOutl) )
     133             :     {
     134           0 :         pNd = (*pOutlNds)[ *nOutl ];
     135           0 :         SwTxtFmtColl* pTColl = pNd->GetTxtNode()->GetTxtColl();
     136             : 
     137           0 :         if( ( pTColl == pSplitColl ||
     138           0 :               (   pSplitColl->GetAttrOutlineLevel() > 0 &&
     139           0 :                   pTColl->GetAttrOutlineLevel() > 0   &&
     140           0 :                   pTColl->GetAttrOutlineLevel() <
     141           0 :                   pSplitColl->GetAttrOutlineLevel() )) &&
     142           0 :             !pNd->FindTableNode() )
     143             :         {
     144           0 :             return pNd;
     145             :         }
     146             :     }
     147           0 :     return 0;
     148             : }
     149             : 
     150           0 : bool SwDoc::SplitDoc( sal_uInt16 eDocType, const OUString& rPath, bool bOutline, const SwTxtFmtColl* pSplitColl, int nOutlineLevel )
     151             : {
     152             :     // Iterate over all the template's Nodes, creating an own
     153             :     // document for every single one and replace linked sections (GlobalDoc) for links (HTML).
     154             :     // Finally, we save this document as a GlobalDoc/HTMLDoc.
     155           0 :     if( !mpDocShell || !mpDocShell->GetMedium() ||
     156           0 :         ( SPLITDOC_TO_GLOBALDOC == eDocType && get(IDocumentSettingAccess::GLOBAL_DOCUMENT) ) )
     157           0 :         return false;
     158             : 
     159           0 :     sal_uInt16 nOutl = 0;
     160           0 :     SwOutlineNodes* pOutlNds = (SwOutlineNodes*)&GetNodes().GetOutLineNds();
     161           0 :     boost::scoped_ptr<SwOutlineNodes> xTmpOutlNds;
     162             :     SwNodePtr pStartNd;
     163             : 
     164           0 :     if ( !bOutline) {
     165           0 :         if( pSplitColl )
     166             :         {
     167             :             // If it isn't a OutlineNumbering, then use an own array and collect the Nodes.
     168           0 :             if( pSplitColl->GetAttrOutlineLevel() == 0 )
     169             :             {
     170           0 :                 xTmpOutlNds.reset(new SwOutlineNodes);
     171           0 :                 pOutlNds = xTmpOutlNds.get();
     172           0 :                 SwIterator<SwTxtNode,SwFmtColl> aIter( *pSplitColl );
     173           0 :                 for( SwTxtNode* pTNd = aIter.First(); pTNd; pTNd = aIter.Next() )
     174           0 :                     if( pTNd->GetNodes().IsDocNodes() )
     175           0 :                         pOutlNds->insert( pTNd );
     176             : 
     177           0 :                 if( pOutlNds->empty() )
     178           0 :                     return false;
     179             :             }
     180             :         }
     181             :         else
     182             :         {
     183             :             // Look for the 1st level OutlineTemplate
     184           0 :             const SwTxtFmtColls& rFmtColls =*GetTxtFmtColls();
     185           0 :             for( sal_uInt16 n = rFmtColls.size(); n; )
     186           0 :                 if ( rFmtColls[ --n ]->GetAttrOutlineLevel() == 1 )
     187             :                 {
     188           0 :                     pSplitColl = rFmtColls[ n ];
     189           0 :                     break;
     190             :                 }
     191             : 
     192           0 :             if( !pSplitColl )
     193           0 :                 return false;
     194             :         }
     195             :     }
     196             : 
     197             :     const SfxFilter* pFilter;
     198           0 :     switch( eDocType )
     199             :     {
     200             :     case SPLITDOC_TO_HTML:
     201           0 :         pFilter = SwIoSystem::GetFilterOfFormat(OUString("HTML"));
     202           0 :         break;
     203             : 
     204             :     default:
     205           0 :         pFilter = SwIoSystem::GetFilterOfFormat(OUString(FILTER_XML));
     206           0 :         eDocType = SPLITDOC_TO_GLOBALDOC;
     207           0 :         break;
     208             :     }
     209             : 
     210           0 :     if( !pFilter )
     211           0 :         return false;
     212             : 
     213             :     // Deactivate Undo/Redline in any case
     214           0 :     GetIDocumentUndoRedo().DoUndo(false);
     215           0 :     SetRedlineMode_intern( (RedlineMode_t)(GetRedlineMode() & ~nsRedlineMode_t::REDLINE_ON));
     216             : 
     217           0 :     OUString sExt = pFilter->GetSuffixes().getToken(0, ',');
     218           0 :     if( sExt.isEmpty() )
     219             :     {
     220           0 :         sExt = ".sxw";
     221             :     }
     222             :     else
     223             :     {
     224           0 :         if( '.' != sExt[ 0 ] )
     225             :         {
     226           0 :             sExt = "." + sExt;
     227             :         }
     228             :     }
     229             : 
     230           0 :     INetURLObject aEntry(rPath);
     231           0 :     OUString sLeading(aEntry.GetBase());
     232           0 :     aEntry.removeSegment();
     233           0 :     OUString sPath = aEntry.GetMainURL( INetURLObject::NO_DECODE );
     234           0 :     utl::TempFile aTemp(sLeading,&sExt,&sPath );
     235           0 :     aTemp.EnableKillingFile();
     236             : 
     237           0 :     DateTime aTmplDate( DateTime::SYSTEM );
     238             :     {
     239           0 :         Time a2Min( 0 ); a2Min.SetMin( 2 );
     240           0 :         aTmplDate += a2Min;
     241             :     }
     242             : 
     243             :     // Skip all invalid ones
     244           0 :     while( nOutl < pOutlNds->size() &&
     245           0 :         (*pOutlNds)[ nOutl ]->GetIndex() < GetNodes().GetEndOfExtras().GetIndex() )
     246           0 :         ++nOutl;
     247             : 
     248           0 :     do {
     249           0 :         if( bOutline )
     250           0 :             pStartNd = GetStartNode( pOutlNds, nOutlineLevel, &nOutl );
     251             :         else
     252           0 :             pStartNd = GetStartNode( pOutlNds, pSplitColl, &nOutl );
     253             : 
     254           0 :         if( pStartNd )
     255             :         {
     256             :             SwNodePtr pEndNd;
     257           0 :             if( bOutline )
     258           0 :                 pEndNd = GetEndNode( pOutlNds, nOutlineLevel, &nOutl );
     259             :             else
     260           0 :                 pEndNd = GetEndNode( pOutlNds, pSplitColl, &nOutl );
     261             :             SwNodeIndex aEndIdx( pEndNd ? *pEndNd
     262           0 :                                         : GetNodes().GetEndOfContent() );
     263             : 
     264             :             // Write out the Nodes completely
     265           0 :             OUString sFileName;
     266           0 :             if( pStartNd->GetIndex() + 1 < aEndIdx.GetIndex() )
     267             :             {
     268           0 :                 SfxObjectShellLock xDocSh( new SwDocShell( SFX_CREATE_MODE_INTERNAL ));
     269           0 :                 if( xDocSh->DoInitNew( 0 ) )
     270             :                 {
     271           0 :                     SwDoc* pDoc = ((SwDocShell*)(&xDocSh))->GetDoc();
     272             : 
     273             :                     uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
     274           0 :                         ((SwDocShell*)(&xDocSh))->GetModel(),
     275           0 :                         uno::UNO_QUERY_THROW);
     276             :                     uno::Reference<document::XDocumentProperties> xDocProps(
     277           0 :                         xDPS->getDocumentProperties());
     278             :                     OSL_ENSURE(xDocProps.is(), "Doc has no DocumentProperties");
     279             :                     // the GlobalDoc is the template
     280           0 :                     xDocProps->setTemplateName(OUString());
     281           0 :                     ::util::DateTime uDT(aTmplDate.GetNanoSec(),
     282           0 :                         aTmplDate.GetSec(), aTmplDate.GetMin(),
     283           0 :                         aTmplDate.GetHour(), aTmplDate.GetDay(),
     284           0 :                         aTmplDate.GetMonth(), aTmplDate.GetYear(),
     285           0 :                         false );
     286           0 :                     xDocProps->setTemplateDate(uDT);
     287           0 :                     xDocProps->setTemplateURL(rPath);
     288             :                     // Set the new doc's title to the text of the "split para".
     289             :                     // If the current doc has a title, insert it at the begin.
     290           0 :                     OUString sTitle( xDocProps->getTitle() );
     291           0 :                     if (!sTitle.isEmpty())
     292           0 :                         sTitle += ": ";
     293           0 :                     sTitle += ((SwTxtNode*)pStartNd)->GetExpandTxt();
     294           0 :                     xDocProps->setTitle( sTitle );
     295             : 
     296             :                     // Replace template
     297           0 :                     pDoc->ReplaceStyles( *this );
     298             : 
     299             :                     // Take over chapter numbering
     300           0 :                     if( mpOutlineRule )
     301           0 :                         pDoc->SetOutlineNumRule( *mpOutlineRule );
     302             : 
     303           0 :                     SwNodeRange aRg( *pStartNd, 0, aEndIdx.GetNode() );
     304           0 :                     SwNodeIndex aTmpIdx( pDoc->GetNodes().GetEndOfContent() );
     305           0 :                     GetNodes()._Copy( aRg, aTmpIdx, sal_False );
     306             : 
     307             :                     // Delete the initial TextNode
     308           0 :                     SwNodeIndex aIdx( pDoc->GetNodes().GetEndOfExtras(), 2 );
     309           0 :                     if( aIdx.GetIndex() + 1 !=
     310           0 :                         pDoc->GetNodes().GetEndOfContent().GetIndex() )
     311           0 :                         pDoc->GetNodes().Delete( aIdx, 1 );
     312             : 
     313             :                     // All Flys in the section
     314           0 :                     CopyFlyInFlyImpl( aRg, 0, aIdx );
     315             : 
     316             :                     // And what's with all the Bookmarks?
     317             :                     // ?????
     318             : 
     319           0 :                     utl::TempFile aTempFile2(sLeading,&sExt,&sPath );
     320           0 :                     sFileName = aTempFile2.GetURL();
     321             :                     SfxMedium* pTmpMed = new SfxMedium( sFileName,
     322           0 :                                                 STREAM_STD_READWRITE );
     323           0 :                     pTmpMed->SetFilter( pFilter );
     324             : 
     325             :                     // We need to have a Layout for the HTMLFilter, so that
     326             :                     // TextFrames/Controls/OLE objects can be exported correctly as graphics.
     327           0 :                     if( SPLITDOC_TO_HTML == eDocType &&
     328           0 :                         !pDoc->GetSpzFrmFmts()->empty() )
     329             :                     {
     330           0 :                             SfxViewFrame::LoadHiddenDocument( *xDocSh, 0 );
     331             :                     }
     332           0 :                     xDocSh->DoSaveAs( *pTmpMed );
     333           0 :                     xDocSh->DoSaveCompleted( pTmpMed );
     334             : 
     335             :                     // do not insert a FileLinkSection in case of error
     336           0 :                     if( xDocSh->GetError() )
     337           0 :                         sFileName = "";
     338             :                 }
     339           0 :                 xDocSh->DoClose();
     340             :             }
     341             : 
     342             :             // We can now insert the section
     343           0 :             if( !sFileName.isEmpty() )
     344             :             {
     345           0 :                 switch( eDocType )
     346             :                 {
     347             :                 case SPLITDOC_TO_HTML:
     348             :                     {
     349             :                         // Delete all nodes in the section and, in the "start node",
     350             :                         // set the Link to the saved document.
     351           0 :                         sal_uLong nNodeDiff = aEndIdx.GetIndex() -
     352           0 :                                             pStartNd->GetIndex() - 1;
     353           0 :                         if( nNodeDiff )
     354             :                         {
     355           0 :                             SwPaM aTmp( *pStartNd, aEndIdx.GetNode(), 1, -1 );
     356           0 :                             aTmp.GetPoint()->nContent.Assign( 0, 0 );
     357           0 :                             aTmp.GetMark()->nContent.Assign( 0, 0 );
     358           0 :                             SwNodeIndex aSIdx( aTmp.GetMark()->nNode );
     359           0 :                             SwNodeIndex aEIdx( aTmp.GetPoint()->nNode );
     360             : 
     361             :                             // Try to move past the end
     362           0 :                             if( !aTmp.Move( fnMoveForward, fnGoNode ) )
     363             :                             {
     364             :                                 // well then, back to the beginning
     365           0 :                                 aTmp.Exchange();
     366           0 :                                 if( !aTmp.Move( fnMoveBackward, fnGoNode ))
     367             :                                 {
     368             :                                     OSL_FAIL( "no more Nodes!" );
     369             :                                 }
     370             :                             }
     371             :                             // Move Bookmarks and so forth
     372           0 :                             CorrAbs( aSIdx, aEIdx, *aTmp.GetPoint(), sal_True);
     373             : 
     374             :                             // If FlyFrames are still around, delete these too
     375           0 :                             for( sal_uInt16 n = 0; n < GetSpzFrmFmts()->size(); ++n )
     376             :                             {
     377           0 :                                 SwFrmFmt* pFly = (*GetSpzFrmFmts())[n];
     378           0 :                                 const SwFmtAnchor* pAnchor = &pFly->GetAnchor();
     379             :                                 SwPosition const*const pAPos =
     380           0 :                                     pAnchor->GetCntntAnchor();
     381           0 :                                 if (pAPos &&
     382           0 :                                     ((FLY_AT_PARA == pAnchor->GetAnchorId()) ||
     383           0 :                                      (FLY_AT_CHAR == pAnchor->GetAnchorId())) &&
     384           0 :                                     aSIdx <= pAPos->nNode &&
     385           0 :                                     pAPos->nNode < aEIdx )
     386             :                                 {
     387           0 :                                     DelLayoutFmt( pFly );
     388           0 :                                     --n;
     389             :                                 }
     390             :                             }
     391             : 
     392           0 :                             GetNodes().Delete( aSIdx, nNodeDiff );
     393             :                         }
     394             : 
     395             :                         // set the link in the StartNode
     396           0 :                         SwFmtINetFmt aINet( sFileName , OUString() );
     397           0 :                         SwTxtNode* pTNd = (SwTxtNode*)pStartNd;
     398           0 :                         pTNd->InsertItem(aINet, 0, pTNd->GetTxt().getLength());
     399             : 
     400             :                         // If the link cannot be found anymore,
     401             :                         // it has to be a bug!
     402           0 :                         if( !pOutlNds->Seek_Entry( pStartNd, &nOutl ))
     403           0 :                             pStartNd = 0;
     404           0 :                         ++nOutl;
     405             :                     }
     406           0 :                     break;
     407             : 
     408             :                 default:
     409             :                     {
     410           0 :                         const OUString sNm( INetURLObject( sFileName ).GetName() );
     411             :                         SwSectionData aSectData( FILE_LINK_SECTION,
     412           0 :                                         GetUniqueSectionName( &sNm ));
     413           0 :                         SwSectionFmt* pFmt = MakeSectionFmt( 0 );
     414           0 :                         aSectData.SetLinkFileName(sFileName);
     415           0 :                         aSectData.SetProtectFlag(true);
     416             : 
     417           0 :                         aEndIdx--;  // in the InsertSection the end is inclusive
     418           0 :                         while( aEndIdx.GetNode().IsStartNode() )
     419           0 :                             aEndIdx--;
     420             : 
     421             :                         // If any Section ends or starts in the new sectionrange,
     422             :                         // they must end or start before or after the range!
     423           0 :                         SwSectionNode* pSectNd = pStartNd->FindSectionNode();
     424           0 :                         while( pSectNd && pSectNd->EndOfSectionIndex()
     425           0 :                                 <= aEndIdx.GetIndex() )
     426             :                         {
     427           0 :                             const SwNode* pSectEnd = pSectNd->EndOfSectionNode();
     428           0 :                             if( pSectNd->GetIndex() + 1 ==
     429           0 :                                     pStartNd->GetIndex() )
     430             :                             {
     431           0 :                                 bool bMvIdx = aEndIdx == *pSectEnd;
     432           0 :                                 DelSectionFmt( pSectNd->GetSection().GetFmt() );
     433           0 :                                 if( bMvIdx )
     434           0 :                                     aEndIdx--;
     435             :                             }
     436             :                             else
     437             :                             {
     438           0 :                                 SwNodeRange aRg( *pStartNd, *pSectEnd );
     439           0 :                                 SwNodeIndex aIdx( *pSectEnd, 1 );
     440           0 :                                 GetNodes()._MoveNodes( aRg, GetNodes(), aIdx );
     441             :                             }
     442           0 :                             pSectNd = pStartNd->FindSectionNode();
     443             :                         }
     444             : 
     445           0 :                         pSectNd = aEndIdx.GetNode().FindSectionNode();
     446           0 :                         while( pSectNd && pSectNd->GetIndex() >
     447           0 :                                 pStartNd->GetIndex() )
     448             :                         {
     449             :                             // #i15712# don't attempt to split sections if
     450             :                             // they are fully enclosed in [pSectNd,aEndIdx].
     451           0 :                             if( aEndIdx < pSectNd->EndOfSectionIndex() )
     452             :                             {
     453           0 :                                 SwNodeRange aRg( *pSectNd, 1, aEndIdx, 1 );
     454           0 :                                 SwNodeIndex aIdx( *pSectNd );
     455           0 :                                 GetNodes()._MoveNodes( aRg, GetNodes(), aIdx );
     456             :                             }
     457             : 
     458           0 :                             pSectNd = pStartNd->FindSectionNode();
     459             :                         }
     460             : 
     461             :                         // -> #i26762#
     462             :                         // Ensure order of start and end of section is sane.
     463           0 :                         SwNodeIndex aStartIdx(*pStartNd);
     464             : 
     465           0 :                         if (aEndIdx >= aStartIdx)
     466             :                         {
     467           0 :                             pSectNd = GetNodes().InsertTextSection(aStartIdx,
     468           0 :                                 *pFmt, aSectData, 0, &aEndIdx, false);
     469             :                         }
     470             :                         else
     471             :                         {
     472           0 :                             pSectNd = GetNodes().InsertTextSection(aEndIdx,
     473           0 :                                 *pFmt, aSectData, 0, &aStartIdx, false);
     474             :                         }
     475             :                         // <- #i26762#
     476             : 
     477           0 :                         pSectNd->GetSection().CreateLink( CREATE_CONNECT );
     478             :                     }
     479           0 :                     break;
     480             :                 }
     481           0 :             }
     482             :         }
     483             :     } while( pStartNd );
     484             : 
     485           0 :     xTmpOutlNds.reset();
     486             : 
     487           0 :     switch( eDocType )
     488             :     {
     489             :     case SPLITDOC_TO_HTML:
     490           0 :         if( get(IDocumentSettingAccess::GLOBAL_DOCUMENT) )
     491             :         {
     492             :             // save all remaining sections
     493           0 :             while( !GetSections().empty() )
     494           0 :                 DelSectionFmt( GetSections().front() );
     495             : 
     496           0 :             SfxFilterContainer* pFCntnr = mpDocShell->GetFactory().GetFilterContainer();
     497           0 :             pFilter = pFCntnr->GetFilter4EA( pFilter->GetTypeName(), SFX_FILTER_EXPORT );
     498             :         }
     499           0 :         break;
     500             : 
     501             :     default:
     502             :         // save the Globaldoc
     503           0 :         set(IDocumentSettingAccess::GLOBAL_DOCUMENT, true);
     504           0 :         set(IDocumentSettingAccess::GLOBAL_DOCUMENT_SAVE_LINKS, false);
     505             :     }
     506             : 
     507             :     // The medium isn't locked after reopening the document.
     508           0 :     SfxRequest aReq( SID_SAVEASDOC, SFX_CALLMODE_SYNCHRON, GetAttrPool() );
     509           0 :     aReq.AppendItem( SfxStringItem( SID_FILE_NAME, rPath ) );
     510           0 :     aReq.AppendItem( SfxBoolItem( SID_SAVETO, true ) );
     511           0 :     if(pFilter)
     512           0 :         aReq.AppendItem( SfxStringItem( SID_FILTER_NAME, pFilter->GetName() ) );
     513           0 :     const SfxBoolItem *pRet = (const SfxBoolItem*)mpDocShell->ExecuteSlot( aReq );
     514             : 
     515           0 :     return pRet && pRet->GetValue();
     516             : }
     517             : 
     518             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10