MWAWChart.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  * Structure to store and construct a chart
36  *
37  */
38 
39 #ifndef MWAW_CHART
40 # define MWAW_CHART
41 
42 #include <iostream>
43 #include <vector>
44 #include <map>
45 
46 #include "libmwaw_internal.hxx"
47 
48 #include "MWAWEntry.hxx"
49 #include "MWAWFont.hxx"
50 #include "MWAWGraphicStyle.hxx"
51 
52 namespace MWAWChartInternal
53 {
54 class SubDocument;
55 }
57 class MWAWChart
58 {
60 public:
62  struct Axis {
66  Axis();
67  Axis &operator=(Axis const &)=default;
69  ~Axis();
71  void addContentTo(std::string const &sheetName, int coord, librevenge::RVNGPropertyList &propList) const;
73  void addStyleTo(librevenge::RVNGPropertyList &propList) const;
75  friend std::ostream &operator<<(std::ostream &o, Axis const &axis);
79  bool m_showGrid;
86  };
88  struct Legend {
91  : m_show(false)
92  , m_autoPosition(true)
94  , m_position(0,0)
95  , m_font()
96  , m_style()
97  {
98  }
100  void addContentTo(librevenge::RVNGPropertyList &propList) const;
102  void addStyleTo(librevenge::RVNGPropertyList &propList, std::shared_ptr<MWAWFontConverter> fontConverter) const;
104  friend std::ostream &operator<<(std::ostream &o, Legend const &legend);
106  bool m_show;
117  };
119  struct Series {
123  Series();
124  Series(Series const &)=default;
126  virtual ~Series();
128  void addContentTo(std::string const &sheetName, librevenge::RVNGPropertyList &propList) const;
130  void addStyleTo(librevenge::RVNGPropertyList &propList) const;
132  static std::string getSeriesTypeName(Type type);
134  friend std::ostream &operator<<(std::ostream &o, Series const &series);
141  };
143  struct TextZone {
148 
150  TextZone();
151  TextZone(TextZone const &)=default;
152  TextZone &operator=(TextZone const &)=default;
154  ~TextZone();
156  void addContentTo(std::string const &sheetName, librevenge::RVNGPropertyList &propList) const;
158  void addStyleTo(librevenge::RVNGPropertyList &propList, std::shared_ptr<MWAWFontConverter> fontConverter) const;
160  friend std::ostream &operator<<(std::ostream &o, TextZone const &zone);
175  };
176 
178  MWAWChart(std::string const &sheetName, MWAWFontConverterPtr const &fontConverter, MWAWVec2f const &dim=MWAWVec2f());
180  virtual ~MWAWChart();
182  void sendChart(MWAWSpreadsheetListenerPtr &listener, librevenge::RVNGSpreadsheetInterface *interface);
184  virtual void sendContent(TextZone const &zone, MWAWListenerPtr &listener)=0;
185 
187  void setDataType(Series::Type type, bool dataStacked)
188  {
189  m_type=type;
190  m_dataStacked=dataStacked;
191  }
192 
194  MWAWVec2f const &getDimension() const
195  {
196  return m_dim;
197  }
199  void setDimension(MWAWVec2f const &dim)
200  {
201  m_dim=dim;
202  }
204  void add(int coord, Axis const &axis);
206  Axis const &getAxis(int coord) const;
207 
209  void set(Legend const &legend)
210  {
211  m_legend=legend;
212  }
214  Legend const &getLegend() const
215  {
216  return m_legend;
217  }
218 
220  void add(Series const &series);
222  std::vector<Series> const &getSeries() const
223  {
224  return m_seriesList;
225  }
226 
228  void add(TextZone const &textZone);
230  bool getTextZone(TextZone::Type type, TextZone &textZone);
231 
232 protected:
234  void sendTextZoneContent(TextZone::Type type, MWAWListenerPtr &listener);
235 
236 protected:
238  std::string m_sheetName;
250  std::vector<Series> m_seriesList;
252  std::map<TextZone::Type, TextZone> m_textZoneMap;
255 private:
256  explicit MWAWChart(MWAWChart const &orig) = delete;
257  MWAWChart &operator=(MWAWChart const &orig) = delete;
258 };
259 
260 #endif
261 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
Internal: the subdocument of a MWAWChart.
Definition: MWAWChart.cxx:62
a class used to store a chart associated to a spreadsheet ....
Definition: MWAWChart.hxx:58
MWAWVec2f const & getDimension() const
return the chart dimension
Definition: MWAWChart.hxx:194
Axis const & getAxis(int coord) const
return an axis (corresponding to a coord)
Definition: MWAWChart.cxx:140
void setDimension(MWAWVec2f const &dim)
return the chart dimension
Definition: MWAWChart.hxx:199
bool getTextZone(TextZone::Type type, TextZone &textZone)
returns a textzone content(if set)
Definition: MWAWChart.cxx:154
void sendTextZoneContent(TextZone::Type type, MWAWListenerPtr &listener)
sends a textzone content
Definition: MWAWChart.cxx:162
MWAWChart(MWAWChart const &orig)=delete
MWAWFontConverterPtr m_fontConverter
the font converter
Definition: MWAWChart.hxx:254
Legend const & getLegend() const
return the legend
Definition: MWAWChart.hxx:214
std::vector< Series > const & getSeries() const
return the list of series
Definition: MWAWChart.hxx:222
Series::Type m_type
the chart type (if no series)
Definition: MWAWChart.hxx:242
virtual ~MWAWChart()
the destructor
Definition: MWAWChart.cxx:127
Legend m_legend
the legend
Definition: MWAWChart.hxx:248
virtual void sendContent(TextZone const &zone, MWAWListenerPtr &listener)=0
send the zone content (called when the zone is of text type)
bool m_dataStacked
a flag to know if the data are stacked or not
Definition: MWAWChart.hxx:244
std::vector< Series > m_seriesList
the list of series
Definition: MWAWChart.hxx:250
void setDataType(Series::Type type, bool dataStacked)
sets the chart type
Definition: MWAWChart.hxx:187
std::map< TextZone::Type, TextZone > m_textZoneMap
a map text zone type to text zone
Definition: MWAWChart.hxx:252
MWAWChart & operator=(MWAWChart const &orig)=delete
void add(int coord, Axis const &axis)
adds an axis (corresponding to a coord)
Definition: MWAWChart.cxx:131
void sendChart(MWAWSpreadsheetListenerPtr &listener, librevenge::RVNGSpreadsheetInterface *interface)
send the chart to the listener
Definition: MWAWChart.cxx:176
MWAWChart(std::string const &sheetName, MWAWFontConverterPtr const &fontConverter, MWAWVec2f const &dim=MWAWVec2f())
the constructor
Definition: MWAWChart.cxx:115
void set(Legend const &legend)
set the legend
Definition: MWAWChart.hxx:209
Axis m_axis[4]
the x,y,z and a bad axis
Definition: MWAWChart.hxx:246
MWAWVec2f m_dim
the chart dimension in point
Definition: MWAWChart.hxx:240
std::string m_sheetName
the sheet name
Definition: MWAWChart.hxx:238
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:47
Class to store font.
Definition: MWAWFont.hxx:44
a structure used to define a picture style
Definition: MWAWGraphicStyle.hxx:48
std::shared_ptr< MWAWSpreadsheetListener > MWAWSpreadsheetListenerPtr
a smart pointer of MWAWSpreadsheetListener
Definition: libmwaw_internal.hxx:563
std::shared_ptr< MWAWFontConverter > MWAWFontConverterPtr
a smart pointer of MWAWFontConverter
Definition: libmwaw_internal.hxx:543
std::shared_ptr< MWAWListener > MWAWListenerPtr
a smart pointer of MWAWListener
Definition: libmwaw_internal.hxx:553
MWAWVec2< float > MWAWVec2f
MWAWVec2 of float.
Definition: libmwaw_internal.hxx:842
Internal: the structures of a MWAWChart.
Definition: MWAWChart.cxx:58
namespace used to regroup all libwpd functions, enumerations which we have redefined for internal usa...
Definition: libmwaw_internal.cxx:51
@ RightBit
Definition: libmwaw_internal.hxx:178
a axis in a chart
Definition: MWAWChart.hxx:62
MWAWGraphicStyle m_style
the graphic style
Definition: MWAWChart.hxx:85
Axis()
constructor
Definition: MWAWChart.cxx:332
MWAWBox2i m_labelRange
the label range if defined
Definition: MWAWChart.hxx:83
~Axis()
destructor
Definition: MWAWChart.cxx:342
Type
the axis content
Definition: MWAWChart.hxx:64
@ A_Sequence_Skip_Empty
Definition: MWAWChart.hxx:64
@ A_Sequence
Definition: MWAWChart.hxx:64
@ A_Logarithmic
Definition: MWAWChart.hxx:64
@ A_None
Definition: MWAWChart.hxx:64
@ A_Numeric
Definition: MWAWChart.hxx:64
Type m_type
the sequence type
Definition: MWAWChart.hxx:77
friend std::ostream & operator<<(std::ostream &o, Axis const &axis)
operator<<
Definition: MWAWChart.cxx:388
void addStyleTo(librevenge::RVNGPropertyList &propList) const
add style to the propList
Definition: MWAWChart.cxx:378
bool m_showGrid
show or not the grid
Definition: MWAWChart.hxx:79
void addContentTo(std::string const &sheetName, int coord, librevenge::RVNGPropertyList &propList) const
add content to the propList
Definition: MWAWChart.cxx:346
bool m_showLabel
show or not the label
Definition: MWAWChart.hxx:81
Axis & operator=(Axis const &)=default
a legend in a chart
Definition: MWAWChart.hxx:88
bool m_autoPosition
automatic position
Definition: MWAWChart.hxx:108
Legend()
constructor
Definition: MWAWChart.hxx:90
MWAWGraphicStyle m_style
the graphic style
Definition: MWAWChart.hxx:116
int m_relativePosition
the automatic position libmwaw::LeftBit|...
Definition: MWAWChart.hxx:110
MWAWVec2f m_position
the position in points
Definition: MWAWChart.hxx:112
bool m_show
show or not the legend
Definition: MWAWChart.hxx:106
void addStyleTo(librevenge::RVNGPropertyList &propList, std::shared_ptr< MWAWFontConverter > fontConverter) const
add style to the propList
Definition: MWAWChart.cxx:444
friend std::ostream & operator<<(std::ostream &o, Legend const &legend)
operator<<
Definition: MWAWChart.cxx:451
MWAWFont m_font
the font
Definition: MWAWChart.hxx:114
void addContentTo(librevenge::RVNGPropertyList &propList) const
add content to the propList
Definition: MWAWChart.cxx:424
a series in a chart
Definition: MWAWChart.hxx:119
Series()
constructor
Definition: MWAWChart.cxx:480
void addContentTo(std::string const &sheetName, librevenge::RVNGPropertyList &propList) const
add content to the propList
Definition: MWAWChart.cxx:518
Series(Series const &)=default
Type m_type
the type
Definition: MWAWChart.hxx:136
MWAWBox2i m_range
the data range
Definition: MWAWChart.hxx:138
virtual ~Series()
destructor
Definition: MWAWChart.cxx:489
Type
the series type
Definition: MWAWChart.hxx:121
@ S_Stock
Definition: MWAWChart.hxx:121
@ S_Area
Definition: MWAWChart.hxx:121
@ S_Bar
Definition: MWAWChart.hxx:121
@ S_Column
Definition: MWAWChart.hxx:121
@ S_Line
Definition: MWAWChart.hxx:121
@ S_Scatter
Definition: MWAWChart.hxx:121
@ S_Pie
Definition: MWAWChart.hxx:121
static std::string getSeriesTypeName(Type type)
returns a string corresponding to a series type
Definition: MWAWChart.cxx:493
friend std::ostream & operator<<(std::ostream &o, Series const &series)
operator<<
Definition: MWAWChart.cxx:544
void addStyleTo(librevenge::RVNGPropertyList &propList) const
add style to the propList
Definition: MWAWChart.cxx:539
MWAWGraphicStyle m_style
the graphic style
Definition: MWAWChart.hxx:140
a text zone a chart
Definition: MWAWChart.hxx:143
Type m_type
the zone type
Definition: MWAWChart.hxx:162
TextZone(TextZone const &)=default
MWAWVec2i m_cell
the cell position ( for title and subtitle )
Definition: MWAWChart.hxx:168
TextZone & operator=(TextZone const &)=default
~TextZone()
destructor
Definition: MWAWChart.cxx:595
MWAWGraphicStyle m_style
the graphic style
Definition: MWAWChart.hxx:174
Type
the text type
Definition: MWAWChart.hxx:145
@ T_Title
Definition: MWAWChart.hxx:145
@ T_AxisX
Definition: MWAWChart.hxx:145
@ T_SubTitle
Definition: MWAWChart.hxx:145
@ T_AxisY
Definition: MWAWChart.hxx:145
@ T_AxisZ
Definition: MWAWChart.hxx:145
friend std::ostream & operator<<(std::ostream &o, TextZone const &zone)
operator<<
Definition: MWAWChart.cxx:640
MWAWEntry m_textEntry
the text entry
Definition: MWAWChart.hxx:170
void addContentTo(std::string const &sheetName, librevenge::RVNGPropertyList &propList) const
add content to the propList
Definition: MWAWChart.cxx:599
ContentType m_contentType
the content type
Definition: MWAWChart.hxx:164
TextZone()
constructor
Definition: MWAWChart.cxx:583
MWAWFont m_font
the zone format
Definition: MWAWChart.hxx:172
ContentType
the text content type
Definition: MWAWChart.hxx:147
@ C_Cell
Definition: MWAWChart.hxx:147
@ C_Text
Definition: MWAWChart.hxx:147
MWAWVec2f m_position
the position in the zone
Definition: MWAWChart.hxx:166
void addStyleTo(librevenge::RVNGPropertyList &propList, std::shared_ptr< MWAWFontConverter > fontConverter) const
add to the propList
Definition: MWAWChart.cxx:634

Generated on Thu May 13 2021 02:58:23 for libmwaw by doxygen 1.9.1