1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 2 /* 3 * This file is part of the LibreOffice project. 4 * 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/. 8 */ 9 #ifndef INCLUDED_SC_SOURCE_UI_VBA_VBAMENUBAR_HXX 10 #define INCLUDED_SC_SOURCE_UI_VBA_VBAMENUBAR_HXX 11 12 #include <ooo/vba/excel/XMenuBar.hpp> 13 #include <ooo/vba/XCommandBar.hpp> 14 #include <vbahelper/vbahelperinterface.hxx> 15 16 typedef InheritedHelperInterfaceWeakImpl< ov::excel::XMenuBar > MenuBar_BASE; 17 18 class ScVbaMenuBar : public MenuBar_BASE 19 { 20 private: 21 css::uno::Reference< ov::XCommandBar > m_xCommandBar; 22 23 public: 24 /// @throws css::uno::RuntimeException 25 ScVbaMenuBar( const css::uno::Reference< ov::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< ov::XCommandBar >& rCommandBar ); 26 27 virtual css::uno::Any SAL_CALL Menus( const css::uno::Any& aIndex ) override; 28 29 // XHelperInterface 30 virtual OUString getServiceImplName() override; 31 virtual css::uno::Sequence<OUString> getServiceNames() override; 32 }; 33 #endif // INCLUDED_SC_SOURCE_UI_VBA_VBAMENUBAR_HXX 34 35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 36