STOFFSpreadsheetListener.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 
40 #ifndef STOFF_SPREADSHEET_LISTENER_H
41 #define STOFF_SPREADSHEET_LISTENER_H
42 
43 #include <vector>
44 
45 #include <librevenge/librevenge.h>
46 
48 
49 #include "STOFFListener.hxx"
50 
51 class STOFFCell;
52 class STOFFCellContent;
53 class STOFFChart;
54 class STOFFGraphicStyle;
55 class STOFFTable;
56 
58 {
59 struct DocumentState;
60 struct State;
61 }
62 
65 {
66 public:
68  STOFFSpreadsheetListener(STOFFListManagerPtr listManager, std::vector<STOFFPageSpan> const &pageList, librevenge::RVNGSpreadsheetInterface *documentInterface);
70  ~STOFFSpreadsheetListener() final;
71 
73  Type getType() const final
74  {
75  return Spreadsheet;
76  }
77 
79  void setDocumentLanguage(std::string locale) final;
81  void setDocumentMetaData(const librevenge::RVNGPropertyList &list) final;
82 
84  void startDocument() final;
86  void endDocument(bool sendDelayedSubDoc=true) final;
88  bool isDocumentStarted() const final;
89 
91  void handleSubDocument(STOFFSubDocumentPtr subDocument, libstoff::SubDocumentType subDocumentType) final;
93  bool isSubDocumentOpened(libstoff::SubDocumentType &subdocType) const final;
95  bool openFrame(STOFFPosition const &pos, STOFFGraphicStyle const &style=STOFFGraphicStyle()) final;
97  void closeFrame() final;
99  bool openGroup(STOFFPosition const &pos) final;
101  void closeGroup() final;
102 
104  bool canWriteText() const final;
105 
106  // ------ page --------
108  bool isPageSpanOpened() const final;
112  STOFFPageSpan const &getPageSpan() final;
113 
114  // ------ header/footer --------
116  bool openHeader(librevenge::RVNGPropertyList const &extras) final;
118  bool openFooter(librevenge::RVNGPropertyList const &extras) final;
120  bool closeHeader() final;
122  bool closeFooter() final;
124  bool insertHeaderRegion(STOFFSubDocumentPtr subDocument, librevenge::RVNGString const &which) final;
126  bool insertFooterRegion(STOFFSubDocumentPtr subDocument, librevenge::RVNGString const &which) final;
128  bool isHeaderFooterOpened() const final;
129 
130  // ------- sheet -----------------
132  void openSheet(std::vector<float> const &colWidth, librevenge::RVNGUnit unit,
133  std::vector<int> const &repeatColWidthNumber=std::vector<int>(), librevenge::RVNGString const &name="");
135  void closeSheet();
137  void openSheetRow(float h, librevenge::RVNGUnit unit, int numRepeated=1);
139  void closeSheetRow();
141  void openSheetCell(STOFFCell const &cell, STOFFCellContent const &content, int numRepeated=1);
143  void closeSheetCell();
144 
145  // ------- chart -----------------
147  void insertChart(STOFFPosition const &pos, STOFFChart &chart, STOFFGraphicStyle const &style=STOFFGraphicStyle());
148 
149  // ------ text data -----------
150 
152  void insertChar(uint8_t character) final;
155  void insertUnicode(uint32_t character) final;
157  void insertUnicodeString(librevenge::RVNGString const &str) final;
158 
160  void insertTab() final;
162  void insertEOL(bool softBreak=false) final;
163 
164  // ------ text format -----------
166  void setFont(STOFFFont const &font) final;
168  STOFFFont const &getFont() const final;
169 
170  // ------ paragraph format -----------
172  bool isParagraphOpened() const final;
174  void setParagraph(STOFFParagraph const &paragraph) final;
176  STOFFParagraph const &getParagraph() const final;
177 
178  // ------ style definition -----------
180  void defineStyle(STOFFFont const &style) final;
182  bool isFontStyleDefined(librevenge::RVNGString const &name) const final;
184  void defineStyle(STOFFGraphicStyle const &style) final;
186  bool isGraphicStyleDefined(librevenge::RVNGString const &name) const final;
188  void defineStyle(STOFFParagraph const &style) final;
190  bool isParagraphStyleDefined(librevenge::RVNGString const &name) const final;
191 
192  // ------- fields ----------------
194  void insertField(STOFFField const &field) final;
195 
196  // ------- link ----------------
198  void openLink(STOFFLink const &link) final;
200  void closeLink() final;
201 
202  // ------- subdocument -----------------
204  void insertNote(STOFFNote const &note, STOFFSubDocumentPtr &subDocument) final;
206  void insertComment(STOFFSubDocumentPtr &subDocument, librevenge::RVNGString const &creator="", librevenge::RVNGString const &date="") final;
207 
209  void insertPicture(STOFFPosition const &pos, STOFFEmbeddedObject const &picture,
210  STOFFGraphicStyle const &style=STOFFGraphicStyle()) final;
212  void insertShape(STOFFGraphicShape const &shape, STOFFGraphicStyle const &style, STOFFPosition const &pos) final;
214  void insertTextBox(STOFFPosition const &pos, STOFFSubDocumentPtr subDocument,
215  STOFFGraphicStyle const &frameStyle=STOFFGraphicStyle()) final;
216  // ------- table -----------------
218  void openTable(STOFFTable const &table) final;
220  void closeTable() final;
222  void openTableRow(float h, librevenge::RVNGUnit unit, bool headerRow=false) final;
224  void closeTableRow() final;
226  void openTableCell(STOFFCell const &cell) final;
228  void closeTableCell() final;
230  void addCoveredTableCell(STOFFVec2i const &pos) final;
232  void addEmptyTableCell(STOFFVec2i const &pos, STOFFVec2i span=STOFFVec2i(1,1)) final;
233 
234  // ------- section ---------------
236  bool canOpenSectionAddBreak() const final
237  {
238  return false;
239  }
241  bool isSectionOpened() const final
242  {
243  return false;
244  }
246  STOFFSection const &getSection() const final;
248  bool openSection(STOFFSection const &section) final;
250  bool closeSection() final;
252  void insertBreak(BreakType breakType) final;
253 
254 protected:
256  void _openPageSpan(bool sendHeaderFooters=true);
258  void _closePageSpan();
259 
260  void _startSubDocument();
261  void _endSubDocument();
262 
263  void _handleFrameParameters(librevenge::RVNGPropertyList &propList, STOFFPosition const &pos);
264 
265  void _openParagraph();
266  void _closeParagraph();
267  void _resetParagraphState(const bool isListElement=false);
268 
270  void _openListElement();
272  void _closeListElement();
274  void _changeList();
279  int _getListId() const;
280 
281  void _openSpan();
282  void _closeSpan();
283 
284  void _flushText();
285  void _flushDeferredTabs();
286 
290  std::shared_ptr<STOFFSpreadsheetListenerInternal::State> _pushParsingState();
292  void _popParsingState();
293 
294 protected:
296  std::shared_ptr<STOFFSpreadsheetListenerInternal::DocumentState> m_ds;
298  std::shared_ptr<STOFFSpreadsheetListenerInternal::State> m_ps;
300  std::vector<std::shared_ptr<STOFFSpreadsheetListenerInternal::State> > m_psStack;
302  librevenge::RVNGSpreadsheetInterface *m_documentInterface;
303 
304 private:
309 };
310 
311 #endif
312 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
std::shared_ptr< STOFFSpreadsheetListenerInternal::State > m_ps
the actual local parse state
Definition: STOFFSpreadsheetListener.hxx:298
a structure used to define a cell and its format
Definition: STOFFCell.hxx:53
std::shared_ptr< STOFFSpreadsheetListenerInternal::DocumentState > m_ds
the main parse state
Definition: STOFFSpreadsheetListener.hxx:296
Type
the listener type
Definition: STOFFListener.hxx:57
small class use to define a sheet cell content
Definition: STOFFCell.hxx:234
Internal and low level namespace to define the states of STOFFSpreadsheetListener.
Definition: STOFFSpreadsheetListener.cxx:73
bool isSectionOpened() const final
returns true if a section is opened
Definition: STOFFSpreadsheetListener.hxx:241
a class used to recreate the table structure using cell informations, ....
Definition: STOFFTable.hxx:51
std::vector< std::shared_ptr< STOFFSpreadsheetListenerInternal::State > > m_psStack
stack of local state
Definition: STOFFSpreadsheetListener.hxx:300
a note
Definition: libstaroffice_internal.hxx:389
class to store the paragraph properties
Definition: STOFFParagraph.hxx:47
librevenge::RVNGSpreadsheetInterface * m_documentInterface
the document interface
Definition: STOFFSpreadsheetListener.hxx:302
This class contents the main functions needed to create a spreadsheet processing Document.
Definition: STOFFSpreadsheetListener.hxx:64
bool canOpenSectionAddBreak() const final
returns true if we can add open a section, add page break, ...
Definition: STOFFSpreadsheetListener.hxx:236
std::shared_ptr< STOFFSubDocument > STOFFSubDocumentPtr
a smart pointer of STOFFSubDocument
Definition: libstaroffice_internal.hxx:494
a class used to store a chart associated to a spreadsheet ....
Definition: STOFFChart.hxx:56
SubDocumentType
Definition: libstaroffice_internal.hxx:185
a class which stores section properties
Definition: STOFFSection.hxx:45
a field
Definition: libstaroffice_internal.hxx:363
a structure used to define a picture shape
Definition: STOFFGraphicShape.hxx:45
small class use to define a embedded object
Definition: libstaroffice_internal.hxx:408
STOFFVec2< int > STOFFVec2i
STOFFVec2 of int.
Definition: libstaroffice_internal.hxx:762
Class to store font.
Definition: STOFFFont.hxx:43
A class which defines the page properties.
Definition: STOFFPageSpan.hxx:75
BreakType
the different break type
Definition: STOFFListener.hxx:59
Type getType() const final
returns the listener type
Definition: STOFFSpreadsheetListener.hxx:73
std::shared_ptr< STOFFListManager > STOFFListManagerPtr
a smart pointer of STOFFListManager
Definition: libstaroffice_internal.hxx:488
This class contains a virtual interface to all listener.
Definition: STOFFListener.hxx:50
Class to store a graphic style.
Definition: STOFFGraphicStyle.hxx:44
Class to define the position of an object (textbox, picture, ..) in the document. ...
Definition: STOFFPosition.hxx:47

Generated on Wed Nov 8 2017 17:52:38 for libstaroffice by doxygen 1.8.13