HMWJText.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 HanMac Word-J text document
36  *
37  */
38 #ifndef HMWJ_TEXT
39 # define HMWJ_TEXT
40 
41 #include <map>
42 #include <vector>
43 
44 #include "libmwaw_internal.hxx"
45 #include "MWAWDebug.hxx"
46 
47 namespace HMWJTextInternal
48 {
49 struct Paragraph;
50 class SubDocument;
51 struct TextZone;
52 struct State;
53 }
54 
55 class HMWJParser;
56 
62 class HMWJText
63 {
65  friend class HMWJParser;
66 public:
68  HMWJText(HMWJParser &parser);
70  virtual ~HMWJText();
71 
73  int version() const;
74 
76  int numPages() const;
77 
78 protected:
80  bool sendMainText();
82  bool sendText(long id, long cPos);
84  bool sendText(HMWJTextInternal::TextZone const &zone, long cPos=0);
86  void flushExtra();
87 
91  std::vector<long> getTokenIdList() const;
93  void updateTextZoneTypes(std::map<long,int> const &idTypeMap);
95  void updateFootnoteInformations(long const &textZId, std::vector<long> const &fPosList);
96 
97  //
98  // intermediate level
99  //
100 
102  bool readFontNames(MWAWEntry const &entry);
104  bool readFonts(MWAWEntry const &entry);
106  bool readFont(MWAWFont &font, long endPos=-1);
108  bool readParagraphs(MWAWEntry const &entry);
110  bool readParagraph(HMWJTextInternal::Paragraph &para, long endPos=-1);
112  bool readStyles(MWAWEntry const &entry);
114  bool readTextZonesList(MWAWEntry const &entry);
116  bool readTextZone(MWAWEntry const &entry, int actZone);
118  bool readTextToken(long endPos, HMWJTextInternal::TextZone &zone);
120  bool readSections(MWAWEntry const &entry);
122  bool readFtnPos(MWAWEntry const &entry);
123 
124  //
125  // low level
126  //
127 
128 private:
129  HMWJText(HMWJText const &orig);
130  HMWJText &operator=(HMWJText const &orig);
131 
132 protected:
133  //
134  // data
135  //
138 
140  shared_ptr<HMWJTextInternal::State> m_state;
141 
144 };
145 #endif
146 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
bool readFtnPos(MWAWEntry const &entry)
try to read the footnote position
Definition: HMWJText.cxx:2163
bool readFontNames(MWAWEntry const &entry)
try to read the fonts name zone (type 15)
Definition: HMWJText.cxx:1528
shared_ptr< HMWJTextInternal::State > m_state
the state
Definition: HMWJText.hxx:140
void updateTextZoneTypes(std::map< long, int > const &idTypeMap)
update the text zone type with map id-&gt;type
Definition: HMWJText.cxx:782
bool readTextZonesList(MWAWEntry const &entry)
try to read the list of textzones ( type 4)
Definition: HMWJText.cxx:805
bool readTextZone(MWAWEntry const &entry, int actZone)
try to read a text zone ( type 5 )
Definition: HMWJText.cxx:953
HMWJParser * m_mainParser
the main parser;
Definition: HMWJText.hxx:143
bool readParagraphs(MWAWEntry const &entry)
try to read the paragraphs zone (type 1)
Definition: HMWJText.cxx:1973
HMWJText & operator=(HMWJText const &orig)
int numPages() const
returns the number of pages
Definition: HMWJText.cxx:392
bool sendMainText()
send the main text zone
Definition: HMWJText.cxx:438
MWAWParserStatePtr m_parserState
the parser state
Definition: HMWJText.hxx:137
void updateFootnoteInformations(long const &textZId, std::vector< long > const &fPosList)
update the footnote text zone id and the list of first char position
Definition: HMWJText.cxx:799
Internal: a struct used to store a text zone.
Definition: HMWJText.cxx:207
bool readFonts(MWAWEntry const &entry)
try to read the fonts zone (type 0)
Definition: HMWJText.cxx:1445
Internal: class to store the paragraph properties of a HMWJText.
Definition: HMWJText.cxx:233
std::vector< long > getTokenIdList() const
returns the list of zoneId which corresponds to the token
Definition: HMWJText.cxx:405
int computeNumPages(HMWJTextInternal::TextZone const &zone)
compute the number of pages present in a zone
Definition: HMWJText.cxx:729
HMWJText(HMWJParser &parser)
constructor
Definition: HMWJText.cxx:376
void flushExtra()
sends the data which have not yet been sent to the listener
Definition: HMWJText.cxx:2256
bool readSections(MWAWEntry const &entry)
try to read the different sections
Definition: HMWJText.cxx:2054
virtual ~HMWJText()
destructor
Definition: HMWJText.cxx:381
bool readParagraph(HMWJTextInternal::Paragraph &para, long endPos=-1)
try to read a paragraph ( reading up to endPos if endPos is defined )
Definition: HMWJText.cxx:1751
the main class to read a HanMac Word-J file
Definition: HMWJParser.hxx:102
int version() const
returns the file version
Definition: HMWJText.cxx:385
Internal: the subdocument of a HMWJText.
Definition: HMWJText.cxx:296
bool readTextToken(long endPos, HMWJTextInternal::TextZone &zone)
try to read the token in the text zone
Definition: HMWJText.cxx:1208
shared_ptr< MWAWParserState > MWAWParserStatePtr
a smart pointer of MWAWParserState
Definition: libmwaw_internal.hxx:342
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:46
bool sendText(long id, long cPos)
send a text zone (not implemented)
Definition: HMWJText.cxx:426
bool readStyles(MWAWEntry const &entry)
try to read the style zone (type 2)
Definition: HMWJText.cxx:1607
the main class to read the text part of HanMac Word-J file
Definition: HMWJText.hxx:62
bool readFont(MWAWFont &font, long endPos=-1)
try to read the font ( reading up to endPos if endPos is defined )
Definition: HMWJText.cxx:1316

Generated on Fri May 2 2014 17:42:21 for libmwaw by doxygen 1.8.5