1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
11 #include <ooo/vba/excel/XMenuItems.hpp>
12 #include <vbahelper/vbacollectionimpl.hxx>
14 namespace ooo::vba
{ class XCommandBarControls
; }
15 namespace ooo::vba::excel
{ class XMenuItem
; }
17 typedef CollTestImplHelper
< ov::excel::XMenuItems
> MenuItems_BASE
;
19 class ScVbaMenuItems
: public MenuItems_BASE
22 css::uno::Reference
< ov::XCommandBarControls
> m_xCommandBarControls
;
25 /// @throws css::uno::RuntimeException
26 ScVbaMenuItems( const css::uno::Reference
< ov::XHelperInterface
>& xParent
, const css::uno::Reference
< css::uno::XComponentContext
>& xContext
, css::uno::Reference
< ov::XCommandBarControls
> xCommandBarControls
);
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
;
34 virtual sal_Int32 SAL_CALL
getCount() override
;
35 virtual css::uno::Any SAL_CALL
Item( const css::uno::Any
& Index
, const css::uno::Any
& /*Index2*/ ) override
;
36 virtual css::uno::Reference
< ov::excel::XMenuItem
> SAL_CALL
Add( const OUString
& Caption
, const css::uno::Any
& OnAction
, const css::uno::Any
& ShortcutKey
, const css::uno::Any
& Before
, const css::uno::Any
& Restore
, const css::uno::Any
& StatusBar
, const css::uno::Any
& HelpFile
, const css::uno::Any
& HelpContextID
) override
;
38 virtual OUString
getServiceImplName() override
;
39 virtual css::uno::Sequence
<OUString
> getServiceNames() override
;
42 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */