Bump for 3.6-28
[LibreOffice.git] / chart2 / source / controller / inc / AxisItemConverter.hxx
blob1951185b679f3672b12c73b1a68014dd9489a502
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef CHART_AXISITEMCONVERTER_HXX
29 #define CHART_AXISITEMCONVERTER_HXX
31 #include <chartview/ExplicitScaleValues.hxx>
32 #include <com/sun/star/chart2/XAxis.hpp>
33 #include <com/sun/star/chart2/XChartDocument.hpp>
34 #include <com/sun/star/awt/Size.hpp>
36 #include "ItemConverter.hxx"
38 #include <vector>
39 #include <memory>
41 class SdrModel;
43 namespace chart
45 namespace wrapper
48 class AxisItemConverter : public ::comphelper::ItemConverter
50 public:
51 SAL_WNODEPRECATED_DECLARATIONS_PUSH
52 AxisItemConverter(
53 const ::com::sun::star::uno::Reference<
54 ::com::sun::star::beans::XPropertySet > & rPropertySet,
55 SfxItemPool& rItemPool,
56 SdrModel& rDrawModel,
57 const ::com::sun::star::uno::Reference<
58 ::com::sun::star::chart2::XChartDocument > & xChartDoc,
59 ExplicitScaleData * pScale = NULL,
60 ExplicitIncrementData * pIncrement = NULL,
61 ::std::auto_ptr< ::com::sun::star::awt::Size > pRefSize =
62 ::std::auto_ptr< ::com::sun::star::awt::Size >() );
63 SAL_WNODEPRECATED_DECLARATIONS_POP
64 virtual ~AxisItemConverter();
66 virtual void FillItemSet( SfxItemSet & rOutItemSet ) const;
67 virtual bool ApplyItemSet( const SfxItemSet & rItemSet );
69 protected:
70 virtual const sal_uInt16 * GetWhichPairs() const;
71 virtual bool GetItemProperty( tWhichIdType nWhichId, tPropertyNameWithMemberId & rOutProperty ) const;
73 virtual void FillSpecialItem( sal_uInt16 nWhichId, SfxItemSet & rOutItemSet ) const
74 throw( ::com::sun::star::uno::Exception );
75 virtual bool ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & rItemSet )
76 throw( ::com::sun::star::uno::Exception );
78 private:
79 ::std::vector< ItemConverter * > m_aConverters;
80 ::com::sun::star::uno::Reference<
81 ::com::sun::star::chart2::XAxis > m_xAxis;
83 ::com::sun::star::uno::Reference<
84 ::com::sun::star::chart2::XChartDocument > m_xChartDoc;
86 ExplicitScaleData* m_pExplicitScale;
87 ExplicitIncrementData* m_pExplicitIncrement;
90 } // namespace wrapper
91 } // namespace chart
93 // CHART_AXISITEMCONVERTER_HXX
94 #endif
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */