Update ooo320-m1
[ooovba.git] / chart2 / source / model / template / PieChartType.hxx
blob7d89cf6b382d5f2a88207906b97820920f2e20e9
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: PieChartType.hxx,v $
10 * $Revision: 1.4 $
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 CHART_PIECHARTTYPE_HXX
31 #define CHART_PIECHARTTYPE_HXX
33 #include "ChartType.hxx"
34 #include "ServiceMacros.hxx"
36 namespace chart
39 class PieChartType : public ChartType
41 public:
42 PieChartType(
43 ::com::sun::star::uno::Reference<
44 ::com::sun::star::uno::XComponentContext > const & xContext,
45 sal_Bool bUseRings = sal_False );
46 virtual ~PieChartType();
48 APPHELPER_XSERVICEINFO_DECL()
50 /// establish methods for factory instatiation
51 APPHELPER_SERVICE_FACTORY_HELPER( PieChartType )
53 protected:
54 explicit PieChartType( const PieChartType & rOther );
56 // ____ XChartType ____
57 virtual ::rtl::OUString SAL_CALL getChartType()
58 throw (::com::sun::star::uno::RuntimeException);
59 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XCoordinateSystem > SAL_CALL
60 createCoordinateSystem( ::sal_Int32 DimensionCount )
61 throw (::com::sun::star::lang::IllegalArgumentException,
62 ::com::sun::star::uno::RuntimeException);
64 // ____ OPropertySet ____
65 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
66 throw(::com::sun::star::beans::UnknownPropertyException);
68 // ____ OPropertySet ____
69 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
71 // ____ XPropertySet ____
72 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
73 getPropertySetInfo()
74 throw (::com::sun::star::uno::RuntimeException);
76 // ____ XCloneable ____
77 virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone()
78 throw (::com::sun::star::uno::RuntimeException);
81 } // namespace chart
83 // CHART_PIECHARTTYPE_HXX
84 #endif