Files
core/ASCOfficeOdfFileW/source/OdfFormat/office_elements.h
Alexander.Trofimov 04d197375c change license to 2017
2017-01-17 18:17:26 +03:00

147 lines
4.4 KiB
C++

/*
* (c) Copyright Ascensio System SIA 2010-2017
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
#pragma once
#include <vector>
#include <boost/algorithm/string/replace.hpp>
#include <cpdoccore/CPSharedPtr.h>
#include <cpdoccore/CPWeakPtr.h>
#include <cpdoccore/xml/xmlelement.h>
#include <cpdoccore/xml/attributes.h>
#include "office_elements_type.h"
#include "visitor.h"
namespace cpdoccore {
namespace odf_writer {
class odf_conversion_context;
class office_element;
typedef shared_ptr<office_element>::Type office_element_ptr;
typedef weak_ptr<office_element>::Type office_element_weak_ptr;
typedef std::vector<office_element_ptr> office_element_ptr_array;
class office_element : public xml::element<wchar_t>, public base_visitable, boost::noncopyable
{
public:
office_element() : context_(NULL) {}
virtual ElementType get_type() const = 0;
virtual ~office_element() = 0;
virtual void serialize(std::wostream & _Wostream) = 0 ;
void setContext(odf_conversion_context * Context) { context_ = Context; }
odf_conversion_context * getContext() { return context_; }
const odf_conversion_context * getContext() const { return context_; }
virtual void add_child_element( const office_element_ptr & child) = 0;
virtual void create_child_element( const std::wstring & Ns, const std::wstring & Name)=0;
virtual void add_text(const std::wstring & Text) {}
void set_root(bool root){is_root_ = root;}
////////////////////////
virtual std::wostream & serialize(std::wostream & _Wostream) const
{
_CP_LOG << L"[warning] use base text_to_stream\n";
return _Wostream;
}
virtual std::wostream & xml_to_stream(std::wostream & _Wostream) const
{
_CP_LOG << L"[warning] use base xml_to_stream\n";
return _Wostream;
}
private:
bool is_root_;
odf_conversion_context * context_;
};
#define CPDOCCORE_OFFICE_DOCUMENT_IMPL_NAME_FUNCS_ public:\
virtual const wchar_t * get_ns() const { return ns; }\
virtual const wchar_t * get_name() const { return name; }\
virtual xml::NodeType get_xml_type() const { return xml_type; }\
virtual ElementType get_type() const { return type; }
inline office_element::~office_element()
{
}
/// \class office_element_impl
template <class Element>
class office_element_impl : public virtual office_element
{
// xml::element impl
public:
virtual const wchar_t * get_ns() const
{
return Element::ns;
}
virtual const wchar_t * get_name() const
{
return Element::name;
}
virtual xml::NodeType get_xml_type() const
{
return Element::xml_type;
}
virtual void add_child_element( const office_element_ptr & child)
{
_CP_LOG << L"Non add child in " << Element::ns << L":" << Element::name << std::endl;
}
private:
// office_element impl
public:
virtual ElementType get_type() const
{
return Element::type;
}
};
}
}