update dev300-m58
[ooovba.git] / sc / source / ui / vba / vbacharts.hxx
blob5af314249da7cd342b3ffc9a10dd18d0429a2030
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: vbacharts.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef SC_VBA_CHARTS_HXX
31 #define SC_VBA_CHARTS_HXX
32 #include <ooo/vba/excel/XCharts.hpp>
33 #include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
34 #include <vbahelper/vbacollectionimpl.hxx>
35 #include "excelvbahelper.hxx"
36 #include <hash_map>
38 typedef CollTestImplHelper< ov::excel::XCharts > Charts_BASE;
40 class ScVbaCharts : public Charts_BASE
42 css::uno::Reference< ov::excel::XChart > xActiveChart;
43 css::uno::Reference< css::sheet::XSpreadsheetDocument > xSpreadsheetDocument;
44 css::uno::Reference< css::lang::XComponent > xComponent;
45 public:
46 ScVbaCharts( const css::uno::Reference< ov::XHelperInterface >& _xParent, const css::uno::Reference< css::uno::XComponentContext >& _xContext, const css::uno::Reference< css::frame::XModel >& xModel );
47 // XCharts
48 virtual css::uno::Any SAL_CALL Add() throw (css::script::BasicErrorException, css::uno::RuntimeException);
49 virtual css::uno::Reference< ov::excel::XChart > SAL_CALL getActiveChart( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
50 // XCollection
51 ::sal_Int32 SAL_CALL getCount() throw (css::uno::RuntimeException);
52 // XEnumerationAccess
53 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (css::uno::RuntimeException);
54 // XElementAccess
55 virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException) { return ov::excel::XChart::static_type(0); }
56 // ScVbaCollectionBaseImpl
57 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource );
58 // Charts_BASE or HelperInterface
59 virtual rtl::OUString& getServiceImplName();
60 virtual css::uno::Sequence<rtl::OUString> getServiceNames();
63 #endif