ac97f32307
This enables rotatad/flipped icons in the Sidebar and other non-toolbar places (tdf#85767) Change-Id: I034394ae6f9b8d91ef5a376a43eda587098f064e Reviewed-on: https://gerrit.libreoffice.org/20403 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
99 lines
3.2 KiB
C++
99 lines
3.2 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_VCL_VCLSTATUSLISTENER_HXX
|
|
#define INCLUDED_VCL_VCLSTATUSLISTENER_HXX
|
|
|
|
#include <cppuhelper/implbase.hxx>
|
|
#include <comphelper/processfactory.hxx>
|
|
#include <vcl/vclptr.hxx>
|
|
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|
#include <com/sun/star/frame/XStatusListener.hpp>
|
|
#include <com/sun/star/frame/XDispatch.hpp>
|
|
#include <com/sun/star/frame/XDispatchProvider.hpp>
|
|
#include <com/sun/star/util/URL.hpp>
|
|
#include <com/sun/star/util/URLTransformer.hpp>
|
|
|
|
template <class T> class VclStatusListener : public cppu::WeakImplHelper < css::frame::XStatusListener>
|
|
{
|
|
public:
|
|
VclStatusListener<T>(T* widget, const rtl::OUString& aCommand);
|
|
|
|
private:
|
|
VclPtr<T> mWidget; /** The widget on which actions are performed */
|
|
|
|
/** Dispatcher. Need to keep a reference to it as long as this StatusListener exists. */
|
|
css::uno::Reference<css::frame::XDispatch> mxDispatch;
|
|
css::util::URL maCommandURL;
|
|
|
|
public:
|
|
void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& rEvent)
|
|
throw(css::uno::RuntimeException, std::exception) override;
|
|
|
|
void SAL_CALL disposing(const css::lang::EventObject& /*Source*/)
|
|
throw( css::uno::RuntimeException, std::exception ) override;
|
|
|
|
void dispose();
|
|
};
|
|
|
|
template<class T>
|
|
VclStatusListener<T>::VclStatusListener(T* widget, const rtl::OUString& aCommand) {
|
|
mWidget = widget;
|
|
|
|
css::uno::Reference<css::uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
|
|
css::uno::Reference<css::frame::XDesktop2> xDesktop = css::frame::Desktop::create(xContext);
|
|
|
|
css::uno::Reference<css::frame::XFrame> xFrame(xDesktop->getActiveFrame());
|
|
if (!xFrame.is())
|
|
xFrame = css::uno::Reference<css::frame::XFrame>(xDesktop, css::uno::UNO_QUERY);
|
|
|
|
css::uno::Reference<css::frame::XDispatchProvider> xDispatchProvider(xFrame, css::uno::UNO_QUERY);
|
|
if (!xDispatchProvider.is())
|
|
return;
|
|
|
|
maCommandURL.Complete = aCommand;
|
|
css::uno::Reference<css::util::XURLTransformer> xParser = css::util::URLTransformer::create(xContext);
|
|
xParser->parseStrict(maCommandURL);
|
|
|
|
mxDispatch = xDispatchProvider->queryDispatch(maCommandURL, "", 0);
|
|
if (!mxDispatch.is())
|
|
return;
|
|
|
|
mxDispatch->addStatusListener(this, maCommandURL);
|
|
}
|
|
|
|
template<class T>
|
|
void VclStatusListener<T>::statusChanged(const css::frame::FeatureStateEvent& rEvent)
|
|
throw(css::uno::RuntimeException, std::exception)
|
|
{
|
|
mWidget->statusChanged(rEvent);
|
|
}
|
|
|
|
template<class T>
|
|
void VclStatusListener<T>::disposing(const css::lang::EventObject& /*Source*/)
|
|
throw( css::uno::RuntimeException, std::exception )
|
|
{
|
|
mxDispatch.clear();
|
|
}
|
|
|
|
template<class T>
|
|
void VclStatusListener<T>::dispose()
|
|
{
|
|
if (mxDispatch.is()) {
|
|
mxDispatch->removeStatusListener(this, maCommandURL);
|
|
mxDispatch.clear();
|
|
}
|
|
mWidget.clear();
|
|
}
|
|
|
|
|
|
#endif // INCLUDED_VCL_VCLSTATUSLISTENER_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|