1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: filelist.hxx,v $
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 ************************************************************************/
34 #include <tools/stream.hxx>
35 #include "sot/sotdllapi.h"
39 class SOT_DLLPUBLIC FileList
: public SvDataCopyStream
41 FileStringList
* pStrList
;
46 virtual void Load( SvStream
& );
47 virtual void Save( SvStream
& );
48 virtual void Assign( const SvDataCopyStream
& );
51 void ClearAll( void );
60 FileList
& operator=( const FileList
& rFileList
);
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;
78 #endif // _FILELIST_HXX