LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / sc / inc / dispuno.hxx
blobf8c5e0791a83c080d4abf1ef68695294299ece0a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #pragma once
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>
26 #include "global.hxx"
28 namespace com::sun::star::frame { class XDispatchProviderInterception; }
29 class ScTabViewShell;
31 class ScDispatchProviderInterceptor final : public cppu::WeakImplHelper<
32 css::frame::XDispatchProviderInterceptor,
33 css::lang::XEventListener>,
34 public SfxListener
36 ScTabViewShell* pViewShell;
38 /// the component which's dispatches we're intercepting
39 css::uno::Reference< css::frame::XDispatchProviderInterception> m_xIntercepted;
41 /// chaining
42 css::uno::Reference< css::frame::XDispatchProvider> m_xSlaveDispatcher;
43 css::uno::Reference< css::frame::XDispatchProvider> m_xMasterDispatcher;
45 /// own dispatch
46 css::uno::Reference< css::frame::XDispatch> m_xMyDispatch;
48 public:
50 ScDispatchProviderInterceptor(ScTabViewShell* pViewSh);
51 virtual ~ScDispatchProviderInterceptor() override;
53 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
55 /// XDispatchProvider
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;
73 /// XEventListener
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 >,
80 public SfxListener
82 ScTabViewShell* pViewShell;
83 std::vector< css::uno::Reference< css::frame::XStatusListener > >
84 aDataSourceListeners;
85 ScImportParam aLastImport;
86 bool bListeningToView;
88 public:
90 ScDispatch(ScTabViewShell* pViewSh);
91 virtual ~ScDispatch() override;
93 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
95 /// XDispatch
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;
106 /// XEventListener
107 virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) override;
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */