HanMacWrdJParser.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 HanMac Word-J document
36  */
37 #ifndef HAN_MAC_WRD_J_PARSER
38 # define HAN_MAC_WRD_J_PARSER
39 
40 #include <iostream>
41 #include <string>
42 #include <vector>
43 
44 #include <librevenge/librevenge.h>
45 
46 #include "MWAWDebug.hxx"
47 
48 #include "MWAWParser.hxx"
49 
51 {
52 struct State;
53 class SubDocument;
54 }
55 
56 class HanMacWrdJGraph;
57 class HanMacWrdJText;
58 
62  explicit HanMacWrdJZoneHeader(bool isMain) : m_length(0), m_n(0), m_fieldSize(0), m_id(0), m_isMain(isMain)
63  {
64  for (int i=0; i < 4; i++) m_values[i] = 0;
65  }
66 
68  friend std::ostream &operator<<(std::ostream &o, HanMacWrdJZoneHeader const &h)
69  {
70  if (h.m_n) o << "N=" << h.m_n << ",";
71  if (h.m_id) o << "zId=" << std::hex << h.m_id << std::dec << ",";
72  bool toPrint[4]= {true, true, true, true};
73  if (h.m_isMain) {
74  if (h.m_values[0]+h.m_n == h.m_values[1])
75  toPrint[0]=toPrint[1]=false;
76  else if (h.m_values[0]+h.m_n == h.m_values[2])
77  toPrint[0]=toPrint[2]=false;
78  else
79  o << "###N,";
80  }
81  for (int i=0; i < 4; i++)
82  if (toPrint[i] && h.m_values[i]) o << "h" << i << "=" << h.m_values[i] << ",";
83  return o;
84  }
86  long m_length;
88  int m_n;
92  long m_id;
94  int m_values[4];
96  bool m_isMain;
97 };
98 
105 {
106  friend class HanMacWrdJGraph;
107  friend class HanMacWrdJText;
109 
110 public:
114  virtual ~HanMacWrdJParser();
115 
117  bool checkHeader(MWAWHeader *header, bool strict=false);
118 
119  // the main parse function
120  void parse(librevenge::RVNGTextInterface *documentInterface);
121 
122 protected:
124  void init();
125 
127  void createDocument(librevenge::RVNGTextInterface *documentInterface);
128 
130  bool createZones();
131 
133  MWAWVec2f getPageLeftTop() const;
134 
136  void newPage(int number);
137 
138  // interface with the text parser
139 
141  bool sendText(long id, long cPos, MWAWListenerPtr listener=MWAWListenerPtr());
143  bool canSendTextAsGraphic(long id, long cPos);
144 
145  // interface with the graph parser
146 
148  bool sendZone(long zId);
150  bool getColor(int colId, int patternId, MWAWColor &color) const;
151 
152  //
153  // low level
154  //
155 
158  bool checkEntry(MWAWEntry &entry);
159 
161  bool readZonesList();
163  bool readZone(MWAWEntry &entry);
164 
166  bool readClassicHeader(HanMacWrdJZoneHeader &header, long endPos=-1);
168  bool decodeZone(MWAWEntry const &entry, librevenge::RVNGBinaryData &data);
169 
171  bool readPrintInfo(MWAWEntry const &entry);
173  bool readHeaderEnd();
174 #ifdef DEBUG
175 
176  bool readZoneWithHeader(MWAWEntry const &entry);
177 #endif
178 
179  bool readZoneA(MWAWEntry const &entry);
181  bool readZoneB(MWAWEntry const &entry);
182 
183 protected:
184  //
185  // data
186  //
188  shared_ptr<HanMacWrdJParserInternal::State> m_state;
189 
191  shared_ptr<HanMacWrdJGraph> m_graphParser;
192 
194  shared_ptr<HanMacWrdJText> m_textParser;
195 };
196 #endif
197 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
HanMacWrdJParser::sendZone
bool sendZone(long zId)
send a zone
Definition: HanMacWrdJParser.cxx:195
MWAWEntry
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:47
libmwaw::PrinterRect::size
MWAWVec2i size() const
returns the size
Definition: MWAWPrinter.hxx:56
HanMacWrdJParser.hxx
HanMacWrdJParser::checkHeader
bool checkHeader(MWAWHeader *header, bool strict=false)
checks if the document header is correct (or not)
Definition: HanMacWrdJParser.cxx:1033
HanMacWrdJParser::init
void init()
inits all internal variables
Definition: HanMacWrdJParser.cxx:171
MWAWTextParser
virtual class which defines the ancestor of all text zone parser
Definition: MWAWParser.hxx:296
HanMacWrdJParser::readZone
bool readZone(MWAWEntry &entry)
try to read a generic zone
Definition: HanMacWrdJParser.cxx:506
HanMacWrdJParser::m_state
shared_ptr< HanMacWrdJParserInternal::State > m_state
the state
Definition: HanMacWrdJParser.hxx:188
HanMacWrdJZoneHeader::m_isMain
bool m_isMain
true if this is the main header
Definition: HanMacWrdJParser.hxx:96
MWAWTextListenerPtr
shared_ptr< MWAWTextListener > MWAWTextListenerPtr
a smart pointer of MWAWTextListener
Definition: libmwaw_internal.hxx:519
libmwaw::PrinterRect::pos
MWAWVec2i pos(int i) const
returns the position ( 0: leftTop, 1:rightBottom )
Definition: MWAWPrinter.hxx:61
MWAWEntry::setName
void setName(std::string const &nam)
sets the name of the entry
Definition: MWAWEntry.hxx:137
MWAWPageSpan::setPageSpan
void setPageSpan(const int pageSpan)
set the page span ( default 1)
Definition: MWAWPageSpan.hxx:262
HanMacWrdJParserInternal::SubDocument::getId
long getId() const
returns the subdocument id
Definition: HanMacWrdJParser.cxx:118
MWAWHeaderFooter::HEADER
@ HEADER
Definition: MWAWPageSpan.hxx:48
MWAW_DEBUG_MSG
#define MWAW_DEBUG_MSG(M)
Definition: libmwaw_internal.hxx:127
MWAWVec2f
MWAWVec2< float > MWAWVec2f
MWAWVec2 of float.
Definition: libmwaw_internal.hxx:785
libmwaw::DebugFile::addDelimiter
void addDelimiter(long pos, char c)
adds a not breaking delimiter in position pos
Definition: MWAWDebug.cxx:73
MWAWPosition::setRelativePosition
void setRelativePosition(AnchorTo anchor, XPos X=XLeft, YPos Y=YTop)
sets the relative position
Definition: MWAWPosition.hxx:221
HanMacWrdJZoneHeader::m_values
int m_values[4]
4 unknown field : freeN?, totalN?, totalN1?, ?
Definition: HanMacWrdJParser.hxx:94
MWAWEntry::isParsed
bool isParsed() const
a flag to know if the entry was parsed or not
Definition: MWAWEntry.hxx:110
MWAWTextListener
This class contents the main functions needed to create a Word processing Document.
Definition: MWAWTextListener.hxx:65
HanMacWrdJGraph
the main class to read the graphic part of a HanMac Word-J file
Definition: HanMacWrdJGraph.hxx:79
libmwaw::PrinterInfo::paper
PrinterRect paper() const
returns the paper rectangle
Definition: MWAWPrinter.cxx:205
libmwaw::DebugFile::open
bool open(std::string const &filename)
opens/creates a file to store a result
Definition: MWAWDebug.cxx:46
MWAWEntry::id
int id() const
returns the id
Definition: MWAWEntry.hxx:153
MWAWPageSpan::setMarginBottom
void setMarginBottom(const double marginBottom)
set the page bottom margin
Definition: MWAWPageSpan.hxx:202
MWAWFontConverter.hxx
MWAWColor
the class to store a color
Definition: libmwaw_internal.hxx:182
HanMacWrdJParserInternal::SubDocument::m_id
long m_id
the subdocument id
Definition: HanMacWrdJParser.cxx:133
HanMacWrdJParser::readZoneB
bool readZoneB(MWAWEntry const &entry)
try to read the zone B
Definition: HanMacWrdJParser.cxx:802
HanMacWrdJParser::newPage
void newPage(int number)
adds a new page
Definition: HanMacWrdJParser.cxx:219
HanMacWrdJZoneHeader::HanMacWrdJZoneHeader
HanMacWrdJZoneHeader(bool isMain)
constructor
Definition: HanMacWrdJParser.hxx:62
MWAWPrinter.hxx
HanMacWrdJParserInternal::State::State
State()
constructor
Definition: HanMacWrdJParser.cxx:68
HanMacWrdJParser::m_textParser
shared_ptr< HanMacWrdJText > m_textParser
the text parser
Definition: HanMacWrdJParser.hxx:194
MWAWPageSpan::setMarginLeft
void setMarginLeft(const double marginLeft)
set the page left margin
Definition: MWAWPageSpan.hxx:187
HanMacWrdJParserInternal::SubDocument::SubDocument
SubDocument(HanMacWrdJParser &pars, MWAWInputStreamPtr input, long zoneId)
Definition: HanMacWrdJParser.cxx:95
HanMacWrdJParser::readClassicHeader
bool readClassicHeader(HanMacWrdJZoneHeader &header, long endPos=-1)
try to read a header of classic zone
Definition: HanMacWrdJParser.cxx:232
MWAWHeaderFooter::m_subDocument
MWAWSubDocumentPtr m_subDocument
the document data
Definition: MWAWPageSpan.hxx:89
libmwaw::PrinterInfo
the AppleŠ printer information : TPrint
Definition: MWAWPrinter.hxx:82
HanMacWrdJParser::createDocument
void createDocument(librevenge::RVNGTextInterface *documentInterface)
creates the listener which will be associated to the document
Definition: HanMacWrdJParser.cxx:291
MWAWEntry::setParsed
void setParsed(bool ok=true) const
sets the flag m_parsed to true or false
Definition: MWAWEntry.hxx:115
MWAWParser::getTextListener
MWAWTextListenerPtr & getTextListener()
returns the text listener
Definition: MWAWParser.hxx:145
HanMacWrdJParser::sendText
bool sendText(long id, long cPos, MWAWListenerPtr listener=MWAWListenerPtr())
send a text zone
Definition: HanMacWrdJParser.cxx:185
libmwaw::DebugFile::addNote
void addNote(char const *note)
adds a note in the file, in actual position
Definition: MWAWDebug.cxx:59
MWAWSubDocument
abstract class used to store a subdocument (with a comparison function)
Definition: MWAWSubDocument.hxx:42
MWAWParser::ascii
libmwaw::DebugFile & ascii()
a DebugFile used to write what we recognize when we parse the document
Definition: MWAWParser.hxx:195
MWAWHeaderFooter
a class which stores the header/footer data
Definition: MWAWPageSpan.hxx:45
MWAWCell.hxx
HanMacWrdJParserInternal::State::m_zonesIdList
std::vector< int > m_zonesIdList
an internal flag, used to know the actual id of a zone
Definition: HanMacWrdJParser.cxx:79
MWAWParser::asciiName
std::string const & asciiName() const
return the ascii file name
Definition: MWAWParser.hxx:232
HanMacWrdJParser::canSendTextAsGraphic
bool canSendTextAsGraphic(long id, long cPos)
check if we can send a textzone as graphic
Definition: HanMacWrdJParser.cxx:190
MWAWSubDocument.hxx
MWAWPageSpan::setFormLength
void setFormLength(const double formLength)
set the total page length
Definition: MWAWPageSpan.hxx:172
HanMacWrdJText
the main class to read the text part of HanMac Word-J file
Definition: HanMacWrdJText.hxx:63
libmwaw::SubDocumentType
SubDocumentType
Definition: libmwaw_internal.hxx:178
HanMacWrdJParserInternal::State::m_numPages
int m_numPages
the number of page of the final document
Definition: HanMacWrdJParser.cxx:81
libmwaw::DebugFile::reset
void reset()
writes the current file and reset to zero
Definition: MWAWDebug.hxx:85
HanMacWrdJParserInternal::State
Internal: the state of a HanMacWrdJParser.
Definition: HanMacWrdJParser.cxx:66
MWAWParser::setTextListener
void setTextListener(MWAWTextListenerPtr &listener)
sets the text listener
Definition: MWAWParser.cxx:146
MWAWParser::setAsciiName
void setAsciiName(char const *name)
Debugging: change the default ascii file.
Definition: MWAWParser.hxx:227
MWAWParagraph.hxx
libmwaw::DebugFile::skipZone
void skipZone(long beginPos, long endPos)
skips the file zone defined by beginPos-endPos
Definition: MWAWDebug.hxx:105
HanMacWrdJParser::getPageLeftTop
MWAWVec2f getPageLeftTop() const
returns the page left top point ( in inches)
Definition: HanMacWrdJParser.cxx:210
HanMacWrdJParser
the main class to read a HanMac Word-J file
Definition: HanMacWrdJParser.hxx:105
HanMacWrdJZoneHeader::m_id
long m_id
the zone id
Definition: HanMacWrdJParser.hxx:92
MWAWVec2::y
T y() const
second element
Definition: libmwaw_internal.hxx:620
MWAWPageSpan::setFormWidth
void setFormWidth(const double formWidth)
set the total page width
Definition: MWAWPageSpan.hxx:177
MWAWPosition.hxx
HanMacWrdJParser::readZonesList
bool readZonesList()
try to read the zones list
Definition: HanMacWrdJParser.cxx:460
MWAWVec2::x
T x() const
first element
Definition: libmwaw_internal.hxx:615
HanMacWrdJParserInternal::SubDocument
Internal: the subdocument of a HanMacWrdJParser.
Definition: HanMacWrdJParser.cxx:93
HanMacWrdJParserInternal::State::m_actPage
int m_actPage
the actual page
Definition: HanMacWrdJParser.cxx:81
MWAWPosition
Class to define the position of an object (textbox, picture, ..) in the document.
Definition: MWAWPosition.hxx:48
MWAWDocument::MWAW_T_HANMACWORDJ
@ MWAW_T_HANMACWORDJ
HanMac Word-J (v2.0.4)
Definition: MWAWDocument.hxx:117
MWAWEntry::name
std::string const & name() const
name of the entry
Definition: MWAWEntry.hxx:142
HanMacWrdJZoneHeader::operator<<
friend std::ostream & operator<<(std::ostream &o, HanMacWrdJZoneHeader const &h)
operator<<
Definition: HanMacWrdJParser.hxx:68
MWAWEntry::setBegin
void setBegin(long off)
sets the begin offset
Definition: MWAWEntry.hxx:56
HanMacWrdJParser::~HanMacWrdJParser
virtual ~HanMacWrdJParser()
destructor
Definition: HanMacWrdJParser.cxx:167
MWAWEntry::length
long length() const
returns the length of the zone
Definition: MWAWEntry.hxx:82
libmwaw::DOC_HEADER_FOOTER
@ DOC_HEADER_FOOTER
Definition: libmwaw_internal.hxx:178
HanMacWrdJParserInternal::State::m_footerHeight
int m_footerHeight
the footer height if known
Definition: HanMacWrdJParser.cxx:83
MWAWListener::PageBreak
@ PageBreak
Definition: MWAWListener.hxx:58
HanMacWrdJParser::readHeaderEnd
bool readHeaderEnd()
try to read a unknown zone, just after the header (simillar to HanMacWrd Zoneb)
Definition: HanMacWrdJParser.cxx:882
MWAWVec2< float >
MWAWPictMac.hxx
libmwaw::ParseException
Definition: libmwaw_internal.hxx:142
MWAWDebug.hxx
MWAWHeader
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:57
MWAWEntry::begin
long begin() const
returns the begin offset
Definition: MWAWEntry.hxx:72
MWAWEntry::setLength
void setLength(long l)
sets the zone size
Definition: MWAWEntry.hxx:61
MWAWParser::getPageSpan
MWAWPageSpan const & getPageSpan() const
returns the actual page dimension
Definition: MWAWParser.hxx:160
HanMacWrdJParserInternal::State::m_headerId
long m_headerId
the header text zone id or 0
Definition: HanMacWrdJParser.cxx:85
HanMacWrdJParser::createZones
bool createZones()
finds the different objects zones in a Hapanese File
Definition: HanMacWrdJParser.cxx:334
HanMacWrdJParser::HanMacWrdJText
friend class HanMacWrdJText
Definition: HanMacWrdJParser.hxx:107
HanMacWrdJParser::HanMacWrdJParser
HanMacWrdJParser(MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header)
constructor
Definition: HanMacWrdJParser.cxx:161
HanMacWrdJParserInternal::SubDocument::operator==
virtual bool operator==(MWAWSubDocument const &doc) const
operator!==
Definition: HanMacWrdJParser.cxx:112
HanMacWrdJParserInternal::State::m_headerHeight
int m_headerHeight
the header height if known
Definition: HanMacWrdJParser.cxx:82
HanMacWrdJParser::readPrintInfo
bool readPrintInfo(MWAWEntry const &entry)
try to read a printinfo zone
Definition: HanMacWrdJParser.cxx:599
MWAWEntry::setId
void setId(int newId)
sets the id
Definition: MWAWEntry.hxx:158
HanMacWrdJParser::parse
void parse(librevenge::RVNGTextInterface *documentInterface)
virtual function used to parse the input
Definition: HanMacWrdJParser.cxx:256
MWAWPageSpan::setMarginTop
void setMarginTop(const double marginTop)
set the page top margin
Definition: MWAWPageSpan.hxx:197
libmwaw::PrinterInfo::read
bool read(MWAWInputStreamPtr input)
reads the struture in a file
Definition: MWAWPrinter.cxx:218
MWAWHeaderFooter::FOOTER
@ FOOTER
Definition: MWAWPageSpan.hxx:48
HanMacWrdJParserInternal
Internal: the structures of a HanMacWrdJParser.
Definition: HanMacWrdJParser.cxx:63
MWAWPosition::Char
@ Char
Definition: MWAWPosition.hxx:51
MWAWParser::getParserState
MWAWParserStatePtr getParserState()
returns the parser state
Definition: MWAWParser.hxx:113
HanMacWrdJParser::m_graphParser
shared_ptr< HanMacWrdJGraph > m_graphParser
the graph parser
Definition: HanMacWrdJParser.hxx:191
MWAWHeader.hxx
MWAWInputStreamPtr
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:503
MWAWEntry::end
long end() const
returns the end offset
Definition: MWAWEntry.hxx:77
HanMacWrdJGraph.hxx
HanMacWrdJZoneHeader::m_n
int m_n
the number of item
Definition: HanMacWrdJParser.hxx:88
MWAWHeaderFooter::ALL
@ ALL
Definition: MWAWPageSpan.hxx:50
HanMacWrdJParserInternal::SubDocument::operator!=
virtual bool operator!=(MWAWSubDocument const &doc) const
operator!=
Definition: HanMacWrdJParser.cxx:102
MWAWList.hxx
HanMacWrdJZoneHeader
a class use to store the classic header find before file zone
Definition: HanMacWrdJParser.hxx:60
MWAWParser::getInput
MWAWInputStreamPtr & getInput()
returns the actual input
Definition: MWAWParser.hxx:123
MWAWTextListener.hxx
HanMacWrdJParser::decodeZone
bool decodeZone(MWAWEntry const &entry, librevenge::RVNGBinaryData &data)
try to decode a zone
Definition: HanMacWrdJParser.cxx:1166
HanMacWrdJParserInternal::State::m_zonesMap
std::map< long, MWAWEntry > m_zonesMap
a map of entry: filepos->zone
Definition: HanMacWrdJParser.cxx:77
HanMacWrdJParser::getColor
bool getColor(int colId, int patternId, MWAWColor &color) const
returns the color associated with a pattern
Definition: HanMacWrdJParser.cxx:202
MWAWSubDocument::m_parser
MWAWParser * m_parser
the main zone parser
Definition: MWAWSubDocument.hxx:75
HanMacWrdJParserInternal::SubDocument::~SubDocument
virtual ~SubDocument()
destructor
Definition: HanMacWrdJParser.cxx:99
HanMacWrdJZoneHeader::m_length
long m_length
the zone size
Definition: HanMacWrdJParser.hxx:86
libmwaw::DebugFile::addPos
void addPos(long pos)
adds a new position in the file
Definition: MWAWDebug.cxx:53
libmwaw::DebugFile::setStream
void setStream(MWAWInputStreamPtr ip)
resets the input
Definition: MWAWDebug.hxx:73
MWAWPageSpan::setMarginRight
void setMarginRight(const double marginRight)
set the page right margin
Definition: MWAWPageSpan.hxx:192
MWAWEntry::valid
bool valid() const
returns true if the zone length is positive
Definition: MWAWEntry.hxx:88
MWAWRSRCParserPtr
shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:513
libmwaw::PrinterInfo::page
PrinterRect page() const
returns the page rectangle
Definition: MWAWPrinter.cxx:201
MWAWPageSpan::setHeaderFooter
void setHeaderFooter(MWAWHeaderFooter const &headerFooter)
add a header/footer on some page
Definition: MWAWPageSpan.cxx:223
HanMacWrdJParserInternal::State::m_footerId
long m_footerId
the footer text zone id or 0
Definition: HanMacWrdJParser.cxx:87
HanMacWrdJParserInternal::SubDocument::setId
void setId(long vid)
sets the subdocument id
Definition: HanMacWrdJParser.cxx:123
libmwaw::DebugFile
an interface used to insert comment in a binary file, written in ascii form (if debug_with_files is n...
Definition: MWAWDebug.hxx:66
HanMacWrdJZoneHeader::m_fieldSize
int m_fieldSize
the field size
Definition: HanMacWrdJParser.hxx:90
MWAWHeader::reset
void reset(MWAWDocument::Type type, int vers, Kind kind=MWAWDocument::MWAW_K_TEXT)
resets the data
Definition: MWAWHeader.hxx:82
HanMacWrdJParserInternal::SubDocument::parse
void parse(MWAWListenerPtr &listener, libmwaw::SubDocumentType type)
the parser function
Definition: HanMacWrdJParser.cxx:136
MWAWFont.hxx
MWAWPageSpan::setMargins
void setMargins(double margin, int wh=libmwaw::LeftBit|libmwaw::RightBit|libmwaw::TopBit|libmwaw::BottomBit)
set all the margins
Definition: MWAWPageSpan.hxx:207
HanMacWrdJParser::checkEntry
bool checkEntry(MWAWEntry &entry)
look in entry.begin() to see if a entry exists at this position, if so fills entry....
Definition: HanMacWrdJParser.cxx:419
HanMacWrdJParser::HanMacWrdJGraph
friend class HanMacWrdJGraph
Definition: HanMacWrdJParser.hxx:106
MWAWVec2i
MWAWVec2< int > MWAWVec2i
MWAWVec2 of int.
Definition: libmwaw_internal.hxx:781
libmwaw::DebugStream
std::stringstream DebugStream
a basic stream (if debug_with_files is not defined, does nothing)
Definition: MWAWDebug.hxx:61
MWAWListenerPtr
shared_ptr< MWAWListener > MWAWListenerPtr
a smart pointer of MWAWListener
Definition: libmwaw_internal.hxx:505
MWAWParser.hxx
HanMacWrdJText.hxx
HanMacWrdJParserInternal::State::m_zonesListBegin
long m_zonesListBegin
the list of zone begin
Definition: HanMacWrdJParser.cxx:75
MWAWSubDocument::m_input
shared_ptr< MWAWInputStream > m_input
the input
Definition: MWAWSubDocument.hxx:77
MWAWPageSpan
A class which defines the page properties.
Definition: MWAWPageSpan.hxx:96
MWAWParser::resetTextListener
void resetTextListener()
resets the listener
Definition: MWAWParser.cxx:151
HanMacWrdJParser::readZoneA
bool readZoneA(MWAWEntry const &entry)
try to read the zone A ( a big zone containing 5 sub zone ? )
Definition: HanMacWrdJParser.cxx:702

Generated on Wed Jun 17 2020 06:30:10 for libmwaw by doxygen 1.8.18