LibreOffice Module sc (master) 1
vbafiledialog.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 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19#pragma once
20
21#include <ooo/vba/excel/XFileDialog.hpp>
23
24namespace com::sun::star::uno { class XComponentContext; }
25namespace ooo::vba { class XHelperInterface; }
26namespace ooo::vba::excel { class XFileDialogSelectedItems; }
27
29
31{
32private:
33 sal_Int32 m_nType;
34 OUString m_sTitle;
37 css::uno::Reference< ov::excel::XFileDialogSelectedItems> m_xItems;
38public:
39 ScVbaFileDialog( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const sal_Int32 nType);
40
41 virtual css::uno::Any SAL_CALL getInitialFileName() override;
42 virtual void SAL_CALL setInitialFileName( const css::uno::Any& rName ) override;
43 virtual css::uno::Any SAL_CALL getTitle() override;
44 virtual void SAL_CALL setTitle( const css::uno::Any& rTitle ) override;
45 virtual css::uno::Any SAL_CALL getAllowMultiSelect() override;
46 virtual void SAL_CALL setAllowMultiSelect(const css::uno::Any& rAllowMultiSelect) override;
47
48 virtual css::uno::Reference< ov::excel::XFileDialogSelectedItems > SAL_CALL getSelectedItems() override;
49
50 virtual sal_Int32 SAL_CALL Show() override;
51
52 //XHelperInterface
53 virtual OUString getServiceImplName() override;
54 virtual css::uno::Sequence<OUString> getServiceNames() override;
55};
56
57
58/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void SAL_CALL setInitialFileName(const css::uno::Any &rName) override
OUString m_sInitialFileName
virtual css::uno::Any SAL_CALL getInitialFileName() override
virtual css::uno::Sequence< OUString > getServiceNames() override
virtual void SAL_CALL setAllowMultiSelect(const css::uno::Any &rAllowMultiSelect) override
virtual css::uno::Any SAL_CALL getTitle() override
css::uno::Reference< ov::excel::XFileDialogSelectedItems > m_xItems
virtual sal_Int32 SAL_CALL Show() override
ScVbaFileDialog(const css::uno::Reference< ov::XHelperInterface > &xParent, const css::uno::Reference< css::uno::XComponentContext > &xContext, const sal_Int32 nType)
virtual css::uno::Any SAL_CALL getAllowMultiSelect() override
virtual css::uno::Reference< ov::excel::XFileDialogSelectedItems > SAL_CALL getSelectedItems() override
virtual void SAL_CALL setTitle(const css::uno::Any &rTitle) override
virtual OUString getServiceImplName() override
QPRO_FUNC_TYPE nType
Definition: qproform.cxx:398
InheritedHelperInterfaceWeakImpl< ov::excel::XFileDialog > ScVbaFileDialog_BASE