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 .
21 #include <WrappedPropertySet.hxx>
22 #include <com/sun/star/chart/XChartDocument.hpp>
23 #include <com/sun/star/drawing/XDrawPageSupplier.hpp>
24 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
25 #include <com/sun/star/uno/XAggregation.hpp>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <cppuhelper/implbase.hxx>
28 #include <unotools/eventlisteneradapter.hxx>
29 #include <rtl/ref.hxx>
30 #include <svx/unopage.hxx>
33 namespace com::sun::star::uno
{ class XComponentContext
; }
34 namespace com::sun::star::util
{ class XRefreshable
; }
35 namespace chart
{ class ChartView
; }
37 namespace chart::wrapper
42 class Chart2ModelContact
;
44 class ChartDocumentWrapper_Base
: public ::cppu::ImplInheritanceHelper
46 , css::chart::XChartDocument
47 , css::drawing::XDrawPageSupplier
48 , css::lang::XMultiServiceFactory
49 , css::lang::XServiceInfo
50 , css::uno::XAggregation
55 class ChartDocumentWrapper final
: public ChartDocumentWrapper_Base
56 , public ::utl::OEventListenerAdapter
59 explicit ChartDocumentWrapper( const css::uno::Reference
< css::uno::XComponentContext
> & xContext
);
60 virtual ~ChartDocumentWrapper() override
;
62 /// XServiceInfo declarations
63 virtual OUString SAL_CALL
getImplementationName() override
;
64 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
65 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
67 void setAddIn( const css::uno::Reference
< css::util::XRefreshable
>& xAddIn
);
68 const css::uno::Reference
< css::util::XRefreshable
>& getAddIn() const { return m_xAddIn
;}
70 void setUpdateAddIn( bool bUpdateAddIn
);
71 bool getUpdateAddIn() const { return m_bUpdateAddIn
;}
73 void setBaseDiagram( const OUString
& rBaseDiagram
);
74 const OUString
& getBaseDiagram() const { return m_aBaseDiagram
;}
76 css::uno::Reference
< css::drawing::XShapes
> getAdditionalShapes() const;
78 /// @throws css::uno::RuntimeException
79 rtl::Reference
<SvxDrawPage
> impl_getDrawPage() const;
83 // ____ chart::XChartDocument ____
84 virtual css::uno::Reference
< css::drawing::XShape
> SAL_CALL
getTitle() override
;
85 virtual css::uno::Reference
< css::drawing::XShape
> SAL_CALL
getSubTitle() override
;
86 virtual css::uno::Reference
< css::drawing::XShape
> SAL_CALL
getLegend() override
;
87 virtual css::uno::Reference
< css::beans::XPropertySet
> SAL_CALL
getArea() override
;
88 virtual css::uno::Reference
< css::chart::XDiagram
> SAL_CALL
getDiagram() override
;
89 virtual void SAL_CALL
setDiagram( const css::uno::Reference
<
90 css::chart::XDiagram
>& xDiagram
) override
;
91 virtual css::uno::Reference
< css::chart::XChartData
> SAL_CALL
getData() override
;
92 virtual void SAL_CALL
attachData( const css::uno::Reference
<
93 css::chart::XChartData
>& xData
) override
;
96 virtual sal_Bool SAL_CALL
attachResource( const OUString
& URL
,
97 const css::uno::Sequence
< css::beans::PropertyValue
>& Arguments
) override
;
98 virtual OUString SAL_CALL
getURL() override
;
99 virtual css::uno::Sequence
<
100 css::beans::PropertyValue
> SAL_CALL
getArgs() override
;
101 virtual void SAL_CALL
connectController( const css::uno::Reference
<
102 css::frame::XController
>& Controller
) override
;
103 virtual void SAL_CALL
disconnectController( const css::uno::Reference
<
104 css::frame::XController
>& Controller
) override
;
105 virtual void SAL_CALL
lockControllers() override
;
106 virtual void SAL_CALL
unlockControllers() override
;
107 virtual sal_Bool SAL_CALL
hasControllersLocked() override
;
108 virtual css::uno::Reference
<
109 css::frame::XController
> SAL_CALL
getCurrentController() override
;
110 virtual void SAL_CALL
setCurrentController( const css::uno::Reference
< css::frame::XController
>& Controller
) override
;
111 virtual css::uno::Reference
<css::uno::XInterface
> SAL_CALL
getCurrentSelection() override
;
113 // ____ XComponent ____
114 virtual void SAL_CALL
dispose() override
;
115 virtual void SAL_CALL
addEventListener( const css::uno::Reference
< css::lang::XEventListener
>& xListener
) override
;
116 virtual void SAL_CALL
removeEventListener( const css::uno::Reference
< css::lang::XEventListener
>& aListener
) override
;
118 // ____ XInterface (for new interfaces) ____
119 virtual css::uno::Any SAL_CALL
queryInterface( const css::uno::Type
& aType
) override
;
121 // ____ ::utl::OEventListenerAdapter ____
122 virtual void _disposing( const css::lang::EventObject
& rSource
) override
;
124 // ____ XDrawPageSupplier ____
125 virtual css::uno::Reference
< css::drawing::XDrawPage
> SAL_CALL
getDrawPage() override
;
127 // ____ XMultiServiceFactory ____
128 virtual css::uno::Reference
< css::uno::XInterface
> SAL_CALL
createInstance( const OUString
& aServiceSpecifier
) override
;
129 virtual css::uno::Reference
< css::uno::XInterface
> SAL_CALL
createInstanceWithArguments(
130 const OUString
& ServiceSpecifier
,
131 const css::uno::Sequence
< css::uno::Any
>& Arguments
) override
;
132 virtual css::uno::Sequence
< OUString
> SAL_CALL
getAvailableServiceNames() override
;
134 // ____ XAggregation ____
135 virtual void SAL_CALL
setDelegator(
136 const css::uno::Reference
< css::uno::XInterface
>& rDelegator
) override
;
137 virtual css::uno::Any SAL_CALL
queryAggregation( const css::uno::Type
& aType
) override
;
139 // ____ WrappedPropertySet ____
140 virtual const css::uno::Sequence
< css::beans::Property
>& getPropertySequence() override
;
141 virtual std::vector
< std::unique_ptr
<WrappedProperty
> > createWrappedProperties() override
;
142 virtual css::uno::Reference
< css::beans::XPropertySet
> getInnerPropertySet() override
;
144 // ____ XPropertySet ____
145 virtual void SAL_CALL
setPropertyValue(const OUString
& rPropertyName
,
146 const css::uno::Any
& rValue
) override
;
149 void impl_resetAddIn();
152 std::shared_ptr
< Chart2ModelContact
> m_spChart2ModelContact
;
154 css::uno::Reference
< css::uno::XInterface
> m_xDelegator
;
156 rtl::Reference
< TitleWrapper
> m_xTitle
;
157 rtl::Reference
< TitleWrapper
> m_xSubTitle
;
158 rtl::Reference
< LegendWrapper
> m_xLegend
;
159 css::uno::Reference
< css::chart::XChartData
> m_xChartData
;
160 rtl::Reference
< DiagramWrapper
> m_xDiagram
;
161 css::uno::Reference
< css::beans::XPropertySet
> m_xArea
;
163 css::uno::Reference
< css::util::XRefreshable
> m_xAddIn
;
164 OUString m_aBaseDiagram
;
167 rtl::Reference
< ChartView
> m_xChartView
;
168 css::uno::Reference
< css::lang::XMultiServiceFactory
>
174 } // namespace chart::wrapper
176 // CHART_CHARTDOCUMENT_HXX
178 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */