office-gobmx/writerfilter/source/rtftok
Miklos Vajna 52803dca47 fdo#44984 RTF import: handle form fields inside tables
Change-Id: I84b3d5186e99b8313cfb32398869de028a267b49
2014-09-12 10:20:23 +02:00
..
astyle.options
README
rtfcharsets.cxx
rtfcharsets.hxx
rtfcontrolwords.cxx
rtfcontrolwords.hxx
rtfdocumentfactory.cxx
rtfdocumentimpl.cxx fdo#44984 RTF import: handle form fields inside tables 2014-09-12 10:20:23 +02:00
rtfdocumentimpl.hxx fdo#82078 RTF import: fix bold text spilling over to non-bold text 2014-09-06 18:55:15 +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 fdo#82078 RTF import: fix bold text spilling over to non-bold text 2014-09-06 18:55:15 +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
----

== Coding style

This directory uses mostly the same coding style like the rest of Fridrich's
libraries. Please run

----
astyle --options=astyle.options \*.cxx \*.hxx
----

before committing.