WriteNowText.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 WriteNow text document
36  *
37  */
38 #ifndef WRITE_NOW_TEXT
39 # define WRITE_NOW_TEXT
40 
41 #include <list>
42 #include <string>
43 #include <vector>
44 
45 #include "libmwaw_internal.hxx"
46 
47 #include "MWAWEntry.hxx"
48 #include "MWAWSubDocument.hxx"
49 
50 #include "MWAWDebug.hxx"
51 #include "MWAWInputStream.hxx"
52 
53 #include "MWAWParser.hxx"
54 
55 namespace WriteNowTextInternal
56 {
57 struct ContentZone;
58 struct ContentZones;
59 
60 struct Font;
61 struct Paragraph;
62 
63 struct TableData;
64 struct Token;
65 
66 struct Cell;
67 
68 struct State;
69 }
70 
71 struct WriteNowEntry;
73 
74 class WriteNowParser;
75 
82 {
83  friend class WriteNowParser;
85 public:
87  explicit WriteNowText(WriteNowParser &parser);
89  virtual ~WriteNowText();
90 
92  int version() const;
93 
95  int numPages() const;
96 
98  WriteNowEntry getHeader() const;
99 
101  WriteNowEntry getFooter() const;
102 
103 protected:
105  bool createZones();
106 
108  void flushExtra();
109 
112  bool parseZone(WriteNowEntry const &entry, std::vector<WriteNowEntry> &listData);
113 
115  std::shared_ptr<WriteNowTextInternal::ContentZones> parseContent(WriteNowEntry const &entry);
116 
120  void sendZone(int id);
121 
123  bool send(WriteNowEntry const &entry);
124 
126  bool send(std::vector<WriteNowTextInternal::ContentZone> &listZones,
127  std::vector<std::shared_ptr<WriteNowTextInternal::ContentZones> > &footnoteList,
129 
131  void setProperty(WriteNowTextInternal::Paragraph const &ruler);
132 
133  //
134  // low level
135  //
136 
138  bool readFontNames(WriteNowEntry const &entry);
139 
141  bool readFont(MWAWInputStream &input, bool inStyle, WriteNowTextInternal::Font &font);
142 
144  bool readParagraph(MWAWInputStream &input, WriteNowTextInternal::Paragraph &ruler);
145 
147  bool readToken(MWAWInputStream &input, WriteNowTextInternal::Token &token);
148 
150  bool readTokenV2(MWAWInputStream &input, WriteNowTextInternal::Token &token);
151 
153  bool readTable(MWAWInputStream &input, WriteNowTextInternal::TableData &table);
154 
156  bool readStyles(WriteNowEntry const &entry);
157 
158 private:
159  WriteNowText(WriteNowText const &orig) = delete;
160  WriteNowText &operator=(WriteNowText const &orig) = delete;
161 
162 protected:
163  //
164  // data
165  //
168 
170  std::shared_ptr<WriteNowTextInternal::State> m_state;
171 
173  std::shared_ptr<WriteNowEntryManager> m_entryManager;
174 
177 };
178 #endif
179 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
std::shared_ptr< MWAWParserState > MWAWParserStatePtr
a smart pointer of MWAWParserState
Definition: libmwaw_internal.hxx:553
the main class to read the text part of writenow file
Definition: WriteNowText.hxx:81
class to store entry in a WriteNow document
Definition: WriteNowEntry.hxx:48
the manager of the entries
Definition: WriteNowEntry.hxx:103
virtual bool send(MWAWListenerPtr listener, MWAWTable &table)
function called when a cell is send by MWAWTable to send a cell to a listener.
Definition: MWAWCell.cxx:487
Internal class used to read the file stream Internal class used to read the file stream, this class adds some usefull functions to the basic librevenge::RVNGInputStream:
Definition: MWAWInputStream.hxx:53
std::shared_ptr< WriteNowEntryManager > m_entryManager
the list of entry
Definition: WriteNowText.hxx:173
WriteNowParser * m_mainParser
the main parser;
Definition: WriteNowText.hxx:176
Internal: the cell of a WriteNowText.
Definition: WriteNowText.cxx:494
Internal: the fonts.
Definition: WriteNowText.cxx:62
Internal: the table of a WriteNowText.
Definition: WriteNowText.cxx:213
Internal: the structures of a WriteNowText.
Definition: WriteNowText.cxx:58
Internal: class to store the paragraph properties.
Definition: WriteNowText.cxx:93
Internal: the token of a WriteNowText.
Definition: WriteNowText.cxx:165
std::shared_ptr< WriteNowTextInternal::State > m_state
the state
Definition: WriteNowText.hxx:170
the main class to read a WriteNow file
Definition: WriteNowParser.hxx:68
MWAWParserStatePtr m_parserState
the parser state
Definition: WriteNowText.hxx:167
MWAWHeader * getHeader(MWAWInputStreamPtr &input, MWAWRSRCParserPtr const &rsrcParser, bool strict)
return the header corresponding to an input.
Definition: MWAWDocument.cxx:437

Generated on Tue Apr 24 2018 17:03:57 for libmwaw by doxygen 1.8.13