/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include namespace com { namespace sun { namespace star { namespace document { class XDocumentProperties; } } } } namespace { enum class VBAExportMode { NONE, REEXPORT_STREAM, FULL_EXPORT }; } ExportBiff5::ExportBiff5( XclExpRootData& rExpData, SvStream& rStrm ): ExportTyp( rStrm ), XclExpRoot( rExpData ) { // only need part of the Root data pExcRoot = &GetOldRoot(); pExcRoot->pER = this; // ExcRoot -> XclExpRoot pExcRoot->eDateiTyp = Biff5; pExcDoc.reset( new ExcDocument( *this ) ); } ExportBiff5::~ExportBiff5() { } ErrCode ExportBiff5::Write() { SfxObjectShell* pDocShell = GetDocShell(); OSL_ENSURE( pDocShell, "ExportBiff5::Write - no document shell" ); tools::SvRef xRootStrg = GetRootStorage(); OSL_ENSURE( xRootStrg.is(), "ExportBiff5::Write - no root storage" ); VBAExportMode eVbaExportMode = VBAExportMode::NONE; if( GetBiff() == EXC_BIFF8 ) { if (officecfg::Office::Calc::Filter::Import::VBA::UseExport::get()) eVbaExportMode = VBAExportMode::FULL_EXPORT; else { const SvtFilterOptions& rFilterOpt = SvtFilterOptions::Get(); if (rFilterOpt.IsLoadExcelBasicStorage()) eVbaExportMode = VBAExportMode::REEXPORT_STREAM; } } if ( pDocShell && xRootStrg.is() && eVbaExportMode == VBAExportMode::FULL_EXPORT) { VbaExport aExport(pDocShell->GetModel()); if (aExport.containsVBAProject()) { tools::SvRef xVBARoot = xRootStrg->OpenSotStorage("_VBA_PROJECT_CUR"); aExport.exportVBA( xVBARoot.get() ); } } else if( pDocShell && xRootStrg.is() && eVbaExportMode == VBAExportMode::REEXPORT_STREAM ) { SvxImportMSVBasic aBasicImport( *pDocShell, *xRootStrg ); const ErrCode nErr = aBasicImport.SaveOrDelMSVBAStorage( true, EXC_STORAGE_VBA_PROJECT ); if( nErr != ERRCODE_NONE ) pDocShell->SetError(nErr); } pExcDoc->ReadDoc(); // ScDoc -> ExcDoc pExcDoc->Write( aOut ); // wechstreamen if( pDocShell && xRootStrg.is() ) { using namespace ::com::sun::star; uno::Reference xDPS( pDocShell->GetModel(), uno::UNO_QUERY_THROW); uno::Reference xDocProps = xDPS->getDocumentProperties(); if ( SvtFilterOptions::Get().IsEnableCalcPreview() ) { std::shared_ptr xMetaFile = pDocShell->GetPreviewMetaFile(); uno::Sequence metaFile( sfx2::convertMetaFile(xMetaFile.get())); sfx2::SaveOlePropertySet( xDocProps, xRootStrg.get(), &metaFile ); } else sfx2::SaveOlePropertySet( xDocProps, xRootStrg.get() ); } const XclExpAddressConverter& rAddrConv = GetAddressConverter(); if( rAddrConv.IsRowTruncated() ) return SCWARN_EXPORT_MAXROW; if( rAddrConv.IsColTruncated() ) return SCWARN_EXPORT_MAXCOL; if( rAddrConv.IsTabTruncated() ) return SCWARN_EXPORT_MAXTAB; return ERRCODE_NONE; } ExportBiff8::ExportBiff8( XclExpRootData& rExpData, SvStream& rStrm ) : ExportBiff5( rExpData, rStrm ) { pExcRoot->eDateiTyp = Biff8; } ExportBiff8::~ExportBiff8() { } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */