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

701 lines
26 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2003-12-09 15:29:35 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2003-12-09 15:29:35 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2003-12-09 15:29:35 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2003-12-09 15:29:35 +00:00
*
* This file is part of OpenOffice.org.
2003-12-09 15:29:35 +00:00
*
* 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.
2003-12-09 15:29:35 +00:00
*
* 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).
2003-12-09 15:29:35 +00:00
*
* 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.
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 "RegressionCurveHelper.hxx"
#include "ItemPropertyMap.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"
#include "StatisticsHelper.hxx"
2003-12-09 15:29:35 +00:00
#include "GraphicPropertyItemConverter.hxx"
#include <svl/stritem.hxx>
2003-12-09 15:29:35 +00:00
#include <svx/chrtitem.hxx>
#include <svl/intitem.hxx>
#include <rtl/math.hxx>
2003-12-09 15:29:35 +00:00
#include <com/sun/star/chart2/DataPointLabel.hpp>
#include <com/sun/star/chart2/XInternalDataProvider.hpp>
#include <com/sun/star/chart/ErrorBarStyle.hpp>
2003-12-09 15:29:35 +00:00
#include <com/sun/star/lang/XServiceName.hpp>
#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 >(
CWS-TOOLING: integrate CWS chart37 2009-05-22 09:10:36 +0200 iha r272170 : #i102130# color of pies is not loaded correctly 2009-04-27 17:16:20 +0200 iha r271294 : #i24203# compiler problem 2009-04-27 16:43:21 +0200 iha r271292 : #i101281# missing API documentation for secondary axis title properties 2009-04-27 15:26:05 +0200 hde r271276 : #i100987 2009-04-27 15:24:42 +0200 hde r271273 : #i100987 2009-04-24 15:08:33 +0200 iha r271214 : #i100995# crash with some logarithmic scalings 2009-04-22 18:50:56 +0200 dr r271134 : #i82177# write out deleted point labels 2009-04-22 18:40:48 +0200 iha r271133 : #i101281# missing API documentation for secondary axis title properties 2009-04-22 16:39:42 +0200 dr r271128 : #i82177# extensions for bubble charts 2009-04-22 14:37:00 +0200 dr r271114 : #i82177# import/export data label type and separator 2009-04-22 14:36:24 +0200 dr r271113 : #i82177# import/export data label type and separator 2009-04-21 15:25:26 +0200 dr r271038 : #i82177# import data label type and separator from BIFF8 CHFR records 2009-04-21 14:37:16 +0200 dr r271037 : #i82177# dump BIFF8 chart future records 2009-04-20 17:44:27 +0200 iha r271002 : #i96898# reduce library exports 2009-04-20 13:01:13 +0200 iha r270975 : #i24203# rotate data labels - help ids 2009-04-20 11:40:33 +0200 dr r270969 : #i96600# export of axis scaling/positioning properties 2009-04-16 16:02:31 +0200 dr r270892 : #i69599# keep Y axis left in 3d charts 2009-04-15 18:16:46 +0200 dr r270859 : #i69599# import of axis position settings 2009-04-15 18:16:01 +0200 dr r270858 : #i69599# correct handling of logarithmic crossing axes 2009-04-14 16:27:48 +0200 dr r270794 : #i96599# handle auto axis position on logarithmic axes 2009-04-09 19:59:51 +0200 dr r270722 : #i96599# import axis crossing settings, fix import of logarithmic scaling settings 2009-04-09 18:26:00 +0200 iha r270720 : #i96898# reduce library exports 2009-04-09 15:17:04 +0200 iha r270710 : #i96898# reduce library exports 2009-04-09 10:50:14 +0200 dr r270682 : #i24203# import/export of data label rotation, fixed some other broken stuff too 2009-04-08 16:54:54 +0200 dr r270657 : #i24203# import rotation for data point labels 2009-04-06 18:19:17 +0200 iha r270571 : #i100876# Axis scaling settings dialog wrong after API usage (anys different from double type) 2009-04-06 15:57:05 +0200 iha r270567 : #i100105# #i58585# leftover -> 2009-04-06 15:55:48 +0200 iha r270564 : #i58585# leftover -> 2009-04-02 16:41:07 +0200 iha r270422 : #i99721# remove unused code 2009-04-02 14:29:03 +0200 iha r270407 : #i99721# remove unused code 2009-03-26 10:58:23 +0100 iha r270059 : #i96898# reduce library exports 2009-03-26 10:13:49 +0100 iha r270055 : #i96898# reduce library exports 2009-03-25 09:39:13 +0100 iha r269998 : CWS-TOOLING: rebase CWS chart37 to trunk@269781 (milestone: DEV300:m44) 2009-03-24 17:56:56 +0100 iha r269986 : #i96898# reduce library exports 2009-03-24 16:56:44 +0100 iha r269974 : #i99721# remove unused code 2009-03-24 16:48:48 +0100 iha r269970 : #i89731# remove unused string 2009-03-24 15:44:04 +0100 iha r269961 : remove unused code 2009-03-24 15:22:45 +0100 iha r269959 : remove unused code 2009-03-24 15:17:17 +0100 iha r269957 : remove unused code 2009-03-24 11:14:53 +0100 iha r269923 : #i24203# rotate data labels 2009-03-09 12:10:25 +0100 hde r269076 : #i99300# 2009-03-06 15:56:26 +0100 iha r269011 : #i93953# Source Format for secondary axis without data 2009-02-17 15:59:05 +0100 iha r268177 : avoid warning during build 2009-02-17 15:01:59 +0100 iha r268173 : avoid warning during build 2009-02-13 09:39:03 +0100 ufi r267693 : i96999 2009-02-11 15:12:35 +0100 iha r267604 : removed unused string 2009-02-11 14:00:29 +0100 iha r267600 : #i96999# Corrected wording from 'correlation coefficient' to 'coefficient of determination' 2009-02-11 10:56:45 +0100 iha r267584 : #i89731# typo in resource string 2009-02-11 10:01:29 +0100 iha r267582 : #i89031# compile error on asian windows systems 2009-02-10 16:15:16 +0100 iha r267552 : #i24203# rotate data labels 2009-02-04 18:00:33 +0100 iha r267395 : #i98893# don't export defaults to file 2009-02-04 15:48:15 +0100 iha r267390 : #i92128# asian typography for chart elements 2009-02-04 15:17:41 +0100 iha r267386 : #i92128# asian typography for chart elements 2009-01-30 14:41:10 +0100 iha r267197 : CWS-TOOLING: rebase CWS chart37 to trunk@267171 (milestone: DEV300:m41)
2009-06-04 09:41:18 +00:00
::chart::createErrorBar( uno::Reference< uno::XComponentContext >()));
2003-12-11 12:54:07 +00:00
}
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 );
}
}
uno::Reference< beans::XPropertySet > lcl_getEquationProperties(
const uno::Reference< beans::XPropertySet > & xSeriesPropSet, const SfxItemSet * pItemSet )
{
bool bEquationExists = true;
// ensure that a trendline is on
if( pItemSet )
{
SvxChartRegress eRegress = CHREGRESS_NONE;
const SfxPoolItem *pPoolItem = NULL;
if( pItemSet->GetItemState( SCHATTR_REGRESSION_TYPE, TRUE, &pPoolItem ) == SFX_ITEM_SET )
{
eRegress = static_cast< const SvxChartRegressItem * >( pPoolItem )->GetValue();
bEquationExists = ( eRegress != CHREGRESS_NONE );
}
}
if( bEquationExists )
{
uno::Reference< chart2::XRegressionCurveContainer > xRegCnt( xSeriesPropSet, uno::UNO_QUERY );
uno::Reference< chart2::XRegressionCurve > xCurve(
::chart::RegressionCurveHelper::getFirstCurveNotMeanValueLine( xRegCnt ));
if( xCurve.is())
{
return xCurve->getEquationProperties();
}
}
return uno::Reference< beans::XPropertySet >();
}
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:
{
uno::Reference< beans::XPropertySet > xErrorBarProp(
2003-12-11 12:54:07 +00:00
lcl_GetYErrorBar( GetPropertySet() ));
SvxChartKindError eErrorKind =
static_cast< const SvxChartKindErrorItem & >(
rItemSet.Get( nWhichId )).GetValue();
if( !xErrorBarProp.is() && eErrorKind == CHERROR_NONE)
{
//nothing to do
}
else
{
sal_Int32 nStyle = ::com::sun::star::chart::ErrorBarStyle::NONE;
switch( eErrorKind )
{
case CHERROR_NONE:
nStyle = ::com::sun::star::chart::ErrorBarStyle::NONE; break;
case CHERROR_VARIANT:
nStyle = ::com::sun::star::chart::ErrorBarStyle::VARIANCE; break;
case CHERROR_SIGMA:
nStyle = ::com::sun::star::chart::ErrorBarStyle::STANDARD_DEVIATION; break;
case CHERROR_PERCENT:
nStyle = ::com::sun::star::chart::ErrorBarStyle::RELATIVE; break;
case CHERROR_BIGERROR:
nStyle = ::com::sun::star::chart::ErrorBarStyle::ERROR_MARGIN; break;
case CHERROR_CONST:
nStyle = ::com::sun::star::chart::ErrorBarStyle::ABSOLUTE; break;
case CHERROR_STDERROR:
nStyle = ::com::sun::star::chart::ErrorBarStyle::STANDARD_ERROR; break;
case CHERROR_RANGE:
nStyle = ::com::sun::star::chart::ErrorBarStyle::FROM_DATA; break;
}
if( !xErrorBarProp.is() )
{
xErrorBarProp = lcl_GetDefaultErrorBar();
GetPropertySet()->setPropertyValue(
C2U( "ErrorBarY" ), uno::makeAny( xErrorBarProp ));
}
xErrorBarProp->setPropertyValue( C2U( "ErrorBarStyle" ),
uno::makeAny( nStyle ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_PERCENT:
case SCHATTR_STAT_BIGERROR:
{
OSL_FAIL( "Deprectaed item" );
uno::Reference< beans::XPropertySet > xErrorBarProp(
2003-12-11 12:54:07 +00:00
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xErrorBarProp.is();
double fValue =
static_cast< const SvxDoubleItem & >(
rItemSet.Get( nWhichId )).GetValue();
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xErrorBarProp, fPos, fNeg );
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
! ( ::rtl::math::approxEqual( fPos, fValue ) &&
::rtl::math::approxEqual( fNeg, fValue )))
{
xErrorBarProp->setPropertyValue( C2U( "PositiveError" ),
2003-12-11 12:54:07 +00:00
uno::makeAny( fValue ));
xErrorBarProp->setPropertyValue( C2U( "NegativeError" ),
2003-12-11 12:54:07 +00:00
uno::makeAny( fValue ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_CONSTPLUS:
{
uno::Reference< beans::XPropertySet > xErrorBarProp(
2003-12-11 12:54:07 +00:00
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xErrorBarProp.is();
double fValue =
static_cast< const SvxDoubleItem & >(
rItemSet.Get( nWhichId )).GetValue();
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xErrorBarProp, fPos, fNeg );
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
! ::rtl::math::approxEqual( fPos, fValue ))
{
xErrorBarProp->setPropertyValue( C2U( "PositiveError" ), uno::makeAny( fValue ));
bChanged = true;
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_CONSTMINUS:
{
uno::Reference< beans::XPropertySet > xErrorBarProp(
2003-12-11 12:54:07 +00:00
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xErrorBarProp.is();
double fValue =
static_cast< const SvxDoubleItem & >(
rItemSet.Get( nWhichId )).GetValue();
2003-12-11 12:54:07 +00:00
double fPos, fNeg;
lcl_getErrorValues( xErrorBarProp, fPos, fNeg );
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
! ::rtl::math::approxEqual( fNeg, fValue ))
{
xErrorBarProp->setPropertyValue( C2U( "NegativeError" ), uno::makeAny( fValue ));
bChanged = true;
}
}
break;
case SCHATTR_REGRESSION_TYPE:
{
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;
case SCHATTR_REGRESSION_SHOW_EQUATION:
{
uno::Reference< beans::XPropertySet > xEqProp( lcl_getEquationProperties( GetPropertySet(), &rItemSet ));
if( xEqProp.is())
{
bool bShowEq = false;
xEqProp->getPropertyValue( C2U("ShowEquation")) >>= bShowEq;
bool bNewShowEq =
static_cast< const SfxBoolItem & >( rItemSet.Get( nWhichId )).GetValue();
if( bShowEq != bNewShowEq )
{
xEqProp->setPropertyValue( C2U("ShowEquation"), uno::makeAny( bNewShowEq ));
bChanged = true;
}
}
}
break;
case SCHATTR_REGRESSION_SHOW_COEFF:
{
uno::Reference< beans::XPropertySet > xEqProp( lcl_getEquationProperties( GetPropertySet(), &rItemSet ));
if( xEqProp.is())
{
bool bShowCoeff = false;
xEqProp->getPropertyValue( C2U("ShowCorrelationCoefficient")) >>= bShowCoeff;
bool bNewShowCoeff =
static_cast< const SfxBoolItem & >( rItemSet.Get( nWhichId )).GetValue();
if( bShowCoeff != bNewShowCoeff )
{
xEqProp->setPropertyValue( C2U("ShowCorrelationCoefficient"), uno::makeAny( bNewShowCoeff ));
bChanged = true;
}
}
}
break;
2003-12-09 15:29:35 +00:00
case SCHATTR_STAT_INDICATE:
{
uno::Reference< beans::XPropertySet > xErrorBarProp(
2003-12-11 12:54:07 +00:00
lcl_GetYErrorBar( GetPropertySet()));
bool bOldHasErrorBar = xErrorBarProp.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( xErrorBarProp, bShowPos, bShowNeg );
2003-12-11 12:54:07 +00:00
if( bOldHasErrorBar &&
2003-12-11 12:54:07 +00:00
( bShowPos != bNewIndPos ||
bShowNeg != bNewIndNeg ))
{
xErrorBarProp->setPropertyValue( C2U( "ShowPositiveError" ), uno::makeAny( bNewIndPos ));
xErrorBarProp->setPropertyValue( C2U( "ShowNegativeError" ), uno::makeAny( bNewIndNeg ));
bChanged = true;
}
}
break;
case SCHATTR_STAT_RANGE_POS:
case SCHATTR_STAT_RANGE_NEG:
{
// @todo: also be able to deal with x-error bars
const bool bYError = true;
uno::Reference< chart2::data::XDataSource > xErrorBarSource( lcl_GetYErrorBar( GetPropertySet()), uno::UNO_QUERY );
uno::Reference< chart2::XChartDocument > xChartDoc( m_xModel, uno::UNO_QUERY );
uno::Reference< chart2::data::XDataProvider > xDataProvider;
if( xChartDoc.is())
xDataProvider.set( xChartDoc->getDataProvider());
if( xErrorBarSource.is() && xDataProvider.is())
{
::rtl::OUString aNewRange( static_cast< const SfxStringItem & >( rItemSet.Get( nWhichId )).GetValue());
bool bApplyNewRange = false;
bool bIsPositiveValue( nWhichId == SCHATTR_STAT_RANGE_POS );
if( xChartDoc->hasInternalDataProvider())
{
if( aNewRange.getLength())
{
uno::Reference< chart2::data::XDataSequence > xSeq(
StatisticsHelper::getErrorDataSequenceFromDataSource(
xErrorBarSource, bIsPositiveValue, bYError ));
if( ! xSeq.is())
{
// no data range for error bars yet => create
uno::Reference< chart2::XInternalDataProvider > xIntDataProvider( xDataProvider, uno::UNO_QUERY );
OSL_ASSERT( xIntDataProvider.is());
if( xIntDataProvider.is())
{
xIntDataProvider->appendSequence();
aNewRange = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("last"));
bApplyNewRange = true;
}
}
}
}
else
{
uno::Reference< chart2::data::XDataSequence > xSeq(
StatisticsHelper::getErrorDataSequenceFromDataSource(
xErrorBarSource, bIsPositiveValue, bYError ));
bApplyNewRange =
! ( xSeq.is() && aNewRange.equals( xSeq->getSourceRangeRepresentation()));
}
if( bApplyNewRange )
StatisticsHelper::setErrorDataSequence(
xErrorBarSource, xDataProvider, aNewRange, bIsPositiveValue, bYError );
}
}
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() )
{
2008-03-10 07:37:00 +00:00
sal_Int32 nStyle = 0;
if( xErrorBarProp->getPropertyValue( C2U( "ErrorBarStyle" )) >>= nStyle )
{
switch( nStyle )
2003-12-11 12:54:07 +00:00
{
case ::com::sun::star::chart::ErrorBarStyle::NONE:
break;
case ::com::sun::star::chart::ErrorBarStyle::VARIANCE:
2003-12-11 12:54:07 +00:00
eErrorKind = CHERROR_VARIANT; break;
case ::com::sun::star::chart::ErrorBarStyle::STANDARD_DEVIATION:
2003-12-11 12:54:07 +00:00
eErrorKind = CHERROR_SIGMA; break;
case ::com::sun::star::chart::ErrorBarStyle::ABSOLUTE:
2003-12-11 12:54:07 +00:00
eErrorKind = CHERROR_CONST; break;
case ::com::sun::star::chart::ErrorBarStyle::RELATIVE:
2003-12-11 12:54:07 +00:00
eErrorKind = CHERROR_PERCENT; break;
case ::com::sun::star::chart::ErrorBarStyle::ERROR_MARGIN:
2003-12-11 12:54:07 +00:00
eErrorKind = CHERROR_BIGERROR; break;
case ::com::sun::star::chart::ErrorBarStyle::STANDARD_ERROR:
eErrorKind = CHERROR_STDERROR; break;
case ::com::sun::star::chart::ErrorBarStyle::FROM_DATA:
eErrorKind = CHERROR_RANGE; break;
2003-12-11 12:54:07 +00:00
}
}
}
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;
case SCHATTR_REGRESSION_TYPE:
{
SvxChartRegress eRegress = static_cast< SvxChartRegress >(
static_cast< sal_Int32 >(
RegressionCurveHelper::getFirstRegressTypeNotMeanValueLine(
uno::Reference< chart2::XRegressionCurveContainer >(
GetPropertySet(), uno::UNO_QUERY ) )));
rOutItemSet.Put( SvxChartRegressItem( eRegress, SCHATTR_REGRESSION_TYPE ));
}
break;
case SCHATTR_REGRESSION_SHOW_EQUATION:
{
CWS-TOOLING: integrate CWS chart35 2009-02-20 12:33:54 +0100 nn r268312 : correct line ends 2009-01-19 12:50:45 +0100 iha r266491 : #i91800# style:text-position='0' is wrongly imported 2009-01-19 11:59:09 +0100 iha r266486 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-16 16:45:50 +0100 iha r266435 : #i93802# clockwise does not work on solars sparc 2009-01-16 13:23:37 +0100 iha r266414 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-15 14:09:27 +0100 iha r266370 : #i98102# checkbox show equation should not be checked initially 2009-01-14 17:41:33 +0100 iha r266323 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 16:23:06 +0100 iha r266316 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 13:43:38 +0100 iha r266298 : #i84417# Unable to edit existing chart title with clipboard 2009-01-14 13:43:04 +0100 iha r266297 : #i84417# Unable to edit existing chart title with IME 2009-01-14 13:14:15 +0100 dr r266293 : do not set CharEscapement property if not needed 2009-01-14 00:48:46 +0100 er r266262 : #i81383# changed ASC and JIS to use transliteration provided by i18n transliteration; patch from <bluedwarf> 2009-01-14 00:28:06 +0100 er r266261 : #i97536# silence gcc's unbracketed && || warnings 2009-01-13 22:43:45 +0100 er r266259 : #i97905# corrected IndexKey order 2009-01-13 20:36:15 +0100 er r266254 : #i97905# add SKK/EUR conversion (plus MTL/EUR and CYP/EUR) 2009-01-13 20:31:17 +0100 er r266253 : #i97905# updated locale data; contributed by <brko> 2009-01-13 11:57:08 +0100 iha r266204 : #i84103# cannot set data in xy diagram in draw 2009-01-12 20:29:37 +0100 nn r266181 : #i97680# GetStylesContainer: handle non-available style family 2009-01-12 19:53:19 +0100 nn r266180 : #i98000# don't get initial zoom value via SfxViewFrame::Current 2009-01-12 16:11:19 +0100 iha r266166 : #i71686# XY charts without valid x values are not imported correctly from Excel 2009-01-09 17:10:20 +0100 iha r266102 : #i95051# truncated asian strings on scale tabpage 2009-01-09 15:58:46 +0100 iha r266094 : #i89430# truncated asian strings in smooth lines dialog 2009-01-09 13:09:14 +0100 iha r266076 : #i94813# importing pie chart with multiline categories crashes
2009-03-03 11:39:43 +00:00
bool bShowEq = false;
uno::Reference< beans::XPropertySet > xEqProp( lcl_getEquationProperties( GetPropertySet(), 0 ));
if( xEqProp.is())
CWS-TOOLING: integrate CWS chart35 2009-02-20 12:33:54 +0100 nn r268312 : correct line ends 2009-01-19 12:50:45 +0100 iha r266491 : #i91800# style:text-position='0' is wrongly imported 2009-01-19 11:59:09 +0100 iha r266486 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-16 16:45:50 +0100 iha r266435 : #i93802# clockwise does not work on solars sparc 2009-01-16 13:23:37 +0100 iha r266414 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-15 14:09:27 +0100 iha r266370 : #i98102# checkbox show equation should not be checked initially 2009-01-14 17:41:33 +0100 iha r266323 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 16:23:06 +0100 iha r266316 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 13:43:38 +0100 iha r266298 : #i84417# Unable to edit existing chart title with clipboard 2009-01-14 13:43:04 +0100 iha r266297 : #i84417# Unable to edit existing chart title with IME 2009-01-14 13:14:15 +0100 dr r266293 : do not set CharEscapement property if not needed 2009-01-14 00:48:46 +0100 er r266262 : #i81383# changed ASC and JIS to use transliteration provided by i18n transliteration; patch from <bluedwarf> 2009-01-14 00:28:06 +0100 er r266261 : #i97536# silence gcc's unbracketed && || warnings 2009-01-13 22:43:45 +0100 er r266259 : #i97905# corrected IndexKey order 2009-01-13 20:36:15 +0100 er r266254 : #i97905# add SKK/EUR conversion (plus MTL/EUR and CYP/EUR) 2009-01-13 20:31:17 +0100 er r266253 : #i97905# updated locale data; contributed by <brko> 2009-01-13 11:57:08 +0100 iha r266204 : #i84103# cannot set data in xy diagram in draw 2009-01-12 20:29:37 +0100 nn r266181 : #i97680# GetStylesContainer: handle non-available style family 2009-01-12 19:53:19 +0100 nn r266180 : #i98000# don't get initial zoom value via SfxViewFrame::Current 2009-01-12 16:11:19 +0100 iha r266166 : #i71686# XY charts without valid x values are not imported correctly from Excel 2009-01-09 17:10:20 +0100 iha r266102 : #i95051# truncated asian strings on scale tabpage 2009-01-09 15:58:46 +0100 iha r266094 : #i89430# truncated asian strings in smooth lines dialog 2009-01-09 13:09:14 +0100 iha r266076 : #i94813# importing pie chart with multiline categories crashes
2009-03-03 11:39:43 +00:00
xEqProp->getPropertyValue( C2U("ShowEquation")) >>= bShowEq;
rOutItemSet.Put( SfxBoolItem( nWhichId, bShowEq ));
}
break;
case SCHATTR_REGRESSION_SHOW_COEFF:
{
CWS-TOOLING: integrate CWS chart35 2009-02-20 12:33:54 +0100 nn r268312 : correct line ends 2009-01-19 12:50:45 +0100 iha r266491 : #i91800# style:text-position='0' is wrongly imported 2009-01-19 11:59:09 +0100 iha r266486 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-16 16:45:50 +0100 iha r266435 : #i93802# clockwise does not work on solars sparc 2009-01-16 13:23:37 +0100 iha r266414 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-15 14:09:27 +0100 iha r266370 : #i98102# checkbox show equation should not be checked initially 2009-01-14 17:41:33 +0100 iha r266323 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 16:23:06 +0100 iha r266316 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 13:43:38 +0100 iha r266298 : #i84417# Unable to edit existing chart title with clipboard 2009-01-14 13:43:04 +0100 iha r266297 : #i84417# Unable to edit existing chart title with IME 2009-01-14 13:14:15 +0100 dr r266293 : do not set CharEscapement property if not needed 2009-01-14 00:48:46 +0100 er r266262 : #i81383# changed ASC and JIS to use transliteration provided by i18n transliteration; patch from <bluedwarf> 2009-01-14 00:28:06 +0100 er r266261 : #i97536# silence gcc's unbracketed && || warnings 2009-01-13 22:43:45 +0100 er r266259 : #i97905# corrected IndexKey order 2009-01-13 20:36:15 +0100 er r266254 : #i97905# add SKK/EUR conversion (plus MTL/EUR and CYP/EUR) 2009-01-13 20:31:17 +0100 er r266253 : #i97905# updated locale data; contributed by <brko> 2009-01-13 11:57:08 +0100 iha r266204 : #i84103# cannot set data in xy diagram in draw 2009-01-12 20:29:37 +0100 nn r266181 : #i97680# GetStylesContainer: handle non-available style family 2009-01-12 19:53:19 +0100 nn r266180 : #i98000# don't get initial zoom value via SfxViewFrame::Current 2009-01-12 16:11:19 +0100 iha r266166 : #i71686# XY charts without valid x values are not imported correctly from Excel 2009-01-09 17:10:20 +0100 iha r266102 : #i95051# truncated asian strings on scale tabpage 2009-01-09 15:58:46 +0100 iha r266094 : #i89430# truncated asian strings in smooth lines dialog 2009-01-09 13:09:14 +0100 iha r266076 : #i94813# importing pie chart with multiline categories crashes
2009-03-03 11:39:43 +00:00
bool bShowCoeff = false;
uno::Reference< beans::XPropertySet > xEqProp( lcl_getEquationProperties( GetPropertySet(), 0 ));
if( xEqProp.is())
CWS-TOOLING: integrate CWS chart35 2009-02-20 12:33:54 +0100 nn r268312 : correct line ends 2009-01-19 12:50:45 +0100 iha r266491 : #i91800# style:text-position='0' is wrongly imported 2009-01-19 11:59:09 +0100 iha r266486 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-16 16:45:50 +0100 iha r266435 : #i93802# clockwise does not work on solars sparc 2009-01-16 13:23:37 +0100 iha r266414 : #i91037# Position of Datalabels in 3D Bar-Charts are crossing the edge 2009-01-15 14:09:27 +0100 iha r266370 : #i98102# checkbox show equation should not be checked initially 2009-01-14 17:41:33 +0100 iha r266323 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 16:23:06 +0100 iha r266316 : #i97133# #i97318# chart type is not detected correctly in case of invisible series 2009-01-14 13:43:38 +0100 iha r266298 : #i84417# Unable to edit existing chart title with clipboard 2009-01-14 13:43:04 +0100 iha r266297 : #i84417# Unable to edit existing chart title with IME 2009-01-14 13:14:15 +0100 dr r266293 : do not set CharEscapement property if not needed 2009-01-14 00:48:46 +0100 er r266262 : #i81383# changed ASC and JIS to use transliteration provided by i18n transliteration; patch from <bluedwarf> 2009-01-14 00:28:06 +0100 er r266261 : #i97536# silence gcc's unbracketed && || warnings 2009-01-13 22:43:45 +0100 er r266259 : #i97905# corrected IndexKey order 2009-01-13 20:36:15 +0100 er r266254 : #i97905# add SKK/EUR conversion (plus MTL/EUR and CYP/EUR) 2009-01-13 20:31:17 +0100 er r266253 : #i97905# updated locale data; contributed by <brko> 2009-01-13 11:57:08 +0100 iha r266204 : #i84103# cannot set data in xy diagram in draw 2009-01-12 20:29:37 +0100 nn r266181 : #i97680# GetStylesContainer: handle non-available style family 2009-01-12 19:53:19 +0100 nn r266180 : #i98000# don't get initial zoom value via SfxViewFrame::Current 2009-01-12 16:11:19 +0100 iha r266166 : #i71686# XY charts without valid x values are not imported correctly from Excel 2009-01-09 17:10:20 +0100 iha r266102 : #i95051# truncated asian strings on scale tabpage 2009-01-09 15:58:46 +0100 iha r266094 : #i89430# truncated asian strings in smooth lines dialog 2009-01-09 13:09:14 +0100 iha r266076 : #i94813# importing pie chart with multiline categories crashes
2009-03-03 11:39:43 +00:00
xEqProp->getPropertyValue( C2U("ShowCorrelationCoefficient")) >>= bShowCoeff;
rOutItemSet.Put( SfxBoolItem( nWhichId, bShowCoeff ));
}
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;
case SCHATTR_STAT_RANGE_POS:
case SCHATTR_STAT_RANGE_NEG:
{
uno::Reference< chart2::data::XDataSource > xErrorBarSource( lcl_GetYErrorBar( GetPropertySet()), uno::UNO_QUERY );
if( xErrorBarSource.is())
{
uno::Reference< chart2::data::XDataSequence > xSeq(
StatisticsHelper::getErrorDataSequenceFromDataSource(
xErrorBarSource, (nWhichId == SCHATTR_STAT_RANGE_POS) /*, true */ /* y */ ));
if( xSeq.is())
rOutItemSet.Put( SfxStringItem( nWhichId, String( xSeq->getSourceRangeRepresentation())));
}
}
break;
2003-12-09 15:29:35 +00:00
}
}
} // namespace wrapper
} // namespace chart
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */