Files
libreoffice/chart2/source/controller/itemsetwrapper/StatisticsItemConverter.cxx

568 lines
20 KiB
C++
Raw Normal View History

2003-12-09 15:29:35 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2003-12-09 15:29:35 +00:00
*
* $RCSfile: StatisticsItemConverter.cxx,v $
2003-12-09 15:29:35 +00:00
*
* $Revision: 1.18 $
2003-12-09 15:29:35 +00:00
*
* last change: $Author: ihi $ $Date: 2007-11-23 11:52:56 $
2003-12-09 15:29:35 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2003-12-09 15:29:35 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2003-12-09 15:29:35 +00:00
*
* 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.
2003-12-09 15:29:35 +00:00
*
* 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.
2003-12-09 15:29:35 +00:00
*
* 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
2003-12-09 15:29:35 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_chart2.hxx"
2003-12-09 15:29:35 +00:00
#include "StatisticsItemConverter.hxx"
#include "SchWhichPairs.hxx"
#include "macros.hxx"
#include "ItemPropertyMap.hxx"
#include "RegressionCurveHelper.hxx"
2003-12-11 12:54:07 +00:00
#include "ErrorBar.hxx"
#include "PropertyHelper.hxx"
2003-12-17 15:43:22 +00:00
#include "ChartModelHelper.hxx"
#include "ChartTypeHelper.hxx"
2003-12-09 15:29:35 +00:00
#include "GraphicPropertyItemConverter.hxx"
#ifndef _SVX_CHRTITEM_HXX
#include <svx/chrtitem.hxx>
#endif
#ifndef _SFXINTITEM_HXX
#include <svtools/intitem.hxx>
#endif
#ifndef INCLUDED_RTL_MATH_HXX
#include <rtl/math.hxx>
#endif
2003-12-09 15:29:35 +00:00
#ifndef _COM_SUN_STAR_CHART2_DATAPOINTLABEL_HPP_
#include <com/sun/star/chart2/DataPointLabel.hpp>
2003-12-09 15:29:35 +00:00
#endif
#ifndef _COM_SUN_STAR_CHART2_XREGRESSIONCURVECONTAINER_HPP_
#include <com/sun/star/chart2/XRegressionCurveContainer.hpp>
2003-12-09 15:29:35 +00:00
#endif
#ifndef _COM_SUN_STAR_CHART2_ERRORBARSTYLE_HPP_
#include <com/sun/star/chart2/ErrorBarStyle.hpp>
#endif
2003-12-09 15:29:35 +00:00
#ifndef _COM_SUN_STAR_LANG_XSERVICENAME_HPP_
#include <com/sun/star/lang/XServiceName.hpp>
#endif
#include <functional>
#include <algorithm>
#include <vector>
2003-12-09 15:29:35 +00:00
using namespace ::com::sun::star;
namespace
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > lcl_GetYErrorBar(
const uno::Reference< beans::XPropertySet > & xProp )
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xResult;
if( xProp.is())
try
{
2003-12-11 12:54:07 +00:00
( xProp->getPropertyValue( C2U( "ErrorBarY" )) >>= xResult );
}
catch( uno::Exception & ex )
{
ASSERT_EXCEPTION( ex );
}
2003-12-11 12:54:07 +00:00
return xResult;
}
::chart::RegressionCurveHelper::tRegressionType lcl_convertRegressionType( SvxChartRegress eRegress )
{
::chart::RegressionCurveHelper::tRegressionType eType = ::chart::RegressionCurveHelper::REGRESSION_TYPE_NONE;
switch( eRegress )
{
case CHREGRESS_LINEAR:
eType = ::chart::RegressionCurveHelper::REGRESSION_TYPE_LINEAR;
break;
case CHREGRESS_LOG:
eType = ::chart::RegressionCurveHelper::REGRESSION_TYPE_LOG;
break;
case CHREGRESS_EXP:
eType = ::chart::RegressionCurveHelper::REGRESSION_TYPE_EXP;
break;
case CHREGRESS_POWER:
eType = ::chart::RegressionCurveHelper::REGRESSION_TYPE_POWER;
break;
case CHREGRESS_NONE:
break;
}
return eType;
}
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > lcl_GetDefaultErrorBar()
{
// todo: use a valid context
return uno::Reference< beans::XPropertySet >(
new ::chart::ErrorBar( uno::Reference< uno::XComponentContext >()));
}
void lcl_getErrorValues( const uno::Reference< beans::XPropertySet > & xErrorBarProp,
double & rOutPosError, double & rOutNegError )
{
2003-12-11 12:54:07 +00:00
if( ! xErrorBarProp.is())
return;
try
{
xErrorBarProp->getPropertyValue( C2U( "PositiveError" )) >>= rOutPosError;
xErrorBarProp->getPropertyValue( C2U( "NegativeError" )) >>= rOutNegError;
}
catch( uno::Exception & ex )
{
ASSERT_EXCEPTION( ex );
}
}
2003-12-11 12:54:07 +00:00
void lcl_getErrorIndicatorValues(
const uno::Reference< beans::XPropertySet > & xErrorBarProp,
bool & rOutShowPosError, bool & rOutShowNegError )
{
if( ! xErrorBarProp.is())
return;
2003-12-11 12:54:07 +00:00
try
{
xErrorBarProp->getPropertyValue( C2U( "ShowPositiveError" )) >>= rOutShowPosError;
xErrorBarProp->getPropertyValue( C2U( "ShowNegativeError" )) >>= rOutShowNegError;
}
catch( uno::Exception & ex )
{
ASSERT_EXCEPTION( ex );
}
}
2003-12-09 15:29:35 +00:00
} // anonymous namespace
namespace chart
{
namespace wrapper
{
StatisticsItemConverter::StatisticsItemConverter(
2003-12-17 15:43:22 +00:00
const uno::Reference< frame::XModel > & xModel,
const uno::Reference< beans::XPropertySet > & rPropertySet,
2003-12-09 15:29:35 +00:00
SfxItemPool& rItemPool ) :
2003-12-17 15:43:22 +00:00
ItemConverter( rPropertySet, rItemPool ),
m_xModel( xModel )
2003-12-09 15:29:35 +00:00
{
OSL_ASSERT( static_cast< int >( RegressionCurveHelper::REGRESSION_TYPE_NONE ) ==
static_cast< int >( CHREGRESS_NONE ));
OSL_ASSERT( static_cast< int >( RegressionCurveHelper::REGRESSION_TYPE_LINEAR ) ==
static_cast< int >( CHREGRESS_LINEAR ));
OSL_ASSERT( static_cast< int >( RegressionCurveHelper::REGRESSION_TYPE_LOG ) ==
static_cast< int >( CHREGRESS_LOG ));
OSL_ASSERT( static_cast< int >( RegressionCurveHelper::REGRESSION_TYPE_EXP ) ==
static_cast< int >( CHREGRESS_EXP ));
OSL_ASSERT( static_cast< int >( RegressionCurveHelper::REGRESSION_TYPE_POWER ) ==
static_cast< int >( CHREGRESS_POWER ));
2003-12-09 15:29:35 +00:00
}
StatisticsItemConverter::~StatisticsItemConverter()
{}
2003-12-09 15:29:35 +00:00
const USHORT * StatisticsItemConverter::GetWhichPairs() const
{
// must span all used items!
return nStatWhichPairs;
}
bool StatisticsItemConverter::GetItemProperty(
tWhichIdType /* nWhichId */,
tPropertyNameWithMemberId & /* rOutProperty */ ) const
2003-12-09 15:29:35 +00:00
{
return false;
2003-12-09 15:29:35 +00:00
}
bool StatisticsItemConverter::ApplySpecialItem(
USHORT nWhichId, const SfxItemSet & rItemSet )
throw( uno::Exception )
{
bool bChanged = false;
uno::Any aValue;
switch( nWhichId )
{
case SCHATTR_STAT_AVERAGE:
{
uno::Reference< chart2::XRegressionCurveContainer > xRegCnt(
GetPropertySet(), uno::UNO_QUERY );
bool bOldHasMeanValueLine = RegressionCurveHelper::hasMeanValueLine( xRegCnt );
2003-12-09 15:29:35 +00:00
bool bNewHasMeanValueLine =
static_cast< const SfxBoolItem & >( rItemSet.Get( nWhichId )).GetValue();
2003-12-09 15:29:35 +00:00
if( bOldHasMeanValueLine != bNewHasMeanValueLine )
{
if( ! bNewHasMeanValueLine )
RegressionCurveHelper::removeMeanValueLine( xRegCnt );
2003-12-09 15:29:35 +00:00
else
RegressionCurveHelper::addMeanValueLine(
xRegCnt, uno::Reference< uno::XComponentContext >(), GetPropertySet() );
2003-12-09 15:29:35 +00:00
bChanged = true;
}
}
break;
// Attention !!! This case must be passed before SCHATTR_STAT_PERCENT,
// SCHATTR_STAT_BIGERROR, SCHATTR_STAT_CONSTPLUS,
// SCHATTR_STAT_CONSTMINUS and SCHATTR_STAT_INDICATE
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_KIND_ERROR:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xOldErrorBarProp(
lcl_GetYErrorBar( GetPropertySet() ));
SvxChartKindError eErrorKind =
static_cast< const SvxChartKindErrorItem & >(
rItemSet.Get( nWhichId )).GetValue();
if( !xOldErrorBarProp.is() && eErrorKind == CHERROR_NONE)
{
//nothing to do
}
else
{
chart2::ErrorBarStyle eStyle;
switch( eErrorKind )
{
case CHERROR_NONE:
eStyle = chart2::ErrorBarStyle_NONE; break;
case CHERROR_VARIANT:
eStyle = chart2::ErrorBarStyle_VARIANCE; break;
case CHERROR_SIGMA:
eStyle = chart2::ErrorBarStyle_STANDARD_DEVIATION; break;
case CHERROR_PERCENT:
eStyle = chart2::ErrorBarStyle_RELATIVE; break;
case CHERROR_BIGERROR:
eStyle = chart2::ErrorBarStyle_ERROR_MARGIN; break;
case CHERROR_CONST:
eStyle = chart2::ErrorBarStyle_ABSOLUTE; break;
}
if( !xOldErrorBarProp.is() )
{
xOldErrorBarProp = lcl_GetDefaultErrorBar();
}
xOldErrorBarProp->setPropertyValue( C2U( "ErrorBarStyle" ),
uno::makeAny( eStyle ));
GetPropertySet()->setPropertyValue( C2U( "ErrorBarY" ),
uno::makeAny( xOldErrorBarProp ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_PERCENT:
case SCHATTR_STAT_BIGERROR:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xOldErrorBarProp(
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xOldErrorBarProp.is();
double fValue =
static_cast< const SvxDoubleItem & >(
rItemSet.Get( nWhichId )).GetValue();
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xOldErrorBarProp, fPos, fNeg );
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
! ( ::rtl::math::approxEqual( fPos, fValue ) &&
::rtl::math::approxEqual( fNeg, fValue )))
{
2003-12-11 12:54:07 +00:00
xOldErrorBarProp->setPropertyValue( C2U( "PositiveError" ),
uno::makeAny( fValue ));
xOldErrorBarProp->setPropertyValue( C2U( "NegativeError" ),
uno::makeAny( fValue ));
GetPropertySet()->setPropertyValue( C2U( "ErrorBarY" ),
2003-12-11 12:54:07 +00:00
uno::makeAny( xOldErrorBarProp ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_CONSTPLUS:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xOldErrorBarProp(
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xOldErrorBarProp.is();
double fValue =
static_cast< const SvxDoubleItem & >(
rItemSet.Get( nWhichId )).GetValue();
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xOldErrorBarProp, fPos, fNeg );
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
! ::rtl::math::approxEqual( fPos, fValue ))
{
2003-12-11 12:54:07 +00:00
xOldErrorBarProp->setPropertyValue( C2U( "PositiveError" ), uno::makeAny( fValue ));
GetPropertySet()->setPropertyValue( C2U( "ErrorBarY" ),
2003-12-11 12:54:07 +00:00
uno::makeAny( xOldErrorBarProp ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_CONSTMINUS:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xOldErrorBarProp(
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xOldErrorBarProp.is();
double fValue =
static_cast< const SvxDoubleItem & >(
rItemSet.Get( nWhichId )).GetValue();
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xOldErrorBarProp, fPos, fNeg );
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
! ::rtl::math::approxEqual( fNeg, fValue ))
{
2003-12-11 12:54:07 +00:00
xOldErrorBarProp->setPropertyValue( C2U( "NegativeError" ), uno::makeAny( fValue ));
GetPropertySet()->setPropertyValue( C2U( "ErrorBarY" ),
2003-12-11 12:54:07 +00:00
uno::makeAny( xOldErrorBarProp ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_REGRESSTYPE:
{
SvxChartRegress eRegress =
static_cast< const SvxChartRegressItem & >(
rItemSet.Get( nWhichId )).GetValue();
uno::Reference< chart2::XRegressionCurveContainer > xRegCnt(
GetPropertySet(), uno::UNO_QUERY );
if( eRegress == CHREGRESS_NONE )
{
bChanged = RegressionCurveHelper::removeAllExceptMeanValueLine( xRegCnt );
}
else
{
SvxChartRegress eOldRegress(
static_cast< SvxChartRegress >(
static_cast< sal_Int32 >(
RegressionCurveHelper::getFirstRegressTypeNotMeanValueLine( xRegCnt ))));
if( eOldRegress != eRegress )
{
RegressionCurveHelper::replaceOrAddCurveAndReduceToOne(
lcl_convertRegressionType( eRegress ), xRegCnt,
uno::Reference< uno::XComponentContext >());
bChanged = true;
}
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_INDICATE:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xOldErrorBarProp(
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xOldErrorBarProp.is();
SvxChartIndicate eIndicate =
static_cast< const SvxChartIndicateItem & >(
rItemSet.Get( nWhichId )).GetValue();
bool bNewIndPos = (eIndicate == CHINDICATE_BOTH || eIndicate == CHINDICATE_UP );
bool bNewIndNeg = (eIndicate == CHINDICATE_BOTH || eIndicate == CHINDICATE_DOWN );
2003-12-11 12:54:07 +00:00
bool bShowPos, bShowNeg;
lcl_getErrorIndicatorValues( xOldErrorBarProp, bShowPos, bShowNeg );
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
( bShowPos != bNewIndPos ||
bShowNeg != bNewIndNeg ))
{
2003-12-11 12:54:07 +00:00
xOldErrorBarProp->setPropertyValue( C2U( "ShowPositiveError" ), uno::makeAny( bNewIndPos ));
xOldErrorBarProp->setPropertyValue( C2U( "ShowNegativeError" ), uno::makeAny( bNewIndNeg ));
GetPropertySet()->setPropertyValue( C2U( "ErrorBarY" ),
2003-12-11 12:54:07 +00:00
uno::makeAny( xOldErrorBarProp ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
}
return bChanged;
}
void StatisticsItemConverter::FillSpecialItem(
USHORT nWhichId, SfxItemSet & rOutItemSet ) const
throw( uno::Exception )
{
switch( nWhichId )
{
case SCHATTR_STAT_AVERAGE:
rOutItemSet.Put(
SfxBoolItem( nWhichId,
RegressionCurveHelper::hasMeanValueLine(
2003-12-09 15:29:35 +00:00
uno::Reference< chart2::XRegressionCurveContainer >(
GetPropertySet(), uno::UNO_QUERY ))));
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_KIND_ERROR:
{
SvxChartKindError eErrorKind = CHERROR_NONE;
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xErrorBarProp(
lcl_GetYErrorBar( GetPropertySet()));
if( xErrorBarProp.is() )
{
2003-12-11 12:54:07 +00:00
chart2::ErrorBarStyle eStyle;
if( xErrorBarProp->getPropertyValue( C2U( "ErrorBarStyle" )) >>= eStyle )
{
2003-12-11 12:54:07 +00:00
switch( eStyle )
{
case chart2::ErrorBarStyle_NONE:
break;
2003-12-11 12:54:07 +00:00
case chart2::ErrorBarStyle_VARIANCE:
eErrorKind = CHERROR_VARIANT; break;
case chart2::ErrorBarStyle_STANDARD_DEVIATION:
eErrorKind = CHERROR_SIGMA; break;
case chart2::ErrorBarStyle_ABSOLUTE:
eErrorKind = CHERROR_CONST; break;
case chart2::ErrorBarStyle_RELATIVE:
eErrorKind = CHERROR_PERCENT; break;
case chart2::ErrorBarStyle_ERROR_MARGIN:
eErrorKind = CHERROR_BIGERROR; break;
case chart2::ErrorBarStyle_STANDARD_ERROR:
// not yet available in UI
break;
2003-12-11 12:54:07 +00:00
case chart2::ErrorBarStyle_FROM_DATA:
// suppress warning
case chart2::ErrorBarStyle_MAKE_FIXED_SIZE:
break;
}
}
}
rOutItemSet.Put( SvxChartKindErrorItem( eErrorKind, SCHATTR_STAT_KIND_ERROR ));
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_PERCENT:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xErrorBarProp( lcl_GetYErrorBar( GetPropertySet()));
if( xErrorBarProp.is())
{
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xErrorBarProp, fPos, fNeg );
rOutItemSet.Put( SvxDoubleItem( ( fPos + fNeg ) / 2.0, nWhichId ));
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_BIGERROR:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xErrorBarProp( lcl_GetYErrorBar( GetPropertySet()));
if( xErrorBarProp.is())
{
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xErrorBarProp, fPos, fNeg );
rOutItemSet.Put( SvxDoubleItem( ( fPos + fNeg ) / 2.0, nWhichId ));
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_CONSTPLUS:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xErrorBarProp( lcl_GetYErrorBar( GetPropertySet()));
if( xErrorBarProp.is())
{
double fPos, fNeg;
lcl_getErrorValues( xErrorBarProp, fPos, fNeg );
rOutItemSet.Put( SvxDoubleItem( fPos, nWhichId ));
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_CONSTMINUS:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xErrorBarProp( lcl_GetYErrorBar( GetPropertySet()));
if( xErrorBarProp.is())
{
double fPos, fNeg;
lcl_getErrorValues( xErrorBarProp, fPos, fNeg );
rOutItemSet.Put( SvxDoubleItem( fNeg, nWhichId ));
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_REGRESSTYPE:
{
SvxChartRegress eRegress = static_cast< SvxChartRegress >(
static_cast< sal_Int32 >(
RegressionCurveHelper::getFirstRegressTypeNotMeanValueLine(
uno::Reference< chart2::XRegressionCurveContainer >(
GetPropertySet(), uno::UNO_QUERY ) )));
rOutItemSet.Put( SvxChartRegressItem( eRegress, SCHATTR_STAT_REGRESSTYPE ));
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_INDICATE:
{
2003-12-11 12:54:07 +00:00
uno::Reference< beans::XPropertySet > xErrorBarProp( lcl_GetYErrorBar( GetPropertySet()));
SvxChartIndicate eIndicate = CHINDICATE_BOTH;
2003-12-11 12:54:07 +00:00
if( xErrorBarProp.is())
{
2003-12-11 12:54:07 +00:00
bool bShowPos, bShowNeg;
lcl_getErrorIndicatorValues( xErrorBarProp, bShowPos, bShowNeg );
2003-12-11 12:54:07 +00:00
if( bShowPos )
{
2003-12-11 12:54:07 +00:00
if( bShowNeg )
eIndicate = CHINDICATE_BOTH;
else
eIndicate = CHINDICATE_UP;
}
else
{
2003-12-11 12:54:07 +00:00
if( bShowNeg )
eIndicate = CHINDICATE_DOWN;
else
eIndicate = CHINDICATE_NONE;
}
}
rOutItemSet.Put( SvxChartIndicateItem( eIndicate, SCHATTR_STAT_INDICATE ));
}
break;
2003-12-09 15:29:35 +00:00
}
}
} // namespace wrapper
} // namespace chart