1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_SOURCE_FILTER_INC_RTFPARSE_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_RTFPARSE_HXX
23 #include "eeparser.hxx"
27 #include <o3tl/sorted_vector.hxx>
29 struct ScRTFCellDefault
33 sal_uInt16 nTwips
; // rechter Rand der Zelle
34 SCCOL nColOverlap
; // MergeCell wenn >1, merged cells wenn 0
36 ScRTFCellDefault( SfxItemPool
* pPool
)
45 class ScRTFColTwips
: public o3tl::sorted_vector
<sal_uLong
> {};
49 class ScRTFParser
: public ScEEParser
52 typedef std::vector
< std::unique_ptr
<ScRTFCellDefault
> > DefaultList
;
54 DefaultList maDefaultList
;
57 ScRTFColTwips
* pColTwips
;
58 ScRTFCellDefault
* pInsDefault
;
59 ScRTFCellDefault
* pActDefault
;
60 ScRTFCellDefault
* pDefMerge
;
61 sal_uLong nStartAdjust
;
62 sal_uInt16 nLastWidth
;
65 DECL_LINK_TYPED( RTFImportHdl
, ImportInfo
&, void );
66 inline void NextRow();
67 void EntryEnd( ScEEParseEntry
*, const ESelection
& );
68 void ProcToken( ImportInfo
* );
70 bool SeekTwips( sal_uInt16 nTwips
, SCCOL
* pCol
);
71 void NewCellRow( ImportInfo
* );
74 ScRTFParser( EditEngine
* );
75 virtual ~ScRTFParser();
76 virtual sal_uLong
Read( SvStream
&, const OUString
& rBaseURL
) override
;
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */