/* -*- 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_SFX2_SIDEBAR_SIDEBAR_HXX #define INCLUDED_SFX2_SIDEBAR_SIDEBAR_HXX #include #include #include #include #include #include #include #include #include #include /** get the sidebar for a given frame */ class SfxUnoSidebar : public cppu::WeakImplHelper { private: const css::uno::Reference xFrame; sfx2::sidebar::SidebarController* getSidebarController(); public: SfxUnoSidebar(const css::uno::Reference&); virtual void SAL_CALL showDecks (const sal_Bool bVisible) throw(css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setVisible (const sal_Bool bVisible) throw(css::uno::RuntimeException, std::exception) override; virtual sal_Bool SAL_CALL isVisible() throw(css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference SAL_CALL getFrame() throw( css::uno::RuntimeException, std::exception ) override; virtual css::uno::Reference SAL_CALL getDecks() throw(css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference SAL_CALL getSidebar() throw(css::uno::RuntimeException, std::exception) override; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */