1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_CHARTAPIWRAPPER_LEGENDWRAPPER_HXX
20 #define INCLUDED_CHART2_SOURCE_CONTROLLER_CHARTAPIWRAPPER_LEGENDWRAPPER_HXX
22 #include "WrappedPropertySet.hxx"
23 #include "ReferenceSizePropertyProvider.hxx"
24 #include <cppuhelper/implbase3.hxx>
25 #include <comphelper/uno3.hxx>
26 #include <cppuhelper/interfacecontainer.hxx>
27 #include <com/sun/star/drawing/XShape.hpp>
28 #include <com/sun/star/lang/XComponent.hpp>
29 #include <com/sun/star/lang/XServiceInfo.hpp>
30 #include <com/sun/star/chart2/XChartDocument.hpp>
31 #include <com/sun/star/uno/XComponentContext.hpp>
32 #include <com/sun/star/chart2/XLegend.hpp>
34 #include <boost/shared_ptr.hpp>
42 class Chart2ModelContact
;
44 class LegendWrapper
: public ::cppu::ImplInheritanceHelper3
<
46 , com::sun::star::drawing::XShape
47 , com::sun::star::lang::XComponent
48 , com::sun::star::lang::XServiceInfo
50 , public ReferenceSizePropertyProvider
53 LegendWrapper( ::boost::shared_ptr
< Chart2ModelContact
> spChart2ModelContact
);
54 virtual ~LegendWrapper();
56 /// XServiceInfo declarations
57 virtual OUString SAL_CALL
getImplementationName()
58 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
59 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
)
60 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
61 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
62 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
64 static OUString
getImplementationName_Static();
65 static css::uno::Sequence
< OUString
> getSupportedServiceNames_Static();
67 //ReferenceSizePropertyProvider
68 virtual void updateReferenceSize() SAL_OVERRIDE
;
69 virtual ::com::sun::star::uno::Any
getReferenceSize() SAL_OVERRIDE
;
70 virtual ::com::sun::star::awt::Size
getCurrentSizeForReference() SAL_OVERRIDE
;
73 virtual ::com::sun::star::awt::Point SAL_CALL
getPosition()
74 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
75 virtual void SAL_CALL
setPosition( const ::com::sun::star::awt::Point
& aPosition
)
76 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
77 virtual ::com::sun::star::awt::Size SAL_CALL
getSize()
78 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
79 virtual void SAL_CALL
setSize( const ::com::sun::star::awt::Size
& aSize
)
80 throw (::com::sun::star::beans::PropertyVetoException
,
81 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
83 // ____ XShapeDescriptor (base of XShape) ____
84 virtual OUString SAL_CALL
getShapeType()
85 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
87 // ____ XComponent ____
88 virtual void SAL_CALL
dispose()
89 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
90 virtual void SAL_CALL
addEventListener( const ::com::sun::star::uno::Reference
<
91 ::com::sun::star::lang::XEventListener
>& xListener
)
92 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
93 virtual void SAL_CALL
removeEventListener( const ::com::sun::star::uno::Reference
<
94 ::com::sun::star::lang::XEventListener
>& aListener
)
95 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
98 // ____ WrappedPropertySet ____
99 virtual const ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::Property
>& getPropertySequence() SAL_OVERRIDE
;
100 virtual const std::vector
< WrappedProperty
* > createWrappedProperties() SAL_OVERRIDE
;
101 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
> getInnerPropertySet() SAL_OVERRIDE
;
104 ::boost::shared_ptr
< Chart2ModelContact
> m_spChart2ModelContact
;
105 ::cppu::OInterfaceContainerHelper m_aEventListenerContainer
;
108 } // namespace wrapper
111 // INCLUDED_CHART2_SOURCE_CONTROLLER_CHARTAPIWRAPPER_LEGENDWRAPPER_HXX
114 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */