/* * (c) Copyright Ascensio System SIA 2010-2018 * * 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 * */ #include "text_elements.h" #include #include #include "paragraph_elements.h" #include "list.h" #include "odf_conversion_context.h" #include "odf_text_context.h" #include "style_paragraph_properties.h" #include "style_text_properties.h" namespace cpdoccore { using namespace odf_types; namespace odf_writer { using xml::xml_char_wc; // text:h //-------------------------------------------------------------------------------------------------------- const wchar_t * text_h::ns = L"text"; const wchar_t * text_h::name = L"h"; void paragraph::create_child_element( const std::wstring & Ns, const std::wstring & Name, odf_conversion_context * Context) { CP_CREATE_ELEMENT_SIMPLE(paragraph_content_); } void paragraph::add_child_element( const office_element_ptr & child_element) { paragraph_content_.push_back(child_element); } void paragraph::add_text(const std::wstring & Text) { office_element_ptr elm = text_text::create(Text) ; paragraph_content_.push_back( elm ); } void paragraph::serialize(std::wostream & strm) { for (size_t i = 0; i < paragraph_content_.size(); i++) { paragraph_content_[i]->serialize(strm); } } void paragraph::serialize_attr(CP_ATTR_NODE) { paragraph_attrs_.serialize(CP_GET_XML_NODE()); } void paragraph_attrs::serialize(CP_ATTR_NODE) { CP_XML_ATTR_OPT(L"text:style-name", text_style_name_); CP_XML_ATTR_OPT(L"text:cond-style-name",text_cond_style_name_); std::wstring text_class_names_all; for (size_t i = 0; i < text_class_names_.size(); i++) { text_class_names_all = text_class_names_[i] + std::wstring(L" "); } if (!text_class_names_all.empty()) CP_XML_ATTR(L"text:class-names", text_class_names_all); } ////////////////////////////////////////////// text_h::text_h() : text_outline_level_(1), text_restart_numbering_(false), text_is_list_header_(false) {} void text_h::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { CP_XML_ATTR (L"text:outline-level", text_outline_level_); CP_XML_ATTR (L"text:restart-numbering", text_restart_numbering_); CP_XML_ATTR_OPT (L"text:start-value", text_start_value_); CP_XML_ATTR (L"text:is-list-header", text_is_list_header_); paragraph_.serialize_attr (CP_GET_XML_NODE()); paragraph_.serialize (CP_XML_STREAM()); } } } // void text_h::create_child_element( const std::wstring & Ns, const std::wstring & Name) { paragraph_.create_child_element(Ns, Name, getContext()); } void text_h::add_text(const std::wstring & Text) { paragraph_.add_text(Text); } void text_h::add_child_element( const office_element_ptr & child_element) { paragraph_.add_child_element(child_element); } // text:p //-------------------------------------------------------------------------------------------------------- const wchar_t * text_p::ns = L"text"; const wchar_t * text_p::name = L"p"; void text_p::create_child_element(const std::wstring & Ns, const std::wstring & Name) { paragraph_.create_child_element( Ns, Name, getContext()); } void text_p::add_child_element( const office_element_ptr & child_element) { paragraph_.add_child_element(child_element); } void text_p::add_text(const std::wstring & Text) { paragraph_.add_text(Text); } void text_p::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { paragraph_.serialize_attr (CP_GET_XML_NODE()); paragraph_.serialize (CP_XML_STREAM()); } } } // text:list //-------------------------------------------------------------------------------------------------------- const wchar_t * text_list::ns = L"text"; const wchar_t * text_list::name = L"list"; void text_list::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { CP_XML_ATTR_OPT(L"text:style-name" , text_style_name_); CP_XML_ATTR_OPT(L"text:continue-numbering" , text_continue_numbering_ ); if (text_list_header_) text_list_header_->serialize(CP_XML_STREAM()); for (size_t i = 0; i < text_list_items_.size(); i++) { text_list_items_[i]->serialize(CP_XML_STREAM()); } } } } void text_list::create_child_element(const std::wstring & Ns, const std::wstring & Name) { if CP_CHECK_NAME(L"text", L"list-header") { CP_CREATE_ELEMENT(text_list_header_); } else { CP_CREATE_ELEMENT(text_list_items_); } } void text_list::add_child_element( const office_element_ptr & child_element) { if (!child_element) return; ElementType type = child_element->get_type(); if (type == typeTextListHeader) text_list_header_ = child_element; else text_list_items_.push_back(child_element); } // text:soft-page-break //-------------------------------------------------------------------------------------------------------- const wchar_t * text_soft_page_break::ns = L"text"; const wchar_t * text_soft_page_break::name = L"soft-page-break"; void text_soft_page_break::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE(); } } // text-section-attr //-------------------------------------------------------------------------------------------------------- void text_section_attr::serialize(CP_ATTR_NODE) { CP_XML_ATTR_OPT (L"text:style-name", text_style_name_); CP_XML_ATTR (L"text:name", text_name_); CP_XML_ATTR_OPT (L"text:protected", text_protected_); CP_XML_ATTR_OPT (L"text:protection-key", text_protection_key_); CP_XML_ATTR_OPT (L"text:display", text_display_); CP_XML_ATTR_OPT (L"text:condition", text_condition_); } // text:section //-------------------------------------------------------------------------------------------------------- const wchar_t * text_section::ns = L"text"; const wchar_t * text_section::name = L"section"; void text_section::create_child_element( const std::wstring & Ns, const std::wstring & Name) { if (L"text" == Ns && L"section-source" == Name) CP_CREATE_ELEMENT(text_section_source_); else CP_CREATE_ELEMENT(content_); } void text_section::add_child_element( const office_element_ptr & child_element) { if (!child_element) return; ElementType type = child_element->get_type(); if (type == typeTextSectionSource) text_section_source_ = child_element; else content_.push_back(child_element); } void text_section::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { text_section_attr_.serialize(CP_GET_XML_NODE()); if (text_section_source_) text_section_source_->serialize(CP_XML_STREAM()); for (size_t i = 0 ; i < content_.size(); i++) { content_[i]->serialize(CP_XML_STREAM()); } } } } // text-section-source-attr //-------------------------------------------------------------------------------------------------------- void text_section_source_attr::serialize(CP_ATTR_NODE) { common_xlink_attlist_.serialize(CP_GET_XML_NODE()); CP_XML_ATTR_OPT(L"text:section-name", text_section_name_); CP_XML_ATTR_OPT(L"text:filter-name", text_filter_name_); } // text:section-source //-------------------------------------------------------------------------------------------------------- const wchar_t * text_section_source::ns = L"text"; const wchar_t * text_section_source::name = L"section-source"; void text_section_source::create_child_element( const std::wstring & Ns, const std::wstring & Name) { CP_NOT_APPLICABLE_ELM(); } void text_section_source::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { text_section_source_attr_.serialize(CP_GET_XML_NODE()); } } } // text:index-body //-------------------------------------------------------------------------------------------------------- const wchar_t * text_index_body::ns = L"text"; const wchar_t * text_index_body::name = L"index-body"; void text_index_body::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { for (size_t i = 0 ; i < index_content_main_.size(); i++) { index_content_main_[i]->serialize(CP_XML_STREAM()); } } } } void text_index_body::create_child_element(const std::wstring & Ns, const std::wstring & Name) { CP_CREATE_ELEMENT(index_content_main_); } void text_index_body::add_child_element( const office_element_ptr & child_element) { index_content_main_.push_back(child_element); } // text:index-title //-------------------------------------------------------------------------------------------------------- const wchar_t * text_index_title::ns = L"text"; const wchar_t * text_index_title::name = L"index-title"; void text_index_title::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { for (size_t i = 0 ; i < index_content_main_.size(); i++) { index_content_main_[i]->serialize(CP_XML_STREAM()); } } } } void text_index_title::create_child_element(const std::wstring & Ns, const std::wstring & Name) { CP_CREATE_ELEMENT(index_content_main_); } void text_index_title::add_child_element( const office_element_ptr & child_element) { index_content_main_.push_back(child_element); } // text:table-of-content //-------------------------------------------------------------------------------------------------------- const wchar_t * text_table_of_content::ns = L"text"; const wchar_t * text_table_of_content::name = L"table-of-content"; void text_table_of_content::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { text_section_attr_.serialize(CP_GET_XML_NODE()); if (text_index_body_) text_index_body_->serialize(CP_XML_STREAM()); if (text_table_of_content_source_) text_table_of_content_source_->serialize(CP_XML_STREAM()); } } } void text_table_of_content::create_child_element( const std::wstring & Ns, const std::wstring & Name) { if CP_CHECK_NAME(L"text", L"index-body") { CP_CREATE_ELEMENT(text_index_body_); } } void text_table_of_content::add_child_element( const office_element_ptr & child_element) { text_index_body_ = child_element; } //-------------------------------------------------------------------------------------------------------- // text:tracked-changes //-------------------------------------------------------------------------------------------------------- const wchar_t * text_tracked_changes::ns = L"text"; const wchar_t * text_tracked_changes::name = L"tracked-changes"; void text_tracked_changes::create_child_element(const std::wstring & Ns, const std::wstring & Name) { if CP_CHECK_NAME(L"text", L"index-body") { CP_CREATE_ELEMENT(content_); } } void text_tracked_changes::add_child_element( const office_element_ptr & child_element) { content_.push_back(child_element); } void text_tracked_changes::serialize(std::wostream & _Wostream) { if (content_.empty()) return; CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { for (size_t i = 0 ; i < content_.size(); i++) { content_[i]->serialize (CP_XML_STREAM()); } } } } //--------------------------------------------------------------------------------------------------- const wchar_t * text_insertion::ns = L"text"; const wchar_t * text_insertion::name = L"insertion"; void text_insertion::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { if (office_change_info_) office_change_info_->serialize(CP_XML_STREAM()); for (size_t i = 0 ; i < content_.size(); i++) { content_[i]->serialize(CP_XML_STREAM()); } } } } //--------------------------------------------------------------------------------------------------- const wchar_t * text_deletion::ns = L"text"; const wchar_t * text_deletion::name = L"deletion"; void text_deletion::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { if (office_change_info_) office_change_info_->serialize(CP_XML_STREAM()); for (size_t i = 0 ; i < content_.size(); i++) { content_[i]->serialize(CP_XML_STREAM()); } } } } //--------------------------------------------------------------------------------------------------- const wchar_t * text_format_change::ns = L"text"; const wchar_t * text_format_change::name = L"format-change"; void text_format_change::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { CP_XML_ATTR_OPT(L"text:style-name", text_style_name_); if (office_change_info_) office_change_info_->serialize(CP_XML_STREAM()); for (size_t i = 0 ; i < content_.size(); i++) { content_[i]->serialize(CP_XML_STREAM()); } } } } //---------------------------------------------------------------------------------------------------------- const wchar_t * text_unknown_change::ns = L"text"; const wchar_t * text_unknown_change::name = L"UnknownChange"; void text_unknown_change::create_child_element(const std::wstring & Ns, const std::wstring & Name) { if (L"office" == Ns && L"change-info" == Name) CP_CREATE_ELEMENT(office_change_info_); else CP_CREATE_ELEMENT(content_); } void text_unknown_change::add_child_element( const office_element_ptr & child_element) { if (!child_element) return; ElementType type = child_element->get_type(); if (type == typeOfficeChangeInfo) office_change_info_= child_element; else content_.push_back(child_element); } void text_unknown_change::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { if (office_change_info_) office_change_info_->serialize(CP_XML_STREAM()); for (size_t i = 0 ; i < content_.size(); i++) { content_[i]->serialize(CP_XML_STREAM()); } } } } //--------------------------------------------------------------------------------------------------- const wchar_t * text_add_change::ns = L"text"; const wchar_t * text_add_change::name = L"unknown-change-mark"; //--------------------------------------------------------------------------------------------------- const wchar_t * text_change::ns = L"text"; const wchar_t * text_change::name = L"change"; void text_change::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { CP_XML_ATTR_OPT(L"text:change-id", text_change_id_); } } } //------------------------------------------------------------------------------------------ const wchar_t * text_change_start::ns = L"text"; const wchar_t * text_change_start::name = L"change-start"; void text_change_start::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { CP_XML_ATTR_OPT(L"text:change-id", text_change_id_); } } } //------------------------------------------------------------------------------------------ const wchar_t * text_change_end::ns = L"text"; const wchar_t * text_change_end::name = L"change-end"; void text_change_end::serialize(std::wostream & _Wostream) { CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { CP_XML_ATTR_OPT(L"text:change-id", text_change_id_); } } } //--------------------------------------------------------------------------------------------------- const wchar_t * text_changed_region::ns = L"text"; const wchar_t * text_changed_region::name = L"changed-region"; void text_changed_region::create_child_element(const std::wstring & Ns, const std::wstring & Name) { CP_CREATE_ELEMENT(element_); } void text_changed_region::add_child_element( const office_element_ptr & child_element) { element_ = child_element; } void text_changed_region::serialize(std::wostream & _Wostream) { if (!element_) return; CP_XML_WRITER(_Wostream) { CP_XML_NODE_SIMPLE() { CP_XML_ATTR_OPT(L"xml:id", text_id_); CP_XML_ATTR_OPT(L"text:id", text_id_); element_->serialize (CP_XML_STREAM()); } } } } }