summaryrefslogtreecommitdiff
path: root/sw/source/filter
diff options
context:
space:
mode:
authorSerge Krot <Serge.Krot@cib.de>2018-06-27 11:18:41 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-09-19 10:50:05 +0200
commitfa8b2c533265a6d74e16ffae55673d6aa0fbf6a5 (patch)
tree950f239d1375f48a17a8bdfc308e70e8928b7623 /sw/source/filter
parent0bc059f2a893d812e29d6a72d4f988428b5ea346 (diff)
tdf#118393: FILESAVE: DOCX Export loses header/footer
Change-Id: If47a2e4953e4b98f41c9115779522a755eea8192 Reviewed-on: https://gerrit.libreoffice.org/56522 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sw/source/filter')
-rw-r--r--sw/source/filter/ww8/wrtw8sty.cxx7
-rw-r--r--sw/source/filter/ww8/wrtww8.cxx1
-rw-r--r--sw/source/filter/ww8/wrtww8.hxx1
-rw-r--r--sw/source/filter/ww8/ww8atr.cxx29
4 files changed, 37 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx b/sw/source/filter/ww8/wrtw8sty.cxx
index 5d9e55758b93..c92a5f9b1957 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -976,7 +976,7 @@ MSWordSections::MSWordSections( MSWordExportBase& rExport )
sal_uLong nRstLnNum = pSet ? pSet->Get( RES_LINENUMBER ).GetStartValue() : 0;
const SwTableNode* pTableNd = rExport.m_pCurPam->GetNode().FindTableNode();
- const SwSectionNode* pSectNd;
+ const SwSectionNode* pSectNd = nullptr;
if ( pTableNd )
{
pSet = &pTableNd->GetTable().GetFrameFormat()->GetAttrSet();
@@ -1000,6 +1000,11 @@ MSWordSections::MSWordSections( MSWordExportBase& rExport )
pFormat = pSectNd->GetSection().GetFormat();
}
+ // tdf#118393: FILESAVE: DOCX Export loses header/footer
+ rExport.m_bFirstTOCNodeWithSection = pSectNd &&
+ ( TOX_HEADER_SECTION == pSectNd->GetSection().GetType() ||
+ TOX_CONTENT_SECTION == pSectNd->GetSection().GetType() );
+
// Try to get page descriptor of the first node
if ( pSet &&
SfxItemState::SET == pSet->GetItemState( RES_PAGEDESC, true, &pI ) &&
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 67d1fdf2eeed..b14a76d0c957 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -3585,6 +3585,7 @@ MSWordExportBase::MSWordExportBase( SwDoc *pDocument, SwPaM *pCurrentPam, SwPaM
, m_nOrigRedlineFlags(RedlineFlags::NONE)
, m_pCurrentPageDesc(nullptr)
, m_bPrevTextNodeIsEmpty(false)
+ , m_bFirstTOCNodeWithSection(false)
, m_pPapPlc(nullptr)
, m_pChpPlc(nullptr)
, m_pChpIter(nullptr)
diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx
index 778446e79c36..da01f2a01069 100644
--- a/sw/source/filter/ww8/wrtww8.hxx
+++ b/sw/source/filter/ww8/wrtww8.hxx
@@ -485,6 +485,7 @@ public:
ww8::Frames m_aFrames; // The floating frames in this document
const SwPageDesc *m_pCurrentPageDesc;
bool m_bPrevTextNodeIsEmpty;
+ bool m_bFirstTOCNodeWithSection;
WW8_WrPlcPn* m_pPapPlc;
WW8_WrPlcPn* m_pChpPlc;
MSWordAttrIter* m_pChpIter;
diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index e5c423bd86ed..8da786e78ccc 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -444,6 +444,35 @@ void MSWordExportBase::OutputSectionBreaks( const SfxItemSet *pSet, const SwNode
*/
if ( isCellOpen && ( m_pCurrentPageDesc->GetName() != pPageDesc->GetName() ) )
pSet = nullptr;
+
+ // tdf#118393: FILESAVE: DOCX Export loses header/footer
+ {
+ bool bPlausableSingleWordSection = sw::util::IsPlausableSingleWordSection(m_pCurrentPageDesc->GetFirstMaster(), pPageDesc->GetMaster());
+
+ {
+ const SwFrameFormat& rTitleFormat = m_pCurrentPageDesc->GetFirstMaster();
+ const SwFrameFormat& rFollowFormat = pPageDesc->GetMaster();
+
+ auto pHeaderFormat1 = rTitleFormat.GetHeader().GetHeaderFormat();
+ auto pHeaderFormat2 = rFollowFormat.GetHeader().GetHeaderFormat();
+
+ if (pHeaderFormat1 != pHeaderFormat2)
+ bPlausableSingleWordSection = false;
+
+ auto pFooterFormat1 = rTitleFormat.GetFooter().GetFooterFormat();
+ auto pFooterFormat2 = rFollowFormat.GetFooter().GetFooterFormat();
+
+ if (pFooterFormat1 != pFooterFormat2)
+ bPlausableSingleWordSection = false;
+ }
+
+ if ( !bPlausableSingleWordSection && m_bFirstTOCNodeWithSection )
+ {
+ bBreakSet = false;
+ bNewPageDesc = true;
+ m_pCurrentPageDesc = pPageDesc;
+ }
+ }
}
else if (!sw::util::IsPlausableSingleWordSection(m_pCurrentPageDesc->GetFirstMaster(), pPageDesc->GetMaster()))
{