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
51
class
MWAWParserState
52
{
53
public
:
54
// Constructor
55
MWAWParserState
(
MWAWInputStreamPtr
input,
MWAWRSRCParserPtr
rsrcParser,
MWAWHeader
*header);
57
~MWAWParserState
();
58
60
int
m_version
;
62
MWAWInputStreamPtr
m_input
;
64
MWAWHeader
*
m_header
;
66
MWAWRSRCParserPtr
m_rsrcParser
;
67
69
MWAWFontConverterPtr
m_fontConverter
;
71
MWAWGraphicListenerPtr
m_graphicListener
;
73
MWAWListManagerPtr
m_listManager
;
75
MWAWContentListenerPtr
m_listener
;
76
78
libmwaw::DebugFile
m_asciiFile
;
79
80
private
:
81
MWAWParserState
(
MWAWParserState
const
&orig);
82
MWAWParserState
&
operator=
(
MWAWParserState
const
&orig);
83
};
84
89
class
MWAWParser
90
{
91
public
:
93
virtual
~MWAWParser
();
95
virtual
void
parse
(WPXDocumentInterface *documentInterface) = 0;
97
virtual
bool
checkHeader
(
MWAWHeader
*header,
bool
strict=
false
) = 0;
98
100
int
version
()
const
{
101
return
m_parserState
->m_version;
102
}
104
void
setVersion
(
int
vers) {
105
m_parserState
->m_version = vers;
106
}
107
108
protected
:
110
MWAWParser
(
MWAWInputStreamPtr
input,
MWAWRSRCParserPtr
rsrcParser,
MWAWHeader
*header);
112
MWAWParser
(
MWAWParserStatePtr
state) :
m_parserState
(state),
m_pageSpan
(),
m_asciiName
(
""
) { }
113
115
MWAWParserStatePtr
getParserState
() {
116
return
m_parserState
;
117
}
119
MWAWHeader
*
getHeader
() {
120
return
m_parserState
->m_header;
121
}
123
MWAWInputStreamPtr
&
getInput
() {
124
return
m_parserState
->m_input;
125
}
127
MWAWGraphicListenerPtr
&
getGraphicListener
() {
128
return
m_parserState
->m_graphicListener;
129
}
131
MWAWContentListenerPtr
&
getListener
() {
132
return
m_parserState
->m_listener;
133
}
135
MWAWPageSpan
const
&
getPageSpan
()
const
{
136
return
m_pageSpan
;
137
}
139
MWAWPageSpan
&
getPageSpan
() {
140
return
m_pageSpan
;
141
}
143
double
getFormLength
()
const
{
144
return
m_pageSpan
.
getFormLength
();
145
}
147
double
getFormWidth
()
const
{
148
return
m_pageSpan
.
getFormWidth
();
149
}
151
double
getPageLength
()
const
{
152
return
m_pageSpan
.
getPageLength
();
153
}
155
double
getPageWidth
()
const
{
156
return
m_pageSpan
.
getPageWidth
();
157
}
159
MWAWRSRCParserPtr
&
getRSRCParser
() {
160
return
m_parserState
->m_rsrcParser;
161
}
163
void
setListener
(
MWAWContentListenerPtr
&listener);
165
void
resetListener
();
167
MWAWFontConverterPtr
&
getFontConverter
() {
168
return
m_parserState
->m_fontConverter;
169
}
171
void
setFontConverter
(
MWAWFontConverterPtr
fontConverter);
173
libmwaw::DebugFile
&
ascii
() {
174
return
m_parserState
->m_asciiFile;
175
}
177
void
setAsciiName
(
char
const
*name) {
178
m_asciiName
= name;
179
}
181
std::string
const
&
asciiName
()
const
{
182
return
m_asciiName
;
183
}
184
185
private
:
187
MWAWParser
(
const
MWAWParser
&);
189
MWAWParser
&
operator=
(
const
MWAWParser
&);
190
192
MWAWParserStatePtr
m_parserState
;
194
MWAWPageSpan
m_pageSpan
;
196
std::string
m_asciiName
;
197
};
198
199
#endif
/* MWAWPARSER_H */
200
// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
Generated on Tue May 6 2014 09:50:49 for libmwaw by
doxygen
1.8.3.1