Files
libreoffice/sc/source/ui/vba/vbacharts.cxx
Vladimir Glazounov 9c3802c321 INTEGRATION: CWS npower8 (1.1.2); FILE ADDED
2007/10/31 21:00:26 npower 1.1.2.3: Issue number:  #i77189#
warning as error removal
2007/07/18 13:46:45 npower 1.1.2.2: #i77189# sync ooo-build and this module
2007/05/10 11:21:45 npower 1.1.2.1: -m#i77189#
2007-12-07 09:46:59 +00:00

131 lines
4.7 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: vbacharts.cxx,v $
*
* $Revision: 1.2 $
*
* last change: $Author: vg $ $Date: 2007-12-07 10:46:59 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
************************************************************************/
#include "vbacharts.hxx"
#include <basic/sberrors.hxx>
#include <com/sun/star/table/XTableChartsSupplier.hpp>
using namespace ::com::sun::star;
using namespace ::org::openoffice;
ScVbaCharts::ScVbaCharts( const css::uno::Reference< oo::vba::XHelperInterface >& _xParent, const css::uno::Reference< css::uno::XComponentContext >& _xContext ) : Charts_BASE(_xParent, _xContext, uno::Reference< container::XIndexAccess >() )
{
// #TODO #FIXME surely this is wrong, you should never use the
// currently documement ( it could be anything )
xComponent.set( getCurrentDocument(), uno::UNO_QUERY_THROW );
xSpreadsheetDocument.set( xComponent, uno::UNO_QUERY_THROW );
}
uno::Any SAL_CALL
ScVbaCharts::Add() throw (css::script::BasicErrorException, css::uno::RuntimeException)
{
// Not implemented in the helperapi ( see ChartsImpl.java )
if ( true )
throw script::BasicErrorException( rtl::OUString(), uno::Reference< uno::XInterface >(), SbERR_BAD_METHOD, rtl::OUString() );
return aNULL();
}
uno::Reference< excel::XChart > SAL_CALL
ScVbaCharts::getActiveChart() throw (script::BasicErrorException, uno::RuntimeException)
{
return xActiveChart;
}
uno::Reference< container::XEnumeration > SAL_CALL
ScVbaCharts::createEnumeration() throw (uno::RuntimeException)
{
// #FIXME not implemented
if ( true )
throw script::BasicErrorException( rtl::OUString(), uno::Reference< uno::XInterface >(), SbERR_BAD_METHOD, rtl::OUString() );
return uno::Reference< container::XEnumeration >();
}
// #FIXME #TODO this method shouldn't appear in this class directly
// a XIndexAccess/XNameAccess wrapper should be passed to the base class instead
::sal_Int32 SAL_CALL
ScVbaCharts::getCount() throw (uno::RuntimeException)
{
sal_Int32 ncount = 0;
try
{
uno::Reference< sheet::XSpreadsheets > xSpreadsheets( xSpreadsheetDocument->getSheets() );
uno::Sequence< rtl::OUString > SheetNames = xSpreadsheets->getElementNames();
sal_Int32 nLen = SheetNames.getLength();
for (sal_Int32 i = 0; i < nLen; i++)
{
uno::Reference< table::XTableChartsSupplier > xTableChartsSupplier( xSpreadsheets->getByName(SheetNames[i]), uno::UNO_QUERY);
if ( xTableChartsSupplier.is() )
{
uno::Reference< table::XTableCharts > xTableCharts = xTableChartsSupplier->getCharts();
ncount =+ xTableCharts->getElementNames().getLength();
}
}
}
catch (uno::Exception& )
{
throw script::BasicErrorException( rtl::OUString(), uno::Reference< uno::XInterface >(), SbERR_METHOD_FAILED, rtl::OUString() );
}
return ncount;
}
uno::Any
ScVbaCharts::createCollectionObject( const uno::Any& aSource )
{
if ( true )
throw script::BasicErrorException( rtl::OUString(), uno::Reference< uno::XInterface >(), SbERR_BAD_METHOD, rtl::OUString() );
// #TODO implementation please
return aSource;
}
rtl::OUString&
ScVbaCharts::getServiceImplName()
{
static rtl::OUString sImplName( RTL_CONSTASCII_USTRINGPARAM("ScVbaCharts") );
return sImplName;
}
css::uno::Sequence<rtl::OUString>
ScVbaCharts::getServiceNames()
{
static uno::Sequence< rtl::OUString > sNames;
if ( sNames.getLength() == 0 )
{
sNames.realloc( 1 );
sNames[0] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("org.openoffice.excel.Charts") );
}
return sNames;
}