summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/xfilter/xfnumberstyle.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfnumberstyle.cxx356
1 files changed, 356 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfnumberstyle.cxx b/lotuswordpro/source/filter/xfilter/xfnumberstyle.cxx
new file mode 100644
index 000000000..169f5e7e5
--- /dev/null
+++ b/lotuswordpro/source/filter/xfilter/xfnumberstyle.cxx
@@ -0,0 +1,356 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * 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
+ * Number style for table cell.
+ ************************************************************************/
+#include <xfilter/ixfattrlist.hxx>
+#include <xfilter/xfnumberstyle.hxx>
+
+XFNumberStyle::XFNumberStyle()
+ : m_eType(enumXFNumberNumber)
+ , m_nDecimalDigits(0)
+ , m_bGroup(false)
+ , m_aColor(0,0,0)
+ , m_bRedIfNegative(false)
+ , m_aNegativeColor(255,0,0)
+{}
+
+enumXFStyle XFNumberStyle::GetStyleFamily()
+{
+ return enumXFStyleNumber;
+}
+
+bool XFNumberStyle::Equal(IXFStyle *pStyle)
+{
+ if( !pStyle || pStyle->GetStyleFamily() != enumXFStyleNumber )
+ return false;
+ XFNumberStyle *pOther = dynamic_cast<XFNumberStyle*>(pStyle);
+ if( !pOther )
+ return false;
+
+ if( m_eType != pOther->m_eType )
+ return false;
+ if( m_nDecimalDigits != pOther->m_nDecimalDigits )
+ return false;
+ if( m_bRedIfNegative != pOther->m_bRedIfNegative )
+ return false;
+ if( m_bGroup != pOther->m_bGroup )
+ return false;
+ if( m_aColor != pOther->m_aColor )
+ return false;
+ if( m_strPrefix != pOther->m_strPrefix )
+ return false;
+ if( m_strSuffix != pOther->m_strSuffix )
+ return false;
+
+ if( m_bRedIfNegative )
+ {
+ if( m_aNegativeColor != pOther->m_aNegativeColor )
+ return false;
+ if( m_strNegativePrefix != pOther->m_strNegativePrefix )
+ return false;
+ if( m_strNegativeSuffix != pOther->m_strNegativeSuffix )
+ return false;
+ }
+
+ if( m_eType == enuMXFNumberCurrency )
+ {
+ if( m_strCurrencySymbol != pOther->m_strCurrencySymbol )
+ return false;
+ }
+
+ return true;
+}
+
+void XFNumberStyle::ToXml(IXFStream *pStrm)
+{
+ // for Text content number format
+ if (m_eType == enumXFText)
+ {
+ ToXml_StartElement(pStrm);
+ ToXml_EndElement(pStrm);
+ return;
+ }
+
+ if( !m_bRedIfNegative )
+ {
+ ToXml_Normal(pStrm);
+ }
+ else
+ {
+ ToXml_Negative(pStrm);
+ }
+}
+
+void XFNumberStyle::ToXml_StartElement(IXFStream *pStrm)
+{
+ IXFAttrList *pAttrList = pStrm->GetAttrList();
+ pAttrList->Clear();
+
+ pAttrList->AddAttribute( "style:name", GetStyleName() );
+ if( !GetParentStyleName().isEmpty() )
+ pAttrList->AddAttribute("style:parent-style-name",GetParentStyleName());
+
+ pAttrList->AddAttribute( "style:family", "data-style" );
+
+ if( m_eType == enumXFNumberNumber )
+ {
+ pStrm->StartElement( "number:number-style" );
+ }
+ else if( m_eType == enumXFNumberPercent )
+ {
+ pStrm->StartElement( "number:percentage-style" );
+ }
+ else if( m_eType == enuMXFNumberCurrency )
+ {
+ pStrm->StartElement( "number:currency-style" );
+ }
+ else if( m_eType == enumXFNumberScientific )
+ {
+ pStrm->StartElement( "number:number-style" );
+ }
+ // for Text content number format
+ else if (m_eType == enumXFText)
+ {
+ pStrm->StartElement( "number:text-content");
+ }
+
+}
+
+void XFNumberStyle::ToXml_EndElement(IXFStream *pStrm)
+{
+ IXFAttrList *pAttrList = pStrm->GetAttrList();
+ pAttrList->Clear();
+
+ pAttrList->AddAttribute( "style:name", GetStyleName() );
+ pAttrList->AddAttribute( "style:family", "data-style" );
+
+ if( m_eType == enumXFNumberNumber )
+ {
+ pStrm->EndElement( "number:number-style" );
+ }
+ else if( m_eType == enumXFNumberPercent )
+ {
+ pStrm->EndElement( "number:percentage-style" );
+ }
+ else if( m_eType == enuMXFNumberCurrency )
+ {
+ pStrm->EndElement( "number:currency-style" );
+ }
+ else if( m_eType == enumXFNumberScientific )
+ {
+ pStrm->EndElement( "number:number-style" );
+ }
+ // for Text content number format
+ else if (m_eType == enumXFText)
+ {
+ pStrm->EndElement( "number:text-content");
+ }
+ // END for Text content number format
+
+}
+void XFNumberStyle::ToXml_Normal(IXFStream *pStrm)
+{
+ ToXml_StartElement(pStrm);
+
+ ToXml_Content(pStrm,false);
+
+ ToXml_EndElement(pStrm);
+}
+
+void XFNumberStyle::ToXml_Negative(IXFStream *pStrm)
+{
+ IXFAttrList *pAttrList = pStrm->GetAttrList();
+ pAttrList->Clear();
+
+ OUString strStyleName = GetStyleName();
+ OUString strGEStyle = strStyleName + "PO";
+
+ SetStyleName(strGEStyle);
+ ToXml_Normal(pStrm);
+ SetStyleName(strStyleName);
+
+ ToXml_StartElement(pStrm);
+
+ ToXml_Content(pStrm,true);
+
+ pAttrList->Clear();
+ pAttrList->AddAttribute( "style:condition", "value()>=0" );
+ pAttrList->AddAttribute( "style:apply-style-name", strGEStyle );
+ pStrm->StartElement( "style:map" );
+ pStrm->EndElement( "style:map" );
+
+ ToXml_EndElement(pStrm);
+}
+
+void XFNumberStyle::ToXml_Content(IXFStream *pStrm, bool nagetive)
+{
+ IXFAttrList *pAttrList = pStrm->GetAttrList();
+ pAttrList->Clear();
+ //color:
+ if( !nagetive )
+ pAttrList->AddAttribute( "fo:color", m_aColor.ToString() );
+ else
+ pAttrList->AddAttribute( "fo:color", m_aNegativeColor.ToString() );
+
+ pStrm->StartElement( "style:properties" );
+ pStrm->EndElement( "style:properties" );
+
+ if( !nagetive )
+ {
+ if( !m_strPrefix.isEmpty() )
+ {
+ pStrm->StartElement( "number:text" );
+ pStrm->Characters(m_strPrefix);
+ pStrm->EndElement( "number:text" );
+ }
+ }
+ else
+ {
+ if( m_strNegativePrefix.isEmpty() )
+ m_strNegativePrefix = m_strPrefix;
+ if( !m_strNegativePrefix.isEmpty() )
+ {
+ pStrm->StartElement( "number:text" );
+ // pStrm->Characters(m_strNegativePrefix);
+ pStrm->Characters(m_strNegativePrefix + "-");
+ pStrm->EndElement( "number:text" );
+ }
+ else
+ {
+ pStrm->StartElement( "number:text" );
+ pStrm->Characters("-");
+ pStrm->EndElement( "number:text" );
+ }
+ }
+
+ if( m_eType == enuMXFNumberCurrency )
+ {
+ if( !m_strCurrencySymbol.isEmpty() )
+ {
+ pStrm->StartElement( "number:currency-symbol" );
+ pStrm->Characters(m_strCurrencySymbol);
+ pStrm->EndElement( "number:currency-symbol" );
+ }
+ }
+
+ //When category of number format is scientific, the number can not be displayed normally in table.
+ if ( m_eType == enumXFNumberScientific )
+ {
+ pAttrList->Clear();
+ pAttrList->AddAttribute("number:decimal-places", OUString::number(m_nDecimalDigits));
+ pAttrList->AddAttribute("number:min-integer-digits", OUString::number(1));
+ pAttrList->AddAttribute("number:min-exponent-digits", OUString::number(2));
+ pStrm->StartElement( "number:scientific-number" );
+ pStrm->EndElement( "number:scientific-number" );
+ }
+ else
+ {
+ pAttrList->Clear();
+ pAttrList->AddAttribute("number:decimal-places", OUString::number(m_nDecimalDigits));
+ pAttrList->AddAttribute("number:min-integer-digits", OUString::number(1));
+
+ if( m_bGroup )
+ pAttrList->AddAttribute("number:grouping","true");
+ else
+ pAttrList->AddAttribute("number:grouping","false");
+
+ pStrm->StartElement( "number:number" );
+ pStrm->EndElement( "number:number" );
+ }
+
+ if( !nagetive )
+ {
+ if( !m_strSuffix.isEmpty() )
+ {
+ pStrm->StartElement( "number:text" );
+ pStrm->Characters(m_strSuffix);
+ pStrm->EndElement( "number:text" );
+ }
+ else
+ {
+ if( m_eType == enumXFNumberPercent )
+ {
+ pStrm->StartElement( "number:text" );
+ pStrm->Characters("%");
+ pStrm->EndElement( "number:text" );
+ }
+ }
+ }
+ else
+ {
+ if( m_strNegativeSuffix.isEmpty() )
+ m_strNegativeSuffix = m_strSuffix;
+ if( !m_strNegativeSuffix.isEmpty() )
+ {
+ pStrm->StartElement( "number:text" );
+ pStrm->Characters(m_strNegativeSuffix);
+ pStrm->EndElement( "number:text" );
+ }
+ else
+ {
+ if( m_eType == enumXFNumberPercent )
+ {
+ pStrm->StartElement( "number:text" );
+ pStrm->Characters("%");
+ pStrm->EndElement( "number:text" );
+ }
+ }
+ }
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */