Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef STAR_OBJECT_MODEL
00039 # define STAR_OBJECT_MODEL
00040
00041 #include <ostream>
00042 #include <vector>
00043
00044 #include "libstaroffice_internal.hxx"
00045 #include "StarObject.hxx"
00046
00047 namespace StarObjectModelInternal
00048 {
00049 class Layer;
00050 class LayerSet;
00051 class Page;
00052 struct State;
00053 }
00054
00055 class StarZone;
00056
00062 class StarObjectModel : public StarObject
00063 {
00064 public:
00066 StarObjectModel(StarObject const &orig, bool duplicateState);
00068 virtual ~StarObjectModel();
00070 bool read(StarZone &zone);
00071
00073 bool updatePageSpans(std::vector<STOFFPageSpan> &pageSpan, int &numPages) const;
00075 bool sendMasterPages(STOFFGraphicListenerPtr listener);
00077 bool sendPages(STOFFListenerPtr listener);
00079 bool sendPage(int pageId, STOFFListenerPtr listener, bool masterPage=false);
00081 friend std::ostream &operator<<(std::ostream &o, StarObjectModel const &model);
00082 protected:
00083
00084
00085
00087 bool readSdrLayer(StarZone &zone, StarObjectModelInternal::Layer &layer);
00089 bool readSdrLayerSet(StarZone &zone, StarObjectModelInternal::LayerSet &layers);
00091 shared_ptr<StarObjectModelInternal::Page> readSdrPage(StarZone &zone);
00092
00093 bool readSdrMPageDesc(StarZone &zone, StarObjectModelInternal::Page &page);
00094
00095 bool readSdrMPageDescList(StarZone &zone, StarObjectModelInternal::Page &page);
00097 bool readSdrPageUnknownZone1(StarZone &zone, long lastPos);
00098
00099
00100 protected:
00101
00102
00103
00104
00106 shared_ptr<StarObjectModelInternal::State> m_modelState;
00107 private:
00108 StarObjectModel &operator=(StarObjectModel const &orig);
00109 };
00110 #endif
00111