merge the formfield patch from ooo-build
[ooovba.git] / sc / source / filter / lotus / lotus.cxx
blob0d5487af4ab5fc9ac06d4301b9fca0c7eceb4068
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: lotus.cxx,v $
10 * $Revision: 1.10 $
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 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sc.hxx"
33 #include "lotimpop.hxx"
35 #include <sfx2/docfile.hxx>
36 #include <tools/urlobj.hxx>
38 #include "scerrors.hxx"
39 #include "root.hxx"
40 #include "filtopt.hxx"
41 #include "ftools.hxx"
43 //------------------------------------------------------------------------
45 extern FltError ScImportLotus123old( SvStream&, ScDocument*, CharSet eSrc );
46 // alter Krempel in filter.cxx!
48 FltError ScFormatFilterPluginImpl::ScImportLotus123( SfxMedium& rMedium, ScDocument* pDocument, CharSet eSrc )
50 ScFilterOptions aFilterOpt;
51 BOOL bWithWK3 = aFilterOpt.GetWK3Flag();
53 SvStream* pStream = rMedium.GetInStream();
55 if( !pStream )
56 return eERR_OPEN;
58 FltError eRet;
60 pStream->Seek( 0UL );
62 pStream->SetBufferSize( 32768 );
64 ImportLotus aLotusImport( *pStream, pDocument, eSrc );
66 if( bWithWK3 )
67 eRet = aLotusImport.Read();
68 else
69 eRet = 0xFFFFFFFF; // WK1 /WKS erzwingen
71 // ACHTUNG: QUICK-HACK fuer WK1 / WKS <-> WK3 / WK4
72 if( eRet == 0xFFFFFFFF )
74 pStream->Seek( 0UL );
76 pStream->SetBufferSize( 32768 );
78 eRet = ScImportLotus123old( *pStream, pDocument, eSrc );
80 pStream->SetBufferSize( 0 );
82 return eRet;
85 if( eRet != eERR_OK )
86 return eRet;
88 if( pLotusRoot->eFirstType == Lotus_WK3 )
89 {// versuchen *.FM3-File zu laden
90 INetURLObject aURL( rMedium.GetURLObject() );
91 aURL.setExtension( CREATE_STRING( "FM3" ) );
92 SfxMedium aMedium( aURL.GetMainURL(INetURLObject::NO_DECODE), STREAM_STD_READ, TRUE );
93 pStream = aMedium.GetInStream();
94 if ( pStream )
96 if( aLotusImport.Read( *pStream ) != eERR_OK )
97 eRet = SCWARN_IMPORT_WRONG_FM3;
99 else
100 eRet = SCWARN_IMPORT_OPEN_FM3;
103 return eRet;