merge the formfield patch from ooo-build
[ooovba.git] / chart2 / source / model / template / LineChartType.hxx
blobca96adb66c5be90b5dba0bac0c8b9dbfee16a105
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: LineChartType.hxx,v $
10 * $Revision: 1.8 $
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_LINECHARTTYPE_HXX
31 #define CHART_LINECHARTTYPE_HXX
33 #include "ChartType.hxx"
34 #include "ServiceMacros.hxx"
35 #include <com/sun/star/chart2/CurveStyle.hpp>
37 namespace chart
40 class LineChartType : public ChartType
42 public:
43 LineChartType(
44 ::com::sun::star::uno::Reference<
45 ::com::sun::star::uno::XComponentContext > const & xContext );
46 virtual ~LineChartType();
48 APPHELPER_XSERVICEINFO_DECL()
50 /// establish methods for factory instatiation
51 APPHELPER_SERVICE_FACTORY_HELPER( LineChartType )
53 protected:
54 explicit LineChartType( const LineChartType & rOther );
56 // ____ XChartType ____
57 virtual ::rtl::OUString SAL_CALL getChartType()
58 throw (::com::sun::star::uno::RuntimeException);
60 // ____ OPropertySet ____
61 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
62 throw(::com::sun::star::beans::UnknownPropertyException);
63 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
65 // ____ XPropertySet ____
66 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
67 getPropertySetInfo()
68 throw (::com::sun::star::uno::RuntimeException);
70 // ____ XCloneable ____
71 virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone()
72 throw (::com::sun::star::uno::RuntimeException);
75 } // namespace chart
77 // CHART_LINECHARTTYPE_HXX
78 #endif