Slide 1

Slide 1 text

Miklos Vajna Software Engineer vmiklos@collabora.com 2023-09-22 Multi-page floating tables in Writer

Slide 2

Slide 2 text

2 About Miklos ● From Hungary ● More details: ● https://www.collaboraoffice.com/about-us/ ● Google Summer of Code 2010 / 2011 ● Rewrite of the Writer RTF import/export ● Then a full-time LibreOffice developer for SUSE ● Now a contractor at Collabora

Slide 3

Slide 3 text

3 Results so far

Slide 4

Slide 4 text

4 Motivation

Slide 5

Slide 5 text

5 Selection & dragging of split tables

Slide 6

Slide 6 text

6 In-footer floating table

Slide 7

Slide 7 text

7 Floating table in a section

Slide 8

Slide 8 text

8 Page break before a floating table

Slide 9

Slide 9 text

9 Table inside a multi-column section

Slide 10

Slide 10 text

10 UI to disable split of a floating table

Slide 11

Slide 11 text

11 Chaining enabled, so no split frames

Slide 12

Slide 12 text

12 Disabling split of flys at a layout level

Slide 13

Slide 13 text

13 Section break directly between tables

Slide 14

Slide 14 text

14 Nested tables: the split outer only

Slide 15

Slide 15 text

15 Negative vertical offsets

Slide 16

Slide 16 text

16 Anhcor text starts with a newline

Slide 17

Slide 17 text

17 Hidden anchors

Slide 18

Slide 18 text

18 No overlap setting on floating tables

Slide 19

Slide 19 text

19 Border rendering problems

Slide 20

Slide 20 text

20 Footnote support

Slide 21

Slide 21 text

21 How is this implemented?

Slide 22

Slide 22 text

22 Document model SwFlyFrameFormat ● Stored in SwDoc::mpSpzFrameFormatTable ● Has an SfxItemSet ● New pool item subclass: SwFormatFlySplit ● Look it up using RES_FLY_SPLIT

Slide 23

Slide 23 text

23 UNO API SwXTextFrame ● SwXTextDocument has a getTextFrames() ● The text frame supports XPropertySet ● A new IsSplitAllowed property there ● So a floating table is a fly frame that’s allowed to split ● And only contains exactly one inner table

Slide 24

Slide 24 text

24 Layout representation 1 2 3 4 5 3 3 4 5 Frame height is automatic At-paragraph anchored text frame Top left of anchor frames Content flows around the frame on the last page Vertical offset is only rendered on the first page 1 2 #libreoffice-dev_20170512.log:12:44 < mst_> vmiklos: now we only need a flyframe that is also a flowframe and we'd have floating tables :)

Slide 25

Slide 25 text

25 Legacy mode for Word <= 2010

Slide 26

Slide 26 text

26 Filters ODF + the Word formats ● ODT import + export: ● DOCX: ● DOC: sprmTPc, and 6 others for positioning ● RTF: very similar to DOC, just not binary ● Separate markup for doc-level “no split” and frame-level “don’t overlap”

Slide 27

Slide 27 text

27 Testing Various testing types ● Load a Word document, assert layout result from cppunit ● Build an SwDoc from C++ code, assert the layout result ● UITest for the UI part ● Crashtesting ● Watching the sanitizers tinderbox

Slide 28

Slide 28 text

28 UI

Slide 29

Slide 29 text

29 Specification Just an optional new boolean attribute ● Where to put it? Frame? Frame style? ● Should it be a property of the inner text box? ● Settled down on frame-as-direct-format, similar to ZOrder ● No-overlap for frames: reuse markup from shapes ● “Don’t split” per-document setting → settings.xml

Slide 30

Slide 30 text

30 Summary Originally requested in 2013, multi-page floating tables are coming to Writer ● COOL 23.05 / LibreOffice (perhaps) 7.6 ● Status: 50%+ done, but you can already try it out ● How it interacts with headers/footers, orphan/widow control, minimal row height, compatibility modes, change tracking, etc. – is complex, but we’re working on it ● Defaulting to the way today’s Word (>= 2013) does it, but also have a legacy mode for older documents