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:
bool parsePersistentStorage(MWAWInputStreamPtr input, std::string const &name)
try to read the "PersistentStorage Directory" stream: v7
Definition: PowerPoint3OLE.cxx:287
void checkForUnparsedStream()
check for unparsed stream
Definition: PowerPoint3OLE.cxx:160
void updateMetaData(librevenge::RVNGPropertyList &metaData) const
update the meta data, using information find in SummaryInformation
Definition: PowerPoint3OLE.cxx:102
bool parseCurrentUser(MWAWInputStreamPtr input, std::string const &name)
try to parse the "Current User" stream: v4 and v7
Definition: PowerPoint3OLE.cxx:206
the main class to read the ole stream in a Microsoft PowerPoint v4 files (MacOs and Windows) ...
Definition: PowerPoint3OLE.hxx:50
int version() const
returns the file version
Definition: PowerPoint3OLE.cxx:90
virtual ~PowerPoint3OLE()
destructor
Definition: PowerPoint3OLE.cxx:86
bool parseHeader(MWAWInputStreamPtr input, std::string const &name)
try to read the "Header" stream: v7
Definition: PowerPoint3OLE.cxx:246
bool parse()
Definition: PowerPoint3OLE.cxx:111
PowerPoint3OLE(MWAWInputStreamPtr const &input, int vers, MWAWFontConverterPtr const &fontConverter, int fId)
constructor
Definition: PowerPoint3OLE.cxx:78
Internal: the structures of a PowerPoint3OLE.
Definition: PowerPoint3OLE.cxx:50
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:551
std::shared_ptr< MWAWFontConverter > MWAWFontConverterPtr
a smart pointer of MWAWFontConverter
Definition: libmwaw_internal.hxx:543
std::shared_ptr< PowerPoint3OLEInternal::State > m_state
the state
Definition: PowerPoint3OLE.hxx:97
int getFontEncoding() const
returns the font encoding(or -1)
Definition: PowerPoint3OLE.cxx:95
bool parseCurrentId(MWAWInputStreamPtr input, std::string const &name)
try to parse the "Current Id" stream: v4
Definition: PowerPoint3OLE.cxx:188

Generated for libmwaw by doxygen 1.8.14