The VAxisBase::m_xNumberFormatsSupplier refers to the ChartModel itself, and apparently that is a cyclic reference. Naively using the ChartModel's m_xNumberFormatsSupplier in ChartView::impl_createDiagramAndContent() because it will later be passed to AxisHelper::getExplicitNumberFormatKeyForAxis(), which expects to be able to convert it to a ChartModel. Since passing around the ChartModel as an XNumberFormattingSupplier is sort of un-intuitive anyway, refactor some methods to use XChartDocument instead, and only create the VPolarAxis / VCartesianAxis with the ChartModel's m_xNumberFormatsSupplier. The drawback is that if ChartModel::attachNumberFormatsSupplier() is called after ChartView::update() has created the axes, it may not have an effect on them; not sure if that is a real or hypothetical problem. Change-Id: Ib5f0d5882b85adaf44f80e086f19178b3e64882f
312 lines
11 KiB
C++
312 lines
11 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 "Chart2ModelContact.hxx"
|
|
#include "ChartModelHelper.hxx"
|
|
#include "LegendHelper.hxx"
|
|
#include "CommonConverters.hxx"
|
|
#include "macros.hxx"
|
|
#include "servicenames.hxx"
|
|
#include "ObjectIdentifier.hxx"
|
|
#include "chartview/ExplicitValueProvider.hxx"
|
|
#include "chartview/DrawModelWrapper.hxx"
|
|
#include "AxisHelper.hxx"
|
|
#include "DiagramHelper.hxx"
|
|
|
|
#include "ChartModel.hxx"
|
|
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::chart2;
|
|
|
|
using ::com::sun::star::uno::Reference;
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
namespace chart
|
|
{
|
|
namespace wrapper
|
|
{
|
|
|
|
Chart2ModelContact::Chart2ModelContact(
|
|
const Reference< uno::XComponentContext > & xContext ) :
|
|
m_xContext( xContext ),
|
|
m_xChartModel( 0 ),
|
|
mpModel( NULL ),
|
|
m_xChartView(0)
|
|
{
|
|
}
|
|
|
|
Chart2ModelContact::~Chart2ModelContact()
|
|
{
|
|
this->clear();
|
|
}
|
|
|
|
void Chart2ModelContact::setModel( const ::com::sun::star::uno::Reference<
|
|
::com::sun::star::frame::XModel >& xChartModel )
|
|
{
|
|
this->clear();
|
|
m_xChartModel = xChartModel;
|
|
mpModel = dynamic_cast<ChartModel*>(xChartModel.get());
|
|
uno::Reference< lang::XMultiServiceFactory > xTableFactory( xChartModel, uno::UNO_QUERY );
|
|
if( xTableFactory.is() )
|
|
{
|
|
uno::Reference< container::XNameContainer > xDashTable( xTableFactory->createInstance("com.sun.star.drawing.DashTable"), uno::UNO_QUERY );
|
|
uno::Reference< container::XNameContainer > xGradientTable( xTableFactory->createInstance("com.sun.star.drawing.GradientTable"), uno::UNO_QUERY );
|
|
uno::Reference< container::XNameContainer > xHatchTable( xTableFactory->createInstance("com.sun.star.drawing.HatchTable"), uno::UNO_QUERY );
|
|
uno::Reference< container::XNameContainer > xBitmapTable( xTableFactory->createInstance("com.sun.star.drawing.BitmapTable"), uno::UNO_QUERY );
|
|
uno::Reference< container::XNameContainer > xTransparencyGradientTable( xTableFactory->createInstance("com.sun.star.drawing.TransparencyGradientTable"), uno::UNO_QUERY );
|
|
m_aTableMap["LineDashName"] = xDashTable;
|
|
m_aTableMap["FillGradientName"] = xGradientTable;
|
|
m_aTableMap["FillHatchName"] = xHatchTable;
|
|
m_aTableMap["FillBitmapName"] = xBitmapTable;
|
|
m_aTableMap["FillTransparenceGradientName"] = xTransparencyGradientTable;
|
|
}
|
|
}
|
|
|
|
void Chart2ModelContact::clear()
|
|
{
|
|
m_xChartModel = uno::WeakReference< frame::XModel >(0);
|
|
m_xChartView.clear();
|
|
mpModel = NULL;
|
|
}
|
|
|
|
Reference< frame::XModel > Chart2ModelContact::getChartModel() const
|
|
{
|
|
return Reference< frame::XModel >( m_xChartModel.get(), uno::UNO_QUERY );
|
|
}
|
|
|
|
Reference< chart2::XChartDocument > Chart2ModelContact::getChart2Document() const
|
|
{
|
|
return Reference< chart2::XChartDocument >( m_xChartModel.get(), uno::UNO_QUERY );
|
|
}
|
|
|
|
Reference< chart2::XDiagram > Chart2ModelContact::getChart2Diagram() const
|
|
{
|
|
return ChartModelHelper::findDiagram( this->getChartModel() );
|
|
}
|
|
|
|
uno::Reference< lang::XUnoTunnel > Chart2ModelContact::getChartView() const
|
|
{
|
|
if(!m_xChartView.is())
|
|
{
|
|
// get the chart view
|
|
Reference<frame::XModel> xModel(m_xChartModel);
|
|
uno::Reference< lang::XMultiServiceFactory > xFact( xModel, uno::UNO_QUERY );
|
|
if( xFact.is() )
|
|
m_xChartView = Reference< lang::XUnoTunnel >( xFact->createInstance( CHART_VIEW_SERVICE_NAME ), uno::UNO_QUERY );
|
|
}
|
|
return m_xChartView;
|
|
}
|
|
|
|
ExplicitValueProvider* Chart2ModelContact::getExplicitValueProvider() const
|
|
{
|
|
getChartView();
|
|
if(!m_xChartView.is())
|
|
return 0;
|
|
|
|
//obtain the ExplicitValueProvider from the chart view
|
|
ExplicitValueProvider* pProvider = reinterpret_cast<ExplicitValueProvider*>(m_xChartView->getSomething(
|
|
ExplicitValueProvider::getUnoTunnelId() ));
|
|
return pProvider;
|
|
}
|
|
|
|
uno::Reference< drawing::XDrawPage > Chart2ModelContact::getDrawPage()
|
|
{
|
|
uno::Reference< drawing::XDrawPage > xResult;
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider )
|
|
{
|
|
xResult.set( pProvider->getDrawModelWrapper()->getMainDrawPage() );
|
|
}
|
|
return xResult;
|
|
}
|
|
|
|
bool Chart2ModelContact::getExplicitValuesForAxis(
|
|
const Reference< XAxis > & xAxis,
|
|
ExplicitScaleData & rOutExplicitScale,
|
|
ExplicitIncrementData & rOutExplicitIncrement )
|
|
{
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider )
|
|
{
|
|
return pProvider->getExplicitValuesForAxis(
|
|
xAxis, rOutExplicitScale, rOutExplicitIncrement );
|
|
}
|
|
return false;
|
|
}
|
|
|
|
sal_Int32 Chart2ModelContact::getExplicitNumberFormatKeyForAxis(
|
|
const Reference< chart2::XAxis >& xAxis )
|
|
{
|
|
Reference< chart2::XCoordinateSystem > xCooSys(
|
|
AxisHelper::getCoordinateSystemOfAxis(
|
|
xAxis, ChartModelHelper::findDiagram( m_xChartModel ) ) );
|
|
|
|
return ExplicitValueProvider::getExplicitNumberFormatKeyForAxis( xAxis, xCooSys
|
|
, getChart2Document());
|
|
}
|
|
|
|
sal_Int32 Chart2ModelContact::getExplicitNumberFormatKeyForSeries(
|
|
const Reference< chart2::XDataSeries >& xSeries )
|
|
{
|
|
return ExplicitValueProvider::getExplicitNumberFormatKeyForDataLabel(
|
|
uno::Reference< beans::XPropertySet >( xSeries, uno::UNO_QUERY ),
|
|
xSeries,
|
|
-1 /*-1 for whole series*/,
|
|
ChartModelHelper::findDiagram( m_xChartModel )
|
|
);
|
|
}
|
|
|
|
awt::Size Chart2ModelContact::GetPageSize() const
|
|
{
|
|
return ChartModelHelper::getPageSize(m_xChartModel);
|
|
}
|
|
|
|
awt::Rectangle Chart2ModelContact::SubstractAxisTitleSizes( const awt::Rectangle& rPositionRect )
|
|
{
|
|
awt::Rectangle aRect = ExplicitValueProvider::substractAxisTitleSizes(
|
|
*mpModel, getChartView(), rPositionRect );
|
|
return aRect;
|
|
}
|
|
|
|
awt::Rectangle Chart2ModelContact::GetDiagramRectangleIncludingTitle() const
|
|
{
|
|
awt::Rectangle aRect( GetDiagramRectangleIncludingAxes() );
|
|
|
|
//add axis title sizes to the diagram size
|
|
aRect = ExplicitValueProvider::addAxisTitleSizes(
|
|
*mpModel, getChartView(), aRect );
|
|
|
|
return aRect;
|
|
}
|
|
|
|
awt::Rectangle Chart2ModelContact::GetDiagramRectangleIncludingAxes() const
|
|
{
|
|
awt::Rectangle aRect(0,0,0,0);
|
|
uno::Reference< XDiagram > xDiagram( ChartModelHelper::findDiagram( m_xChartModel ) );
|
|
|
|
if( DiagramPositioningMode_INCLUDING == DiagramHelper::getDiagramPositioningMode( xDiagram ) )
|
|
aRect = DiagramHelper::getDiagramRectangleFromModel(m_xChartModel);
|
|
else
|
|
{
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider )
|
|
aRect = pProvider->getRectangleOfObject("PlotAreaIncludingAxes");
|
|
}
|
|
return aRect;
|
|
}
|
|
|
|
awt::Rectangle Chart2ModelContact::GetDiagramRectangleExcludingAxes() const
|
|
{
|
|
awt::Rectangle aRect(0,0,0,0);
|
|
uno::Reference< XDiagram > xDiagram( ChartModelHelper::findDiagram( m_xChartModel ) );
|
|
|
|
if( DiagramPositioningMode_EXCLUDING == DiagramHelper::getDiagramPositioningMode( xDiagram ) )
|
|
aRect = DiagramHelper::getDiagramRectangleFromModel(m_xChartModel);
|
|
else
|
|
{
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider )
|
|
aRect = pProvider->getDiagramRectangleExcludingAxes();
|
|
}
|
|
return aRect;
|
|
}
|
|
|
|
awt::Size Chart2ModelContact::GetLegendSize() const
|
|
{
|
|
awt::Size aSize;
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider )
|
|
{
|
|
uno::Reference< chart2::XLegend > xLegend( LegendHelper::getLegend( *mpModel ) );
|
|
OUString aCID( ObjectIdentifier::createClassifiedIdentifierForObject( xLegend, *mpModel ) );
|
|
aSize = ToSize( pProvider->getRectangleOfObject( aCID ) );
|
|
}
|
|
return aSize;
|
|
}
|
|
|
|
awt::Point Chart2ModelContact::GetLegendPosition() const
|
|
{
|
|
awt::Point aPoint;
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider )
|
|
{
|
|
uno::Reference< chart2::XLegend > xLegend( LegendHelper::getLegend( *mpModel ) );
|
|
OUString aCID( ObjectIdentifier::createClassifiedIdentifierForObject( xLegend, *mpModel ) );
|
|
aPoint = ToPoint( pProvider->getRectangleOfObject( aCID ) );
|
|
}
|
|
return aPoint;
|
|
}
|
|
|
|
awt::Size Chart2ModelContact::GetTitleSize( const uno::Reference<
|
|
::com::sun::star::chart2::XTitle > & xTitle ) const
|
|
{
|
|
awt::Size aSize;
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider && xTitle.is() )
|
|
{
|
|
OUString aCID( ObjectIdentifier::createClassifiedIdentifierForObject( xTitle, m_xChartModel ) );
|
|
aSize = ToSize( pProvider->getRectangleOfObject( aCID ) );
|
|
}
|
|
return aSize;
|
|
}
|
|
|
|
awt::Point Chart2ModelContact::GetTitlePosition( const uno::Reference<
|
|
::com::sun::star::chart2::XTitle > & xTitle ) const
|
|
{
|
|
awt::Point aPoint;
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider && xTitle.is() )
|
|
{
|
|
OUString aCID( ObjectIdentifier::createClassifiedIdentifierForObject( xTitle, m_xChartModel ) );
|
|
aPoint = ToPoint( pProvider->getRectangleOfObject( aCID ) );
|
|
}
|
|
return aPoint;
|
|
}
|
|
|
|
awt::Size Chart2ModelContact::GetAxisSize( const uno::Reference<
|
|
::com::sun::star::chart2::XAxis > & xAxis ) const
|
|
{
|
|
awt::Size aSize;
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider && xAxis.is() )
|
|
{
|
|
OUString aCID( ObjectIdentifier::createClassifiedIdentifierForObject( xAxis, m_xChartModel ) );
|
|
aSize = ToSize( pProvider->getRectangleOfObject( aCID ) );
|
|
}
|
|
return aSize;
|
|
}
|
|
|
|
awt::Point Chart2ModelContact::GetAxisPosition( const uno::Reference<
|
|
::com::sun::star::chart2::XAxis > & xAxis ) const
|
|
{
|
|
awt::Point aPoint;
|
|
ExplicitValueProvider* pProvider( getExplicitValueProvider() );
|
|
if( pProvider && xAxis.is() )
|
|
{
|
|
OUString aCID( ObjectIdentifier::createClassifiedIdentifierForObject( xAxis, m_xChartModel ) );
|
|
aPoint = ToPoint( pProvider->getRectangleOfObject( aCID ) );
|
|
}
|
|
return aPoint;
|
|
}
|
|
|
|
} // namespace wrapper
|
|
} // namespace chart
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|