summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2023-09-25 08:38:28 +0200
committerMiklos Vajna <vmiklos@collabora.com>2023-09-25 09:41:41 +0200
commitb8521d969ab5be4fc947e467d4afe969f9d3b563 (patch)
treeb8c80fb5cc0debcf3b4144cb147bae13c671a493 /sw
parent6acdde8006e6b59758b00bc178f15f32796a1987 (diff)
tdf#157263 sw floattable: prefer join over split after moving fwd
Regression from commit a4af5432753408c4eea8a8d56c2f48202160c5fe (tdf#120262 sw floattable, legacy: fix text wrap around fly when no content fits, 2023-07-17), the bugdoc was of 3 pages in both Word and Writer, but is now of 4 pages in Writer. The above commit fixed the layout, so the first row of the table around the page 1 -> page 2 boundary goes to the start of page 2 instead of to the end of page 1. This matches the Word layout, so a wanted change on its own, but it regressed the page acount. The reason for this is that the table has a single row on page 2 and its follow on page 3 is not joined, even if there would be still space on page 2. A reduced bugdoc appears to reproduce this problem even without floating tables, also with old versions, so it's not a new problem, but it's now more visible. Fix the problem by tweaking what to do in the next iteration in the loop of SwTabFrame::MakeAll() after moving forward. Moving forward is followed by a next iteration in that function, but it does both a MakePos() and a Format(), so it'll be the last iteration in the "is the postion / size of this tab frame valid" loop. We used to hit the "bSplit == true" case, there we found that there is enough remaining space, so no need to split and we quit the loop. This is now changed, so in case we moved the table forward and there is still enough space for the follow to be next to us, then the last iteration will try to join instead of trying to split. Note that probably split almost never makes sense after moving forward in the !HasNext() && HasFollow() case, but let's stay on the safe side and only do this when the follow definitely fits, which is enough for our needs here. Change-Id: I64b0a7d257b0ab01353741506969a287b361c5ff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157233 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/core/layout/data/table-missing-join.docxbin0 -> 18441 bytes
-rw-r--r--sw/qa/core/layout/tabfrm.cxx28
-rw-r--r--sw/source/core/layout/tabfrm.cxx9
3 files changed, 37 insertions, 0 deletions
diff --git a/sw/qa/core/layout/data/table-missing-join.docx b/sw/qa/core/layout/data/table-missing-join.docx
new file mode 100644
index 000000000000..1fabb9e5b27c
--- /dev/null
+++ b/sw/qa/core/layout/data/table-missing-join.docx
Binary files differ
diff --git a/sw/qa/core/layout/tabfrm.cxx b/sw/qa/core/layout/tabfrm.cxx
index 4b991c27dbf8..705bf47af4bc 100644
--- a/sw/qa/core/layout/tabfrm.cxx
+++ b/sw/qa/core/layout/tabfrm.cxx
@@ -9,6 +9,13 @@
#include <swmodeltestbase.hxx>
+#include <IDocumentLayoutAccess.hxx>
+#include <rootfrm.hxx>
+#include <pagefrm.hxx>
+#include <tabfrm.hxx>
+
+namespace
+{
/// Covers sw/source/core/layout/tabfrm.cxx fixes.
class Test : public SwModelTestBase
{
@@ -35,4 +42,25 @@ CPPUNIT_TEST_FIXTURE(Test, testTablePrintAreaLeft)
CPPUNIT_ASSERT_EQUAL(static_cast<SwTwips>(5), nTablePrintLeft);
}
+CPPUNIT_TEST_FIXTURE(Test, testTableMissingJoin)
+{
+ // Given a document with a table on page 2:
+ // When laying out that document:
+ createSwDoc("table-missing-join.docx");
+
+ // Then make sure that the table fits page 2:
+ SwDoc* pDoc = getSwDoc();
+ SwRootFrame* pLayout = pDoc->getIDocumentLayoutAccess().GetCurrentLayout();
+ auto pPage1 = pLayout->Lower()->DynCastPageFrame();
+ CPPUNIT_ASSERT(pPage1);
+ auto pPage2 = pPage1->GetNext()->DynCastPageFrame();
+ CPPUNIT_ASSERT(pPage2);
+ SwFrame* pBody = pPage2->FindBodyCont();
+ auto pTab = pBody->GetLower()->DynCastTabFrame();
+ // Without the accompanying fix in place, this test would have failed, the table continued on
+ // page 3.
+ CPPUNIT_ASSERT(!pTab->HasFollow());
+}
+}
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index 68bb19b7f39d..693c180154df 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -2872,6 +2872,15 @@ void SwTabFrame::MakeAll(vcl::RenderContext* pRenderContext)
if ( GetFollow() )
Join();
}
+ else if (!GetNext() && !HasFollowFlowLine() && GetFollow()
+ && (getFrameArea().Bottom() + GetFollow()->getFrameArea().Height())
+ < GetUpper()->getFrameArea().Bottom())
+ {
+ // We're the last lower of the upper, no split row and we have a follow. That follow
+ // fits our upper, still. Prefer joining that follow in the next iteration, instead of
+ // trying to split the current table.
+ bSplit = false;
+ }
if ( bMovedBwd && GetUpper() )
{