MindWrtParser.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
2
3/* libmwaw
4* Version: MPL 2.0 / LGPLv2+
5*
6* The contents of this file are subject to the Mozilla Public License Version
7* 2.0 (the "License"); you may not use this file except in compliance with
8* the License or as specified alternatively below. You may obtain a copy of
9* the License at http://www.mozilla.org/MPL/
10*
11* Software distributed under the License is distributed on an "AS IS" basis,
12* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13* for the specific language governing rights and limitations under the
14* License.
15*
16* Major Contributor(s):
17* Copyright (C) 2002 William Lachance (wrlach@gmail.com)
18* Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
19* Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
20* Copyright (C) 2006, 2007 Andrew Ziem
21* Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
22*
23*
24* All Rights Reserved.
25*
26* For minor contributions see the git repository.
27*
28* Alternatively, the contents of this file may be used under the terms of
29* the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
30* in which case the provisions of the LGPLv2+ are applicable
31* instead of those above.
32*/
33
34/*
35 * Parser to convert MindWrite document
36 */
37#ifndef MIND_WRT_PARSER
38# define MIND_WRT_PARSER
39
40#include <string>
41#include <vector>
42
43#include "MWAWDebug.hxx"
44#include "MWAWInputStream.hxx"
45
46#include "MWAWParser.hxx"
47
49{
50struct LineInfo;
51struct State;
52class SubDocument;
53}
54
60class MindWrtParser final : public MWAWTextParser
61{
63
64public:
66 MindWrtParser(MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header);
68 ~MindWrtParser() final;
69
71 bool checkHeader(MWAWHeader *header, bool strict=false) final;
72
73 // the main parse function
74 void parse(librevenge::RVNGTextInterface *documentInterface) final;
75
76protected:
78 void init();
79
81 void createDocument(librevenge::RVNGTextInterface *documentInterface);
82
84 bool createZones();
85
87 bool sendZone(int i);
88
90 bool readGraphic(MindWrtParserInternal::LineInfo const &line);
91
93 bool readRuler(MindWrtParserInternal::LineInfo &line);
94
96 bool readCompressedText(MindWrtParserInternal::LineInfo const &line);
97
99 bool readText(MindWrtParserInternal::LineInfo const &line);
100
102 void sendText(std::string const &text, std::vector<MWAWFont> const &fonts, std::vector<int> const &textPos);
104 void sendHeaderFooter(bool header);
106 void sendHeaderFooterFields(bool header);
108 bool readFonts(MWAWEntry const &entry, std::vector<MWAWFont> &fonts, std::vector<int> &textPos);
109
111 bool readPrintInfo(MWAWEntry &entry);
112
114 bool readLinesInfo(MWAWEntry &entry);
115
117 bool readLastZone(MWAWEntry &entry);
118
120 bool readZone8(MWAWEntry &entry);
122 bool readHeadingStates(MWAWEntry &entry);
124 bool readHeadingFields(MWAWEntry &entry);
126 bool readHeadingProperties(MWAWEntry &entry);
128 bool readHeadingCustom(MWAWEntry &entry);
129
131 void setProperty(MWAWParagraph const &para);
132
134 void newPage(int number);
135
136 //
137 // low level
138 //
139
142
143protected:
144 //
145 // data
146 //
148 std::shared_ptr<MindWrtParserInternal::State> m_state;
149};
150#endif
151// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:47
Class to store font.
Definition: MWAWFont.hxx:44
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:57
class to store the paragraph properties
Definition: MWAWParagraph.hxx:85
virtual class which defines the ancestor of all text zone parser
Definition: MWAWParser.hxx:299
Internal: the subdocument of a MindWrtParser.
Definition: MindWrtParser.cxx:526
the main class to read a MindWrite file
Definition: MindWrtParser.hxx:61
void parse(librevenge::RVNGTextInterface *documentInterface) final
virtual function used to parse the input
Definition: MindWrtParser.cxx:643
MWAWEntry readEntry()
read a file entry
Definition: MindWrtParser.cxx:628
void setProperty(MWAWParagraph const &para)
sends a paragraph property to the listener
Definition: MindWrtParser.cxx:2086
bool readRuler(MindWrtParserInternal::LineInfo &line)
try to read a ruler
Definition: MindWrtParser.cxx:984
void sendHeaderFooterFields(bool header)
try to send the header/footer fields as text (in a textbox)
Definition: MindWrtParser.cxx:1101
bool readHeadingProperties(MWAWEntry &entry)
read the heading property zone
Definition: MindWrtParser.cxx:1801
void sendText(std::string const &text, std::vector< MWAWFont > const &fonts, std::vector< int > const &textPos)
try to send the text
Definition: MindWrtParser.cxx:2056
bool readText(MindWrtParserInternal::LineInfo const &line)
try to read a non compressed text zone
Definition: MindWrtParser.cxx:1169
bool createZones()
finds the different objects zones
Definition: MindWrtParser.cxx:740
std::shared_ptr< MindWrtParserInternal::State > m_state
the state
Definition: MindWrtParser.hxx:148
bool readLastZone(MWAWEntry &entry)
read the last zone ( pos + 7fffffff )
Definition: MindWrtParser.cxx:1584
bool sendZone(int i)
try to send a zone
Definition: MindWrtParser.cxx:855
bool readCompressedText(MindWrtParserInternal::LineInfo const &line)
try to read a compressed text zone
Definition: MindWrtParser.cxx:1237
void sendHeaderFooter(bool header)
try to send the header/footer zone
Definition: MindWrtParser.cxx:1079
void newPage(int number)
adds a new page
Definition: MindWrtParser.cxx:615
~MindWrtParser() final
destructor
Definition: MindWrtParser.cxx:597
void init()
inits all internal variables
Definition: MindWrtParser.cxx:601
bool checkHeader(MWAWHeader *header, bool strict=false) final
checks if the document header is correct (or not)
Definition: MindWrtParser.cxx:1398
bool readLinesInfo(MWAWEntry &entry)
read the lines information zone
Definition: MindWrtParser.cxx:1505
bool readGraphic(MindWrtParserInternal::LineInfo const &line)
try to read a graphic
Definition: MindWrtParser.cxx:942
bool readZone8(MWAWEntry &entry)
read the 8th zone ( unknown zone)
Definition: MindWrtParser.cxx:1878
bool readHeadingStates(MWAWEntry &entry)
read the heading state
Definition: MindWrtParser.cxx:1626
bool readHeadingFields(MWAWEntry &entry)
read the heading field zone ( zone 12 )
Definition: MindWrtParser.cxx:1932
bool readHeadingCustom(MWAWEntry &entry)
read the heading custom zone
Definition: MindWrtParser.cxx:1674
bool readPrintInfo(MWAWEntry &entry)
read the print info zone
Definition: MindWrtParser.cxx:1990
bool readFonts(MWAWEntry const &entry, std::vector< MWAWFont > &fonts, std::vector< int > &textPos)
try to read the fonts
Definition: MindWrtParser.cxx:1336
void createDocument(librevenge::RVNGTextInterface *documentInterface)
creates the listener which will be associated to the document
Definition: MindWrtParser.cxx:696
std::shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:561
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:551
Internal: the structures of a MindWrtParser.
Definition: MindWrtParser.cxx:60
Definition: MWAWDocument.hxx:57

Generated on Thu Jan 19 2023 00:00:00 for libmwaw by doxygen 1.9.6