1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
#include <NumberFormatterWrapper.hxx>
#include <svl/numformat.hxx>
#include <svl/numuno.hxx>
#include <tools/color.hxx>
#include <com/sun/star/util/Date.hpp>
#include <osl/diagnose.h>
#include <sal/log.hxx>
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()
{
}
OUString FixedNumberFormatter::getFormattedString( double fValue, Color& 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(nullptr)
{
uno::Reference<beans::XPropertySet> xProp(m_xNumberFormatsSupplier,uno::UNO_QUERY);
OUString sNullDate( u"NullDate"_ustr );
if ( xProp.is() && xProp->getPropertySetInfo()->hasPropertyByName(sNullDate) )
m_aNullDate = xProp->getPropertyValue(sNullDate);
SvNumberFormatsSupplierObj* pSupplierObj = comphelper::getFromUnoTunnel<SvNumberFormatsSupplierObj>( xSupplier );
if( pSupplierObj )
m_pNumberFormatter = pSupplierObj->GetNumberFormatter();
SAL_WARN_IF(!m_pNumberFormatter,"chart2.tools","need a numberformatter");
}
NumberFormatterWrapper::~NumberFormatterWrapper()
{
}
namespace
{
bool getDate(const css::uno::Any& rAny, util::Date& rDate)
{
if (rAny >>= rDate)
return true;
util::DateTime aUtilDateTime;
if (rAny >>= aUtilDateTime)
{
rDate.Day = aUtilDateTime.Day;
rDate.Month = aUtilDateTime.Month;
rDate.Year = aUtilDateTime.Year;
return true;
}
SAL_WARN("chart2.tools", "neither a util::Date nor a util::DateTime");
return false;
}
}
Date NumberFormatterWrapper::getNullDate() const
{
Date aRet(30,12,1899);
util::Date aUtilDate;
if (m_aNullDate.hasValue() && getDate(m_aNullDate, aUtilDate))
{
aRet = Date(aUtilDate.Day,aUtilDate.Month,aUtilDate.Year);
}
else if( m_pNumberFormatter )
{
aRet = m_pNumberFormatter->GetNullDate();
}
return aRet;
}
OUString NumberFormatterWrapper::getFormattedString( sal_Int32 nNumberFormatKey, double fValue,
Color& rLabelColor, bool& rbColorChanged ) const
{
OUString aText;
const Color* pTextColor = nullptr;
if( !m_pNumberFormatter )
{
OSL_FAIL("Need a NumberFormatter");
return aText;
}
// i99104 handle null date correctly
sal_Int16 nYear = 1899;
sal_uInt16 nDay = 30,nMonth = 12;
if ( m_aNullDate.hasValue() )
{
const Date& rDate = m_pNumberFormatter->GetNullDate();
nYear = rDate.GetYear();
nMonth = rDate.GetMonth();
nDay = rDate.GetDay();
util::Date aNewNullDate;
if (getDate(m_aNullDate, aNewNullDate))
m_pNumberFormatter->ChangeNullDate(aNewNullDate.Day,aNewNullDate.Month,aNewNullDate.Year);
}
// tdf#130969: use UNLIMITED_PRECISION in case of GENERAL Number Format
if( m_pNumberFormatter->GetStandardPrec() != SvNumberFormatter::UNLIMITED_PRECISION )
m_pNumberFormatter->ChangeStandardPrec(SvNumberFormatter::UNLIMITED_PRECISION);
m_pNumberFormatter->GetOutputString(fValue, nNumberFormatKey, aText, &pTextColor);
if ( m_aNullDate.hasValue() )
{
m_pNumberFormatter->ChangeNullDate(nDay,nMonth,nYear);
}
if(pTextColor)
{
rbColorChanged = true;
rLabelColor = *pTextColor;
}
else
rbColorChanged = false;
return aText;
}
} //namespace chart
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|