Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / source / filter / inc / lotimpop.hxx
blob4d9fe6f38e5acc6690e8e01e77ef09aff88adf80
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_LOTIMPOP_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_LOTIMPOP_HXX
23 #include <rtl/ustring.hxx>
25 #include "imp_op.hxx"
26 #include "flttypes.hxx"
27 #include "ftools.hxx"
28 #include "lotform.hxx"
29 #include "lotattr.hxx"
31 class ScFormulaCell;
32 class LotusFontBuffer;
33 struct LotusContext;
35 class ImportLotus : public ImportTyp
37 private:
38 SvStream* pIn; // benoetigt wegen multiplem Read()!
39 LotusToSc aConv;
40 sal_uInt16 nTab; // z.Zt. bearbeitete Tabelle
41 sal_Int32 nExtTab;
43 // in WK?-Datei
44 void Bof(); // 0x0000 00
45 bool BofFm3(); // 0x0000 00
46 void Columnwidth( sal_uInt16 nRecLen ); // 0x0007 07
47 void Hiddencolumn( sal_uInt16 nRecLen ); // 0x0008 08
48 void Userrange(); // 0x0009 09
49 void Errcell(); // 0x0014 20
50 void Nacell(); // 0x0015 21
51 void Labelcell(); // 0x0016 22
52 void Numbercell(); // 0x0017 23
53 void Smallnumcell(); // 0x0018 24
54 void Formulacell( sal_uInt16 nRecLen ); // 0x0019 25
55 // 0x001b 27 special
56 void NamedSheet(); // 14000
57 void RowPresentation( sal_uInt16 nRecLen ); // 2007
59 // in FM?-Datei
60 void Font_Face(); // 174
61 void Font_Type(); // 176
62 void Font_Ysize(); // 177
63 void Row_( const sal_uInt16 nRecLen ); // 197 ?
65 inline void Read( ScAddress& );
66 inline void Read( ScRange& );
67 // fuer Addresses/Ranges im Format Row(16)/Tab(8)/Col(8)
68 inline void Read( sal_Char& );
69 inline void Read( sal_uInt8& );
70 inline void Read( sal_uInt16& );
71 inline void Read( sal_Int16& );
72 inline void Read( double& ); // 10-Byte-IEEE lesen
73 inline void Read( LotAttrWK3& );
74 void Read( OUString& ); // 0-terminierten String einlesen
75 inline void Skip( const sal_uInt16 nNumBytes );
77 public:
78 ImportLotus(LotusContext& rContext, SvStream&, ScDocument*, rtl_TextEncoding eSrc);
80 virtual ~ImportLotus();
82 FltError Read() override;
83 FltError Read( SvStream& ); // special for *.fm3-Dateien
86 inline void ImportLotus::Read( ScAddress& rAddr )
88 sal_uInt16 nRow;
89 pIn->ReadUInt16( nRow );
90 rAddr.SetRow( static_cast<SCROW>(nRow) );
91 sal_uInt8 nByte;
92 pIn->ReadUChar( nByte );
93 rAddr.SetTab( static_cast<SCTAB>(nByte) );
94 pIn->ReadUChar( nByte );
95 rAddr.SetCol( static_cast<SCCOL>(nByte) );
98 inline void ImportLotus::Read( ScRange& rRange )
100 Read( rRange.aStart );
101 Read( rRange.aEnd );
104 inline void ImportLotus::Read( sal_Char& r )
106 pIn->ReadChar( r );
109 inline void ImportLotus::Read( sal_uInt8& r )
111 pIn->ReadUChar( r );
114 inline void ImportLotus::Read( sal_uInt16& r )
116 pIn->ReadUInt16( r );
119 inline void ImportLotus::Read( sal_Int16& r )
121 pIn->ReadInt16( r );
124 inline void ImportLotus::Read( double& r )
126 r = ScfTools::ReadLongDouble( *pIn );
129 inline void ImportLotus::Read( LotAttrWK3& r )
131 pIn->ReadUChar( r.nFont ).ReadUChar( r.nFontCol ).ReadUChar( r.nBack ).ReadUChar( r.nLineStyle );
134 inline void ImportLotus::Skip( const sal_uInt16 n )
136 pIn->SeekRel( n );
139 #endif
141 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */