LibreOffice Module sc (master) 1
vbamenuitems.hxx
Go to the documentation of this file.
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#pragma once
10
11#include <ooo/vba/excel/XMenuItems.hpp>
13
14namespace ooo::vba { class XCommandBarControls; }
15namespace ooo::vba::excel { class XMenuItem; }
16
18
20{
21private:
22 css::uno::Reference< ov::XCommandBarControls > m_xCommandBarControls;
23
24public:
26 ScVbaMenuItems( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, css::uno::Reference< ov::XCommandBarControls > xCommandBarControls );
27
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;
32
33 // Methods
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;
37 // XHelperInterface
38 virtual OUString getServiceImplName() override;
39 virtual css::uno::Sequence<OUString> getServiceNames() override;
40};
41
42/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
struct _ADOIndex Index
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override
virtual OUString getServiceImplName() override
virtual css::uno::Sequence< OUString > getServiceNames() override
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
ScVbaMenuItems(const css::uno::Reference< ov::XHelperInterface > &xParent, const css::uno::Reference< css::uno::XComponentContext > &xContext, css::uno::Reference< ov::XCommandBarControls > xCommandBarControls)
virtual css::uno::Any SAL_CALL Item(const css::uno::Any &Index, const css::uno::Any &) override
virtual sal_Int32 SAL_CALL getCount() override
css::uno::Reference< ov::XCommandBarControls > m_xCommandBarControls
virtual css::uno::Type SAL_CALL getElementType() override
virtual css::uno::Any createCollectionObject(const css::uno::Any &aSource) override
CollTestImplHelper< ov::excel::XMenuItems > MenuItems_BASE