tdf#158986 sw floattable: fix RTF import of table followed by \sect
The bugdoc had a floating table, immediately followed by a section
break. The floating table went to the second page, should be on the
first page.
The trouble is that RTF's section break is just a special symbol, so we
can have a section break right after a floating table. This is in
constrast with DOCX where a non-last section break is a paragraph
property, so it's guaranteed to have at least a paragraph start after a
floating table and before a section break, which can nicely serve as an
anchor point for the floating table.
Fix the problem similar to what the OOXML tokenizer did in a similar
case in commit 01ad8ec4bb
(sw floattable:
fix lost tables around a floating table from DOCX, 2023-06-05), by
injecting a paragraph before the section break.
Handling this at a tokenizer level seems to be the right place, since
the DOCX version of the same document was already imported OK.
Change-Id: Ic945c472c08ba872a5c46e2b8f75e919678aa0a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163929
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
This commit is contained in:
parent
d751741571
commit
b7c4c4d45f
4 changed files with 46 additions and 3 deletions
|
@ -13,6 +13,7 @@ $(eval $(call gb_CppunitTest_CppunitTest,writerfilter_rtftok))
|
|||
|
||||
$(eval $(call gb_CppunitTest_use_externals,writerfilter_rtftok,\
|
||||
boost_headers \
|
||||
libxml2 \
|
||||
))
|
||||
|
||||
$(eval $(call gb_CppunitTest_add_exception_objects,writerfilter_rtftok, \
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
{\rtf1
|
||||
\paperw11907\paperh16840\margl896\margr2104\margt1440\margb720
|
||||
\pard\plain doc start\par
|
||||
\trowd\tpvpara\tphmrg\tposnegy-922\tdfrmtxtLeft180\tdfrmtxtRight180\cellx5670
|
||||
\pard\intbl A1\cell
|
||||
\row
|
||||
\trowd\tpvpara\tphmrg\tposnegy-922\tdfrmtxtLeft180\tdfrmtxtRight180\cellx5670
|
||||
\pard\intbl A2\cell
|
||||
\row
|
||||
\pard\sect
|
||||
\pard\plain doc end\par
|
||||
}
|
|
@ -7,22 +7,23 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
#include <test/unoapi_test.hxx>
|
||||
#include <test/unoapixml_test.hxx>
|
||||
|
||||
#include <com/sun/star/text/XTextDocument.hpp>
|
||||
#include <com/sun/star/beans/XPropertySet.hpp>
|
||||
#include <com/sun/star/style/ParagraphAdjust.hpp>
|
||||
#include <com/sun/star/qa/XDumper.hpp>
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
|
||||
namespace
|
||||
{
|
||||
/// Tests for writerfilter/source/rtftok/rtfdispatchsymbol.cxx.
|
||||
class Test : public UnoApiTest
|
||||
class Test : public UnoApiXmlTest
|
||||
{
|
||||
public:
|
||||
Test()
|
||||
: UnoApiTest("/writerfilter/qa/cppunittests/rtftok/data/")
|
||||
: UnoApiXmlTest("/writerfilter/qa/cppunittests/rtftok/data/")
|
||||
{
|
||||
}
|
||||
};
|
||||
|
@ -64,6 +65,25 @@ CPPUNIT_TEST_FIXTURE(Test, testCenterAfterPage)
|
|||
// i.e. the paragraph alignment on the second page was lost.
|
||||
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int16>(style::ParagraphAdjust_CENTER), eActual);
|
||||
}
|
||||
|
||||
CPPUNIT_TEST_FIXTURE(Test, testFloattableThenSectBreak)
|
||||
{
|
||||
// Given a document with a floating table, immediately followed by \sect:
|
||||
// When loading that file:
|
||||
loadFromFile(u"floattable-then-sect-break.rtf");
|
||||
|
||||
// Then make sure that the floating table is on the first page:
|
||||
uno::Reference<frame::XModel> xModel(mxComponent, uno::UNO_QUERY);
|
||||
css::uno::Reference<qa::XDumper> xDumper(xModel->getCurrentController(), uno::UNO_QUERY);
|
||||
OString aDump = xDumper->dump("layout").toUtf8();
|
||||
auto pCharBuffer = reinterpret_cast<const xmlChar*>(aDump.getStr());
|
||||
xmlDocUniquePtr pXmlDoc(xmlParseDoc(pCharBuffer));
|
||||
// Without the accompanying fix in place, this test would have failed with:
|
||||
// - Expected: 1
|
||||
// - Actual : 0
|
||||
// i.e. the floating table was on the 2nd page, not on the 1st page.
|
||||
assertXPath(pXmlDoc, "/root/page[1]/sorted_objs/fly"_ostr, 1);
|
||||
}
|
||||
}
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
|
|
@ -144,6 +144,16 @@ RTFError RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
|
|||
{ // tdf#158586 don't dispatch \par here, it eats deferred page breaks
|
||||
setNeedPar(true);
|
||||
}
|
||||
|
||||
RTFValue::Pointer_t pTblpPr
|
||||
= m_aStates.top().getTableRowSprms().find(NS_ooxml::LN_CT_TblPrBase_tblpPr);
|
||||
if (pTblpPr)
|
||||
{
|
||||
// We have a pending floating table, provide an anchor for it still in this
|
||||
// section.
|
||||
dispatchSymbol(RTFKeyword::PAR);
|
||||
}
|
||||
|
||||
sectBreak();
|
||||
if (m_nResetBreakOnSectBreak != RTFKeyword::invalid)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue