PocketWord.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* libwps
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2020 Laurent Alonso (alonso.laurent@gmail.com)
11  *
12  * For minor contributions see the git repository.
13  *
14  * Alternatively, the contents of this file may be used under the terms
15  * of the GNU Lesser General Public License Version 2.1 or later
16  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
17  * applicable instead of those above.
18  *
19  * For further information visit http://libwps.sourceforge.net
20  */
21 
22 #ifndef POCKET_WORD_H
23 #define POCKET_WORD_H
24 
25 #include <memory>
26 #include <vector>
27 
28 #include <librevenge-stream/librevenge-stream.h>
29 #include "libwps_internal.h"
30 #include "libwps_tools_win.h"
31 
32 #include "WPSParser.h"
33 
35 {
36 class SubDocument;
37 
38 struct State;
39 }
40 
46 {
47  friend class PocketWordParserInternal::SubDocument;
48 
49 public:
54  ~PocketWordParser() override;
56  void parse(librevenge::RVNGTextInterface *documentInterface) override;
58  bool checkHeader(WPSHeader *header, bool strict=false);
59 
60 private:
61  PocketWordParser(const PocketWordParser &) = delete;
62  PocketWordParser &operator=(const PocketWordParser &) = delete;
63 
65  std::shared_ptr<WPSContentListener> createListener(librevenge::RVNGTextInterface *interface);
66 
67 protected:
69  bool createZones();
71  bool readFontNames(WPSEntry const &entry);
73  bool readPageDims(WPSEntry const &entry);
75  bool readParagraphList(WPSEntry const &entry, std::vector<int> &paraId);
77  bool readParagraphDims(WPSEntry const &entry);
79  bool readParagraphUnkn(WPSEntry const &entry);
81  bool readSound(WPSEntry const &entry, WPSEmbeddedObject &object);
83  bool readSoundData(WPSEntry const &entry, long pictSize, WPSEmbeddedObject &object);
85  bool readUnkn8(WPSEntry const &entry);
87  bool readUnkn2021(WPSEntry const &entry, int type);
89  bool checkFilePosition(long pos) const;
91  void checkUnparsed();
92 
94  void sendData();
96  bool sendParagraph(size_t paraId);
97 
98  // State
99 
101  std::shared_ptr<WPSContentListener> m_listener;
103  std::shared_ptr<PocketWordParserInternal::State> m_state;
104 };
105 
106 #endif /* POCKET_WORD_H */
107 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
std::shared_ptr< WPSContentListener > m_listener
the listener (if set)
Definition: PocketWord.h:101
This class parses some Pocket Word.
Definition: PocketWord.h:45
Definition: WPSParser.h:35
Type
enum Type
Definition: libwps_tools_win.h:46
Definition: WPSHeader.h:31
Definition: libwps_tools_win.h:63
std::shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition: libwps_internal.h:87
small class use to define a embedded object
Definition: libwps_internal.h:1076
std::shared_ptr< PocketWordParserInternal::State > m_state
the main state
Definition: PocketWord.h:103
basic class to store an entry in a file This contained :
Definition: WPSEntry.h:38
std::shared_ptr< WPSHeader > WPSHeaderPtr
shared pointer to WPSHeader
Definition: libwps_internal.h:109
Definition: PocketWord.cpp:46

Generated on Sat Sep 24 2022 13:47:03 for libwps by doxygen 1.8.13