Bump version to 6.4-15
[LibreOffice.git] / include / svx / sidebar / SelectionChangeHandler.hxx
blob0a6b8f637b94780b6e2ee3ca6ee1d3971abb1258
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 .
19 #ifndef INCLUDED_SVX_SIDEBAR_SELECTIONCHANGEHANDLER_HXX
20 #define INCLUDED_SVX_SIDEBAR_SELECTIONCHANGEHANDLER_HXX
22 #include <svx/svxdllapi.h>
23 #include <vcl/EnumContext.hxx>
24 #include <com/sun/star/frame/XController.hpp>
25 #include <com/sun/star/view/XSelectionChangeListener.hpp>
27 #include <cppuhelper/compbase.hxx>
28 #include <cppuhelper/basemutex.hxx>
30 #include <functional>
32 class SdrMarkView;
35 namespace svx { namespace sidebar {
37 typedef cppu::WeakComponentImplHelper<
38 css::view::XSelectionChangeListener
39 > SelectionChangeHandlerInterfaceBase;
41 class SVX_DLLPUBLIC SelectionChangeHandler final
42 : private ::cppu::BaseMutex,
43 public SelectionChangeHandlerInterfaceBase
45 public:
46 SelectionChangeHandler (
47 const std::function<OUString ()>& rSelectionChangeCallback,
48 const css::uno::Reference<css::frame::XController>& rxController,
49 const vcl::EnumContext::Context eDefaultContext);
50 virtual ~SelectionChangeHandler() override;
52 virtual void SAL_CALL selectionChanged (const css::lang::EventObject& rEvent) override;
54 virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent) override;
56 virtual void SAL_CALL disposing() override;
58 void Connect();
59 void Disconnect();
61 private:
62 SelectionChangeHandler(const SelectionChangeHandler&) = delete;
63 SelectionChangeHandler& operator=(const SelectionChangeHandler&) = delete;
65 const std::function<OUString ()> maSelectionChangeCallback;
66 css::uno::Reference<css::frame::XController> mxController;
67 const vcl::EnumContext::Context meDefaultContext;
68 bool mbIsConnected;
72 } } // end of namespace svx::sidebar
75 #endif
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */