This class contents the main functions needed to create a spreadsheet processing Document. More...
#include <STOFFSpreadsheetListener.hxx>
Public Member Functions | |
STOFFSpreadsheetListener (STOFFListManagerPtr listManager, std::vector< STOFFPageSpan > const &pageList, librevenge::RVNGSpreadsheetInterface *documentInterface) | |
constructor More... | |
virtual | ~STOFFSpreadsheetListener () |
destructor More... | |
Type | getType () const |
returns the listener type More... | |
void | setDocumentLanguage (std::string locale) |
sets the document language More... | |
void | setDocumentMetaData (const librevenge::RVNGPropertyList &list) |
sets the document meta data More... | |
void | startDocument () |
starts the document More... | |
void | endDocument (bool sendDelayedSubDoc=true) |
ends the document More... | |
bool | isDocumentStarted () const |
returns true if a document is opened More... | |
void | handleSubDocument (STOFFSubDocumentPtr subDocument, libstoff::SubDocumentType subDocumentType) |
function called to add a subdocument More... | |
bool | isSubDocumentOpened (libstoff::SubDocumentType &subdocType) const |
returns try if a subdocument is open More... | |
bool | openFrame (STOFFPosition const &pos, STOFFGraphicStyle const &style=STOFFGraphicStyle()) |
tries to open a frame More... | |
void | closeFrame () |
tries to close a frame More... | |
bool | openGroup (STOFFPosition const &pos) |
open a group (not implemented) More... | |
void | closeGroup () |
close a group (not implemented) More... | |
bool | canWriteText () const |
returns true if we can add text data More... | |
bool | isPageSpanOpened () const |
returns true if a page is opened More... | |
STOFFPageSpan const & | getPageSpan () |
returns the current page span More... | |
bool | openHeader (librevenge::RVNGPropertyList const &extras) |
open a header (interaction with STOFFPageSpan which fills the parameters for openHeader) More... | |
bool | openFooter (librevenge::RVNGPropertyList const &extras) |
open a footer (interaction with STOFFPageSpan which fills the parameters for openFooter) More... | |
bool | closeHeader () |
close a header More... | |
bool | closeFooter () |
close a footer More... | |
bool | insertHeaderRegion (STOFFSubDocumentPtr subDocument, librevenge::RVNGString const &which) |
insert a header More... | |
bool | insertFooterRegion (STOFFSubDocumentPtr subDocument, librevenge::RVNGString const &which) |
insert a footer More... | |
bool | isHeaderFooterOpened () const |
returns true if the header/footer is open More... | |
void | openSheet (std::vector< float > const &colWidth, librevenge::RVNGUnit unit, std::vector< int > const &repeatColWidthNumber=std::vector< int >(), librevenge::RVNGString const &name="") |
open a sheet More... | |
void | closeSheet () |
closes this sheet More... | |
void | openSheetRow (float h, librevenge::RVNGUnit unit, int numRepeated=1) |
open a row with given height ( if h < 0.0, set min-row-height = -h ) More... | |
void | closeSheetRow () |
closes this row More... | |
void | openSheetCell (STOFFCell const &cell, STOFFCellContent const &content, int numRepeated=1) |
open a cell More... | |
void | closeSheetCell () |
close a cell More... | |
void | insertChart (STOFFPosition const &pos, STOFFChart &chart, STOFFGraphicStyle const &style=STOFFGraphicStyle()) |
adds a chart in given position More... | |
void | insertChar (uint8_t character) |
adds a basic character, .. More... | |
void | insertUnicode (uint32_t character) |
adds an unicode character. More... | |
void | insertUnicodeString (librevenge::RVNGString const &str) |
adds a unicode string More... | |
void | insertTab () |
adds a tab More... | |
void | insertEOL (bool softBreak=false) |
adds an end of line ( by default an hard one) More... | |
void | setFont (STOFFFont const &font) |
sets the font More... | |
STOFFFont const & | getFont () const |
returns the actual font More... | |
bool | isParagraphOpened () const |
returns true if a paragraph or a list is opened More... | |
void | setParagraph (STOFFParagraph const ¶graph) |
sets the paragraph More... | |
STOFFParagraph const & | getParagraph () const |
returns the actual paragraph More... | |
void | defineStyle (STOFFFont const &style) |
defines a font styles More... | |
bool | isFontStyleDefined (librevenge::RVNGString const &name) const |
check if a font style with a display name is already defined More... | |
void | defineStyle (STOFFGraphicStyle const &style) |
defines a graphic styles More... | |
bool | isGraphicStyleDefined (librevenge::RVNGString const &name) const |
check if a graphic style with a display name is already defined More... | |
void | defineStyle (STOFFParagraph const &style) |
defines a paragraph styles More... | |
bool | isParagraphStyleDefined (librevenge::RVNGString const &name) const |
check if a paragraph style with a display name is already defined More... | |
void | insertField (STOFFField const &field) |
adds a field type More... | |
void | openLink (STOFFLink const &link) |
open a link More... | |
void | closeLink () |
close a link More... | |
void | insertNote (STOFFNote const ¬e, STOFFSubDocumentPtr &subDocument) |
insert a note More... | |
void | insertComment (STOFFSubDocumentPtr &subDocument, librevenge::RVNGString const &creator="", librevenge::RVNGString const &date="") |
adds comment More... | |
void | insertPicture (STOFFPosition const &pos, STOFFEmbeddedObject const &picture, STOFFGraphicStyle const &style=STOFFGraphicStyle()) |
adds a picture with potential various representationin given position More... | |
void | insertShape (STOFFGraphicShape const &shape, STOFFGraphicStyle const &style, STOFFPosition const &pos) |
adds a shape picture in given position More... | |
void | insertTextBox (STOFFPosition const &pos, STOFFSubDocumentPtr subDocument, STOFFGraphicStyle const &frameStyle=STOFFGraphicStyle()) |
adds a textbox in given position More... | |
void | openTable (STOFFTable const &table) |
open a table More... | |
void | closeTable () |
closes this table More... | |
void | openTableRow (float h, librevenge::RVNGUnit unit, bool headerRow=false) |
open a row with given height ( if h < 0.0, set min-row-height = -h ) More... | |
void | closeTableRow () |
closes this row More... | |
void | openTableCell (STOFFCell const &cell) |
open a cell More... | |
void | closeTableCell () |
close a cell More... | |
void | addCoveredTableCell (STOFFVec2i const &pos) |
add covered cell More... | |
void | addEmptyTableCell (STOFFVec2i const &pos, STOFFVec2i span=STOFFVec2i(1, 1)) |
add empty cell More... | |
bool | canOpenSectionAddBreak () const |
returns true if we can add open a section, add page break, ... More... | |
bool | isSectionOpened () const |
returns true if a section is opened More... | |
STOFFSection const & | getSection () const |
returns the actual section More... | |
bool | openSection (STOFFSection const §ion) |
open a section if possible More... | |
bool | closeSection () |
close a section More... | |
void | insertBreak (BreakType breakType) |
inserts a break type: ColumBreak, PageBreak, .. More... | |
![]() | |
virtual | ~STOFFListener () |
destructor More... | |
STOFFListManagerPtr | getListManager () const |
return the list manager More... | |
virtual void | insertUnicodeList (std::vector< uint32_t > const &list) |
try to insert a list of unicode character More... | |
Protected Member Functions | |
void | _openPageSpan (bool sendHeaderFooters=true) |
does open a new page (low level) More... | |
void | _closePageSpan () |
does close a page (low level) More... | |
void | _startSubDocument () |
void | _endSubDocument () |
void | _handleFrameParameters (librevenge::RVNGPropertyList &propList, STOFFPosition const &pos) |
void | _openParagraph () |
void | _closeParagraph () |
void | _resetParagraphState (const bool isListElement=false) |
void | _openListElement () |
open a list level More... | |
void | _closeListElement () |
close a list level More... | |
void | _changeList () |
update the list so that it corresponds to the actual level More... | |
int | _getListId () const |
low level: find a list id which corresponds to actual list and a change of level. More... | |
void | _openSpan () |
void | _closeSpan () |
void | _flushText () |
void | _flushDeferredTabs () |
shared_ptr< STOFFSpreadsheetListenerInternal::State > | _pushParsingState () |
creates a new parsing state (copy of the actual state) More... | |
void | _popParsingState () |
resets the previous parsing state More... | |
![]() | |
STOFFListener (STOFFListManagerPtr listManager) | |
constructor More... | |
Protected Attributes | |
shared_ptr< STOFFSpreadsheetListenerInternal::DocumentState > | m_ds |
the main parse state More... | |
shared_ptr< STOFFSpreadsheetListenerInternal::State > | m_ps |
the actual local parse state More... | |
std::vector< shared_ptr< STOFFSpreadsheetListenerInternal::State > > | m_psStack |
stack of local state More... | |
librevenge::RVNGSpreadsheetInterface * | m_documentInterface |
the document interface More... | |
![]() | |
STOFFListManagerPtr | m_listManager |
the list manager More... | |
Private Member Functions | |
STOFFSpreadsheetListener (const STOFFSpreadsheetListener &) | |
copy constructor (unimplemented) More... | |
STOFFSpreadsheetListener & | operator= (const STOFFSpreadsheetListener &) |
operator= (unimplemented) More... | |
Additional Inherited Members | |
![]() | |
enum | Type { Graphic, Presentation, Spreadsheet, Text } |
the listener type More... | |
enum | BreakType { PageBreak =0, SoftPageBreak, ColumnBreak } |
the different break type More... | |
This class contents the main functions needed to create a spreadsheet processing Document.
STOFFSpreadsheetListener::STOFFSpreadsheetListener | ( | STOFFListManagerPtr | listManager, |
std::vector< STOFFPageSpan > const & | pageList, | ||
librevenge::RVNGSpreadsheetInterface * | documentInterface | ||
) |
constructor
|
virtual |
destructor
|
private |
copy constructor (unimplemented)
|
protected |
update the list so that it corresponds to the actual level
Referenced by _endSubDocument(), _openSpan(), closeTableCell(), endDocument(), and insertNote().
|
protected |
close a list level
Referenced by _closeParagraph().
|
protected |
does close a page (low level)
Referenced by endDocument(), and insertBreak().
|
protected |
Referenced by _changeList(), _endSubDocument(), closeSheetCell(), closeTableCell(), endDocument(), insertBreak(), insertComment(), insertEOL(), insertNote(), openSheet(), and openTable().
|
protected |
Referenced by _closeListElement(), _closeParagraph(), _endSubDocument(), closeLink(), insertComment(), insertNote(), and setFont().
|
protected |
Referenced by closeSheet(), closeTable(), handleSubDocument(), and insertChart().
|
protected |
Referenced by insertChar(), insertEOL(), insertField(), insertTab(), insertUnicode(), insertUnicodeString(), and openLink().
|
protected |
Referenced by _closeSpan(), insertComment(), insertEOL(), insertField(), insertNote(), insertShape(), insertTab(), openFrame(), and openLink().
|
protected |
low level: find a list id which corresponds to actual list and a change of level.
Referenced by _changeList().
|
protected |
Referenced by closeFrame(), and openFrame().
|
protected |
open a list level
Referenced by _openSpan().
|
protected |
does open a new page (low level)
Referenced by endDocument(), getPageSpan(), and openSheet().
|
protected |
Referenced by _openSpan(), insertComment(), insertNote(), insertShape(), and openFrame().
|
protected |
|
protected |
resets the previous parsing state
Referenced by closeFooter(), closeHeader(), closeLink(), closeSheet(), closeSheetCell(), closeTable(), handleSubDocument(), and insertChart().
|
protected |
creates a new parsing state (copy of the actual state)
Referenced by handleSubDocument(), insertChart(), openFooter(), openHeader(), openLink(), openSheet(), openSheetCell(), and openTable().
|
protected |
Referenced by _openListElement(), and _openParagraph().
|
protected |
Referenced by handleSubDocument(), insertChart(), openSheet(), and openTable().
|
virtual |
add covered cell
Implements STOFFListener.
|
virtual |
add empty cell
Implements STOFFListener.
|
inlinevirtual |
returns true if we can add open a section, add page break, ...
Implements STOFFListener.
|
virtual |
returns true if we can add text data
Implements STOFFListener.
Referenced by insertComment(), and insertNote().
|
virtual |
close a footer
Implements STOFFListener.
|
virtual |
tries to close a frame
Implements STOFFListener.
Referenced by insertChart(), insertPicture(), and insertTextBox().
|
virtual |
close a group (not implemented)
Implements STOFFListener.
|
virtual |
close a header
Implements STOFFListener.
|
virtual |
close a link
Implements STOFFListener.
|
virtual |
close a section
Implements STOFFListener.
void STOFFSpreadsheetListener::closeSheet | ( | ) |
closes this sheet
Referenced by endDocument().
void STOFFSpreadsheetListener::closeSheetCell | ( | ) |
close a cell
Referenced by openSheetCell().
void STOFFSpreadsheetListener::closeSheetRow | ( | ) |
closes this row
|
virtual |
|
virtual |
close a cell
Implements STOFFListener.
Referenced by addCoveredTableCell(), addEmptyTableCell(), and openTableCell().
|
virtual |
closes this row
Implements STOFFListener.
|
virtual |
defines a font styles
Implements STOFFListener.
|
virtual |
defines a graphic styles
Implements STOFFListener.
|
virtual |
defines a paragraph styles
Implements STOFFListener.
|
virtual |
ends the document
Implements STOFFListener.
|
virtual |
returns the actual font
Implements STOFFListener.
|
virtual |
returns the current page span
Implements STOFFListener.
|
virtual |
returns the actual paragraph
Implements STOFFListener.
|
virtual |
returns the actual section
Implements STOFFListener.
|
inlinevirtual |
returns the listener type
Implements STOFFListener.
|
virtual |
function called to add a subdocument
Implements STOFFListener.
Referenced by insertComment(), insertFooterRegion(), insertHeaderRegion(), insertNote(), and insertTextBox().
|
virtual |
inserts a break type: ColumBreak, PageBreak, ..
Implements STOFFListener.
|
virtual |
adds a basic character, ..
Implements STOFFListener.
void STOFFSpreadsheetListener::insertChart | ( | STOFFPosition const & | pos, |
STOFFChart & | chart, | ||
STOFFGraphicStyle const & | style = STOFFGraphicStyle() |
||
) |
adds a chart in given position
Referenced by closeSheetCell().
|
virtual |
adds comment
Implements STOFFListener.
|
virtual |
adds an end of line ( by default an hard one)
Implements STOFFListener.
|
virtual |
adds a field type
Implements STOFFListener.
|
virtual |
insert a footer
Implements STOFFListener.
|
virtual |
insert a header
Implements STOFFListener.
|
virtual |
insert a note
Must not happen excepted in corrupted document, so we do the minimum. Note that we have no choice, either we begin by closing the paragraph, ... or we reprogram handleSubDocument.
Implements STOFFListener.
|
virtual |
adds a picture with potential various representationin given position
Implements STOFFListener.
|
virtual |
adds a shape picture in given position
Implements STOFFListener.
|
virtual |
adds a tab
Implements STOFFListener.
|
virtual |
|
virtual |
adds an unicode character.
By convention if character=0xfffd(undef), no character is added
Implements STOFFListener.
Referenced by insertChar().
|
virtual |
adds a unicode string
Implements STOFFListener.
|
virtual |
returns true if a document is opened
Implements STOFFListener.
|
virtual |
check if a font style with a display name is already defined
Implements STOFFListener.
|
virtual |
check if a graphic style with a display name is already defined
Implements STOFFListener.
|
virtual |
returns true if the header/footer is open
Implements STOFFListener.
|
virtual |
returns true if a page is opened
Implements STOFFListener.
|
virtual |
returns true if a paragraph or a list is opened
Implements STOFFListener.
|
virtual |
check if a paragraph style with a display name is already defined
Implements STOFFListener.
|
inlinevirtual |
returns true if a section is opened
Implements STOFFListener.
|
virtual |
returns try if a subdocument is open
Implements STOFFListener.
|
virtual |
open a footer (interaction with STOFFPageSpan which fills the parameters for openFooter)
Implements STOFFListener.
|
virtual |
tries to open a frame
Implements STOFFListener.
Referenced by insertChart(), insertPicture(), and insertTextBox().
|
virtual |
open a group (not implemented)
Implements STOFFListener.
|
virtual |
open a header (interaction with STOFFPageSpan which fills the parameters for openHeader)
Implements STOFFListener.
|
virtual |
open a link
Implements STOFFListener.
|
virtual |
open a section if possible
Implements STOFFListener.
void STOFFSpreadsheetListener::openSheet | ( | std::vector< float > const & | colWidth, |
librevenge::RVNGUnit | unit, | ||
std::vector< int > const & | repeatColWidthNumber = std::vector<int>() , |
||
librevenge::RVNGString const & | name = "" |
||
) |
open a sheet
void STOFFSpreadsheetListener::openSheetCell | ( | STOFFCell const & | cell, |
STOFFCellContent const & | content, | ||
int | numRepeated = 1 |
||
) |
open a cell
void STOFFSpreadsheetListener::openSheetRow | ( | float | h, |
librevenge::RVNGUnit | unit, | ||
int | numRepeated = 1 |
||
) |
open a row with given height ( if h < 0.0, set min-row-height = -h )
|
virtual |
open a table
Implements STOFFListener.
|
virtual |
open a cell
Implements STOFFListener.
|
virtual |
open a row with given height ( if h < 0.0, set min-row-height = -h )
Implements STOFFListener.
|
private |
operator= (unimplemented)
|
virtual |
sets the document language
Implements STOFFListener.
|
virtual |
sets the document meta data
Implements STOFFListener.
|
virtual |
sets the font
Implements STOFFListener.
|
virtual |
sets the paragraph
Implements STOFFListener.
|
virtual |
|
protected |
the document interface
Referenced by _changeList(), _closeListElement(), _closePageSpan(), _closeParagraph(), _closeSpan(), _flushDeferredTabs(), _flushText(), _openListElement(), _openPageSpan(), _openParagraph(), _openSpan(), addCoveredTableCell(), addEmptyTableCell(), closeFooter(), closeFrame(), closeHeader(), closeLink(), closeSheet(), closeSheetCell(), closeSheetRow(), closeTable(), closeTableCell(), closeTableRow(), defineStyle(), endDocument(), insertChart(), insertComment(), insertEOL(), insertField(), insertFooterRegion(), insertHeaderRegion(), insertNote(), insertPicture(), insertShape(), insertTextBox(), openFooter(), openFrame(), openHeader(), openLink(), openSheet(), openSheetCell(), openSheetRow(), openTable(), openTableCell(), openTableRow(), and startDocument().
|
protected |
the main parse state
Referenced by _changeList(), _openPageSpan(), _startSubDocument(), closeSheet(), closeSheetRow(), defineStyle(), endDocument(), getPageSpan(), getSection(), handleSubDocument(), insertBreak(), insertChart(), insertNote(), insertPicture(), insertShape(), insertTextBox(), isDocumentStarted(), isFontStyleDefined(), isGraphicStyleDefined(), isParagraphStyleDefined(), openFrame(), openSheet(), openSheetCell(), openSheetRow(), setDocumentLanguage(), setDocumentMetaData(), and startDocument().
|
protected |
the actual local parse state
Referenced by _changeList(), _closeListElement(), _closePageSpan(), _closeParagraph(), _closeSpan(), _endSubDocument(), _flushDeferredTabs(), _flushText(), _getListId(), _openListElement(), _openPageSpan(), _openParagraph(), _openSpan(), _popParsingState(), _pushParsingState(), _resetParagraphState(), _startSubDocument(), addCoveredTableCell(), addEmptyTableCell(), canWriteText(), closeFooter(), closeFrame(), closeHeader(), closeLink(), closeSheetCell(), closeTable(), closeTableCell(), closeTableRow(), endDocument(), getFont(), getPageSpan(), getParagraph(), handleSubDocument(), insertBreak(), insertChar(), insertChart(), insertComment(), insertEOL(), insertField(), insertFooterRegion(), insertHeaderRegion(), insertNote(), insertShape(), insertTab(), insertUnicode(), insertUnicodeString(), isHeaderFooterOpened(), isPageSpanOpened(), isParagraphOpened(), isSubDocumentOpened(), openFooter(), openFrame(), openHeader(), openLink(), openSheet(), openSheetCell(), openTable(), openTableCell(), openTableRow(), setFont(), and setParagraph().
|
protected |
stack of local state
Referenced by _popParsingState(), and _pushParsingState().