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 .
22 #include <com/sun/star/frame/XDispatchProviderInterceptor.hpp>
23 #include <com/sun/star/view/XSelectionChangeListener.hpp>
24 #include <cppuhelper/implbase.hxx>
25 #include <svl/lstner.hxx>
28 namespace com::sun::star::frame
{ class XDispatchProviderInterception
; }
31 class ScDispatchProviderInterceptor final
: public cppu::WeakImplHelper
<
32 css::frame::XDispatchProviderInterceptor
,
33 css::lang::XEventListener
>,
36 ScTabViewShell
* pViewShell
;
38 /// the component which's dispatches we're intercepting
39 css::uno::Reference
< css::frame::XDispatchProviderInterception
> m_xIntercepted
;
42 css::uno::Reference
< css::frame::XDispatchProvider
> m_xSlaveDispatcher
;
43 css::uno::Reference
< css::frame::XDispatchProvider
> m_xMasterDispatcher
;
46 css::uno::Reference
< css::frame::XDispatch
> m_xMyDispatch
;
50 ScDispatchProviderInterceptor(ScTabViewShell
* pViewSh
);
51 virtual ~ScDispatchProviderInterceptor() override
;
53 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
56 virtual css::uno::Reference
< css::frame::XDispatch
> SAL_CALL
57 queryDispatch( const css::util::URL
& aURL
,
58 const OUString
& aTargetFrameName
,
59 sal_Int32 nSearchFlags
) override
;
60 virtual css::uno::Sequence
< css::uno::Reference
< css::frame::XDispatch
> > SAL_CALL
61 queryDispatches( const css::uno::Sequence
< css::frame::DispatchDescriptor
>& aDescripts
) override
;
63 /// XDispatchProviderInterceptor
64 virtual css::uno::Reference
< css::frame::XDispatchProvider
> SAL_CALL
65 getSlaveDispatchProvider() override
;
66 virtual void SAL_CALL
setSlaveDispatchProvider( const css::uno::Reference
<
67 css::frame::XDispatchProvider
>& xNewDispatchProvider
) override
;
68 virtual css::uno::Reference
< css::frame::XDispatchProvider
> SAL_CALL
69 getMasterDispatchProvider() override
;
70 virtual void SAL_CALL
setMasterDispatchProvider( const css::uno::Reference
<
71 css::frame::XDispatchProvider
>& xNewSupplier
) override
;
74 virtual void SAL_CALL
disposing( const css::lang::EventObject
& Source
) override
;
77 class ScDispatch final
: public cppu::WeakImplHelper
<
78 css::frame::XDispatch
,
79 css::view::XSelectionChangeListener
>,
82 ScTabViewShell
* pViewShell
;
83 std::vector
< css::uno::Reference
< css::frame::XStatusListener
> >
85 ScImportParam aLastImport
;
86 bool bListeningToView
;
90 ScDispatch(ScTabViewShell
* pViewSh
);
91 virtual ~ScDispatch() override
;
93 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
96 virtual void SAL_CALL
dispatch( const css::util::URL
& aURL
,
97 const css::uno::Sequence
< css::beans::PropertyValue
>& aArgs
) override
;
98 virtual void SAL_CALL
addStatusListener( const css::uno::Reference
< css::frame::XStatusListener
>& xControl
,
99 const css::util::URL
& aURL
) override
;
100 virtual void SAL_CALL
removeStatusListener( const css::uno::Reference
< css::frame::XStatusListener
>& xControl
,
101 const css::util::URL
& aURL
) override
;
103 /// XSelectionChangeListener
104 virtual void SAL_CALL
selectionChanged( const css::lang::EventObject
& aEvent
) override
;
107 virtual void SAL_CALL
disposing( const css::lang::EventObject
& Source
) override
;
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */