diff options
Diffstat (limited to 'chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx')
-rw-r--r-- | chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx | 236 |
1 files changed, 0 insertions, 236 deletions
diff --git a/chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx b/chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx deleted file mode 100644 index 8588ce71d..000000000 --- a/chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx +++ /dev/null @@ -1,236 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * 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. - * - * 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). - * - * 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. - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_chart2.hxx" -#include "MultipleChartConverters.hxx" - -#include "chartview/ChartSfxItemIds.hxx" -#include "SchWhichPairs.hxx" -#include "AxisItemConverter.hxx" -#include "StatisticsItemConverter.hxx" -#include "GraphicPropertyItemConverter.hxx" -#include "DataPointItemConverter.hxx" -#include "ChartModelHelper.hxx" -#include "TitleHelper.hxx" -#include "TitleItemConverter.hxx" -#include "AxisHelper.hxx" -#include "chartview/ExplicitValueProvider.hxx" -#include "DiagramHelper.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 -{ - -//----------------------------------------------------------------------------- - -AllAxisItemConverter::AllAxisItemConverter( - const uno::Reference< frame::XModel > & xChartModel, - SfxItemPool& rItemPool, - SdrModel& rDrawModel, - const uno::Reference< lang::XMultiServiceFactory > & /*xNamedPropertyContainerFactory*/, - ::std::auto_ptr< awt::Size > pRefSize ) - : MultipleItemConverter( rItemPool ) -{ - Reference< XDiagram > xDiagram( ChartModelHelper::findDiagram( xChartModel ) ); - Sequence< Reference< XAxis > > aElementList( AxisHelper::getAllAxesOfDiagram( xDiagram ) ); - for( sal_Int32 nA = 0; nA < aElementList.getLength(); nA++ ) - { - uno::Reference< beans::XPropertySet > xObjectProperties(aElementList[nA], uno::UNO_QUERY); - if( pRefSize.get()) - m_aConverters.push_back( new ::chart::wrapper::AxisItemConverter( - xObjectProperties, rItemPool, rDrawModel, - uno::Reference< chart2::XChartDocument >( xChartModel, uno::UNO_QUERY ), 0, 0, - ::std::auto_ptr< awt::Size >( new awt::Size( *pRefSize )) )); - else - m_aConverters.push_back( new ::chart::wrapper::AxisItemConverter( - xObjectProperties, rItemPool, rDrawModel, - uno::Reference< chart2::XChartDocument >( xChartModel, uno::UNO_QUERY ), 0, 0 ) ); - } -} - -AllAxisItemConverter::~AllAxisItemConverter() -{ -} - -const sal_uInt16 * AllAxisItemConverter::GetWhichPairs() const -{ - // must span all used items! - return nAllAxisWhichPairs; -} - -//----------------------------------------------------------------------------- - -AllGridItemConverter::AllGridItemConverter( - const uno::Reference< frame::XModel > & xChartModel, - SfxItemPool& rItemPool, - SdrModel& rDrawModel, - const uno::Reference< lang::XMultiServiceFactory > & xNamedPropertyContainerFactory ) - : MultipleItemConverter( rItemPool ) -{ - Reference< XDiagram > xDiagram( ChartModelHelper::findDiagram( xChartModel ) ); - Sequence< Reference< beans::XPropertySet > > aElementList( AxisHelper::getAllGrids( xDiagram ) ); - for( sal_Int32 nA = 0; nA < aElementList.getLength(); nA++ ) - { - Reference< beans::XPropertySet > xObjectProperties(aElementList[nA]); - m_aConverters.push_back( new ::chart::wrapper::GraphicPropertyItemConverter( - xObjectProperties, rItemPool, rDrawModel, xNamedPropertyContainerFactory, - ::chart::wrapper::GraphicPropertyItemConverter::LINE_PROPERTIES ) ); - } -} - -AllGridItemConverter::~AllGridItemConverter() -{ -} - -const sal_uInt16 * AllGridItemConverter::GetWhichPairs() const -{ - // must span all used items! - return nGridWhichPairs; -} - -//----------------------------------------------------------------------------- - -AllDataLabelItemConverter::AllDataLabelItemConverter( - const uno::Reference< frame::XModel > & xChartModel, - SfxItemPool& rItemPool, - SdrModel& rDrawModel, - const uno::Reference< lang::XMultiServiceFactory > & xNamedPropertyContainerFactory, - ::std::auto_ptr< awt::Size > pRefSize ) - : MultipleItemConverter( rItemPool ) -{ - ::std::vector< uno::Reference< chart2::XDataSeries > > aSeriesList( - ::chart::ChartModelHelper::getDataSeries( xChartModel )); - - ::std::vector< uno::Reference< chart2::XDataSeries > >::const_iterator aIt; - for( aIt = aSeriesList.begin(); aIt != aSeriesList.end(); ++aIt ) - { - uno::Reference< beans::XPropertySet > xObjectProperties( *aIt, uno::UNO_QUERY); - uno::Reference< uno::XComponentContext> xContext(0);//do not need Context for label properties - - sal_Int32 nNumberFormat=ExplicitValueProvider::getExplicitNumberFormatKeyForDataLabel( xObjectProperties, *aIt, -1/*nPointIndex*/, ChartModelHelper::findDiagram( xChartModel ) ); - sal_Int32 nPercentNumberFormat=ExplicitValueProvider::getExplicitPercentageNumberFormatKeyForDataLabel( - xObjectProperties,uno::Reference< util::XNumberFormatsSupplier >(xChartModel, uno::UNO_QUERY)); - - m_aConverters.push_back( new ::chart::wrapper::DataPointItemConverter( - xChartModel, xContext, - xObjectProperties, *aIt, rItemPool, rDrawModel, NULL, - xNamedPropertyContainerFactory, - GraphicPropertyItemConverter::FILLED_DATA_POINT, - ::std::auto_ptr< awt::Size >( pRefSize.get() ? new awt::Size( *pRefSize ) : 0), - true, /*bDataSeries*/ - false, /*bUseSpecialFillColor*/ - 0, /*nSpecialFillColor*/ - true /*bOverwriteLabelsForAttributedDataPointsAlso*/, - nNumberFormat, nPercentNumberFormat - )); - } -} - -AllDataLabelItemConverter::~AllDataLabelItemConverter() -{ -} - -const sal_uInt16 * AllDataLabelItemConverter::GetWhichPairs() const -{ - // must span all used items! - return nDataLabelWhichPairs; -} - -//----------------------------------------------------------------------------- - -AllTitleItemConverter::AllTitleItemConverter( - const uno::Reference< frame::XModel > & xChartModel, - SfxItemPool& rItemPool, - SdrModel& rDrawModel, - const uno::Reference< lang::XMultiServiceFactory > & xNamedPropertyContainerFactory, - ::std::auto_ptr< awt::Size > pRefSize ) - : MultipleItemConverter( rItemPool ) -{ - for(sal_Int32 nTitle = TitleHelper::TITLE_BEGIN; nTitle < TitleHelper::NORMAL_TITLE_END; nTitle++ ) - { - uno::Reference< chart2::XTitle > xTitle( TitleHelper::getTitle( TitleHelper::eTitleType(nTitle), xChartModel ) ); - if(!xTitle.is()) - continue; - uno::Reference< beans::XPropertySet > xObjectProperties( xTitle, uno::UNO_QUERY); - ::std::auto_ptr< awt::Size > pSingleRefSize(0); - if( pRefSize.get()) - pSingleRefSize = ::std::auto_ptr< awt::Size >( new awt::Size( *pRefSize )); - m_aConverters.push_back( new ::chart::wrapper::TitleItemConverter( - xObjectProperties, rItemPool, rDrawModel, xNamedPropertyContainerFactory, pSingleRefSize )); - } -} - -AllTitleItemConverter::~AllTitleItemConverter() -{ -} - -const sal_uInt16 * AllTitleItemConverter::GetWhichPairs() const -{ - // must span all used items! - return nTitleWhichPairs; -} - -//----------------------------------------------------------------------------- - -AllSeriesStatisticsConverter::AllSeriesStatisticsConverter( - const uno::Reference< frame::XModel > & xChartModel, - SfxItemPool& rItemPool ) - : MultipleItemConverter( rItemPool ) -{ - ::std::vector< uno::Reference< chart2::XDataSeries > > aSeriesList( - ::chart::ChartModelHelper::getDataSeries( xChartModel )); - - ::std::vector< uno::Reference< chart2::XDataSeries > >::const_iterator aIt; - for( aIt = aSeriesList.begin(); aIt != aSeriesList.end(); ++aIt ) - { - uno::Reference< beans::XPropertySet > xObjectProperties( *aIt, uno::UNO_QUERY); - m_aConverters.push_back( new ::chart::wrapper::StatisticsItemConverter( - xChartModel, xObjectProperties, rItemPool )); - } -} - -AllSeriesStatisticsConverter::~AllSeriesStatisticsConverter() -{} - -const sal_uInt16 * AllSeriesStatisticsConverter::GetWhichPairs() const -{ - // must span all used items! - return nStatWhichPairs; -} - -} // namespace wrapper -} // namespace chart - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |