Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / cui / source / inc / multifil.hxx
blob4e65a918801c70798ff78f9d8b9d4d082b931764
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef _SVX_MULTIFIL_HXX
20 #define _SVX_MULTIFIL_HXX
22 #include "multipat.hxx"
24 // #97807# ----------------------------------------------------
25 #include <ucbhelper/content.hxx>
26 #include <map>
28 // class SvxMultiFileDialog ----------------------------------------------
30 class SvxMultiFileDialog : public SvxMultiPathDialog
32 private:
33 // #97807# -------------------------------------
34 std::map< String, ::ucbhelper::Content > aFileContentMap;
36 DECL_LINK( AddHdl_Impl, PushButton * );
37 DECL_LINK(DelHdl_Impl, void *);
39 public:
40 SvxMultiFileDialog( Window* pParent, sal_Bool bEmptyAllowed = sal_False );
41 ~SvxMultiFileDialog();
43 String GetFiles() const { return SvxMultiPathDialog::GetPath(); }
44 void SetFiles( const String& rPath ) { SvxMultiPathDialog::SetPath(rPath); aDelBtn.Enable(); }
48 #endif
50 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */