LibreOffice Module sc (master) 1
rtfparse.hxx
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#pragma once
21
22#include "eeparser.hxx"
23
24#include <vector>
25#include <memory>
27
29{
32 sal_uInt16 nTwips; // right border of cell
33 SCCOL nColOverlap; // MergeCell if >1, merged cells if 0
34
36 : aItemSet(*pPool)
37 , nCol(0)
38 , nTwips(0)
39 , nColOverlap(1)
40 {
41 }
42};
43
44class ScRTFColTwips : public o3tl::sorted_vector<sal_uLong> {};
45
46class EditEngine;
47
48class ScRTFParser : public ScEEParser
49{
50private:
51 typedef std::vector< std::unique_ptr<ScRTFCellDefault> > DefaultList;
52
54 size_t mnCurPos;
55
57 std::unique_ptr<ScRTFCellDefault> pInsDefault;
61 sal_uInt16 nLastWidth;
62 bool bNewDef;
63
64 DECL_LINK( RTFImportHdl, RtfImportInfo&, void );
65 inline void NextRow();
66 void EntryEnd( ScEEParseEntry*, const ESelection& );
67 void ProcToken( RtfImportInfo* );
68 void ColAdjust();
69 bool SeekTwips( sal_uInt16 nTwips, SCCOL* pCol );
70 void NewCellRow();
71
72public:
74 virtual ~ScRTFParser() override;
75 virtual ErrCode Read( SvStream&, const OUString& rBaseURL ) override;
76};
77
78/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScRTFCellDefault * pActDefault
Definition: rtfparse.hxx:58
bool bNewDef
Definition: rtfparse.hxx:62
ScRTFParser(EditEngine *)
Definition: rtfparse.cxx:35
void ColAdjust()
Definition: rtfparse.cxx:126
std::unique_ptr< ScRTFCellDefault > pInsDefault
Definition: rtfparse.hxx:57
void NewCellRow()
Definition: rtfparse.cxx:198
bool SeekTwips(sal_uInt16 nTwips, SCCOL *pCol)
Definition: rtfparse.cxx:102
ScRTFColTwips aColTwips
Definition: rtfparse.hxx:56
ScRTFCellDefault * pDefMerge
Definition: rtfparse.hxx:59
std::vector< std::unique_ptr< ScRTFCellDefault > > DefaultList
Definition: rtfparse.hxx:51
void EntryEnd(ScEEParseEntry *, const ESelection &)
Definition: rtfparse.cxx:88
void NextRow()
Definition: rtfparse.cxx:96
sal_uInt16 nLastWidth
Definition: rtfparse.hxx:61
virtual ~ScRTFParser() override
Definition: rtfparse.cxx:52
void ProcToken(RtfImportInfo *)
Definition: rtfparse.cxx:262
DefaultList maDefaultList
Definition: rtfparse.hxx:53
sal_uLong nStartAdjust
Definition: rtfparse.hxx:60
virtual ErrCode Read(SvStream &, const OUString &rBaseURL) override
Definition: rtfparse.cxx:58
DECL_LINK(RTFImportHdl, RtfImportInfo &, void)
size_t mnCurPos
Definition: rtfparse.hxx:54
sal_uIntPtr sal_uLong
ScRTFCellDefault(SfxItemPool *pPool)
Definition: rtfparse.hxx:35
sal_uInt16 nTwips
Definition: rtfparse.hxx:32
SfxItemSet aItemSet
Definition: rtfparse.hxx:30
sal_Int16 SCCOL
Definition: types.hxx:21