Update git submodules
[LibreOffice.git] / vcl / inc / vclstatuslistener.hxx
blobaedcf3c70ead28a9cc3a1d7f0ea0415ac6098545
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/.
8 */
10 #pragma once
12 #include <cppuhelper/implbase.hxx>
13 #include <comphelper/processfactory.hxx>
14 #include <vcl/vclptr.hxx>
16 #include <com/sun/star/frame/Desktop.hpp>
17 #include <com/sun/star/frame/XStatusListener.hpp>
18 #include <com/sun/star/frame/XDispatch.hpp>
19 #include <com/sun/star/frame/XDispatchProvider.hpp>
20 #include <com/sun/star/util/URL.hpp>
21 #include <com/sun/star/util/URLTransformer.hpp>
23 template <class T> class VclStatusListener final : public cppu::WeakImplHelper < css::frame::XStatusListener>
25 public:
26 VclStatusListener(T* widget, const css::uno::Reference<css::frame::XFrame>& rFrame, const OUString& aCommand);
28 private:
29 VclPtr<T> mWidget; /** The widget on which actions are performed */
31 /** Dispatcher. Need to keep a reference to it as long as this StatusListener exists. */
32 css::uno::Reference<css::frame::XDispatch> mxDispatch;
33 css::util::URL maCommandURL;
34 css::uno::Reference<css::frame::XFrame> mxFrame;
36 public:
37 void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& rEvent) override;
39 void SAL_CALL disposing(const css::lang::EventObject& /*Source*/) override;
41 void startListening();
43 void dispose();
46 template<class T>
47 VclStatusListener<T>::VclStatusListener(T* widget, const css::uno::Reference<css::frame::XFrame>& rFrame, const OUString& aCommand) :
48 mWidget(widget),
49 mxFrame(rFrame)
51 css::uno::Reference<css::uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
52 maCommandURL.Complete = aCommand;
53 css::uno::Reference<css::util::XURLTransformer> xParser = css::util::URLTransformer::create(xContext);
54 xParser->parseStrict(maCommandURL);
57 template<class T>
58 void VclStatusListener<T>::startListening()
60 css::uno::Reference<css::frame::XDispatchProvider> xDispatchProvider(mxFrame, css::uno::UNO_QUERY);
61 if (!xDispatchProvider.is())
62 return;
64 mxDispatch = xDispatchProvider->queryDispatch(maCommandURL, "", 0);
65 if (mxDispatch.is())
66 mxDispatch->addStatusListener(this, maCommandURL);
69 template<class T>
70 void VclStatusListener<T>::statusChanged(const css::frame::FeatureStateEvent& rEvent)
72 mWidget->statusChanged(rEvent);
75 template<class T>
76 void VclStatusListener<T>::disposing(const css::lang::EventObject& /*Source*/)
78 mxDispatch.clear();
81 template<class T>
82 void VclStatusListener<T>::dispose()
84 if (mxDispatch.is()) {
85 mxDispatch->removeStatusListener(this, maCommandURL);
86 mxDispatch.clear();
88 mxFrame.clear();
89 mWidget.clear();
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */