blob: 15a2b35963e210316e3d25580afb3ee6364f6c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/* -*- 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/.
*
*/
#pragma once
#include <sfx2/devtools/DevelopmentToolDockingWindow.hxx>
#include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/view/XSelectionSupplier.hpp>
#include <comphelper/compbase.hxx>
typedef comphelper::WeakComponentImplHelper<css::view::XSelectionChangeListener>
SelectionChangeHandlerInterfaceBase;
/** Selection change handler to listen to document selection changes.
*
* Listens to the changes and notifies the docking window with a new
* selected object, when a change happens.
*/
class SelectionChangeHandler final : public SelectionChangeHandlerInterfaceBase
{
private:
css::uno::Reference<css::frame::XController> mxController;
VclPtr<DevelopmentToolDockingWindow> mpDockingWindow;
public:
SelectionChangeHandler(const css::uno::Reference<css::frame::XController>& rxController,
DevelopmentToolDockingWindow* pDockingWindow)
: mxController(rxController)
, mpDockingWindow(pDockingWindow)
{
css::uno::Reference<css::view::XSelectionSupplier> xSupplier(mxController,
css::uno::UNO_QUERY);
xSupplier->addSelectionChangeListener(this);
}
~SelectionChangeHandler() { mpDockingWindow.disposeAndClear(); }
virtual void SAL_CALL selectionChanged(const css::lang::EventObject& /*rEvent*/) override
{
css::uno::Reference<css::view::XSelectionSupplier> xSupplier(mxController,
css::uno::UNO_QUERY);
if (xSupplier.is())
{
css::uno::Any aAny = xSupplier->getSelection();
auto xInterface = aAny.get<css::uno::Reference<css::uno::XInterface>>();
mpDockingWindow->selectionChanged(xInterface);
}
}
void stopListening()
{
css::uno::Reference<css::view::XSelectionSupplier> xSupplier(mxController,
css::uno::UNO_QUERY);
xSupplier->removeSelectionChangeListener(this);
}
virtual void SAL_CALL disposing(const css::lang::EventObject& /*rEvent*/) override {}
using comphelper::WeakComponentImplHelperBase::disposing;
private:
SelectionChangeHandler(const SelectionChangeHandler&) = delete;
SelectionChangeHandler& operator=(const SelectionChangeHandler&) = delete;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|