Blob Blame History Raw
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/* libwpd
 * Version: MPL 2.0 / LGPLv2.1+
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * Major Contributor(s):
 * Copyright (C) 2004 Marc Maurer (uwog@uwog.net)
 * Copyright (C) 2005-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
 *
 * For minor contributions see the git repository.
 *
 * Alternatively, the contents of this file may be used under the terms
 * of the GNU Lesser General Public License Version 2.1 or later
 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
 * applicable instead of those above.
 *
 * For further information visit http://libwpd.sourceforge.net
 */

/* "This product is not manufactured, approved, or supported by
 * Corel Corporation or Corel Corporation Limited."
 */

#ifndef WP3CONTENTLISTENER_H
#define WP3CONTENTLISTENER_H

#include <memory>

#include "WP3Listener.h"
#include "WPXContentListener.h"
#include "WP3SubDocument.h"

struct WP3ContentParsingState
{
	WP3ContentParsingState();
	~WP3ContentParsingState();
	unsigned short m_colSpan;
	unsigned short m_rowSpan;
	librevenge::RVNGString m_textBuffer;
	std::unique_ptr<RGBSColor> m_cellFillColor;
	librevenge::RVNGString m_noteReference;

	WPXTableList m_tableList;
private:
	WP3ContentParsingState(const WP3ContentParsingState &);
	WP3ContentParsingState &operator=(const WP3ContentParsingState &);
};

class WP3ContentListener : public WP3Listener, protected WPXContentListener
{
public:
	WP3ContentListener(std::list<WPXPageSpan> &pageList, std::vector<WP3SubDocument *> &subDocuments, librevenge::RVNGTextInterface *documentInterface);
	~WP3ContentListener() override;

	void startDocument() override
	{
		WPXContentListener::startDocument();
	}
	void startSubDocument() override
	{
		WPXContentListener::startSubDocument();
	}
	void insertCharacter(unsigned character) override;
	void insertTab() override;
	void insertTab(unsigned char tabType, double tabPosition) override;
	void insertBreak(unsigned char breakType) override
	{
		WPXContentListener::insertBreak(breakType);
	}
	void insertEOL() override;
	void attributeChange(bool isOn, unsigned char attribute) override;
	void lineSpacingChange(double lineSpacing) override
	{
		WPXContentListener::lineSpacingChange(lineSpacing);
	}
	void pageMarginChange(unsigned char /* side */, unsigned short /* margin */) override {}
	void pageFormChange(unsigned short /* length */, unsigned short /* width */, WPXFormOrientation /* orientation */) override {}
	void marginChange(unsigned char side, unsigned short margin) override;
	void indentFirstLineChange(double offset) override;
	void setTabs(bool isRelative, const std::vector<WPXTabStop> tabStops) override;
	void columnChange(WPXTextColumnType columnType, unsigned char numColumns, const std::vector<double> &columnWidth,
	                  const std::vector<bool> &isFixedWidth) override;
	void endDocument() override
	{
		WPXContentListener::endDocument();
	}
	void endSubDocument() override
	{
		WPXContentListener::endSubDocument();
	}

	void defineTable(unsigned char position, unsigned short leftOffset) override;
	void addTableColumnDefinition(unsigned width, unsigned leftGutter, unsigned rightGutter,
	                              unsigned attributes, unsigned char alignment) override;
	void startTable() override;
	void insertRow();
	void insertCell();
	void closeCell() override;
	void closeRow() override;
	void setTableCellSpan(unsigned short colSpan, unsigned short rowSpan) override;
	void setTableCellFillColor(const RGBSColor *cellFillColor) override;
	void endTable() override;
	void undoChange(unsigned char undoType, unsigned short undoLevel) override;
	void justificationChange(unsigned char justification) override;
	void setTextColor(const RGBSColor *fontColor) override;
	void setTextFont(const librevenge::RVNGString &fontName) override;
	void setFontSize(unsigned short fontSize) override;
	void insertPageNumber(const librevenge::RVNGString &pageNumber) override;
	void insertNoteReference(const librevenge::RVNGString &noteReference) override;
	void insertNote(WPXNoteType noteType, const WP3SubDocument *subDocument) override;
	void headerFooterGroup(unsigned char headerFooterType, unsigned char occurrenceBits, WP3SubDocument *subDocument) override;
	void suppressPage(unsigned short /* suppressCode */) override {}
	void backTab() override;
	void leftIndent() override;
	void leftIndent(double offset) override;
	void leftRightIndent() override;
	void leftRightIndent(double offset) override;
	void insertPicture(double height, double width, double verticalOffset, double horizontalOffset, unsigned char leftColumn, unsigned char rightColumn,
	                   unsigned short figureFlags, const librevenge::RVNGBinaryData &binaryData) override;
	void insertTextBox(double height, double width, double verticalOffset, double horizontalOffset, unsigned char leftColumn, unsigned char rightColumn,
	                   unsigned short figureFlags, const WP3SubDocument *subDocument, const WP3SubDocument *caption) override;
	void insertWP51Table(double height, double width, double verticalOffset, double horizontalOffset, unsigned char leftColumn, unsigned char rightColumn,
	                     unsigned short figureFlags, const WP3SubDocument *subDocument, const WP3SubDocument *caption) override;

protected:
	void _handleSubDocument(const WPXSubDocument *subDocument, WPXSubDocumentType subDocumentType, WPXTableList tableList, unsigned nextTableIndice = 0) override;
	void _openParagraph() override;

	void _flushText() override;
	void _changeList() override {}

	void _handleFrameParameters(librevenge::RVNGPropertyList &propList, double height, double width, double verticalOffset, double horizontalOffset, unsigned char leftColumn, unsigned char rightColumn,
	                            unsigned short figureFlags);

private:
	WP3ContentListener(const WP3ContentListener &);
	WP3ContentListener &operator=(const WP3ContentListener &);
	std::unique_ptr<WP3ContentParsingState> m_parseState;
	std::vector<WP3SubDocument *> &m_subDocuments;
};

#endif /* WP3CONTENTLISTENER_H */
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */