PowerPoint3OLE.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 POWER_POINT3_OLE
35 # define POWER_POINT3_OLE
36 
37 #include <string>
38 
39 #include "MWAWInputStream.hxx"
40 
41 #include "MWAWParser.hxx"
42 
43 namespace PowerPoint3OLEInternal
44 {
45 struct State;
46 }
47 
51 {
52 public:
54  PowerPoint3OLE(MWAWInputStreamPtr const &input, int vers, MWAWFontConverterPtr const &fontConverter, int fId);
56  virtual ~PowerPoint3OLE();
57 
58  // the main parse function
59  bool parse();
61  void updateMetaData(librevenge::RVNGPropertyList &metaData) const;
63  int getFontEncoding() const;
66 
67 protected:
68  //
69  // internal level
70  //
71 
73  bool parseCurrentUser(MWAWInputStreamPtr input, std::string const &name);
75  bool parseCurrentId(MWAWInputStreamPtr input, std::string const &name);
76 
78  bool parseHeader(MWAWInputStreamPtr input, std::string const &name);
80  bool parsePersistentStorage(MWAWInputStreamPtr input, std::string const &name);
81 
82  //
83  // send data
84  //
85 
86  //
87  // low level
88  //
89 
91  int version() const;
92 protected:
93  //
94  // data
95  //
97  std::shared_ptr<PowerPoint3OLEInternal::State> m_state;
98 };
99 #endif
100 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
PowerPoint3OLE::updateMetaData
void updateMetaData(librevenge::RVNGPropertyList &metaData) const
update the meta data, using information find in SummaryInformation
Definition: PowerPoint3OLE.cxx:102
MWAWInputStreamPtr
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:551
PowerPoint3OLE::parsePersistentStorage
bool parsePersistentStorage(MWAWInputStreamPtr input, std::string const &name)
try to read the "PersistentStorage Directory" stream: v7
Definition: PowerPoint3OLE.cxx:287
PowerPoint3OLE::parseCurrentUser
bool parseCurrentUser(MWAWInputStreamPtr input, std::string const &name)
try to parse the "Current User" stream: v4 and v7
Definition: PowerPoint3OLE.cxx:206
MWAWFontConverterPtr
std::shared_ptr< MWAWFontConverter > MWAWFontConverterPtr
a smart pointer of MWAWFontConverter
Definition: libmwaw_internal.hxx:543
MWAW_DEBUG_MSG
#define MWAW_DEBUG_MSG(M)
Definition: libmwaw_internal.hxx:129
libmwaw::DebugFile::addDelimiter
void addDelimiter(long pos, char c)
adds a not breaking delimiter in position pos
Definition: MWAWDebug.cxx:73
PowerPoint3OLE::version
int version() const
returns the file version
Definition: PowerPoint3OLE.cxx:90
libmwaw::DebugFile::open
bool open(std::string const &filename)
opens/creates a file to store a result
Definition: MWAWDebug.cxx:46
MWAWEntry.hxx
PowerPoint3OLEInternal::State
Internal: the state of a PowerPoint3OLE.
Definition: PowerPoint3OLE.cxx:54
MWAWOLEParser
a class used to parse some basic oles Tries to read the different ole parts and stores their contents...
Definition: MWAWOLEParser.hxx:86
libmwaw::DebugFile::addNote
void addNote(char const *note)
adds a note in the file, in actual position
Definition: MWAWDebug.cxx:59
PowerPoint3OLE::checkForUnparsedStream
void checkForUnparsedStream()
check for unparsed stream
Definition: PowerPoint3OLE.cxx:160
PowerPoint3OLE::~PowerPoint3OLE
virtual ~PowerPoint3OLE()
destructor
Definition: PowerPoint3OLE.cxx:86
PowerPoint3OLE::PowerPoint3OLE
PowerPoint3OLE(MWAWInputStreamPtr const &input, int vers, MWAWFontConverterPtr const &fontConverter, int fId)
constructor
Definition: PowerPoint3OLE.cxx:78
MWAWOLEParser.hxx
PowerPoint3OLEInternal::State::m_version
int m_version
the version
Definition: PowerPoint3OLE.cxx:66
PowerPoint3OLE::getFontEncoding
int getFontEncoding() const
returns the font encoding(or -1)
Definition: PowerPoint3OLE.cxx:95
MWAWDebug.hxx
PowerPoint3OLE::parseHeader
bool parseHeader(MWAWInputStreamPtr input, std::string const &name)
try to read the "Header" stream: v7
Definition: PowerPoint3OLE.cxx:246
PowerPoint3OLE::parse
bool parse()
Definition: PowerPoint3OLE.cxx:111
PowerPoint3OLEInternal::State::m_input
MWAWInputStreamPtr m_input
the input
Definition: PowerPoint3OLE.cxx:64
PowerPoint3OLEInternal::State::State
State(MWAWInputStreamPtr input, int vers)
constructor
Definition: PowerPoint3OLE.cxx:56
PowerPoint3OLE::m_state
std::shared_ptr< PowerPoint3OLEInternal::State > m_state
the state
Definition: PowerPoint3OLE.hxx:97
libmwaw::DebugFile::addPos
void addPos(long pos)
adds a new position in the file
Definition: MWAWDebug.cxx:53
PowerPoint3OLEInternal::State::m_unparsedNameSet
std::set< std::string > m_unparsedNameSet
the list of unparsed zone
Definition: PowerPoint3OLE.cxx:70
PowerPoint3OLEInternal
Internal: the structures of a PowerPoint3OLE.
Definition: PowerPoint3OLE.cxx:51
PowerPoint3OLE.hxx
PowerPoint3OLE
the main class to read the ole stream in a Microsoft PowerPoint v4 files (MacOs and Windows)
Definition: PowerPoint3OLE.hxx:51
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
PowerPoint3OLE::parseCurrentId
bool parseCurrentId(MWAWInputStreamPtr input, std::string const &name)
try to parse the "Current Id" stream: v4
Definition: PowerPoint3OLE.cxx:188
libmwaw::DebugStream
std::stringstream DebugStream
a basic stream (if debug_with_files is not defined, does nothing)
Definition: MWAWDebug.hxx:61
MWAWParser.hxx
PowerPoint3OLEInternal::State::m_oleParser
std::shared_ptr< MWAWOLEParser > m_oleParser
the ole parser
Definition: PowerPoint3OLE.cxx:68

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