StarObjectNumericRuler.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 SwNumRules in a StarOffice document
36  *
37  */
38 #ifndef STAR_OBJECT_NUMERICRULER
39 # define STAR_OBJECT_NUMERICRULER
40 
41 #include <ostream>
42 #include <vector>
43 
45 #include "StarObject.hxx"
46 
48 {
49 struct State;
50 }
51 
52 class StarState;
53 class StarZone;
54 
55 struct STOFFListLevel;
56 class STOFFList;
57 
64 {
65 public:
67  StarObjectNumericRuler(StarObject const &orig, bool duplicateState);
69  ~StarObjectNumericRuler() override;
71  static bool readLevel(StarZone &zone, STOFFListLevel &level);
73  static bool readAttributeLevel(StarZone &zone, int vers, long lastPos, STOFFListLevel &level);
75  static bool readList(StarZone &zone, std::shared_ptr<STOFFList> &list);
77  bool read(StarZone &zone);
79  std::shared_ptr<STOFFList> getList(librevenge::RVNGString const &name) const;
80  //
81  // low level
82  //
83 
84 protected:
85  //
86  // data
87  //
88 
90  std::shared_ptr<StarObjectNumericRulerInternal::State> m_numericRulerState;
91 private:
93 };
94 #endif
95 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
StarObjectNumericRuler::read
bool read(StarZone &zone)
try to read a SwNumRules zone
Definition: StarObjectNumericRuler.cxx:110
libstoff::getString
librevenge::RVNGString getString(std::vector< uint32_t > const &unicode)
transform a unicode string in a RNVGString
Definition: libstaroffice_internal.cxx:63
STOFFListLevel::m_propertyList
librevenge::RVNGPropertyList m_propertyList
the propertyList
Definition: STOFFList.hxx:97
StarObjectNumericRuler::m_numericRulerState
std::shared_ptr< StarObjectNumericRulerInternal::State > m_numericRulerState
the state
Definition: StarObjectNumericRuler.hxx:90
StarObjectNumericRuler::readList
static bool readList(StarZone &zone, std::shared_ptr< STOFFList > &list)
try to read a list : '0' or 'R'
Definition: StarObjectNumericRuler.cxx:356
StarZone::ascii
libstoff::DebugFile & ascii()
returns the ascii file
Definition: StarZone.hxx:254
StarZone::getPoolName
bool getPoolName(int poolId, librevenge::RVNGString &res) const
try to return a pool name
Definition: StarZone.hxx:235
StarObjectNumericRuler::getList
std::shared_ptr< STOFFList > getList(librevenge::RVNGString const &name) const
try to return the list corresponding to a name
Definition: StarObjectNumericRuler.cxx:94
StarObjectNumericRuler::StarObjectNumericRuler
StarObjectNumericRuler(StarObject const &orig, bool duplicateState)
constructor
Definition: StarObjectNumericRuler.cxx:81
STOFF_DEBUG_MSG
#define STOFF_DEBUG_MSG(M)
Definition: libstaroffice_internal.hxx:129
StarZone::isCompatibleWith
int isCompatibleWith(int vers) const
checks if the document is compatible with vers
Definition: StarZone.hxx:99
StarObjectNumericRulerInternal
Internal: the structures of a StarObjectNumericRuler.
Definition: StarObjectNumericRuler.cxx:59
libstoff::simplifyString
librevenge::RVNGString simplifyString(librevenge::RVNGString const &s)
returns a simplify version of a string.
Definition: libstaroffice_internal.cxx:430
StarObjectNumericRulerInternal::State::State
State()
constructor
Definition: StarObjectNumericRuler.cxx:65
StarZone::readString
bool readString(std::vector< uint32_t > &string, int encoding=-1) const
try to read an unicode string
Definition: StarZone.hxx:220
STOFFFont::m_propertyList
librevenge::RVNGPropertyList m_propertyList
the property list
Definition: STOFFFont.hxx:84
StarObjectNumericRulerInternal::State::m_simplifyNameToListMap
std::map< librevenge::RVNGString, std::shared_ptr< STOFFList > > m_simplifyNameToListMap
a map list simpl name to list
Definition: StarObjectNumericRuler.cxx:73
STOFFColor::str
std::string str() const
print the color in the form #rrggbb
Definition: libstaroffice_internal.cxx:226
StarZone::closeFlagZone
void closeFlagZone()
close the cflag zone
Definition: StarZone.cxx:618
STOFFColor
the class to store a color
Definition: libstaroffice_internal.hxx:189
libstoff::appendUnicode
void appendUnicode(uint32_t val, librevenge::RVNGString &buffer)
adds an unicode character to a string
Definition: libstaroffice_internal.cxx:81
StarObjectNumericRulerInternal::State::m_nameToListMap
std::map< librevenge::RVNGString, std::shared_ptr< STOFFList > > m_nameToListMap
a map list name to list
Definition: StarObjectNumericRuler.cxx:71
StarBitmap::readBitmap
bool readBitmap(StarZone &zone, bool inFileHeader, long lastPos, librevenge::RVNGBinaryData &data, std::string &type)
low level
Definition: StarBitmap.cxx:214
StarBitmap
the main class to read/.
Definition: StarBitmap.hxx:62
StarState
class to store an state: ie.
Definition: StarState.hxx:67
STOFFListLevel
small structure to keep information about a list level
Definition: STOFFList.hxx:48
libstaroffice_internal.hxx
libstoff::DebugStream::str
static std::string str()
Definition: STOFFDebug.hxx:203
STOFFPageSpan.hxx
STOFFListLevel::m_font
std::shared_ptr< STOFFFont > m_font
the font
Definition: STOFFList.hxx:99
StarEncoding::convert
static bool convert(std::vector< uint8_t > const &src, Encoding encoding, std::vector< uint32_t > &dest, std::vector< size_t > &srcPositions)
try to convert a list of character and transforms it a unicode's list
Definition: StarEncoding.cxx:61
STOFFListLevel::NUMBER
Definition: STOFFList.hxx:50
StarZone::closeSWRecord
bool closeSWRecord(char type, std::string const &debugName)
try to close a record
Definition: StarZone.hxx:177
STOFFListLevel::m_type
Type m_type
the type of the level
Definition: STOFFList.hxx:95
STOFFListener.hxx
STOFFInputStreamPtr
std::shared_ptr< STOFFInputStream > STOFFInputStreamPtr
a smart pointer of STOFFInputStream
Definition: libstaroffice_internal.hxx:485
STOFFListLevel::m_startValue
int m_startValue
the actual value (if this is an ordered level )
Definition: STOFFList.hxx:101
StarZone
a zone in a StarOffice file
Definition: StarZone.hxx:56
StarZone::getRecordLevel
int getRecordLevel() const
returns the record level
Definition: StarZone.hxx:195
StarObject
an object corresponding to an OLE directory
Definition: StarObject.hxx:64
StarObjectNumericRuler::readLevel
static bool readLevel(StarZone &zone, STOFFListLevel &level)
try to read a number format zone : 'n'
Definition: StarObjectNumericRuler.cxx:209
StarEncoding::E_SYMBOL
Definition: StarEncoding.hxx:56
StarEncoding::getEncodingForId
static Encoding getEncodingForId(int id)
return an encoding corresponding to an id
Definition: StarEncoding.cxx:73
libstoff::DebugStream
Definition: STOFFDebug.hxx:194
STOFFListLevel::BULLET
Definition: STOFFList.hxx:50
StarZone::readSWHeader
bool readSWHeader()
read the zone header present in a SW file
Definition: StarZone.cxx:190
STOFFListLevel::NONE
Definition: STOFFList.hxx:50
STOFFFont
Class to store font.
Definition: STOFFFont.hxx:43
StarObjectNumericRuler
the main class to read a SwNumRules zone
Definition: StarObjectNumericRuler.hxx:63
StarObjectNumericRuler.hxx
StarState.hxx
StarObjectNumericRuler::~StarObjectNumericRuler
~StarObjectNumericRuler() override
destructor
Definition: StarObjectNumericRuler.cxx:87
StarBitmap.hxx
libstoff::DebugFile::addPos
static void addPos(long)
Definition: STOFFDebug.hxx:223
StarObjectNumericRuler::readAttributeLevel
static bool readAttributeLevel(StarZone &zone, int vers, long lastPos, STOFFListLevel &level)
try to read a attribute format : ATTR_EE_PARA_BULLET
Definition: StarObjectNumericRuler.cxx:445
StarZone::readStringsPool
bool readStringsPool()
try to read a pool of strings
Definition: StarZone.cxx:103
StarWriterStruct.hxx
StarObject.hxx
StarZone.hxx
StarObjectNumericRulerInternal::State
Internal: the state of a StarObjectNumericRuler.
Definition: StarObjectNumericRuler.cxx:63
STOFFList
a small structure used to store the informations about a list
Definition: STOFFList.hxx:105
libstoff::DebugFile
Definition: STOFFDebug.hxx:210
StarFormatManager.hxx
libstoff::DebugFile::addNote
static void addNote(char const *)
Definition: STOFFDebug.hxx:224
StarObjectNumericRuler::operator=
StarObjectNumericRuler & operator=(StarObjectNumericRuler const &orig)=delete
StarZone::input
STOFFInputStreamPtr input()
return the zone input
Definition: StarZone.hxx:247
STOFFColor::isBlack
bool isBlack() const
return true if the color is black
Definition: libstaroffice_internal.hxx:277
StarZone::openFlagZone
unsigned char openFlagZone()
try to open a cflag zone
Definition: StarZone.cxx:611
StarItemPool.hxx
StarAttribute.hxx
StarZone::getRecordLastPosition
long getRecordLastPosition() const
returns the actual record last position
Definition: StarZone.hxx:200
StarZone::openSWRecord
bool openSWRecord(char &type)
try to open a SW record: type + size (24 bytes)
Definition: StarZone.cxx:507
SWFieldManager.hxx

Generated on Mon Jan 20 2020 23:02:17 for libstaroffice by doxygen 1.8.16