office-gobmx/writerfilter/source/rtftok
Michael Stahl 6f42a2c863 tdf#150382 writerfilter,sw: RTF import of paragraph border override
The style (default unnamed \s0, applied via \pard) defines green
borders, which are overridden at the 2nd paragraph and cleared.

Of course there isn't a single border control word to be found on the
2nd paragraph, the override happens by omitting the borders of the
implicitly applied style.

Hence handle LN_CT_PrBase_pBdr in getDefaultSPRM().

The export of the override relies on changes from commit
967a03eb8760fb498c5ea6c32d03d1eea486bbe2.

Change-Id: I081eb2908d76123e7828cab6c31ceb7b11760183
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138193
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-08-15 11:14:38 +02:00
..
README
rtfcharsets.cxx
rtfcharsets.hxx
rtfcontrolwords.cxx
rtfcontrolwords.hxx
rtfdispatchdestination.cxx
rtfdispatchflag.cxx
rtfdispatchsymbol.cxx
rtfdispatchvalue.cxx
rtfdocumentfactory.cxx
rtfdocumentimpl.cxx writerfilter: typo Srpms->Sprms 2022-08-12 11:07:19 +02:00
rtfdocumentimpl.hxx writerfilter: typo Srpms->Sprms 2022-08-12 11:07:19 +02:00
rtffly.hxx
rtflistener.hxx
rtflookahead.cxx
rtflookahead.hxx
rtfreferenceproperties.cxx
rtfreferenceproperties.hxx
rtfreferencetable.cxx
rtfreferencetable.hxx
rtfsdrimport.cxx
rtfsdrimport.hxx
rtfskipdestination.cxx
rtfskipdestination.hxx
rtfsprm.cxx tdf#150382 writerfilter,sw: RTF import of paragraph border override 2022-08-15 11:14:38 +02:00
rtfsprm.hxx
rtftokenizer.cxx
rtftokenizer.hxx
rtfvalue.cxx
rtfvalue.hxx

= Writerfilter-based RTF tokenizer

== Mathematics

At the time of writing, all control words understood by SmOoxmlImport are
imported. To view the current status:

----
grep M_TOKEN starmath/source/ooxmlimport.cxx |sed 's/.*\(M_TOKEN(\) /\1/;s/ ).*/)/'|sort -u > ~/math-import-list
grep '[^_]M_TOKEN' writerfilter/source/rtftok/rtfdocumentimpl.cxx |sed 's/.*\(M_TOKEN(\)/\1/;s/).*/)/'|sort -u > ~/wf-export-list
diff -u ~/math-import-list ~/wf-export-list |grep ^-M_TOKEN
----