Main Page
Namespaces
Classes
Files
File List
File Members
WNParser.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
/* libmwaw
3
* Version: MPL 2.0 / LGPLv2+
4
*
5
* The contents of this file are subject to the Mozilla Public License Version
6
* 2.0 (the "License"); you may not use this file except in compliance with
7
* the License or as specified alternatively below. You may obtain a copy of
8
* the License at http://www.mozilla.org/MPL/
9
*
10
* Software distributed under the License is distributed on an "AS IS" basis,
11
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
* for the specific language governing rights and limitations under the
13
* License.
14
*
15
* Major Contributor(s):
16
* Copyright (C) 2002 William Lachance (wrlach@gmail.com)
17
* Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
18
* Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
19
* Copyright (C) 2006, 2007 Andrew Ziem
20
* Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
21
*
22
*
23
* All Rights Reserved.
24
*
25
* For minor contributions see the git repository.
26
*
27
* Alternatively, the contents of this file may be used under the terms of
28
* the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
29
* in which case the provisions of the LGPLv2+ are applicable
30
* instead of those above.
31
*/
32
33
/*
34
* parser for WriteNow 3.0 and 4.0
35
*
36
* Note: WriteNow 2.0 seems very different
37
*/
38
#ifndef WN_PARSER
39
# define WN_PARSER
40
41
#include <list>
42
#include <string>
43
#include <vector>
44
45
#include "
MWAWDebug.hxx
"
46
#include "
MWAWEntry.hxx
"
47
#include "
MWAWInputStream.hxx
"
48
#include "
MWAWPosition.hxx
"
49
50
#include "
MWAWParser.hxx
"
51
52
namespace
WNParserInternal
53
{
54
struct
State;
55
class
SubDocument;
56
}
57
58
struct
WNEntry
;
59
struct
WNEntryManager
;
60
61
class
WNText
;
62
68
class
WNParser
:
public
MWAWParser
69
{
70
friend
class
WNText
;
71
friend
class
WNParserInternal::SubDocument
;
72
73
public
:
75
WNParser
(
MWAWInputStreamPtr
input,
MWAWRSRCParserPtr
rsrcParser,
MWAWHeader
*header);
77
virtual
~WNParser
();
78
80
bool
checkHeader
(
MWAWHeader
*header,
bool
strict=
false
);
81
82
// the main parse function
83
void
parse
(WPXDocumentInterface *documentInterface);
84
85
protected
:
87
void
init
();
88
90
void
createDocument
(WPXDocumentInterface *documentInterface);
91
93
bool
createZones
();
94
96
void
getColumnInfo
(
int
&numColumns,
int
&width)
const
;
97
99
void
newPage
(
int
number);
100
101
/*
102
* interface with WNText
103
*/
105
bool
getColor
(
int
colId,
MWAWColor
&col)
const
;
106
108
void
sendFootnote
(
WNEntry
const
&entry);
109
111
bool
sendGraphic
(
int
gId,
Box2i
const
&bdbox);
112
113
/*
114
* interface with subdocument
115
*/
116
118
void
send
(
WNEntry
const
&entry);
119
120
//
121
// low level
122
//
123
125
bool
readDocEntries
();
126
128
bool
readDocEntriesV2
();
129
133
bool
parseGraphicZone
(
WNEntry
const
&entry);
134
136
bool
readColorMap
(
WNEntry
const
&entry);
137
139
bool
readPrintInfo
(
WNEntry
const
&entry);
140
142
bool
readGenericUnkn
(
WNEntry
const
&entry);
143
145
bool
sendPicture
(
WNEntry
const
&entry,
Box2i
const
&bdbox);
146
148
WNEntry
readEntry
();
149
151
bool
checkIfPositionValid
(
long
pos);
152
153
protected
:
154
//
155
// data
156
//
158
shared_ptr<WNParserInternal::State>
m_state
;
159
161
shared_ptr<WNEntryManager>
m_entryManager
;
162
164
shared_ptr<WNText>
m_textParser
;
165
};
166
#endif
167
// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
Generated on Mon Jul 1 2013 23:57:59 for libmwaw by
doxygen
1.8.4