RagTime5Chart.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 /* libmwaw
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 RagTime 5-6 document ( chart part )
36  *
37  */
38 #ifndef RAGTIME5_CHART
39 # define RAGTIME5_CHART
40 
41 #include <string>
42 #include <map>
43 #include <vector>
44 
45 #include <librevenge/librevenge.h>
46 
47 #include "libmwaw_internal.hxx"
48 
49 #include "MWAWDebug.hxx"
50 #include "MWAWInputStream.hxx"
51 #include "MWAWPosition.hxx"
52 
55 
56 namespace RagTime5ChartInternal
57 {
58 struct State;
59 
60 class SubDocument;
61 }
62 
63 class RagTime5Document;
66 class RagTime5Zone;
67 
74 {
76  friend class RagTime5Document;
77 
78 public:
80  explicit RagTime5Chart(RagTime5Document &doc);
82  virtual ~RagTime5Chart();
83 
85  int version() const;
86 
88  int numPages() const;
89 
90 protected:
91 
93  void flushExtra();
94 
95  // interface with main parser
96 
98  std::shared_ptr<RagTime5ClusterManager::Cluster> readChartCluster(RagTime5Zone &zone, int zoneType);
99 
100  //
101  // Intermediate level
102  //
103 
104  //
105  // basic
106  //
107 
108  //
109  // low level
110  //
111 
113  static std::string printType(unsigned long fileType)
114  {
115  return RagTime5StructManager::printType(fileType);
116  }
117 
118 
119 private:
120  RagTime5Chart(RagTime5Chart const &orig) = delete;
121  RagTime5Chart &operator=(RagTime5Chart const &orig) = delete;
122 
123 protected:
124  //
125  // data
126  //
129 
131  std::shared_ptr<RagTime5StructManager> m_structManager;
133  std::shared_ptr<RagTime5StyleManager> m_styleManager;
136 
138  std::shared_ptr<RagTime5ChartInternal::State> m_state;
139 };
140 #endif
141 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
RagTime5ChartInternal::ChartCParser::ZoneType::m_type
Type m_type
the field type
Definition: RagTime5Chart.cxx:596
RagTime5ChartInternal::ChartCParser::F_UnknZone2
@ F_UnknZone2
Definition: RagTime5Chart.cxx:491
MWAWInputStreamPtr
std::shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:551
RagTime5ChartInternal::ClustListParser::m_clusterList
std::vector< int > m_clusterList
the list of read cluster
Definition: RagTime5Chart.cxx:187
RagTime5ChartInternal::ChartCParser::ZoneType::getName
std::string getName() const
return the zone type name
Definition: RagTime5Chart.cxx:503
RagTime5Chart::numPages
int numPages() const
returns the number of pages
Definition: RagTime5Chart.cxx:421
RagTime5ChartInternal::SettingZone
the setting zone
Definition: RagTime5Chart.cxx:61
MWAW_DEBUG_MSG
#define MWAW_DEBUG_MSG(M)
Definition: libmwaw_internal.hxx:129
RagTime5ChartInternal::ChartCParser::parseHeaderZone
bool parseHeaderZone(MWAWInputStreamPtr &input, long fSz, int N, int flag, libmwaw::DebugStream &f)
parse the header zone
Definition: RagTime5Chart.cxx:1882
MWAWVec2f
MWAWVec2< float > MWAWVec2f
MWAWVec2 of float.
Definition: libmwaw_internal.hxx:842
RagTime5ChartInternal::ZoneUnknown1Parser::~ZoneUnknown1Parser
~ZoneUnknown1Parser() final
destructor
Definition: RagTime5Chart.cxx:354
RagTime5ChartInternal::UnknownZone3::m_listLinkId
RagTime5ClusterManager::Link m_listLinkId[3]
three list of long: first zone of type?, second list pos to id?, third list of flag the data zone are...
Definition: RagTime5Chart.cxx:82
RagTime5Chart::printType
static std::string printType(unsigned long fileType)
debug: print a file type
Definition: RagTime5Chart.hxx:113
RagTime5ChartInternal::ChartCParser::getChartCluster
std::shared_ptr< ClusterChart > getChartCluster()
return the current cluster
Definition: RagTime5Chart.cxx:622
RagTime5ChartInternal::ChartCParser::ChartCParser
ChartCParser(RagTime5ClusterManager &parser, int type, libmwaw::DebugFile &ascii)
constructor
Definition: RagTime5Chart.cxx:601
RagTime5Chart::RagTime5Chart
RagTime5Chart(RagTime5Chart const &orig)=delete
RagTime5ChartInternal::ChartCParser::~ChartCParser
~ChartCParser() final
destructor
Definition: RagTime5Chart.cxx:2058
RagTime5ClusterManager::Cluster::Cluster
Cluster(Type type)
constructor
Definition: RagTime5ClusterManager.hxx:279
RagTime5ChartInternal::ZoneUnknown1Parser::parseData
bool parseData(MWAWInputStreamPtr &input, long endPos, RagTime5Zone &, int, libmwaw::DebugStream &f) final
try to parse a data
Definition: RagTime5Chart.cxx:335
RagTime5ChartInternal::ClustListParser::getClusterDebugName
std::string getClusterDebugName(int id) const
returns a cluster name
Definition: RagTime5Chart.cxx:137
RagTime5ChartInternal::UnknownZone3
the unknown third chart zone
Definition: RagTime5Chart.cxx:74
RagTime5StructManager.hxx
RagTime5StructManager::Field::T_Unstructured
@ T_Unstructured
Definition: RagTime5StructManager.hxx:245
RagTime5ChartInternal::ChartCParser::F_ChartList
@ F_ChartList
Definition: RagTime5Chart.cxx:490
RagTime5ChartInternal::ChartCParser::getChart
std::shared_ptr< Chart > getChart()
return the chart
Definition: RagTime5Chart.cxx:627
RagTime5Chart::RagTime5Chart
RagTime5Chart(RagTime5Document &doc)
constructor
Definition: RagTime5Chart.cxx:404
RagTime5Zone::ascii
libmwaw::DebugFile & ascii()
returns the current ascii file
Definition: RagTime5StructManager.hxx:109
RagTime5Chart::m_structManager
std::shared_ptr< RagTime5StructManager > m_structManager
the structure manager
Definition: RagTime5Chart.hxx:131
RagTime5Chart::m_document
RagTime5Document & m_document
the document
Definition: RagTime5Chart.hxx:128
RagTime5StructManager::Field
a field of RagTime 5/6 structures
Definition: RagTime5StructManager.hxx:242
RagTime5ChartInternal::ChartCParser::F_DZoneF70
@ F_DZoneF70
Definition: RagTime5Chart.cxx:489
RagTime5ChartInternal::UnknownZone10::m_listLinkId
RagTime5ClusterManager::Link m_listLinkId[3]
three list of long: first zone of type?, second list pos to id?, third list of sub zones the data zon...
Definition: RagTime5Chart.cxx:94
RagTime5Chart.hxx
RagTime5ChartInternal::Chart::m_zone10
UnknownZone3 m_zone10
the unknown zone10
Definition: RagTime5Chart.cxx:114
RagTime5ChartInternal::DoubleParser::~DoubleParser
~DoubleParser() final
destructor
Definition: RagTime5Chart.cxx:239
RagTime5Document.hxx
RagTime5Chart::readChartCluster
std::shared_ptr< RagTime5ClusterManager::Cluster > readChartCluster(RagTime5Zone &zone, int zoneType)
try to read a chart cluster
Definition: RagTime5Chart.cxx:2064
RagTime5ChartInternal::ChartCParser::insertZoneToBeParsed
void insertZoneToBeParsed(int id, ZoneType const &type, bool canBeDuplicated=false)
insert a new zone to be parsed
Definition: RagTime5Chart.cxx:632
RagTime5ClusterManager::ClusterParser
virtual class use to parse the cluster data
Definition: RagTime5ClusterManager.hxx:381
RagTime5ClusterManager::Cluster::C_ChartZone
@ C_ChartZone
Definition: RagTime5ClusterManager.hxx:268
RagTime5ChartInternal
Internal: the structures of a RagTime5Chart.
Definition: RagTime5Chart.cxx:59
RagTime5Chart::flushExtra
void flushExtra()
sends the data which have not yet been sent to the listener
Definition: RagTime5Chart.cxx:444
RagTime5ChartInternal::ChartCParser::checkFatherType
bool checkFatherType(int id, Type type) const
try to check the father type
Definition: RagTime5Chart.cxx:645
RagTime5ChartInternal::DoubleParser::DoubleParser
DoubleParser()
constructor
Definition: RagTime5Chart.cxx:206
RagTime5ChartInternal::ChartCParser::endZone
void endZone() final
end of a start zone call
Definition: RagTime5Chart.cxx:665
RagTime5StructManager::DataParser
virtual class use to parse the unstructured data
Definition: RagTime5StructManager.hxx:396
RagTime5ChartInternal::ChildTZoneParser::ChildTZoneParser
ChildTZoneParser()
constructor
Definition: RagTime5Chart.cxx:291
RagTime5StructManager::DataParser::DataParser
DataParser(std::string const &zoneName)
constructor
Definition: RagTime5StructManager.cxx:61
RagTime5ChartInternal::ChartCParser::m_zoneType
ZoneType m_zoneType
the current zone type
Definition: RagTime5Chart.cxx:2044
RagTime5ChartInternal::ZoneUnknown1Parser
Internal: the helper to read a ZoneUnknown1's cell ZoneUnknown1.
Definition: RagTime5Chart.cxx:326
RagTime5ChartInternal::ClustListParser::ClustListParser
ClustListParser(RagTime5ClusterManager &clusterManager, int fieldSize, std::string const &zoneName)
constructor
Definition: RagTime5Chart.cxx:123
RagTime5ChartInternal::ChildTZoneParser
Internal: the helper to read child text box value(title+label)
Definition: RagTime5Chart.cxx:289
RagTime5StructManager::Field::T_FieldList
@ T_FieldList
Definition: RagTime5StructManager.hxx:244
RagTime5ChartInternal::ChartCParser::F_DZones3
@ F_DZones3
Definition: RagTime5Chart.cxx:488
RagTime5ChartInternal::ChartCParser::m_cluster
std::shared_ptr< ClusterChart > m_cluster
the current cluster
Definition: RagTime5Chart.cxx:2034
RagTime5ChartInternal::ClustListParser
Internal: the helper to read a clustList.
Definition: RagTime5Chart.cxx:121
RagTime5ChartInternal::ChartCParser::m_asciiFile
libmwaw::DebugFile & m_asciiFile
the ascii file
Definition: RagTime5Chart.cxx:2050
RagTime5ChartInternal::SettingZone::SettingZone
SettingZone()
constructor
Definition: RagTime5Chart.cxx:63
RagTime5ChartInternal::ChartCParser::ZoneType::ZoneType
ZoneType()
constructor
Definition: RagTime5Chart.cxx:497
RagTime5ClusterManager
basic class used to manage RagTime 5/6 zones
Definition: RagTime5ClusterManager.hxx:59
RagTime5Chart::SubDocument
friend class RagTime5ChartInternal::SubDocument
Definition: RagTime5Chart.hxx:75
RagTime5StyleManager
basic class used to read/store RagTime 5/6 styles
Definition: RagTime5StyleManager.hxx:61
RagTime5Chart::~RagTime5Chart
virtual ~RagTime5Chart()
destructor
Definition: RagTime5Chart.cxx:413
MWAWSubDocument.hxx
RagTime5ClusterManager.hxx
RagTime5ChartInternal::ZoneUnknown1Parser::ZoneUnknown1Parser
ZoneUnknown1Parser()
constructor
Definition: RagTime5Chart.cxx:328
RagTime5ChartInternal::ChartCParser::ZoneType::m_id
int m_id
the field local id
Definition: RagTime5Chart.cxx:598
RagTime5StructManager::FieldParser
virtual class use to parse the field data
Definition: RagTime5StructManager.hxx:353
RagTime5Document
the main class to read a RagTime v5 file
Definition: RagTime5Document.hxx:77
RagTime5ChartInternal::Chart
structure to store chart information in RagTime5ChartInternal
Definition: RagTime5Chart.cxx:98
RagTime5ChartInternal::DoubleParser::parseData
bool parseData(MWAWInputStreamPtr &input, long endPos, RagTime5Zone &, int, libmwaw::DebugStream &f) final
try to parse a data
Definition: RagTime5Chart.cxx:213
RagTime5ChartInternal::ChartCParser::m_what
int m_what
a index to know which field is parsed : 0: main, 1: common data, 2: list, 3: sub zone position,...
Definition: RagTime5Chart.cxx:2038
RagTime5ChartInternal::ChartCParser::ZoneType
a small structure used to stored a field type
Definition: RagTime5Chart.cxx:495
libmwaw_internal.hxx
RagTime5StructManager::printType
static std::string printType(unsigned long fileType)
debug: print a file type
Definition: RagTime5StructManager.cxx:94
MWAWPosition.hxx
RagTime5ChartInternal::SettingZone::m_listLinkId
RagTime5ClusterManager::Link m_listLinkId[3]
three list of long: first zone of type?, second list pos to id?, main data link the 0 and 1 data zone...
Definition: RagTime5Chart.cxx:70
RagTime5ChartInternal::ChartCParser::parseZone
bool parseZone(MWAWInputStreamPtr &input, long fSz, int N, int flag, libmwaw::DebugStream &f) final
parse a zone
Definition: RagTime5Chart.cxx:777
RagTime5ChartInternal::ChartCParser::getNewZoneToParse
int getNewZoneToParse() final
returns to new zone to parse.
Definition: RagTime5Chart.cxx:656
RagTime5ChartInternal::ChartCParser
low level: parser of chart cluster
Definition: RagTime5Chart.cxx:484
RagTime5StructManager::Field::T_Long
@ T_Long
Definition: RagTime5StructManager.hxx:244
RagTime5ChartInternal::ClusterChart::m_unknownLink3
RagTime5ClusterManager::Link m_unknownLink3
unknown link of size 32
Definition: RagTime5Chart.cxx:474
RagTime5ChartInternal::ChartCParser::ChartCParser
ChartCParser(ChartCParser const &orig)=delete
copy constructor (not implemented)
RagTime5Zone
main zone in a RagTime v5-v6 document
Definition: RagTime5StructManager.hxx:51
RagTime5ChartInternal::SerieTypeParser::parseData
bool parseData(MWAWInputStreamPtr &input, long endPos, RagTime5Zone &, int, libmwaw::DebugStream &f) final
try to parse a data
Definition: RagTime5Chart.cxx:253
RagTime5ChartInternal::Chart::m_numSeries
int m_numSeries
the number of series
Definition: RagTime5Chart.cxx:108
MWAWDebug.hxx
RagTime5ChartInternal::SerieTypeParser
Internal: the helper to read a serieType's cell serieType.
Definition: RagTime5Chart.cxx:244
RagTime5ChartInternal::ChartCParser::m_fieldIdToZoneTypeMap
std::map< int, ZoneType > m_fieldIdToZoneTypeMap
the list of id to zone type map
Definition: RagTime5Chart.cxx:2046
RagTime5ChartInternal::State::m_numPages
int m_numPages
the number of pages
Definition: RagTime5Chart.cxx:396
MWAWBox2f
MWAWBox2< float > MWAWBox2f
MWAWBox2 of float.
Definition: libmwaw_internal.hxx:1193
RagTime5Chart::m_styleManager
std::shared_ptr< RagTime5StyleManager > m_styleManager
the style manager
Definition: RagTime5Chart.hxx:133
RagTime5ChartInternal::ZoneUnknown3Parser::~ZoneUnknown3Parser
~ZoneUnknown3Parser() final
destructor
Definition: RagTime5Chart.cxx:383
RagTime5ChartInternal::Chart::m_settingZone
SettingZone m_settingZone
the setting zone
Definition: RagTime5Chart.cxx:110
RagTime5ChartInternal::ChartCParser::parseField
bool parseField(RagTime5StructManager::Field const &field, int, libmwaw::DebugStream &f) final
parse a field
Definition: RagTime5Chart.cxx:792
RagTime5ChartInternal::State
Internal: the state of a RagTime5Chart.
Definition: RagTime5Chart.cxx:389
RagTime5ChartInternal::ClusterChart::m_typesLink
RagTime5ClusterManager::Link m_typesLink
list of type link
Definition: RagTime5Chart.cxx:470
RagTime5ChartInternal::State::State
State()
constructor
Definition: RagTime5Chart.cxx:391
FreeHandParserInternal::ZoneType
ZoneType
the different zone type
Definition: FreeHandParser.cxx:65
RagTime5ChartInternal::UnknownZone3::UnknownZone3
UnknownZone3()
constructor
Definition: RagTime5Chart.cxx:76
RagTime5ChartInternal::ChartCParser::m_zoneToParseSet
std::set< int > m_zoneToParseSet
the list of know zone remaining to be parsed
Definition: RagTime5Chart.cxx:2048
RagTime5ChartInternal::ChartCParser::operator=
ChartCParser & operator=(ChartCParser const &orig)=delete
copy operator (not implemented)
MWAWBox2i
MWAWBox2< int > MWAWBox2i
MWAWBox2 of int.
Definition: libmwaw_internal.hxx:1191
RagTime5Chart::m_state
std::shared_ptr< RagTime5ChartInternal::State > m_state
the state
Definition: RagTime5Chart.hxx:138
RagTime5Chart::operator=
RagTime5Chart & operator=(RagTime5Chart const &orig)=delete
RagTime5ChartInternal::ChildTZoneParser::~ChildTZoneParser
~ChildTZoneParser() final
destructor
Definition: RagTime5Chart.cxx:321
RagTime5ChartInternal::ZoneUnknown3Parser::ZoneUnknown3Parser
ZoneUnknown3Parser()
constructor
Definition: RagTime5Chart.cxx:361
RagTime5ChartInternal::ClusterChart::ClusterChart
ClusterChart()
constructor
Definition: RagTime5Chart.cxx:458
RagTime5ChartInternal::ChildTZoneParser::parseData
bool parseData(MWAWInputStreamPtr &input, long endPos, RagTime5Zone &, int, libmwaw::DebugStream &f) final
try to parse a data
Definition: RagTime5Chart.cxx:298
RagTime5ChartInternal::SerieTypeParser::~SerieTypeParser
~SerieTypeParser() final
destructor
Definition: RagTime5Chart.cxx:284
RagTime5StructManager::Field::T_LongList
@ T_LongList
Definition: RagTime5StructManager.hxx:244
MWAWParserStatePtr
std::shared_ptr< MWAWParserState > MWAWParserStatePtr
a smart pointer of MWAWParserState
Definition: libmwaw_internal.hxx:557
RagTime5ChartInternal::UnknownZone10::UnknownZone10
UnknownZone10()
constructor
Definition: RagTime5Chart.cxx:88
RagTime5ClusterManager::getClusterDebugName
std::string getClusterDebugName(int id)
returns "data"+id+"A" ( followed by the cluster type and name if know)
Definition: RagTime5ClusterManager.cxx:230
RagTime5ChartInternal::Chart::Chart
Chart()
constructor
Definition: RagTime5Chart.cxx:100
RagTime5StructManager
basic class used to store RagTime 5/6 structures
Definition: RagTime5StructManager.hxx:175
MWAWListener.hxx
RagTime5ChartInternal::ClusterChart::m_valuesLink
std::vector< RagTime5ClusterManager::Link > m_valuesLink[2]
some content zone: first a double zone, second link to sub text zone data
Definition: RagTime5Chart.cxx:468
RagTime5ChartInternal::ClustListParser::~ClustListParser
~ClustListParser() final
destructor
Definition: RagTime5Chart.cxx:199
RagTime5ChartInternal::ClustListParser::m_fieldSize
int m_fieldSize
the field size
Definition: RagTime5Chart.cxx:190
libmwaw::DebugFile
an interface used to insert comment in a binary file, written in ascii form (if debug_with_files is n...
Definition: MWAWDebug.hxx:66
RagTime5ClusterManager::Cluster
the cluster data
Definition: RagTime5ClusterManager.hxx:261
RagTime5ChartInternal::ClustListParser::m_clusterManager
RagTime5ClusterManager & m_clusterManager
the main zone manager
Definition: RagTime5Chart.cxx:192
libmwaw
namespace used to regroup all libwpd functions, enumerations which we have redefined for internal usa...
Definition: libmwaw_internal.cxx:51
RagTime5ChartInternal::ClusterChart
low level: the chart cluster data
Definition: RagTime5Chart.cxx:456
RagTime5ClusterManager::Cluster::m_type
Type m_type
the cluster type
Definition: RagTime5ClusterManager.hxx:298
MWAWInputStream.hxx
RagTime5ChartInternal::DoubleParser
Internal: the helper to read a double's cell double.
Definition: RagTime5Chart.cxx:204
RagTime5ChartInternal::ClustListParser::operator=
ClustListParser & operator=(ClustListParser &orig)
copy operator, not implemented
RagTime5ChartInternal::ZoneUnknown3Parser
Internal: the helper to read a ZoneUnknown3's cell ZoneUnknown3.
Definition: RagTime5Chart.cxx:359
RagTime5ChartInternal::ChartCParser::m_fieldName
std::string m_fieldName
the actual field name
Definition: RagTime5Chart.cxx:2042
MWAWFont.hxx
RagTime5Chart::m_parserState
MWAWParserStatePtr m_parserState
the parser state
Definition: RagTime5Chart.hxx:135
RagTime5ChartInternal::ZoneUnknown3Parser::parseData
bool parseData(MWAWInputStreamPtr &input, long endPos, RagTime5Zone &, int, libmwaw::DebugStream &f) final
try to parse a data
Definition: RagTime5Chart.cxx:367
RagTime5ChartInternal::ClustListParser::ClustListParser
ClustListParser(ClustListParser &orig)
copy constructor, not implemented
MWAWBox2< float >
RagTime5ChartInternal::ClusterChart::~ClusterChart
~ClusterChart() final
destructor
Definition: RagTime5Chart.cxx:477
RagTime5ChartInternal::SerieTypeParser::SerieTypeParser
SerieTypeParser()
constructor
Definition: RagTime5Chart.cxx:246
RagTime5ChartInternal::ChartCParser::Type
Type
the different field types
Definition: RagTime5Chart.cxx:486
RagTime5ChartInternal::ClustListParser::parseData
bool parseData(MWAWInputStreamPtr &input, long endPos, RagTime5Zone &, int, libmwaw::DebugStream &f) final
try to parse a data
Definition: RagTime5Chart.cxx:143
RagTime5ChartInternal::ChartCParser::parseDataZone
bool parseDataZone(MWAWInputStreamPtr &input, long fSz, int N, int flag, libmwaw::DebugStream &f)
parse a data block
Definition: RagTime5Chart.cxx:926
RagTime5ChartInternal::ClusterChart::m_unknownLink1
RagTime5ClusterManager::Link m_unknownLink1
unknown link of size 6
Definition: RagTime5Chart.cxx:472
RagTime5Chart::version
int version() const
returns the file version
Definition: RagTime5Chart.cxx:416
MWAWVec2i
MWAWVec2< int > MWAWVec2i
MWAWVec2 of int.
Definition: libmwaw_internal.hxx:838
RagTime5StructManager::readDataIdList
static bool readDataIdList(MWAWInputStreamPtr input, int n, std::vector< int > &listIds)
try to read n data id
Definition: RagTime5StructManager.cxx:332
RagTime5ChartInternal::Chart::m_zone3
UnknownZone3 m_zone3
the unknown zone3
Definition: RagTime5Chart.cxx:112
libmwaw::DebugStream
std::stringstream DebugStream
a basic stream (if debug_with_files is not defined, does nothing)
Definition: MWAWDebug.hxx:61
RagTime5ChartInternal::ChartCParser::F_Values2
@ F_Values2
Definition: RagTime5Chart.cxx:487
RagTime5ChartInternal::UnknownZone10
the unknown ten chart zone
Definition: RagTime5Chart.cxx:86
RagTime5ChartInternal::ChartCParser::m_linkId
int m_linkId
the link id: 1: value double, 2: value text zone
Definition: RagTime5Chart.cxx:2040
RagTime5Chart
the main class to read the chart part of RagTime 56 file
Definition: RagTime5Chart.hxx:74
RagTime5ChartInternal::ChartCParser::m_chart
std::shared_ptr< Chart > m_chart
the chart
Definition: RagTime5Chart.cxx:2036

Generated on Fri Sep 18 2020 18:14:52 for libmwaw by doxygen 1.8.20