merge the formfield patch from ooo-build
[ooovba.git] / chart2 / source / inc / ExplicitCategoriesProvider.hxx
blob34df455256295973e6c363a733ac74a14182babd
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: ExplicitCategoriesProvider.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 CHART2_VIEW_EXPLICITCATEGORIESPROVIDER_HXX
31 #define CHART2_VIEW_EXPLICITCATEGORIESPROVIDER_HXX
33 #include "ServiceMacros.hxx"
34 #include <cppuhelper/implbase1.hxx>
35 #include <cppuhelper/weakref.hxx>
36 #include <com/sun/star/chart2/XCoordinateSystem.hpp>
37 #include <com/sun/star/chart2/data/XTextualDataSequence.hpp>
38 #include <com/sun/star/frame/XModel.hpp>
39 #include "charttoolsdllapi.hxx"
41 namespace chart
44 class OOO_DLLPUBLIC_CHARTTOOLS ExplicitCategoriesProvider :
45 public ::cppu::WeakImplHelper1<
46 ::com::sun::star::chart2::data::XTextualDataSequence
49 public:
50 ExplicitCategoriesProvider( const ::com::sun::star::uno::Reference<
51 ::com::sun::star::chart2::XCoordinateSystem >& xCooSysModel );
52 SAL_DLLPRIVATE virtual ~ExplicitCategoriesProvider();
54 //XTextualDataSequence
55 SAL_DLLPRIVATE virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getTextualData()
56 throw (::com::sun::star::uno::RuntimeException);
58 static ::rtl::OUString getCategoryByIndex(
59 const ::com::sun::star::uno::Reference<
60 ::com::sun::star::chart2::XCoordinateSystem >& xCooSysModel,
61 sal_Int32 nIndex );
63 private: //member
64 ::com::sun::star::uno::Sequence< ::rtl::OUString > m_aExplicitCategories;
65 bool volatile m_bDirty;
67 ::com::sun::star::uno::WeakReference<
68 ::com::sun::star::chart2::XCoordinateSystem > m_xCooSysModel;
69 ::com::sun::star::uno::Reference<
70 ::com::sun::star::chart2::data::XLabeledDataSequence> m_xCategories;
73 } // namespace chart
75 // CHART2_VIEW_EXPLICITCATEGORIESPROVIDER_HXX
76 #endif