tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / vba / vbamenubars.hxx
blob2b6e7e7db7a126b989a5d501eb346e0910efd719
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/.
8 */
9 #pragma once
11 #include <ooo/vba/excel/XMenuBars.hpp>
12 #include <vbahelper/vbacollectionimpl.hxx>
14 namespace ooo::vba { class XCommandBars; }
16 typedef CollTestImplHelper< ov::excel::XMenuBars > MenuBars_BASE;
18 class ScVbaMenuBars : public MenuBars_BASE
20 private:
21 css::uno::Reference< ov::XCommandBars > m_xCommandBars;
23 public:
24 /// @throws css::uno::RuntimeException
25 ScVbaMenuBars( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, css::uno::Reference< ov::XCommandBars > xCommandBars );
26 virtual ~ScVbaMenuBars() override;
28 // XEnumerationAccess
29 virtual css::uno::Type SAL_CALL getElementType() override;
30 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
31 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ) override;
33 virtual sal_Int32 SAL_CALL getCount() override;
34 virtual css::uno::Any SAL_CALL Item( const css::uno::Any& aIndex, const css::uno::Any& /*aIndex2*/ ) override;
35 // XHelperInterface
36 virtual OUString getServiceImplName() override;
37 virtual css::uno::Sequence<OUString> getServiceNames() override;
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */