Files
loongoffice/chart2/source/tools/NumberFormatterWrapper.cxx
2011-11-27 12:59:19 -06:00

160 lines
5.4 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include "NumberFormatterWrapper.hxx"
#include "macros.hxx"
#include <comphelper/processfactory.hxx>
// header for class SvNumberFormatsSupplierObj
#include <svl/numuno.hxx>
// header for class SvNumberformat
#include <svl/zformat.hxx>
#include <tools/color.hxx>
#include <i18npool/mslangid.hxx>
#include <com/sun/star/util/DateTime.hpp>
//.............................................................................
namespace chart
{
//.............................................................................
using namespace ::com::sun::star;
FixedNumberFormatter::FixedNumberFormatter(
const uno::Reference< util::XNumberFormatsSupplier >& xSupplier
, sal_Int32 nNumberFormatKey )
: m_aNumberFormatterWrapper(xSupplier)
, m_nNumberFormatKey( nNumberFormatKey )
{
}
FixedNumberFormatter::~FixedNumberFormatter()
{
}
rtl::OUString FixedNumberFormatter::getFormattedString( double fValue, sal_Int32& rLabelColor, bool& rbColorChanged ) const
{
return m_aNumberFormatterWrapper.getFormattedString(
m_nNumberFormatKey, fValue, rLabelColor, rbColorChanged );
}
//-----------------------------------------------------------------------
//-----------------------------------------------------------------------
//-----------------------------------------------------------------------
NumberFormatterWrapper::NumberFormatterWrapper( const uno::Reference< util::XNumberFormatsSupplier >& xSupplier )
: m_xNumberFormatsSupplier(xSupplier)
, m_pNumberFormatter(NULL)
{
uno::Reference<beans::XPropertySet> xProp(m_xNumberFormatsSupplier,uno::UNO_QUERY);
rtl::OUString sNullDate( RTL_CONSTASCII_USTRINGPARAM("NullDate"));
if ( xProp.is() && xProp->getPropertySetInfo()->hasPropertyByName(sNullDate) )
m_aNullDate = xProp->getPropertyValue(sNullDate);
SvNumberFormatsSupplierObj* pSupplierObj = SvNumberFormatsSupplierObj::getImplementation( xSupplier );
if( pSupplierObj )
m_pNumberFormatter = pSupplierObj->GetNumberFormatter();
OSL_POSTCOND(m_pNumberFormatter,"need a numberformatter");
}
NumberFormatterWrapper::~NumberFormatterWrapper()
{
}
SvNumberFormatter* NumberFormatterWrapper::getSvNumberFormatter() const
{
return m_pNumberFormatter;
}
Date NumberFormatterWrapper::getNullDate() const
{
sal_uInt16 nYear = 1899,nDay = 30,nMonth = 12;
Date aRet(nDay,nMonth,nYear);
util::DateTime aUtilDate;
if( m_aNullDate.hasValue() && (m_aNullDate >>= aUtilDate) )
{
aRet = Date(aUtilDate.Day,aUtilDate.Month,aUtilDate.Year);
}
else if( m_pNumberFormatter )
{
Date* pDate = m_pNumberFormatter->GetNullDate();
if( pDate )
aRet = *pDate;
}
return aRet;
}
rtl::OUString NumberFormatterWrapper::getFormattedString(
sal_Int32 nNumberFormatKey, double fValue, sal_Int32& rLabelColor, bool& rbColorChanged ) const
{
String aText;
Color* pTextColor = NULL;
if( !m_pNumberFormatter )
{
OSL_FAIL("Need a NumberFormatter");
return aText;
}
// i99104 handle null date correctly
sal_uInt16 nYear = 1899,nDay = 30,nMonth = 12;
if ( m_aNullDate.hasValue() )
{
Date* pDate = m_pNumberFormatter->GetNullDate();
if ( pDate )
{
nYear = pDate->GetYear();
nMonth = pDate->GetMonth();
nDay = pDate->GetDay();
} // if ( pDate )
util::DateTime aNewNullDate;
m_aNullDate >>= aNewNullDate;
m_pNumberFormatter->ChangeNullDate(aNewNullDate.Day,aNewNullDate.Month,aNewNullDate.Year);
}
m_pNumberFormatter->GetOutputString(
fValue, nNumberFormatKey, aText, &pTextColor);
if ( m_aNullDate.hasValue() )
{
m_pNumberFormatter->ChangeNullDate(nDay,nMonth,nYear);
}
rtl::OUString aRet( aText );
if(pTextColor)
{
rbColorChanged = true;
rLabelColor = pTextColor->GetColor();
}
else
rbColorChanged = false;
return aRet;
}
//.............................................................................
} //namespace chart
//.............................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */