Bump for 3.6-28
[LibreOffice.git] / chart2 / source / controller / inc / GraphicPropertyItemConverter.hxx
blob1d8ab0b96901e19ac0b8241d1fab1460683d1276
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_GRAPHICPROPERTYITEMCONVERTER_HXX
29 #define CHART_GRAPHICPROPERTYITEMCONVERTER_HXX
31 #include "ItemConverter.hxx"
32 #include <com/sun/star/uno/Any.hxx>
33 #include <com/sun/star/beans/PropertyState.hpp>
34 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
36 class SdrModel;
38 namespace chart
40 namespace wrapper
43 class GraphicPropertyItemConverter :
44 public ::comphelper::ItemConverter
46 public:
47 enum eGraphicObjectType
49 FILLED_DATA_POINT,
50 LINE_DATA_POINT,
51 LINE_PROPERTIES,
52 FILL_PROPERTIES,
53 LINE_AND_FILL_PROPERTIES
56 GraphicPropertyItemConverter(
57 const ::com::sun::star::uno::Reference<
58 ::com::sun::star::beans::XPropertySet > & rPropertySet,
59 SfxItemPool& rItemPool,
60 SdrModel& rDrawModel,
61 const ::com::sun::star::uno::Reference<
62 ::com::sun::star::lang::XMultiServiceFactory > & xNamedPropertyContainerFactory,
63 eGraphicObjectType eObjectType = FILLED_DATA_POINT );
64 virtual ~GraphicPropertyItemConverter();
66 protected:
67 virtual const sal_uInt16 * GetWhichPairs() const;
68 virtual bool GetItemProperty( tWhichIdType nWhichId, tPropertyNameWithMemberId & rOutProperty ) const;
70 virtual void FillSpecialItem( sal_uInt16 nWhichId, SfxItemSet & rOutItemSet ) const
71 throw( ::com::sun::star::uno::Exception );
72 virtual bool ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & rItemSet )
73 throw( ::com::sun::star::uno::Exception );
75 private:
76 eGraphicObjectType m_eGraphicObjectType;
77 SdrModel & m_rDrawModel;
78 ::com::sun::star::uno::Reference<
79 ::com::sun::star::lang::XMultiServiceFactory > m_xNamedPropertyTableFactory;
82 } // namespace wrapper
83 } // namespace chart
85 // CHART_GRAPHICPROPERTYITEMCONVERTER_HXX
86 #endif
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */