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_AREAWRAPPER_HXX
20 #define INCLUDED_CHART2_SOURCE_CONTROLLER_CHARTAPIWRAPPER_AREAWRAPPER_HXX
22 #include "WrappedPropertySet.hxx"
23 #include <cppuhelper/implbase3.hxx>
24 #include <comphelper/uno3.hxx>
25 #include <cppuhelper/interfacecontainer.hxx>
26 #include <com/sun/star/drawing/XShape.hpp>
27 #include <com/sun/star/lang/XComponent.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <com/sun/star/chart2/XChartDocument.hpp>
30 #include <com/sun/star/uno/XComponentContext.hpp>
32 #include <boost/shared_ptr.hpp>
40 class Chart2ModelContact
;
42 class AreaWrapper
: public ::cppu::ImplInheritanceHelper3
<
44 , com::sun::star::drawing::XShape
45 , com::sun::star::lang::XComponent
46 , com::sun::star::lang::XServiceInfo
50 AreaWrapper( ::boost::shared_ptr
< Chart2ModelContact
> spChart2ModelContact
);
51 virtual ~AreaWrapper();
53 /// XServiceInfo declarations
54 virtual OUString SAL_CALL
getImplementationName()
55 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
56 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
)
57 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
58 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
59 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
61 static OUString
getImplementationName_Static();
62 static css::uno::Sequence
< OUString
> getSupportedServiceNames_Static();
65 virtual ::com::sun::star::awt::Point SAL_CALL
getPosition()
66 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
67 virtual void SAL_CALL
setPosition( const ::com::sun::star::awt::Point
& aPosition
)
68 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
69 virtual ::com::sun::star::awt::Size SAL_CALL
getSize()
70 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
71 virtual void SAL_CALL
setSize( const ::com::sun::star::awt::Size
& aSize
)
72 throw (::com::sun::star::beans::PropertyVetoException
,
73 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
75 // ____ XShapeDescriptor (base of XShape) ____
76 virtual OUString SAL_CALL
getShapeType()
77 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
79 // ____ XComponent ____
80 virtual void SAL_CALL
dispose()
81 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
82 virtual void SAL_CALL
addEventListener( const ::com::sun::star::uno::Reference
<
83 ::com::sun::star::lang::XEventListener
>& xListener
)
84 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
85 virtual void SAL_CALL
removeEventListener( const ::com::sun::star::uno::Reference
<
86 ::com::sun::star::lang::XEventListener
>& aListener
)
87 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
90 // ____ WrappedPropertySet ____
91 virtual const ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::Property
>& getPropertySequence() SAL_OVERRIDE
;
92 virtual const std::vector
< WrappedProperty
* > createWrappedProperties() SAL_OVERRIDE
;
93 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
> getInnerPropertySet() SAL_OVERRIDE
;
96 ::boost::shared_ptr
< Chart2ModelContact
> m_spChart2ModelContact
;
97 ::cppu::OInterfaceContainerHelper m_aEventListenerContainer
;
100 } // namespace wrapper
103 // INCLUDED_CHART2_SOURCE_CONTROLLER_CHARTAPIWRAPPER_AREAWRAPPER_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */