/* -*- mode: C++; tab-width: 4; c-basic-offset: 4; -*- */ /* AbiSource * * Copyright (C) 2007 Philippe Milot * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ // Class definition include #include // Internal includes #include #include // AbiWord includes #include #include #include // External includes #include OXML_Style::OXML_Style(const std::string & id, const std::string & name) : OXML_ObjectWithAttrProp(), m_id(id), m_name(name), m_basedon(""), m_followedby("") { setAttribute(PT_NAME_ATTRIBUTE_NAME, name.c_str()); } OXML_Style::~OXML_Style() { } UT_Error OXML_Style::serialize(IE_Exp_OpenXML* exporter) { UT_Error err = UT_OK; bool b_docDefaults = false; const gchar* szValue = NULL; const gchar* name = NULL; const gchar* type = NULL; getAttribute("type", type); getAttribute("name", name); if(name) { if(!strcmp(name, "Normal")) { b_docDefaults = true; } } std::string szType(type); // type is character or paragraph if(b_docDefaults) { err = exporter->startDocumentDefaultProperties(); if(err != UT_OK) return err; } else { err = exporter->startStyle(m_name.c_str(), m_basedon.c_str(), m_followedby.c_str(), szType.c_str()); if(err != UT_OK) return err; } // PARAGRAPH PROPERTIES if(b_docDefaults) { err = exporter->startParagraphDefaultProperties(); if(err != UT_OK) return err; } err = exporter->startParagraphProperties(TARGET_STYLES); if(err != UT_OK) return err; if(getProperty("widows", szValue) == UT_OK) { err = exporter->setWidows(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("text-align", szValue) == UT_OK) { if(!strcmp(szValue, "justify")) { err = exporter->setTextAlignment(TARGET_STYLES, "both"); } else if(!strcmp(szValue, "center")) { err = exporter->setTextAlignment(TARGET_STYLES, "center"); } else if(!strcmp(szValue, "right")) { err = exporter->setTextAlignment(TARGET_STYLES, "right"); } else if(!strcmp(szValue, "left")) { err = exporter->setTextAlignment(TARGET_STYLES, "left"); } if(err != UT_OK) return err; } if(getProperty("text-indent", szValue) == UT_OK) { err = exporter->setTextIndentation(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("margin-left", szValue) == UT_OK) { err = exporter->setParagraphLeftMargin(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("margin-right", szValue) == UT_OK) { err = exporter->setParagraphRightMargin(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("margin-bottom", szValue) == UT_OK) { err = exporter->setParagraphBottomMargin(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("margin-top", szValue) == UT_OK) { err = exporter->setParagraphTopMargin(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("line-height", szValue) == UT_OK) { err = exporter->setLineHeight(TARGET_STYLES, szValue); if(err != UT_OK) return err; } err = exporter->finishParagraphProperties(TARGET_STYLES); if(err != UT_OK) return err; if(b_docDefaults) { err = exporter->finishParagraphDefaultProperties(); if(err != UT_OK) return err; } // END OF PARAGRAPH PROPERTIES // RUN PROPERTIES if(b_docDefaults) { err = exporter->startRunDefaultProperties(); if(err != UT_OK) return err; } err = exporter->startRunProperties(TARGET_STYLES); if(err != UT_OK) return err; if(getProperty("font-weight", szValue) == UT_OK) { if(!strcmp(szValue, "bold")) { err = exporter->setBold(TARGET_STYLES); if(err != UT_OK) return err; } } if(getProperty("font-style", szValue) == UT_OK) { if(!strcmp(szValue, "italic")) { err = exporter->setItalic(TARGET_STYLES); if(err != UT_OK) return err; } } if(getProperty("font-size", szValue) == UT_OK) { err = exporter->setFontSize(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("font-family", szValue) == UT_OK) { err = exporter->setFontFamily(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("text-decoration", szValue) == UT_OK) { if(strstr(szValue, "underline")) { err = exporter->setUnderline(TARGET_STYLES); if(err != UT_OK) return err; } if(strstr(szValue, "overline")) { err = exporter->setOverline(); if(err != UT_OK) return err; } if(strstr(szValue, "line-through")) { err = exporter->setLineThrough(TARGET_STYLES); if(err != UT_OK) return err; } } if(getProperty("text-position", szValue) == UT_OK) { if(!strcmp(szValue, "superscript")) { err = exporter->setSuperscript(TARGET_STYLES); if(err != UT_OK) return err; } else if(!strcmp(szValue, "subscript")) { err = exporter->setSubscript(TARGET_STYLES); if(err != UT_OK) return err; } } if(getProperty("color", szValue) == UT_OK) { err = exporter->setTextColor(TARGET_STYLES, szValue); if(err != UT_OK) return err; } if(getProperty("bgcolor", szValue) == UT_OK) { err = exporter->setBackgroundColor(TARGET_STYLES, szValue); if(err != UT_OK) return err; } err = exporter->finishRunProperties(TARGET_STYLES); if(err != UT_OK) return err; if(b_docDefaults) { err = exporter->finishRunDefaultProperties(); if(err != UT_OK) return err; } // END OF RUN PROPERTIES if(b_docDefaults) { err = exporter->finishDocumentDefaultProperties(); if(err != UT_OK) return err; } else { err = exporter->finishStyle(); if(err != UT_OK) return err; } return UT_OK; } UT_Error OXML_Style::addToPT(PD_Document * pDocument) { UT_Error ret = UT_OK; //First, we change the ID reference for BASEDON and FOLLOWEDBY to a name reference. OXML_Document * doc = OXML_Document::getInstance(); UT_return_val_if_fail( doc != NULL, UT_ERROR ); const gchar * buf = NULL; getAttribute(PT_BASEDON_ATTRIBUTE_NAME, buf); if (buf != NULL) { OXML_SharedStyle other = doc->getStyleById(buf); if (other.get() != NULL) { setAttribute(PT_BASEDON_ATTRIBUTE_NAME, other->getName().c_str()); } else { setAttribute(PT_BASEDON_ATTRIBUTE_NAME, "Normal"); } } else { //We base all styles on Normal if nothing else setAttribute(PT_BASEDON_ATTRIBUTE_NAME, "Normal"); } getAttribute(PT_FOLLOWEDBY_ATTRIBUTE_NAME, buf); if (buf != NULL) { OXML_SharedStyle other = doc->getStyleById(buf); if (other) setAttribute(PT_FOLLOWEDBY_ATTRIBUTE_NAME, other->getName().c_str()); } const gchar ** atts = getAttributesWithProps(); if (atts != NULL) ret = pDocument->appendStyle(atts) ? UT_OK : UT_ERROR; if(ret != UT_OK) { UT_ASSERT_HARMLESS(ret == UT_OK); return ret; } return UT_OK; }