442 lines
17 KiB
C++
442 lines
17 KiB
C++
/* -*- 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 "SeriesOptionsItemConverter.hxx"
|
|
#include "SchWhichPairs.hxx"
|
|
|
|
#include "macros.hxx"
|
|
#include "ItemPropertyMap.hxx"
|
|
#include "GraphicPropertyItemConverter.hxx"
|
|
#include "MultipleItemConverter.hxx"
|
|
#include "ChartModelHelper.hxx"
|
|
#include "AxisHelper.hxx"
|
|
#include "DiagramHelper.hxx"
|
|
#include "ChartTypeHelper.hxx"
|
|
#include "DataSeriesHelper.hxx"
|
|
|
|
#include <com/sun/star/chart/MissingValueTreatment.hpp>
|
|
#include <com/sun/star/chart2/XDataSeries.hpp>
|
|
|
|
// for SfxBoolItem
|
|
#include <svl/eitem.hxx>
|
|
#include <svl/intitem.hxx>
|
|
|
|
//SfxIntegerListItem
|
|
#include <svl/ilstitem.hxx>
|
|
|
|
#include <rtl/math.hxx>
|
|
#include <functional>
|
|
#include <algorithm>
|
|
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::chart2;
|
|
|
|
namespace chart
|
|
{
|
|
namespace wrapper
|
|
{
|
|
|
|
SeriesOptionsItemConverter::SeriesOptionsItemConverter(
|
|
const uno::Reference< frame::XModel >& xChartModel
|
|
, const uno::Reference< uno::XComponentContext > & xContext
|
|
, const uno::Reference< beans::XPropertySet >& xPropertySet
|
|
, SfxItemPool& rItemPool )
|
|
: ItemConverter( xPropertySet, rItemPool )
|
|
, m_xChartModel(xChartModel)
|
|
, m_xCC(xContext)
|
|
, m_bAttachToMainAxis(true)
|
|
, m_bSupportingOverlapAndGapWidthProperties(false)
|
|
, m_bSupportingBarConnectors(false)
|
|
, m_nBarOverlap(0)
|
|
, m_nGapWidth(100)
|
|
, m_bConnectBars(false)
|
|
, m_bSupportingAxisSideBySide(false)
|
|
, m_bGroupBarsPerAxis(true)
|
|
, m_bAllSeriesAttachedToSameAxis(true)
|
|
, m_nAllSeriesAxisIndex(-1)
|
|
, m_bSupportingStartingAngle(false)
|
|
, m_nStartingAngle(90)
|
|
, m_bClockwise(false)
|
|
, m_aSupportedMissingValueTreatments()
|
|
, m_nMissingValueTreatment(0)
|
|
, m_bSupportingPlottingOfHiddenCells(false)
|
|
, m_bIncludeHiddenCells(true)
|
|
{
|
|
try
|
|
{
|
|
uno::Reference< XDataSeries > xDataSeries( xPropertySet, uno::UNO_QUERY );
|
|
|
|
m_bAttachToMainAxis = DiagramHelper::isSeriesAttachedToMainAxis( xDataSeries );
|
|
|
|
uno::Reference< XDiagram > xDiagram( ChartModelHelper::findDiagram(xChartModel) );
|
|
uno::Reference< beans::XPropertySet > xDiagramProperties( xDiagram, uno::UNO_QUERY );
|
|
uno::Reference< XChartType > xChartType( DiagramHelper::getChartTypeOfSeries( xDiagram , xDataSeries ) );
|
|
|
|
m_xCooSys = DataSeriesHelper::getCoordinateSystemOfSeries( xDataSeries, xDiagram );
|
|
if( m_xCooSys.is() )
|
|
{
|
|
uno::Reference< chart2::XAxis > xAxis( AxisHelper::getAxis( 1, 0, m_xCooSys ) );
|
|
chart2::ScaleData aScale( xAxis->getScaleData() );
|
|
m_bClockwise = (aScale.Orientation == chart2::AxisOrientation_REVERSE);
|
|
}
|
|
|
|
sal_Int32 nDimensionCount = DiagramHelper::getDimension( xDiagram );
|
|
m_bSupportingOverlapAndGapWidthProperties = ChartTypeHelper::isSupportingOverlapAndGapWidthProperties( xChartType, nDimensionCount );
|
|
|
|
if( m_bSupportingOverlapAndGapWidthProperties )
|
|
{
|
|
|
|
sal_Int32 nAxisIndex = DataSeriesHelper::getAttachedAxisIndex(xDataSeries);
|
|
|
|
uno::Sequence< sal_Int32 > m_aBarPositionSequence;
|
|
uno::Reference< beans::XPropertySet > xChartTypeProps( xChartType, uno::UNO_QUERY );
|
|
if( xChartTypeProps.is() )
|
|
{
|
|
if( xChartTypeProps->getPropertyValue( "OverlapSequence" ) >>= m_aBarPositionSequence )
|
|
{
|
|
if( nAxisIndex >= 0 && nAxisIndex < m_aBarPositionSequence.getLength() )
|
|
m_nBarOverlap = m_aBarPositionSequence[nAxisIndex];
|
|
}
|
|
if( xChartTypeProps->getPropertyValue( "GapwidthSequence" ) >>= m_aBarPositionSequence )
|
|
{
|
|
if( nAxisIndex >= 0 && nAxisIndex < m_aBarPositionSequence.getLength() )
|
|
m_nGapWidth = m_aBarPositionSequence[nAxisIndex];
|
|
}
|
|
}
|
|
}
|
|
|
|
m_bSupportingBarConnectors = ChartTypeHelper::isSupportingBarConnectors( xChartType, nDimensionCount );
|
|
if( m_bSupportingBarConnectors && xDiagramProperties.is() )
|
|
{
|
|
xDiagramProperties->getPropertyValue( "ConnectBars" ) >>= m_bConnectBars;
|
|
}
|
|
|
|
m_bSupportingAxisSideBySide = ChartTypeHelper::isSupportingAxisSideBySide( xChartType, nDimensionCount );
|
|
if( m_bSupportingAxisSideBySide && xDiagramProperties.is() )
|
|
{
|
|
xDiagramProperties->getPropertyValue( "GroupBarsPerAxis" ) >>= m_bGroupBarsPerAxis;
|
|
m_bAllSeriesAttachedToSameAxis = DataSeriesHelper::areAllSeriesAttachedToSameAxis( xChartType, m_nAllSeriesAxisIndex );
|
|
}
|
|
|
|
m_bSupportingStartingAngle = ChartTypeHelper::isSupportingStartingAngle( xChartType );
|
|
if( m_bSupportingStartingAngle )
|
|
{
|
|
xDiagramProperties->getPropertyValue( "StartingAngle" ) >>= m_nStartingAngle;
|
|
}
|
|
|
|
m_aSupportedMissingValueTreatments = ChartTypeHelper::getSupportedMissingValueTreatments( xChartType );
|
|
m_nMissingValueTreatment = DiagramHelper::getCorrectedMissingValueTreatment(
|
|
ChartModelHelper::findDiagram(m_xChartModel), xChartType );
|
|
|
|
uno::Reference< XChartDocument > xChartDoc( m_xChartModel, uno::UNO_QUERY );
|
|
uno::Reference< beans::XPropertySet > xProp( xChartDoc->getDataProvider(), uno::UNO_QUERY );
|
|
if( xProp.is() )
|
|
{
|
|
try
|
|
{
|
|
//test whether the data provider offers this property
|
|
xProp->getPropertyValue( "IncludeHiddenCells" );
|
|
//if not exception is thrown the property is offered
|
|
m_bSupportingPlottingOfHiddenCells = true;
|
|
xDiagramProperties->getPropertyValue( "IncludeHiddenCells" ) >>= m_bIncludeHiddenCells;
|
|
}
|
|
catch( const beans::UnknownPropertyException& )
|
|
{
|
|
}
|
|
}
|
|
}
|
|
catch( const uno::Exception &ex )
|
|
{
|
|
ASSERT_EXCEPTION( ex );
|
|
}
|
|
}
|
|
|
|
SeriesOptionsItemConverter::~SeriesOptionsItemConverter()
|
|
{
|
|
}
|
|
|
|
const sal_uInt16 * SeriesOptionsItemConverter::GetWhichPairs() const
|
|
{
|
|
// must span all used items!
|
|
return nSeriesOptionsWhichPairs;
|
|
}
|
|
|
|
bool SeriesOptionsItemConverter::GetItemProperty( tWhichIdType /*nWhichId*/, tPropertyNameWithMemberId & /*rOutProperty*/ ) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool SeriesOptionsItemConverter::ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & rItemSet )
|
|
throw( uno::Exception )
|
|
{
|
|
bool bChanged = false;
|
|
switch( nWhichId )
|
|
{
|
|
case SCHATTR_AXIS:
|
|
{
|
|
sal_Int32 nItemValue = static_cast< const SfxInt32Item & >(
|
|
rItemSet.Get( nWhichId )).GetValue();
|
|
bool bAttachToMainAxis = nItemValue == CHART_AXIS_PRIMARY_Y;
|
|
if( bAttachToMainAxis != m_bAttachToMainAxis )
|
|
{
|
|
//change model:
|
|
bChanged = DiagramHelper::attachSeriesToAxis( bAttachToMainAxis, uno::Reference< XDataSeries >::query( GetPropertySet() )
|
|
, ChartModelHelper::findDiagram(m_xChartModel), m_xCC );
|
|
|
|
if( bChanged )
|
|
m_bAttachToMainAxis = bAttachToMainAxis;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SCHATTR_BAR_OVERLAP:
|
|
case SCHATTR_BAR_GAPWIDTH:
|
|
{
|
|
if( m_bSupportingOverlapAndGapWidthProperties )
|
|
{
|
|
sal_Int32& rBarPosition = ( SCHATTR_BAR_OVERLAP == nWhichId ) ? m_nBarOverlap : m_nGapWidth;
|
|
rBarPosition = static_cast< const SfxInt32Item & >( rItemSet.Get( nWhichId )).GetValue();
|
|
|
|
OUString aPropName("GapwidthSequence" );
|
|
if( SCHATTR_BAR_OVERLAP == nWhichId )
|
|
aPropName = "OverlapSequence";
|
|
|
|
uno::Reference< XDataSeries > xDataSeries( GetPropertySet(), uno::UNO_QUERY );
|
|
uno::Reference< XDiagram > xDiagram( ChartModelHelper::findDiagram(m_xChartModel) );
|
|
uno::Reference< beans::XPropertySet > xChartTypeProps( DiagramHelper::getChartTypeOfSeries( xDiagram , xDataSeries ), uno::UNO_QUERY );
|
|
if( xChartTypeProps.is() )
|
|
{
|
|
sal_Int32 nAxisIndex = DataSeriesHelper::getAttachedAxisIndex(xDataSeries);
|
|
uno::Sequence< sal_Int32 > m_aBarPositionSequence;
|
|
if( xChartTypeProps.is() )
|
|
{
|
|
if( xChartTypeProps->getPropertyValue( aPropName ) >>= m_aBarPositionSequence )
|
|
{
|
|
bool bGroupBarsPerAxis = static_cast< const SfxBoolItem & >(rItemSet.Get( SCHATTR_GROUP_BARS_PER_AXIS )).GetValue();
|
|
if(!bGroupBarsPerAxis)
|
|
{
|
|
//set the same value for all axes
|
|
for( sal_Int32 nN = 0; nN < m_aBarPositionSequence.getLength(); nN++ )
|
|
m_aBarPositionSequence[nN] = rBarPosition;
|
|
}
|
|
else if( nAxisIndex >= 0 && nAxisIndex < m_aBarPositionSequence.getLength() )
|
|
m_aBarPositionSequence[nAxisIndex] = rBarPosition;
|
|
|
|
xChartTypeProps->setPropertyValue( aPropName, uno::makeAny(m_aBarPositionSequence) );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SCHATTR_BAR_CONNECT:
|
|
{
|
|
sal_Bool bOldConnectBars = sal_False;
|
|
m_bConnectBars = static_cast< const SfxBoolItem & >(
|
|
rItemSet.Get( nWhichId )).GetValue();
|
|
if( m_bSupportingBarConnectors )
|
|
{
|
|
uno::Reference< beans::XPropertySet > xDiagramProperties( ChartModelHelper::findDiagram(m_xChartModel), uno::UNO_QUERY );
|
|
if( xDiagramProperties.is() &&
|
|
(xDiagramProperties->getPropertyValue( "ConnectBars" ) >>= bOldConnectBars) &&
|
|
bOldConnectBars != m_bConnectBars )
|
|
{
|
|
xDiagramProperties->setPropertyValue( "ConnectBars" , uno::makeAny(m_bConnectBars) );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SCHATTR_GROUP_BARS_PER_AXIS:
|
|
{
|
|
bool bOldGroupBarsPerAxis = true;
|
|
m_bGroupBarsPerAxis = static_cast< const SfxBoolItem & >(
|
|
rItemSet.Get( nWhichId )).GetValue();
|
|
if( m_bSupportingAxisSideBySide )
|
|
{
|
|
uno::Reference< beans::XPropertySet > xDiagramProperties( ChartModelHelper::findDiagram(m_xChartModel), uno::UNO_QUERY );
|
|
if( xDiagramProperties.is() &&
|
|
(xDiagramProperties->getPropertyValue( "GroupBarsPerAxis" ) >>= bOldGroupBarsPerAxis) &&
|
|
bOldGroupBarsPerAxis != m_bGroupBarsPerAxis )
|
|
{
|
|
xDiagramProperties->setPropertyValue( "GroupBarsPerAxis" , uno::makeAny(m_bGroupBarsPerAxis) );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SCHATTR_STARTING_ANGLE:
|
|
{
|
|
if( m_bSupportingStartingAngle )
|
|
{
|
|
m_nStartingAngle = static_cast< const SfxInt32Item & >( rItemSet.Get( nWhichId )).GetValue();
|
|
uno::Reference< beans::XPropertySet > xDiagramProperties( ChartModelHelper::findDiagram(m_xChartModel), uno::UNO_QUERY );
|
|
if( xDiagramProperties.is() )
|
|
{
|
|
xDiagramProperties->setPropertyValue( "StartingAngle" , uno::makeAny(m_nStartingAngle) );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SCHATTR_CLOCKWISE:
|
|
{
|
|
bool bClockwise = (static_cast< const SfxBoolItem & >(
|
|
rItemSet.Get( nWhichId )).GetValue() );
|
|
if( m_xCooSys.is() )
|
|
{
|
|
uno::Reference< chart2::XAxis > xAxis( AxisHelper::getAxis( 1, 0, m_xCooSys ) );
|
|
if( xAxis.is() )
|
|
{
|
|
chart2::ScaleData aScaleData( xAxis->getScaleData() );
|
|
aScaleData.Orientation = bClockwise ? chart2::AxisOrientation_REVERSE : chart2::AxisOrientation_MATHEMATICAL;
|
|
xAxis->setScaleData( aScaleData );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SCHATTR_MISSING_VALUE_TREATMENT:
|
|
{
|
|
if( m_aSupportedMissingValueTreatments.getLength() )
|
|
{
|
|
sal_Int32 nNew = static_cast< const SfxInt32Item & >( rItemSet.Get( nWhichId )).GetValue();
|
|
if( m_nMissingValueTreatment != nNew )
|
|
{
|
|
try
|
|
{
|
|
uno::Reference< beans::XPropertySet > xDiagramProperties( ChartModelHelper::findDiagram(m_xChartModel), uno::UNO_QUERY );
|
|
if( xDiagramProperties.is() )
|
|
{
|
|
xDiagramProperties->setPropertyValue( "MissingValueTreatment" , uno::makeAny( nNew ));
|
|
bChanged = true;
|
|
}
|
|
}
|
|
catch( const uno::Exception& e )
|
|
{
|
|
ASSERT_EXCEPTION( e );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case SCHATTR_INCLUDE_HIDDEN_CELLS:
|
|
{
|
|
if( m_bSupportingPlottingOfHiddenCells )
|
|
{
|
|
bool bIncludeHiddenCells = static_cast<const SfxBoolItem &>(rItemSet.Get(nWhichId)).GetValue();
|
|
if (bIncludeHiddenCells != m_bIncludeHiddenCells)
|
|
{
|
|
ChartModel* pModel = dynamic_cast<ChartModel*>(m_xChartModel.get());
|
|
if (pModel)
|
|
bChanged = ChartModelHelper::setIncludeHiddenCells( bIncludeHiddenCells, *pModel );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
return bChanged;
|
|
}
|
|
|
|
void SeriesOptionsItemConverter::FillSpecialItem(
|
|
sal_uInt16 nWhichId, SfxItemSet & rOutItemSet ) const
|
|
throw( uno::Exception )
|
|
{
|
|
switch( nWhichId )
|
|
{
|
|
case SCHATTR_AXIS:
|
|
{
|
|
sal_Int32 nItemValue = m_bAttachToMainAxis ? CHART_AXIS_PRIMARY_Y : CHART_AXIS_SECONDARY_Y;
|
|
rOutItemSet.Put( SfxInt32Item(nWhichId,nItemValue ) );
|
|
break;
|
|
}
|
|
case SCHATTR_BAR_OVERLAP:
|
|
{
|
|
if( m_bSupportingOverlapAndGapWidthProperties )
|
|
rOutItemSet.Put( SfxInt32Item(nWhichId,m_nBarOverlap) );
|
|
break;
|
|
}
|
|
case SCHATTR_BAR_GAPWIDTH:
|
|
{
|
|
if( m_bSupportingOverlapAndGapWidthProperties )
|
|
rOutItemSet.Put( SfxInt32Item(nWhichId,m_nGapWidth) );
|
|
break;
|
|
}
|
|
case SCHATTR_BAR_CONNECT:
|
|
{
|
|
if( m_bSupportingBarConnectors )
|
|
rOutItemSet.Put( SfxBoolItem(nWhichId,m_bConnectBars));
|
|
break;
|
|
}
|
|
case SCHATTR_GROUP_BARS_PER_AXIS:
|
|
{
|
|
if( m_bSupportingAxisSideBySide )
|
|
rOutItemSet.Put( SfxBoolItem(nWhichId,m_bGroupBarsPerAxis) );
|
|
break;
|
|
}
|
|
case SCHATTR_AXIS_FOR_ALL_SERIES:
|
|
{
|
|
if( m_nAllSeriesAxisIndex != - 1)
|
|
rOutItemSet.Put( SfxInt32Item(nWhichId, m_nAllSeriesAxisIndex));
|
|
break;
|
|
}
|
|
case SCHATTR_STARTING_ANGLE:
|
|
{
|
|
if( m_bSupportingStartingAngle )
|
|
rOutItemSet.Put( SfxInt32Item(nWhichId,m_nStartingAngle));
|
|
break;
|
|
}
|
|
case SCHATTR_CLOCKWISE:
|
|
{
|
|
rOutItemSet.Put( SfxBoolItem(nWhichId,m_bClockwise) );
|
|
break;
|
|
}
|
|
case SCHATTR_MISSING_VALUE_TREATMENT:
|
|
{
|
|
if( m_aSupportedMissingValueTreatments.getLength() )
|
|
rOutItemSet.Put( SfxInt32Item( nWhichId, m_nMissingValueTreatment ));
|
|
break;
|
|
}
|
|
case SCHATTR_AVAILABLE_MISSING_VALUE_TREATMENTS:
|
|
{
|
|
rOutItemSet.Put( SfxIntegerListItem( nWhichId, m_aSupportedMissingValueTreatments ) );
|
|
break;
|
|
}
|
|
case SCHATTR_INCLUDE_HIDDEN_CELLS:
|
|
{
|
|
if( m_bSupportingPlottingOfHiddenCells )
|
|
rOutItemSet.Put( SfxBoolItem(nWhichId, m_bIncludeHiddenCells) );
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
} // namespace wrapper
|
|
} // namespace chart
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|