LibreOffice Module sc (master) 1
rtfimp.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <filter.hxx>
21#include <editutil.hxx>
22#include <rtfimp.hxx>
23#include <rtfparse.hxx>
24#include <ftools.hxx>
25
26ErrCode ScFormatFilterPluginImpl::ScImportRTF( SvStream &rStream, const OUString& rBaseURL, ScDocument *pDoc, ScRange& rRange )
27{
28 ScRTFImport aImp( pDoc, rRange );
29 ErrCode nErr = aImp.Read( rStream, rBaseURL );
30 ScRange aR = aImp.GetRange();
31 rRange.aEnd = aR.aEnd;
32 aImp.WriteToDocument();
33 return nErr;
34}
35
36std::unique_ptr<ScEEAbsImport> ScFormatFilterPluginImpl::CreateRTFImport( ScDocument* pDoc, const ScRange& rRange )
37{
38 return std::make_unique<ScRTFImport>( pDoc, rRange );
39}
40
42 ScEEImport( pDocP, rRange )
43{
44 mpParser.reset(new ScRTFParser( mpEngine.get() ));
45}
46
47/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void WriteToDocument(bool bSizeColsRows=false, double nOutputFactor=1.0, SvNumberFormatter *pFormatter=nullptr, bool bConvertDate=true, bool bConvertScientific=true) override
Definition: eeimpars.cxx:115
virtual ErrCode Read(SvStream &rStream, const OUString &rBaseURL) override
Definition: eeimpars.cxx:78
std::unique_ptr< ScTabEditEngine > mpEngine
Definition: eeimport.hxx:41
virtual ScRange GetRange() override
Definition: eeimport.hxx:55
std::unique_ptr< ScEEParser > mpParser
Definition: eeimport.hxx:43
virtual std::unique_ptr< ScEEAbsImport > CreateRTFImport(ScDocument *pDoc, const ScRange &rRange) override
Definition: rtfimp.cxx:36
virtual ErrCode ScImportRTF(SvStream &, const OUString &rBaseURL, ScDocument *, ScRange &rRange) override
Definition: rtfimp.cxx:26
ScRTFImport(ScDocument *pDoc, const ScRange &rRange)
Definition: rtfimp.cxx:41
ScAddress aEnd
Definition: address.hxx:498