merge the formfield patch from ooo-build
[ooovba.git] / sot / inc / filelist.hxx
blob3d08e477f8b2932d1476580a090cc5c67247d5fe
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: filelist.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _FILELIST_HXX
32 #define _FILELIST_HXX
34 #include <tools/stream.hxx>
35 #include "sot/sotdllapi.h"
37 class FileStringList;
39 class SOT_DLLPUBLIC FileList : public SvDataCopyStream
41 FileStringList* pStrList;
43 protected:
45 // SvData-Methoden
46 virtual void Load( SvStream& );
47 virtual void Save( SvStream& );
48 virtual void Assign( const SvDataCopyStream& );
50 // Liste loeschen;
51 void ClearAll( void );
53 public:
55 TYPEINFO();
56 FileList();
57 ~FileList();
59 // Zuweisungsoperator
60 FileList& operator=( const FileList& rFileList );
63 // Im-/Export
64 SOT_DLLPUBLIC friend SvStream& operator<<( SvStream& rOStm, const FileList& rFileList );
65 SOT_DLLPUBLIC friend SvStream& operator>>( SvStream& rIStm, FileList& rFileList );
67 // Clipboard, D&D usw.
68 static ULONG GetFormat();
71 // Liste fuellen/abfragen
72 void AppendFile( const String& rStr );
73 String GetFile( ULONG i ) const;
74 ULONG Count( void ) const;
76 };
78 #endif // _FILELIST_HXX