Blob Blame History Raw
/* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */

/* libmwaw
* Version: MPL 2.0 / LGPLv2+
*
* The contents of this file are subject to the Mozilla Public License Version
* 2.0 (the "License"); you may not use this file except in compliance with
* the License or as specified alternatively below. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* Major Contributor(s):
 * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
 * Copyright (C) 2004 Marc Oude Kotte (marc@solcon.nl)
* Copyright (C) 2002 William Lachance (wrlach@gmail.com)
* Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
* Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
* Copyright (C) 2006, 2007 Andrew Ziem
* Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
*
*
* All Rights Reserved.
*
* 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 or later (the "LGPLv2+"),
* in which case the provisions of the LGPLv2+ are applicable
* instead of those above.
*/

#ifndef MWAW_GRAPHIC_ENCODER_HXX
#define MWAW_GRAPHIC_ENCODER_HXX

#include <librevenge/librevenge.h>
#include "libmwaw_internal.hxx"

class MWAWPropertyHandlerEncoder;

namespace MWAWGraphicEncoderInternal
{
struct State;
}
/** main class used to define store librevenge::RVNGDrawingInterface
    lists of command in a librevenge::RVNGBinaryData. \see MWAWGraphicDecoder
    can be used to decode back the pictures...

	\note as this class implements the functions librevenge::RVNGDrawingInterface,
  the documentation is not duplicated..
*/
class MWAWGraphicEncoder final : public librevenge::RVNGDrawingInterface
{
public:
  /// constructor
  MWAWGraphicEncoder();
  /// destructor
  ~MWAWGraphicEncoder() final;
  /// return the final graphic
  bool getBinaryResult(MWAWEmbeddedObject &result);

  void startDocument(const librevenge::RVNGPropertyList &propList) final;
  void endDocument() final;

  void defineEmbeddedFont(const librevenge::RVNGPropertyList &propList) final;

  void setDocumentMetaData(const librevenge::RVNGPropertyList &propList) final;
  void startPage(const librevenge::RVNGPropertyList &propList) final;
  void endPage() final;
  void startMasterPage(const librevenge::RVNGPropertyList &propList) final;
  void endMasterPage() final;

  void setStyle(const librevenge::RVNGPropertyList &propList) final;
  void startLayer(const librevenge::RVNGPropertyList &propList) final;
  void endLayer() final;
  void startEmbeddedGraphics(const librevenge::RVNGPropertyList &propList) final;
  void endEmbeddedGraphics() final;
  void openGroup(const librevenge::RVNGPropertyList &propList) final;
  void closeGroup() final;


  void drawRectangle(const librevenge::RVNGPropertyList &propList) final;
  void drawEllipse(const librevenge::RVNGPropertyList &propList) final;
  void drawPolygon(const librevenge::RVNGPropertyList &vertices) final;
  void drawPolyline(const librevenge::RVNGPropertyList &vertices) final;
  void drawPath(const librevenge::RVNGPropertyList &path) final;
  void drawConnector(const librevenge::RVNGPropertyList &propList) final;

  void drawGraphicObject(const librevenge::RVNGPropertyList &propList) final;

  void startTextObject(const librevenge::RVNGPropertyList &propList) final;
  void endTextObject() final;

  void startTableObject(const librevenge::RVNGPropertyList &propList) final;
  void endTableObject() final;
  void openTableRow(const librevenge::RVNGPropertyList &propList) final;
  void closeTableRow() final;
  void openTableCell(const librevenge::RVNGPropertyList &propList) final;
  void closeTableCell() final;
  void insertCoveredTableCell(const librevenge::RVNGPropertyList &propList) final;

  void insertTab() final;
  void insertSpace() final;
  void insertText(const librevenge::RVNGString &text) final;
  void insertLineBreak() final;
  void insertField(const librevenge::RVNGPropertyList &propList) final;

  void openLink(const librevenge::RVNGPropertyList &propList) final;
  void closeLink() final;
  void openOrderedListLevel(const librevenge::RVNGPropertyList &propList) final;
  void openUnorderedListLevel(const librevenge::RVNGPropertyList &propList) final;
  void closeOrderedListLevel() final;
  void closeUnorderedListLevel() final;
  void openListElement(const librevenge::RVNGPropertyList &propList) final;
  void closeListElement() final;

  void defineParagraphStyle(const librevenge::RVNGPropertyList &propList) final;
  void openParagraph(const librevenge::RVNGPropertyList &propList) final;
  void closeParagraph() final;

  void defineCharacterStyle(const librevenge::RVNGPropertyList &propList) final;
  void openSpan(const librevenge::RVNGPropertyList &propList) final;
  void closeSpan() final;

protected:
  //! the actual state
  std::shared_ptr<MWAWGraphicEncoderInternal::State> m_state;
};

#endif

// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab: