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_GRIDWRAPPER_HXX
20 #define INCLUDED_CHART2_SOURCE_CONTROLLER_CHARTAPIWRAPPER_GRIDWRAPPER_HXX
22 #include "WrappedPropertySet.hxx"
23 #include <cppuhelper/implbase2.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/XDiagram.hpp>
30 #include <com/sun/star/uno/XComponentContext.hpp>
32 #include <boost/shared_ptr.hpp>
39 class Chart2ModelContact
;
41 class GridWrapper
: public ::cppu::ImplInheritanceHelper2
<
43 , com::sun::star::lang::XComponent
44 , com::sun::star::lang::XServiceInfo
58 GridWrapper( tGridType eType
, ::boost::shared_ptr
< Chart2ModelContact
> spChart2ModelContact
);
59 virtual ~GridWrapper();
61 static void getDimensionAndSubGridBool( tGridType eType
, sal_Int32
& rnDimensionIndex
, bool& rbSubGrid
);
63 /// XServiceInfo declarations
64 virtual OUString SAL_CALL
getImplementationName()
65 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
66 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
)
67 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
68 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
69 throw( css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
71 static OUString
getImplementationName_Static();
72 static css::uno::Sequence
< OUString
> getSupportedServiceNames_Static();
74 // ____ XComponent ____
75 virtual void SAL_CALL
dispose()
76 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
77 virtual void SAL_CALL
addEventListener( const ::com::sun::star::uno::Reference
<
78 ::com::sun::star::lang::XEventListener
>& xListener
)
79 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
80 virtual void SAL_CALL
removeEventListener( const ::com::sun::star::uno::Reference
<
81 ::com::sun::star::lang::XEventListener
>& aListener
)
82 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
85 // ____ WrappedPropertySet ____
86 virtual const ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::Property
>& getPropertySequence() SAL_OVERRIDE
;
87 virtual const std::vector
< WrappedProperty
* > createWrappedProperties() SAL_OVERRIDE
;
88 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
> getInnerPropertySet() SAL_OVERRIDE
;
91 ::boost::shared_ptr
< Chart2ModelContact
> m_spChart2ModelContact
;
92 ::cppu::OInterfaceContainerHelper m_aEventListenerContainer
;
97 } // namespace wrapper
100 // INCLUDED_CHART2_SOURCE_CONTROLLER_CHARTAPIWRAPPER_GRIDWRAPPER_HXX
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */