GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / sc / source / ui / vba / vbamenus.hxx
blob5be02e3b1b54c7bf24a0d66857b32842e34c819e
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 #ifndef SC_VBA_MENUS_HXX
10 #define SC_VBA_MENUS_HXX
12 #include <ooo/vba/excel/XMenus.hpp>
13 #include <ooo/vba/excel/XMenu.hpp>
14 #include <ooo/vba/XCommandBarControls.hpp>
15 #include <vbahelper/vbahelperinterface.hxx>
16 #include <vbahelper/vbacollectionimpl.hxx>
18 typedef CollTestImplHelper< ov::excel::XMenus > Menus_BASE;
20 class ScVbaMenus : public Menus_BASE
22 private:
23 css::uno::Reference< ov::XCommandBarControls > m_xCommandBarControls;
25 public:
26 ScVbaMenus( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< ov::XCommandBarControls >& xCommandBarControls ) throw( css::uno::RuntimeException );
28 // XEnumerationAccess
29 virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException);
30 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (css::uno::RuntimeException);
31 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource );
33 // Methods
34 virtual sal_Int32 SAL_CALL getCount() throw(css::uno::RuntimeException);
35 virtual css::uno::Any SAL_CALL Item( const css::uno::Any& Index, const css::uno::Any& /*Index2*/ ) throw (css::uno::RuntimeException);
36 virtual css::uno::Reference< ov::excel::XMenu > SAL_CALL Add( const OUString& Caption, const css::uno::Any& Before, const css::uno::Any& Restore ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
37 // XHelperInterface
38 virtual OUString getServiceImplName();
39 virtual css::uno::Sequence<OUString> getServiceNames();
42 #endif//SC_VBA_MENUS_HXX
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */