/* -*- 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 #include #include #include namespace chart::sidebar { class ChartSidebarSelectionListenerParent { public: virtual ~ChartSidebarSelectionListenerParent(); virtual void selectionChanged(bool bSelected) = 0; }; class ChartSidebarSelectionListener : public cppu::WeakImplHelper { public: // listen to all chart selection changes explicit ChartSidebarSelectionListener(ChartSidebarSelectionListenerParent* pParent); // only listen to the changes of eType ChartSidebarSelectionListener(ChartSidebarSelectionListenerParent* pParent, ObjectType eType); virtual ~ChartSidebarSelectionListener() override; virtual void SAL_CALL selectionChanged(const css::lang::EventObject& rEvent) override; virtual void SAL_CALL disposing(const css::lang::EventObject& rEvent) override; void setAcceptedTypes(const std::vector& aTypes); private: ChartSidebarSelectionListenerParent* mpParent; std::vector maTypes; }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */