summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfcellstyle.cxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfcellstyle.cxx308
1 files changed, 308 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx b/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx
new file mode 100644
index 000000000000..cd1e04c77f68
--- /dev/null
+++ b/lotuswordpro/source/filter/xfilter/xfcellstyle.cxx
@@ -0,0 +1,308 @@
+/*************************************************************************
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: IBM Corporation
+ *
+ * Copyright: 2008 by IBM Corporation
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+/*************************************************************************
+ * @file
+ * Table cell style. Number format, string value, and so on...
+ ************************************************************************/
+/*************************************************************************
+ * Change History
+ * 2005-01-28 create this file.
+ ************************************************************************/
+#include "xfcellstyle.hxx"
+#include "xfborders.hxx"
+#include "xffont.hxx"
+#include "xfbgimage.hxx"
+
+
+XFCellStyle::XFCellStyle()
+{
+ m_eHoriAlign = enumXFAlignNone;
+ m_eVertAlign = enumXFAlignNone;
+ m_fTextIndent = 0;
+ m_pBorders = NULL;
+ m_pFont = NULL;
+ m_pBackImage = NULL;
+ m_bWrapText = sal_False;
+}
+
+XFCellStyle::~XFCellStyle()
+{
+ if( m_pBorders )
+ delete m_pBorders;
+}
+
+
+void XFCellStyle::SetParentStyle(rtl::OUString parent)
+{
+ m_strParentStyleName = parent;
+}
+
+void XFCellStyle::SetFont(XFFont *pFont)
+{
+ m_pFont = pFont;
+}
+
+void XFCellStyle::SetIndent(double indent )
+{
+ m_fTextIndent = indent;
+}
+
+void XFCellStyle::SetMargins(double left, double right, double top, double bottom)
+{
+ if( left != -1 )
+ m_aMargin.SetLeft(left);
+ if( right != -1 )
+ m_aMargin.SetRight(right);
+ if( top != -1 )
+ m_aMargin.SetTop(top);
+ if( bottom != -1 )
+ m_aMargin.SetBottom( bottom );
+}
+
+void XFCellStyle::SetPadding(double left, double right,double top, double bottom)
+{
+ if( left != -1 )
+ m_aPadding.SetLeft(left);
+ if( right != -1 )
+ m_aPadding.SetRight(right);
+ if( top != -1 )
+ m_aPadding.SetTop(top);
+ if( bottom != -1 )
+ m_aPadding.SetBottom( bottom );
+}
+
+void XFCellStyle::SetShadow(enumXFShadowPos pos, double offset, XFColor& color)
+{
+ m_aShadow.SetPosition(pos);
+ m_aShadow.SetOffset(offset);
+ m_aShadow.SetColor(color);
+}
+
+void XFCellStyle::SetBackColor(XFColor& color)
+{
+ m_aBackColor = color;
+}
+
+void XFCellStyle::SetBackImage(XFBGImage *pImage)
+{
+ if( m_pBackImage )
+ delete m_pBackImage;
+ m_pBackImage = pImage;
+}
+
+void XFCellStyle::SetBorders(XFBorders *pBorders)
+{
+ if( m_pBorders )
+ delete m_pBorders;
+ m_pBorders = pBorders;
+}
+
+enumXFStyle XFCellStyle::GetStyleFamily()
+{
+ return enumXFStyleTableCell;
+}
+
+/**
+ *Affirm whether two XFCellStyle objects are equal.
+ */
+sal_Bool XFCellStyle::Equal(IXFStyle *pStyle)
+{
+ if( this == pStyle )
+ return sal_True;
+ if( !pStyle || pStyle->GetStyleFamily() != enumXFStyleTableCell )
+ return sal_False;
+
+ XFCellStyle *pOther = static_cast<XFCellStyle*>(pStyle);
+ if( !pOther )
+ return sal_False;
+
+ if( m_strDataStyle != pOther->m_strDataStyle )
+ return sal_False;
+
+ if( m_strParentStyleName != pOther->m_strParentStyleName )
+ return sal_False;
+ if( m_fTextIndent != pOther->m_fTextIndent )
+ return sal_False;
+
+ //align:
+ if( m_eHoriAlign != pOther->m_eHoriAlign )
+ return sal_False;
+ if( m_eVertAlign != pOther->m_eVertAlign )
+ return sal_False;
+
+ if( m_aBackColor != pOther->m_aBackColor )
+ return sal_False;
+ //shadow:
+ if( m_aShadow != pOther->m_aShadow )
+ return sal_False;
+ //margin:
+ if( m_aMargin != pOther->m_aMargin )
+ return sal_False;
+ //padding:
+ if( m_aPadding != pOther->m_aPadding )
+ return sal_False;
+
+ //wrap:
+ if( m_bWrapText != pOther->m_bWrapText )
+ return sal_False;
+
+ //font:
+ if( m_pFont )
+ {
+ if( !pOther->m_pFont )
+ return sal_False;
+ if(*m_pFont != *pOther->m_pFont )
+ return sal_False;
+ }
+ else if( pOther->m_pFont )
+ return sal_False;
+
+ //border:
+ if( m_pBorders )
+ {
+ if( !pOther->m_pBorders )
+ return sal_False;
+ if( *m_pBorders != *pOther->m_pBorders )
+ return sal_False;
+ }
+ else if( pOther->m_pBorders )
+ return sal_False;
+
+ //if there is backimage
+ if( m_pBackImage )
+ {
+ if( !pOther->m_pBackImage )
+ return sal_False;
+ if( !m_pBackImage->Equal(pOther) )
+ return sal_False;
+ }
+ else
+ {
+ if( pOther->m_pBackImage )
+ return sal_False;
+ }
+
+ return sal_True;
+}
+
+void XFCellStyle::ToXml(IXFStream *pStrm)
+{
+ IXFAttrList *pAttrList = pStrm->GetAttrList();
+ rtl::OUString style = GetStyleName();
+
+ pAttrList->Clear();
+ if( style.getLength() )
+ pAttrList->AddAttribute(A2OUSTR("style:name"),GetStyleName());
+ if( GetParentStyleName().getLength() > 0 )
+ pAttrList->AddAttribute(A2OUSTR("style:parent-style-name"),GetParentStyleName());
+
+ pAttrList->AddAttribute(A2OUSTR("style:family"), A2OUSTR("table-cell"));
+ if( m_strParentStyleName.getLength() > 0 )
+ pAttrList->AddAttribute(A2OUSTR("style:parent-style-name"),m_strParentStyleName);
+ if( m_strDataStyle.getLength()>0 )
+ pAttrList->AddAttribute( A2OUSTR("style:data-style-name"), m_strDataStyle );
+
+ pStrm->StartElement(A2OUSTR("style:style"));
+
+ //Paragraph properties:
+ pAttrList->Clear();
+
+ //text indent:
+ if( m_fTextIndent>FLOAT_MIN )
+ {
+ pAttrList->AddAttribute(A2OUSTR("fo:text-indent"), DoubleToOUString(m_fTextIndent) + A2OUSTR("cm") );
+ }
+ //padding:
+ m_aPadding.ToXml(pStrm);
+ //margin:
+ m_aMargin.ToXml(pStrm);
+
+ //text horizontal align:
+ if( m_eHoriAlign != enumXFAlignNone )
+ {
+ pAttrList->AddAttribute(A2OUSTR("fo:text-align"), GetAlignName(m_eHoriAlign) );
+ }
+ //text vertical align
+ if( m_eVertAlign != enumXFAlignNone )
+ pAttrList->AddAttribute( A2OUSTR("fo:vertical-align"), GetAlignName(m_eVertAlign) );
+
+ //wrap text:
+ if( m_bWrapText )
+ pAttrList->AddAttribute( A2OUSTR("fo:wrap-option"), A2OUSTR("wrap") );
+
+ //shadow:
+ m_aShadow.ToXml(pStrm);
+ //borders:
+ if( m_pBorders )
+ m_pBorders->ToXml(pStrm);
+
+ //background color:
+ if( m_aBackColor.IsValid() && !m_pBackImage )
+ {
+ pAttrList->AddAttribute(A2OUSTR("fo:background-color"), m_aBackColor.ToString() );
+ }
+ //Font properties:
+ if( m_pFont )
+ m_pFont->ToXml(pStrm);
+
+ pStrm->StartElement(A2OUSTR("style:properties"));
+
+ if( m_pBackImage )
+ m_pBackImage->ToXml(pStrm);
+
+ pStrm->EndElement(A2OUSTR("style:properties"));
+
+ pStrm->EndElement(A2OUSTR("style:style"));
+}