StarLayout.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 * StarLanguage to read/parse some layout in StarOffice documents
36 *
37 */
38#ifndef STAR_LAYOUT
39# define STAR_LAYOUT
40
41#include <vector>
42
44#include "STOFFDebug.hxx"
45
46class StarObject;
47class StarZone;
50struct StarLayout {
51public:
54 : m_version(0)
55 {
56 }
58 bool read(StarZone &zone, StarObject &object);
59protected:
61 bool readC1(StarZone &zone, StarObject &object);
63 bool readC2(StarZone &zone, StarObject &object);
65 bool readC4(StarZone &zone, StarObject &object);
67 bool readD0(StarZone &zone, StarObject &object);
69 bool readD8(StarZone &zone, StarObject &object);
70
72 bool readChild(StarZone &zone, StarObject &object);
74 bool readHeader(StarZone &zone, libstoff::DebugStream &f, int &type, int valueMode=1) const;
76 bool readDataBlock(StarZone &zone, libstoff::DebugStream &f) const;
81 int readNumber(STOFFInputStreamPtr input, int vers) const;
83 uint16_t m_version;
84};
85
86#endif
87// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
an object corresponding to an OLE directory
Definition StarObject.hxx:65
a zone in a StarOffice file
Definition StarZone.hxx:57
Definition STOFFDebug.hxx:195
std::shared_ptr< STOFFInputStream > STOFFInputStreamPtr
a smart pointer of STOFFInputStream
Definition libstaroffice_internal.hxx:489
structure to parse a layout in a text zone (very incomplete)
Definition StarLayout.hxx:50
bool readD0(StarZone &zone, StarObject &object)
try to read a sub zone: 'd0'
Definition StarLayout.cxx:353
uint16_t m_version
the version
Definition StarLayout.hxx:83
bool readC2(StarZone &zone, StarObject &object)
try to read a sub zone: 'c2', 'c3', 'c6', 'c8', 'c9', 'ce', 'd2', 'd3', 'd7', 'e3' or 'f2'
Definition StarLayout.cxx:207
bool readDataBlock(StarZone &zone, libstoff::DebugStream &f) const
try to read a small data block
Definition StarLayout.cxx:55
bool read(StarZone &zone, StarObject &object)
try to read a layout: 'U'
Definition StarLayout.cxx:81
StarLayout()
constructor
Definition StarLayout.hxx:53
bool readHeader(StarZone &zone, libstoff::DebugStream &f, int &type, int valueMode=1) const
try to read a block header
Definition StarLayout.cxx:495
bool readC1(StarZone &zone, StarObject &object)
try to read a sub zone: 'c1' or 'cc', 'cd'
Definition StarLayout.cxx:126
bool readD8(StarZone &zone, StarObject &object)
try to read a sub zone: 'd8'
Definition StarLayout.cxx:435
bool readC4(StarZone &zone, StarObject &object)
try to read a sub zone: 'c4' or 'c7'
Definition StarLayout.cxx:310
int readNumber(STOFFInputStreamPtr input, int vers) const
try to read a positive number of 1|2 bytes depending on the version:
Definition StarLayout.cxx:46
bool readChild(StarZone &zone, StarObject &object)
try to read a child of a zone
Definition StarLayout.cxx:568

Generated on Mon Apr 22 2024 12:48:55 for libstaroffice by doxygen 1.10.0