MsWksDRParser.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 MS_WKS_DR_PARSER
35 # define MS_WKS_DR_PARSER
36 
37 #include <vector>
38 
39 #include "MWAWDebug.hxx"
40 #include "MWAWEntry.hxx"
41 #include "MWAWInputStream.hxx"
42 
43 #include "MsWksDocument.hxx"
44 
45 #include "MWAWParser.hxx"
46 
47 namespace MsWksDRParserInternal
48 {
49 struct State;
50 }
51 
52 class MsWksGraph;
53 
59 class MsWksDRParser final : public MWAWGraphicParser
60 {
61 public:
63  MsWksDRParser(MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header);
65  ~MsWksDRParser() final;
66 
68  bool checkHeader(MWAWHeader *header, bool strict=false) final;
69 
70  // the main parse function
71  void parse(librevenge::RVNGDrawingInterface *documentInterface) final;
72 
73 protected:
75  void init();
76 
78  void createDocument(librevenge::RVNGDrawingInterface *documentInterface);
79 
81  bool createZones();
82 
84  void newPage(int number, bool softBreak=false);
85 
86  //
87  // low level
88  //
89 
91  bool readDrawHeader();
92 protected:
93  //
94  // data
95  //
97  std::shared_ptr<MsWksDRParserInternal::State> m_state;
98 
100  std::vector<MWAWEntry> m_listZones;
101 
103  std::shared_ptr<MsWksDocument> m_document;
104 };
105 #endif
106 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
MWAWEntry
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:47
MWAWInputStreamPtr
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:551
MsWksDRParserInternal::State::m_mainZoneId
int m_mainZoneId
the main zone
Definition: MsWksDRParser.cxx:72
MsWksDocument::Zone
a zone of a MsWksDocument ( main, header, footer )
Definition: MsWksDocument.hxx:80
MsWksDRParser::m_listZones
std::vector< MWAWEntry > m_listZones
the list of different Zones
Definition: MsWksDRParser.hxx:100
MsWksDocument
the main class to read/store generic data of a MsWorks document v1-v3
Definition: MsWksDocument.hxx:69
MWAWGraphicListenerPtr
std::shared_ptr< MWAWGraphicListener > MWAWGraphicListenerPtr
a smart pointer of MWAWGraphicListener
Definition: libmwaw_internal.hxx:549
MWAWEntry::setName
void setName(std::string const &nam)
sets the name of the entry
Definition: MWAWEntry.hxx:148
MWAW_DEBUG_MSG
#define MWAW_DEBUG_MSG(M)
Definition: libmwaw_internal.hxx:129
MWAWVec2f
MWAWVec2< float > MWAWVec2f
MWAWVec2 of float.
Definition: libmwaw_internal.hxx:842
MsWksDocument::NewPage
void(MWAWParser::* NewPage)(int page, bool softBreak)
callback used to send a page break
Definition: MsWksDocument.hxx:268
MWAWParser::getGraphicListener
MWAWGraphicListenerPtr & getGraphicListener()
returns the graphic listener
Definition: MWAWParser.hxx:130
MsWksDRParser
the main class to read a Microsoft Works graphic file
Definition: MsWksDRParser.hxx:60
MsWksGraph::SendData::m_page
int m_page
the page ( used if anchor==page)
Definition: MsWksGraph.hxx:126
MsWksGraph::SendData::m_id
int m_id
the rbil id
Definition: MsWksGraph.hxx:122
MsWksGraph.hxx
MsWksDocument::Z_NONE
@ Z_NONE
Definition: MsWksDocument.hxx:78
MWAWEntry.hxx
MWAWFontConverter.hxx
MsWksDRParser::init
void init()
inits all internal variables
Definition: MsWksDRParser.cxx:101
MsWksDRParser::createZones
bool createZones()
finds the different objects zones
Definition: MsWksDRParser.cxx:211
MsWksGraph::SendData::m_anchor
MWAWPosition::AnchorTo m_anchor
the anchor
Definition: MsWksGraph.hxx:124
MWAWParser::version
int version() const
returns the works version
Definition: MWAWParser.hxx:108
MsWksDRParser::m_document
std::shared_ptr< MsWksDocument > m_document
the actual document
Definition: MsWksDRParser.hxx:103
MsWksDRParser::newPage
void newPage(int number, bool softBreak=false)
adds a new page
Definition: MsWksDRParser.cxx:117
MWAWPrinter.hxx
MWAWDocument::MWAW_K_DRAW
@ MWAW_K_DRAW
vectorized grphic
Definition: MWAWDocument.hxx:83
MsWksGraph
the main class to read the graphic of a Microsoft Works file
Definition: MsWksGraph.hxx:74
MsWksDRParser::parse
void parse(librevenge::RVNGDrawingInterface *documentInterface) final
virtual function used to parse the input
Definition: MsWksDRParser.cxx:152
MsWksDRParserInternal::State::State
State()
constructor
Definition: MsWksDRParser.cxx:64
libmwaw::DebugFile::addNote
void addNote(char const *note)
adds a note in the file, in actual position
Definition: MWAWDebug.cxx:59
MsWksDRParserInternal::State
Internal: the state of a MsWksDRParser.
Definition: MsWksDRParser.cxx:62
MsWksDRParser::checkHeader
bool checkHeader(MWAWHeader *header, bool strict=false) final
checks if the document header is correct (or not)
Definition: MsWksDRParser.cxx:375
MWAWParser::asciiName
std::string const & asciiName() const
return the ascii file name
Definition: MWAWParser.hxx:232
MWAWListener::SoftPageBreak
@ SoftPageBreak
Definition: MWAWListener.hxx:58
MWAWSubDocument.hxx
MWAWParser::setAsciiName
void setAsciiName(char const *name)
Debugging: change the default ascii file.
Definition: MWAWParser.hxx:227
MsWks4Zone.hxx
MWAWParser::setGraphicListener
void setGraphicListener(MWAWGraphicListenerPtr &listener)
sets the graphic listener
Definition: MWAWParser.cxx:125
MsWksGraph::SendData::RBIL
@ RBIL
Definition: MsWksGraph.hxx:120
MWAWRSRCParserPtr
std::shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:561
MWAWListener::PageBreak
@ PageBreak
Definition: MWAWListener.hxx:58
MsWksDRParser::createDocument
void createDocument(librevenge::RVNGDrawingInterface *documentInterface)
creates the listener which will be associated to the document
Definition: MsWksDRParser.cxx:186
MWAWGraphicListener.hxx
MWAWPictMac.hxx
libmwaw::ParseException
Definition: libmwaw_internal.hxx:144
MWAWDebug.hxx
MsWksGraph::SendData::RBDR
@ RBDR
Definition: MsWksGraph.hxx:120
MWAWHeader
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:57
MWAWParser::getPageSpan
MWAWPageSpan const & getPageSpan() const
returns the actual page dimension
Definition: MWAWParser.hxx:160
MWAWGraphicParser
virtual class which defines the ancestor of all graphic zone parser
Definition: MWAWParser.hxx:251
MWAWEntry::setId
void setId(int newId)
sets the id
Definition: MWAWEntry.hxx:169
MsWksDRParser::~MsWksDRParser
~MsWksDRParser() final
destructor
Definition: MsWksDRParser.cxx:97
MWAWParser::getParserState
MWAWParserStatePtr getParserState()
returns the parser state
Definition: MWAWParser.hxx:113
MWAWHeader.hxx
Defines MWAWHeader (document's type, version, kind)
MsWksDRParser::m_state
std::shared_ptr< MsWksDRParserInternal::State > m_state
the state
Definition: MsWksDRParser.hxx:97
MsWksDRParserInternal
Internal: the structures of a MsWksDRParser.
Definition: MsWksDRParser.cxx:59
MsWksGraph::SendData
small struct used which picture need to be send
Definition: MsWksGraph.hxx:109
MWAWParser::getInput
MWAWInputStreamPtr & getInput()
returns the actual input
Definition: MWAWParser.hxx:123
MsWksDocument.hxx
MWAWPosition::Page
@ Page
Definition: MWAWPosition.hxx:51
MsWks3Text.hxx
libmwaw::DebugFile::addPos
void addPos(long pos)
adds a new position in the file
Definition: MWAWDebug.cxx:53
MsWksDocument::Z_MAIN
@ Z_MAIN
Definition: MsWksDocument.hxx:78
MsWksDRParser::MsWksDRParser
MsWksDRParser(MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header)
constructor
Definition: MsWksDRParser.cxx:81
MsWksDRParserInternal::State::m_actPage
int m_actPage
the actual page
Definition: MsWksDRParser.cxx:73
libmwaw::DebugFile
an interface used to insert comment in a binary file, written in ascii form (if debug_with_files is n...
Definition: MWAWDebug.hxx:66
MWAWInputStream.hxx
MWAWFont.hxx
MWAWPageSpan::setMargins
void setMargins(double margin, int wh=libmwaw::LeftBit|libmwaw::RightBit|libmwaw::TopBit|libmwaw::BottomBit)
set all the margins
Definition: MWAWPageSpan.hxx:213
MsWksDRParser.hxx
MsWksGraph::SendData::m_type
enum MsWksGraph::SendData::Type m_type
libmwaw::DebugStream
std::stringstream DebugStream
a basic stream (if debug_with_files is not defined, does nothing)
Definition: MWAWDebug.hxx:61
MWAWParser.hxx
MWAWParser::resetGraphicListener
void resetGraphicListener()
resets the listener
Definition: MWAWParser.cxx:130
MsWksDRParserInternal::State::m_numPages
int m_numPages
the number of page of the final document
Definition: MsWksDRParser.cxx:73
MWAWGraphicListener
This class contains the code needed to create Graphic document.
Definition: MWAWGraphicListener.hxx:60
MsWksDRParser::readDrawHeader
bool readDrawHeader()
tries to read the specific draw header
Definition: MsWksDRParser.cxx:291

Generated on Fri Sep 18 2020 18:14:52 for libmwaw by doxygen 1.8.20