StarObjectModel.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 /* libstaroffice
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 /*
35  * Parser to convert a SdrModel zone/OLE in a StarOffice document
36  *
37  */
38 #ifndef STAR_OBJECT_MODEL
39 # define STAR_OBJECT_MODEL
40 
41 #include <ostream>
42 #include <vector>
43 
45 #include "StarObject.hxx"
46 
48 {
49 class Layer;
50 class LayerSet;
51 class Page;
52 struct State;
53 }
54 
55 class StarZone;
56 
63 {
64 public:
66  StarObjectModel(StarObject const &orig, bool duplicateState);
68  ~StarObjectModel() override;
70  bool read(StarZone &zone);
71 
73  bool updatePageSpans(std::vector<STOFFPageSpan> &pageSpan, int &numPages) const;
77  bool sendPages(STOFFListenerPtr listener);
79  bool sendPage(int pageId, STOFFListenerPtr listener, bool masterPage=false);
81  friend std::ostream &operator<<(std::ostream &o, StarObjectModel const &model);
82 protected:
83  //
84  // low level
85  //
91  std::shared_ptr<StarObjectModelInternal::Page> readSdrPage(StarZone &zone);
92  /* try to read a Master Page descriptor zone: "DrMP' and add it the master page descriptor */
94  /* try to read a list of Master Page zone: "DrML' and add them in the master page descriptors */
97  bool readSdrPageUnknownZone1(StarZone &zone, long lastPos);
98 
99 
100 protected:
101  //
102  // data
103  //
104 
106  std::shared_ptr<StarObjectModelInternal::State> m_modelState;
107 private:
108  StarObjectModel &operator=(StarObjectModel const &orig) = delete;
109 };
110 #endif
111 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
friend std::ostream & operator<<(std::ostream &o, StarObjectModel const &model)
small operator<< to print the content of the model
Definition: StarObjectModel.cxx:345
StarObjectModel & operator=(StarObjectModel const &orig)=delete
std::shared_ptr< StarObjectModelInternal::State > m_modelState
the state
Definition: StarObjectModel.hxx:106
Internal: class used to store a page and its data.
Definition: StarObjectModel.cxx:136
Internal: class used to store a layer set and its data.
Definition: StarObjectModel.cxx:100
bool read(StarZone &zone)
try to read a SdrModel zone: "DrMd"
Definition: StarObjectModel.cxx:452
the main class to read a SdrModel zone
Definition: StarObjectModel.hxx:62
bool sendPages(STOFFListenerPtr listener)
try to send the different page
Definition: StarObjectModel.cxx:382
bool readSdrLayerSet(StarZone &zone, StarObjectModelInternal::LayerSet &layers)
try to read a SdrLayerSet zone: "DrLS&#39;
Definition: StarObjectModel.cxx:784
bool updatePageSpans(std::vector< STOFFPageSpan > &pageSpan, int &numPages) const
try to update the page span (to create draw document)
Definition: StarObjectModel.cxx:354
bool sendPage(int pageId, STOFFListenerPtr listener, bool masterPage=false)
try to send a page content
Definition: StarObjectModel.cxx:424
Internal: the structures of a StarObjectModel.
Definition: StarObjectModel.cxx:57
std::shared_ptr< StarObjectModelInternal::Page > readSdrPage(StarZone &zone)
try to read a Page/MasterPage zone: "DrPg&#39;
Definition: StarObjectModel.cxx:839
bool readSdrLayer(StarZone &zone, StarObjectModelInternal::Layer &layer)
try to read a SdrLayer zone: "DrLy&#39;
Definition: StarObjectModel.cxx:732
std::shared_ptr< STOFFGraphicListener > STOFFGraphicListenerPtr
a smart pointer of STOFFGraphicListener
Definition: libstaroffice_internal.hxx:480
~StarObjectModel() override
destructor
Definition: StarObjectModel.cxx:341
bool readSdrMPageDescList(StarZone &zone, StarObjectModelInternal::Page &page)
Definition: StarObjectModel.cxx:1218
Internal: class used to store a layer and its data.
Definition: StarObjectModel.cxx:73
StarObjectModel(StarObject const &orig, bool duplicateState)
constructor
Definition: StarObjectModel.cxx:335
std::shared_ptr< STOFFListener > STOFFListenerPtr
a smart pointer of STOFFListener
Definition: libstaroffice_internal.hxx:486
bool readSdrPageUnknownZone1(StarZone &zone, long lastPos)
try to read a zone which appear at end of a zone: "DrPg&#39;
Definition: StarObjectModel.cxx:1114
an object corresponding to an OLE directory
Definition: StarObject.hxx:64
a zone in a StarOffice file
Definition: StarZone.hxx:56
bool readSdrMPageDesc(StarZone &zone, StarObjectModelInternal::Page &page)
Definition: StarObjectModel.cxx:1180
bool sendMasterPages(STOFFGraphicListenerPtr listener)
try to send the master pages
Definition: StarObjectModel.cxx:399

Generated on Tue May 8 2018 19:52:07 for libstaroffice by doxygen 1.8.14