├── AUTHORS ├── ChangeLog ├── CmdDebug.h ├── KoXmlWriter.cpp ├── KoXmlWriter.h ├── README.md ├── README.txt ├── README_QT5 ├── Sandcastle ├── Sandcastle.pro ├── document_doc_handler.cpp ├── document_doc_handler.h ├── main.cpp └── testole.doc ├── Sandcastle5 └── fox_office │ ├── docfox.cpp │ ├── docfox.h │ ├── fox_base.cpp │ ├── fox_base.h │ ├── fox_office.pri │ ├── foxdoc_handler.cpp │ ├── foxdoc_handler.h │ ├── foxdoc_texthandler.cpp │ ├── foxdoc_texthandler.h │ ├── foxdocx_handler.cpp │ ├── foxdocx_handler.h │ ├── foxodt_handler.cpp │ ├── foxodt_handler.h │ ├── foxpdf_handler.cpp │ ├── foxpdf_handler.h │ ├── foxrtf_handler.cpp │ └── foxrtf_handler.h ├── VERSION_WV2 ├── config.h ├── doc ├── The_Storage_of_Macros_and_OLE_Objects.pdf └── msole_file_format.html ├── fox_xmlsession.cpp ├── fox_xmlsession.h ├── kzip.cpp ├── kzip.h ├── leinputstream.h ├── qt52_configure_option ├── simpleParser.cpp ├── simpleParser.h ├── src ├── SPRMS ├── annotations.cpp ├── annotations.h ├── associatedstrings.cpp ├── associatedstrings.h ├── bookmark.cpp ├── bookmark.h ├── convert.cpp ├── convert.h ├── crc32.c ├── crc32.h ├── dllmagic.h ├── fields.cpp ├── fields.h ├── fonts.cpp ├── fonts.h ├── footnotes97.cpp ├── footnotes97.h ├── functor.cpp ├── functor.h ├── functordata.cpp ├── functordata.h ├── generator │ ├── _no_CMakeLists.txt │ ├── converter.pl │ ├── generate.pl │ ├── generator_wword6.htm │ ├── generator_wword8.htm │ ├── spec_defects │ ├── template-Word95.cpp │ ├── template-Word95.h │ ├── template-Word97.cpp │ ├── template-Word97.h │ ├── template-conv.cpp │ └── template-conv.h ├── global.cpp ├── global.h ├── graphics.cpp ├── graphics.h ├── handlers.cpp ├── handlers.h ├── headers.cpp ├── headers.h ├── headers95.cpp ├── headers95.h ├── headers97.cpp ├── headers97.h ├── lists.cpp ├── lists.h ├── msdoc.h ├── olestorage.cpp ├── olestorage.h ├── olestream.cpp ├── olestream.h ├── paragraphproperties.cpp ├── paragraphproperties.h ├── parser.cpp ├── parser.h ├── parser95.cpp ├── parser95.h ├── parser97.cpp ├── parser97.h ├── parser9x.cpp ├── parser9x.h ├── parserfactory.cpp ├── parserfactory.h ├── pole.cpp ├── pole.h ├── properties97.cpp ├── properties97.h ├── qtwv2.cpp ├── qtwv2.h ├── sharedptr.h ├── styles.cpp ├── styles.h ├── textconverter.cpp ├── textconverter.h ├── ustring.cpp ├── ustring.h ├── utilities.cpp ├── utilities.h ├── word95_generated.cpp ├── word95_generated.h ├── word95_helper.cpp ├── word95_helper.h ├── word97_generated.cpp ├── word97_generated.h ├── word97_helper.cpp ├── word97_helper.h ├── word_helper.cpp ├── word_helper.h ├── wv2_export.h ├── wv2version.cpp ├── wv2version.h ├── wvlog.cpp ├── wvlog.h ├── zcodec.cxx └── zcodec.hxx ├── tests ├── handlertest.cpp ├── helpertest.cpp ├── iconvtest.cpp ├── oletest.cpp ├── parsertest.cpp ├── parsertest_mem.cpp ├── regression ├── sharedptrtest.cpp ├── test.h ├── testole.doc ├── ustringtest.cpp ├── word95_test.cpp └── word97_test.cpp ├── wv2qt.pro └── wv5qt.pro /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/ChangeLog -------------------------------------------------------------------------------- /CmdDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/CmdDebug.h -------------------------------------------------------------------------------- /KoXmlWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/KoXmlWriter.cpp -------------------------------------------------------------------------------- /KoXmlWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/KoXmlWriter.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/README.txt -------------------------------------------------------------------------------- /README_QT5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/README_QT5 -------------------------------------------------------------------------------- /Sandcastle/Sandcastle.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle/Sandcastle.pro -------------------------------------------------------------------------------- /Sandcastle/document_doc_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle/document_doc_handler.cpp -------------------------------------------------------------------------------- /Sandcastle/document_doc_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle/document_doc_handler.h -------------------------------------------------------------------------------- /Sandcastle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle/main.cpp -------------------------------------------------------------------------------- /Sandcastle/testole.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle/testole.doc -------------------------------------------------------------------------------- /Sandcastle5/fox_office/docfox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/docfox.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/docfox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/docfox.h -------------------------------------------------------------------------------- /Sandcastle5/fox_office/fox_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/fox_base.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/fox_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/fox_base.h -------------------------------------------------------------------------------- /Sandcastle5/fox_office/fox_office.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/fox_office.pri -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxdoc_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxdoc_handler.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxdoc_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxdoc_handler.h -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxdoc_texthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxdoc_texthandler.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxdoc_texthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxdoc_texthandler.h -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxdocx_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxdocx_handler.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxdocx_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxdocx_handler.h -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxodt_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxodt_handler.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxodt_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxodt_handler.h -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxpdf_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxpdf_handler.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxpdf_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxpdf_handler.h -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxrtf_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxrtf_handler.cpp -------------------------------------------------------------------------------- /Sandcastle5/fox_office/foxrtf_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/Sandcastle5/fox_office/foxrtf_handler.h -------------------------------------------------------------------------------- /VERSION_WV2: -------------------------------------------------------------------------------- 1 | 0.4.2 2 | -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/config.h -------------------------------------------------------------------------------- /doc/The_Storage_of_Macros_and_OLE_Objects.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/doc/The_Storage_of_Macros_and_OLE_Objects.pdf -------------------------------------------------------------------------------- /doc/msole_file_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/doc/msole_file_format.html -------------------------------------------------------------------------------- /fox_xmlsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/fox_xmlsession.cpp -------------------------------------------------------------------------------- /fox_xmlsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/fox_xmlsession.h -------------------------------------------------------------------------------- /kzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/kzip.cpp -------------------------------------------------------------------------------- /kzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/kzip.h -------------------------------------------------------------------------------- /leinputstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/leinputstream.h -------------------------------------------------------------------------------- /qt52_configure_option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/qt52_configure_option -------------------------------------------------------------------------------- /simpleParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/simpleParser.cpp -------------------------------------------------------------------------------- /simpleParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/simpleParser.h -------------------------------------------------------------------------------- /src/SPRMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/SPRMS -------------------------------------------------------------------------------- /src/annotations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/annotations.cpp -------------------------------------------------------------------------------- /src/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/annotations.h -------------------------------------------------------------------------------- /src/associatedstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/associatedstrings.cpp -------------------------------------------------------------------------------- /src/associatedstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/associatedstrings.h -------------------------------------------------------------------------------- /src/bookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/bookmark.cpp -------------------------------------------------------------------------------- /src/bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/bookmark.h -------------------------------------------------------------------------------- /src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/convert.cpp -------------------------------------------------------------------------------- /src/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/convert.h -------------------------------------------------------------------------------- /src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/crc32.c -------------------------------------------------------------------------------- /src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/crc32.h -------------------------------------------------------------------------------- /src/dllmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/dllmagic.h -------------------------------------------------------------------------------- /src/fields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/fields.cpp -------------------------------------------------------------------------------- /src/fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/fields.h -------------------------------------------------------------------------------- /src/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/fonts.cpp -------------------------------------------------------------------------------- /src/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/fonts.h -------------------------------------------------------------------------------- /src/footnotes97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/footnotes97.cpp -------------------------------------------------------------------------------- /src/footnotes97.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/footnotes97.h -------------------------------------------------------------------------------- /src/functor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/functor.cpp -------------------------------------------------------------------------------- /src/functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/functor.h -------------------------------------------------------------------------------- /src/functordata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/functordata.cpp -------------------------------------------------------------------------------- /src/functordata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/functordata.h -------------------------------------------------------------------------------- /src/generator/_no_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/_no_CMakeLists.txt -------------------------------------------------------------------------------- /src/generator/converter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/converter.pl -------------------------------------------------------------------------------- /src/generator/generate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/generate.pl -------------------------------------------------------------------------------- /src/generator/generator_wword6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/generator_wword6.htm -------------------------------------------------------------------------------- /src/generator/generator_wword8.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/generator_wword8.htm -------------------------------------------------------------------------------- /src/generator/spec_defects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/spec_defects -------------------------------------------------------------------------------- /src/generator/template-Word95.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/template-Word95.cpp -------------------------------------------------------------------------------- /src/generator/template-Word95.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/template-Word95.h -------------------------------------------------------------------------------- /src/generator/template-Word97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/template-Word97.cpp -------------------------------------------------------------------------------- /src/generator/template-Word97.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/template-Word97.h -------------------------------------------------------------------------------- /src/generator/template-conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/template-conv.cpp -------------------------------------------------------------------------------- /src/generator/template-conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/generator/template-conv.h -------------------------------------------------------------------------------- /src/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/global.cpp -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/global.h -------------------------------------------------------------------------------- /src/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/graphics.cpp -------------------------------------------------------------------------------- /src/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/graphics.h -------------------------------------------------------------------------------- /src/handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/handlers.cpp -------------------------------------------------------------------------------- /src/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/handlers.h -------------------------------------------------------------------------------- /src/headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/headers.cpp -------------------------------------------------------------------------------- /src/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/headers.h -------------------------------------------------------------------------------- /src/headers95.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/headers95.cpp -------------------------------------------------------------------------------- /src/headers95.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/headers95.h -------------------------------------------------------------------------------- /src/headers97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/headers97.cpp -------------------------------------------------------------------------------- /src/headers97.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/headers97.h -------------------------------------------------------------------------------- /src/lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/lists.cpp -------------------------------------------------------------------------------- /src/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/lists.h -------------------------------------------------------------------------------- /src/msdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/msdoc.h -------------------------------------------------------------------------------- /src/olestorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/olestorage.cpp -------------------------------------------------------------------------------- /src/olestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/olestorage.h -------------------------------------------------------------------------------- /src/olestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/olestream.cpp -------------------------------------------------------------------------------- /src/olestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/olestream.h -------------------------------------------------------------------------------- /src/paragraphproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/paragraphproperties.cpp -------------------------------------------------------------------------------- /src/paragraphproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/paragraphproperties.h -------------------------------------------------------------------------------- /src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser.cpp -------------------------------------------------------------------------------- /src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser.h -------------------------------------------------------------------------------- /src/parser95.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser95.cpp -------------------------------------------------------------------------------- /src/parser95.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser95.h -------------------------------------------------------------------------------- /src/parser97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser97.cpp -------------------------------------------------------------------------------- /src/parser97.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser97.h -------------------------------------------------------------------------------- /src/parser9x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser9x.cpp -------------------------------------------------------------------------------- /src/parser9x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parser9x.h -------------------------------------------------------------------------------- /src/parserfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parserfactory.cpp -------------------------------------------------------------------------------- /src/parserfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/parserfactory.h -------------------------------------------------------------------------------- /src/pole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/pole.cpp -------------------------------------------------------------------------------- /src/pole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/pole.h -------------------------------------------------------------------------------- /src/properties97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/properties97.cpp -------------------------------------------------------------------------------- /src/properties97.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/properties97.h -------------------------------------------------------------------------------- /src/qtwv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/qtwv2.cpp -------------------------------------------------------------------------------- /src/qtwv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/qtwv2.h -------------------------------------------------------------------------------- /src/sharedptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/sharedptr.h -------------------------------------------------------------------------------- /src/styles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/styles.cpp -------------------------------------------------------------------------------- /src/styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/styles.h -------------------------------------------------------------------------------- /src/textconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/textconverter.cpp -------------------------------------------------------------------------------- /src/textconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/textconverter.h -------------------------------------------------------------------------------- /src/ustring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/ustring.cpp -------------------------------------------------------------------------------- /src/ustring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/ustring.h -------------------------------------------------------------------------------- /src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/utilities.cpp -------------------------------------------------------------------------------- /src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/utilities.h -------------------------------------------------------------------------------- /src/word95_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word95_generated.cpp -------------------------------------------------------------------------------- /src/word95_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word95_generated.h -------------------------------------------------------------------------------- /src/word95_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word95_helper.cpp -------------------------------------------------------------------------------- /src/word95_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word95_helper.h -------------------------------------------------------------------------------- /src/word97_generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word97_generated.cpp -------------------------------------------------------------------------------- /src/word97_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word97_generated.h -------------------------------------------------------------------------------- /src/word97_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word97_helper.cpp -------------------------------------------------------------------------------- /src/word97_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word97_helper.h -------------------------------------------------------------------------------- /src/word_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word_helper.cpp -------------------------------------------------------------------------------- /src/word_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/word_helper.h -------------------------------------------------------------------------------- /src/wv2_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/wv2_export.h -------------------------------------------------------------------------------- /src/wv2version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/wv2version.cpp -------------------------------------------------------------------------------- /src/wv2version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/wv2version.h -------------------------------------------------------------------------------- /src/wvlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/wvlog.cpp -------------------------------------------------------------------------------- /src/wvlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/wvlog.h -------------------------------------------------------------------------------- /src/zcodec.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/zcodec.cxx -------------------------------------------------------------------------------- /src/zcodec.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/src/zcodec.hxx -------------------------------------------------------------------------------- /tests/handlertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/handlertest.cpp -------------------------------------------------------------------------------- /tests/helpertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/helpertest.cpp -------------------------------------------------------------------------------- /tests/iconvtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/iconvtest.cpp -------------------------------------------------------------------------------- /tests/oletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/oletest.cpp -------------------------------------------------------------------------------- /tests/parsertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/parsertest.cpp -------------------------------------------------------------------------------- /tests/parsertest_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/parsertest_mem.cpp -------------------------------------------------------------------------------- /tests/regression: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/regression -------------------------------------------------------------------------------- /tests/sharedptrtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/sharedptrtest.cpp -------------------------------------------------------------------------------- /tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/test.h -------------------------------------------------------------------------------- /tests/testole.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/testole.doc -------------------------------------------------------------------------------- /tests/ustringtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/ustringtest.cpp -------------------------------------------------------------------------------- /tests/word95_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/word95_test.cpp -------------------------------------------------------------------------------- /tests/word97_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/tests/word97_test.cpp -------------------------------------------------------------------------------- /wv2qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/wv2qt.pro -------------------------------------------------------------------------------- /wv5qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pehohlva/wv2qt/HEAD/wv5qt.pro --------------------------------------------------------------------------------