Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / vcl / vclstatuslistener.hxx
blob42894dd5e98b3168e3aa39e99ff22b05a9dc6245
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 #ifndef INCLUDED_VCL_VCLSTATUSLISTENER_HXX
11 #define INCLUDED_VCL_VCLSTATUSLISTENER_HXX
13 #include <cppuhelper/implbase.hxx>
14 #include <comphelper/processfactory.hxx>
15 #include <vcl/vclptr.hxx>
17 #include <com/sun/star/frame/Desktop.hpp>
18 #include <com/sun/star/frame/XStatusListener.hpp>
19 #include <com/sun/star/frame/XDispatch.hpp>
20 #include <com/sun/star/frame/XDispatchProvider.hpp>
21 #include <com/sun/star/util/URL.hpp>
22 #include <com/sun/star/util/URLTransformer.hpp>
24 template <class T> class VclStatusListener : public cppu::WeakImplHelper < css::frame::XStatusListener>
26 public:
27 VclStatusListener<T>(T* widget, const rtl::OUString& aCommand);
29 private:
30 VclPtr<T> mWidget; /** The widget on which actions are performed */
32 /** Dispatcher. Need to keep a reference to it as long as this StatusListener exists. */
33 css::uno::Reference<css::frame::XDispatch> mxDispatch;
34 css::util::URL maCommandURL;
35 css::uno::Reference<css::frame::XFrame> mxFrame;
37 public:
38 void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& rEvent) override;
40 void SAL_CALL disposing(const css::lang::EventObject& /*Source*/) override;
42 const css::uno::Reference<css::frame::XFrame>& getFrame() { return mxFrame; }
44 void startListening();
46 void dispose();
49 template<class T>
50 VclStatusListener<T>::VclStatusListener(T* widget, const rtl::OUString& aCommand) {
51 mWidget = widget;
53 css::uno::Reference<css::uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
54 css::uno::Reference<css::frame::XDesktop2> xDesktop = css::frame::Desktop::create(xContext);
56 css::uno::Reference<css::frame::XFrame> xFrame(xDesktop->getActiveFrame());
57 if (!xFrame.is())
58 xFrame = css::uno::Reference<css::frame::XFrame>(xDesktop, css::uno::UNO_QUERY);
60 mxFrame = xFrame;
62 maCommandURL.Complete = aCommand;
63 css::uno::Reference<css::util::XURLTransformer> xParser = css::util::URLTransformer::create(xContext);
64 xParser->parseStrict(maCommandURL);
67 template<class T>
68 void VclStatusListener<T>::startListening()
70 if (mxDispatch.is())
71 mxDispatch->removeStatusListener(this, maCommandURL);
73 css::uno::Reference<css::frame::XDispatchProvider> xDispatchProvider(mxFrame, css::uno::UNO_QUERY);
74 if (!xDispatchProvider.is())
75 return;
77 mxDispatch = xDispatchProvider->queryDispatch(maCommandURL, "", 0);
78 if (mxDispatch.is())
79 mxDispatch->addStatusListener(this, maCommandURL);
82 template<class T>
83 void VclStatusListener<T>::statusChanged(const css::frame::FeatureStateEvent& rEvent)
85 mWidget->statusChanged(rEvent);
88 template<class T>
89 void VclStatusListener<T>::disposing(const css::lang::EventObject& /*Source*/)
91 mxDispatch.clear();
94 template<class T>
95 void VclStatusListener<T>::dispose()
97 if (mxDispatch.is()) {
98 mxDispatch->removeStatusListener(this, maCommandURL);
99 mxDispatch.clear();
101 mxFrame.clear();
102 mWidget.clear();
106 #endif // INCLUDED_VCL_VCLSTATUSLISTENER_HXX
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */