Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / ui / vba / vbafiledialogitems.hxx
blobf0e2977fee7c9911a7572e6846b4e628222a4531
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 INCLUDED_SC_SOURCE_UI_VBA_VBAFILEDIALOGSELECTEDITEMS
10 #define INCLUDED_SC_SOURCE_UI_VBA_VBAFILEDIALOGSELECTEDITEMS
12 #include <ooo/vba/excel/XFileDialogSelectedItems.hpp>
13 #include <vbahelper/vbacollectionimpl.hxx>
15 typedef CollTestImplHelper< ov::excel::XFileDialogSelectedItems > FileDialogSelectedItems_BASE;
17 class ScVbaFileDialogSelectedItems final : public FileDialogSelectedItems_BASE
19 const std::vector<OUString> m_sItems;
20 public:
21 ScVbaFileDialogSelectedItems( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const std::vector<OUString>& sItems);
23 // XEnumerationAccess
24 virtual css::uno::Type SAL_CALL getElementType() override;
25 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
26 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ) override;
28 // Methods
29 virtual css::uno::Any SAL_CALL Item( const css::uno::Any& Index, const css::uno::Any& /*Index2*/ ) override;
30 virtual sal_Int32 SAL_CALL getCount() override;
32 // XHelperInterface
33 virtual OUString getServiceImplName() override;
34 virtual css::uno::Sequence<OUString> getServiceNames() override;
37 #endif // INCLUDED_SC_SOURCE_UI_VBA_VBAFILEDIALOGSELECTEDITEMS
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */