Main Page
Namespaces
Classes
Files
File List
File Members
MWAWParser.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
#ifndef MWAW_PARSER_H
35
#define MWAW_PARSER_H
36
37
#include <ostream>
38
#include <string>
39
#include <vector>
40
41
#include "
MWAWDebug.hxx
"
42
#include "
MWAWInputStream.hxx
"
43
44
#include "
MWAWEntry.hxx
"
45
#include "
MWAWHeader.hxx
"
46
#include "
MWAWPageSpan.hxx
"
47
48
class
WPXDocumentInterface;
49
50
class
MWAWContentListener
;
51
typedef
shared_ptr<MWAWContentListener>
MWAWContentListenerPtr
;
52
class
MWAWFontConverter
;
53
typedef
shared_ptr<MWAWFontConverter>
MWAWFontConverterPtr
;
54
class
MWAWListManager
;
55
typedef
shared_ptr<MWAWListManager>
MWAWListManagerPtr
;
56
class
MWAWRSRCParser
;
57
typedef
shared_ptr<MWAWRSRCParser>
MWAWRSRCParserPtr
;
58
60
class
MWAWParserState
61
{
62
public
:
63
// Constructor
64
MWAWParserState
(
MWAWInputStreamPtr
input,
MWAWRSRCParserPtr
rsrcParser,
MWAWHeader
*header);
66
~MWAWParserState
();
67
69
int
m_version
;
71
MWAWInputStreamPtr
m_input
;
73
MWAWHeader
*
m_header
;
75
MWAWRSRCParserPtr
m_rsrcParser
;
76
78
MWAWFontConverterPtr
m_fontConverter
;
80
MWAWListManagerPtr
m_listManager
;
82
MWAWContentListenerPtr
m_listener
;
83
85
libmwaw::DebugFile
m_asciiFile
;
86
87
private
:
88
MWAWParserState
(
MWAWParserState
const
&orig);
89
MWAWParserState
&
operator=
(
MWAWParserState
const
&orig);
90
};
91
92
typedef
shared_ptr<MWAWParserState>
MWAWParserStatePtr
;
93
98
class
MWAWParser
99
{
100
public
:
102
virtual
~MWAWParser
();
104
virtual
void
parse
(WPXDocumentInterface *documentInterface) = 0;
106
virtual
bool
checkHeader
(
MWAWHeader
*header,
bool
strict=
false
) = 0;
107
109
int
version
()
const
{
110
return
m_parserState
->m_version;
111
}
113
void
setVersion
(
int
vers) {
114
m_parserState
->m_version = vers;
115
}
116
117
protected
:
119
MWAWParser
(
MWAWInputStreamPtr
input,
MWAWRSRCParserPtr
rsrcParser,
MWAWHeader
*header);
121
MWAWParser
(
MWAWParserStatePtr
state) :
m_parserState
(state),
m_pageSpan
(),
m_asciiName
(
""
) { }
122
124
MWAWParserStatePtr
getParserState
() {
125
return
m_parserState
;
126
}
128
MWAWHeader
*
getHeader
() {
129
return
m_parserState
->m_header;
130
}
132
MWAWInputStreamPtr
&
getInput
() {
133
return
m_parserState
->m_input;
134
}
136
MWAWContentListenerPtr
&
getListener
() {
137
return
m_parserState
->m_listener;
138
}
140
MWAWPageSpan
const
&
getPageSpan
()
const
{
141
return
m_pageSpan
;
142
}
144
MWAWPageSpan
&
getPageSpan
() {
145
return
m_pageSpan
;
146
}
148
double
getFormLength
()
const
{
149
return
m_pageSpan
.
getFormLength
();
150
}
152
double
getFormWidth
()
const
{
153
return
m_pageSpan
.
getFormWidth
();
154
}
156
double
getPageLength
()
const
{
157
return
m_pageSpan
.
getPageLength
();
158
}
160
double
getPageWidth
()
const
{
161
return
m_pageSpan
.
getPageWidth
();
162
}
164
MWAWRSRCParserPtr
&
getRSRCParser
() {
165
return
m_parserState
->m_rsrcParser;
166
}
168
void
setListener
(
MWAWContentListenerPtr
&listener);
170
void
resetListener
();
172
MWAWFontConverterPtr
&
getFontConverter
() {
173
return
m_parserState
->m_fontConverter;
174
}
176
void
setFontConverter
(
MWAWFontConverterPtr
fontConverter);
178
libmwaw::DebugFile
&
ascii
() {
179
return
m_parserState
->m_asciiFile;
180
}
182
void
setAsciiName
(
char
const
*name) {
183
m_asciiName
= name;
184
}
186
std::string
const
&
asciiName
()
const
{
187
return
m_asciiName
;
188
}
189
190
private
:
192
MWAWParser
(
const
MWAWParser
&);
194
MWAWParser
&
operator=
(
const
MWAWParser
&);
195
197
MWAWParserStatePtr
m_parserState
;
199
MWAWPageSpan
m_pageSpan
;
201
std::string
m_asciiName
;
202
};
203
204
#endif
/* MWAWPARSER_H */
205
// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
Generated on Wed May 22 2013 18:12:38 for libmwaw by
doxygen
1.8.1.2