LibreOffice Module fpicker (master) 1
asyncfilepicker.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
20#pragma once
21
22#include <tools/link.hxx>
23#include <rtl/ustring.hxx>
24#include <com/sun/star/uno/Sequence.h>
26
27class SvtFileView;
29
30namespace svt
31{
32
33
34 //= AsyncPickerAction
35
37 {
38 public:
39 enum Action
40 {
44 };
45
46 private:
50 OUString m_sURL;
51 OUString m_sFileName;
53
54 public:
55 AsyncPickerAction( SvtFileDialog_Base* _pDialog, SvtFileView* _pView, const Action _eAction );
56
69 void execute(
70 const OUString& _rURL,
71 const OUString& _rFilter,
72 sal_Int32 _nMinTimeout,
73 sal_Int32 _nMaxTimeout,
74 const css::uno::Sequence< OUString >& rDenyList );
75
77 void cancel();
78
79 protected:
80 virtual ~AsyncPickerAction() override;
81
82 private:
83 DECL_LINK( OnActionDone, void*, void );
84
87 };
88
89
90} // namespace svt
91
92
93/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void cancel()
cancels the running action
DECL_LINK(OnActionDone, void *, void)
virtual ~AsyncPickerAction() override
AsyncPickerAction & operator=(const AsyncPickerAction &)=delete
SvtFileDialog_Base * m_pDialog
AsyncPickerAction(const AsyncPickerAction &)=delete
void execute(const OUString &_rURL, const OUString &_rFilter, sal_Int32 _nMinTimeout, sal_Int32 _nMaxTimeout, const css::uno::Sequence< OUString > &rDenyList)
executes the action
AsyncPickerAction(SvtFileDialog_Base *_pDialog, SvtFileView *_pView, const Action _eAction)