LibreOffice Module sc (master) 1
vbafiledialogitems.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/XFileDialogSelectedItems.hpp>
13
15
17{
18 const std::vector<OUString> m_sItems;
19public:
20 std::vector<OUString> const& getItems()
21 {
22 return m_sItems;
23 }
24
25 ScVbaFileDialogSelectedItems( const css::uno::Reference< ov::XHelperInterface >& xParent,
26 const css::uno::Reference< css::uno::XComponentContext >& xContext,
27 std::vector<OUString>&& sItems);
28
29 // XEnumerationAccess
30 virtual css::uno::Type SAL_CALL getElementType() override;
31 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
32 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ) override;
33
34 // Methods
35 virtual css::uno::Any SAL_CALL Item( const css::uno::Any& Index, const css::uno::Any& /*Index2*/ ) override;
36 virtual sal_Int32 SAL_CALL getCount() override;
37
38 // XHelperInterface
39 virtual OUString getServiceImplName() override;
40 virtual css::uno::Sequence<OUString> getServiceNames() override;
41};
42
43/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
struct _ADOIndex Index
const std::vector< OUString > m_sItems
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override
virtual OUString getServiceImplName() override
virtual css::uno::Sequence< OUString > getServiceNames() override
ScVbaFileDialogSelectedItems(const css::uno::Reference< ov::XHelperInterface > &xParent, const css::uno::Reference< css::uno::XComponentContext > &xContext, std::vector< OUString > &&sItems)
virtual css::uno::Any SAL_CALL Item(const css::uno::Any &Index, const css::uno::Any &) override
virtual sal_Int32 SAL_CALL getCount() override
std::vector< OUString > const & getItems()
virtual css::uno::Any createCollectionObject(const css::uno::Any &aSource) override
virtual css::uno::Type SAL_CALL getElementType() override
CollTestImplHelper< ov::excel::XFileDialogSelectedItems > FileDialogSelectedItems_BASE