summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/inc/lotimpop.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/lotimpop.hxx')
-rw-r--r--sc/source/filter/inc/lotimpop.hxx136
1 files changed, 136 insertions, 0 deletions
diff --git a/sc/source/filter/inc/lotimpop.hxx b/sc/source/filter/inc/lotimpop.hxx
new file mode 100644
index 000000000..916cbda11
--- /dev/null
+++ b/sc/source/filter/inc/lotimpop.hxx
@@ -0,0 +1,136 @@
+/* -*- 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 .
+ */
+
+#pragma once
+
+#include <rtl/ustring.hxx>
+
+#include "imp_op.hxx"
+#include "ftools.hxx"
+#include "lotform.hxx"
+#include "lotattr.hxx"
+
+struct LotusContext;
+
+class ImportLotus : public ImportTyp
+{
+private:
+ SvStream* pIn; // needed due to multiple Read()!
+ LotusToSc aConv;
+ sal_uInt16 nTab; // currently handled table
+ sal_Int32 nExtTab;
+
+ // in WK?-Datei
+ void Bof(); // 0x0000 00
+ bool BofFm3(); // 0x0000 00
+ void Columnwidth( sal_uInt16 nRecLen ); // 0x0007 07
+ void Hiddencolumn( sal_uInt16 nRecLen ); // 0x0008 08
+ void Userrange(); // 0x0009 09
+ void Errcell(); // 0x0014 20
+ void Nacell(); // 0x0015 21
+ void Labelcell(); // 0x0016 22
+ void Numbercell(); // 0x0017 23
+ void Smallnumcell(); // 0x0018 24
+ void Formulacell( sal_uInt16 nRecLen ); // 0x0019 25
+ // 0x001b 27 special
+ void NamedSheet(); // 14000
+ void RowPresentation( sal_uInt16 nRecLen ); // 2007
+
+ // in FM? file
+ void Font_Face(); // 174
+ void Font_Type(); // 176
+ void Font_Ysize(); // 177
+ void Row_( const sal_uInt16 nRecLen ); // 197 ?
+
+ inline void Read( ScAddress& );
+ inline void Read( ScRange& );
+ // for addresses/ranges in the format row(16)/tab(8)/col(8)
+ inline void Read( char& );
+ inline void Read( sal_uInt8& );
+ inline void Read( sal_uInt16& );
+ inline void Read( sal_Int16& );
+ inline void Read( double& ); // read 10-byte IEEE
+ inline void Read( LotAttrWK3& );
+ void Read( OUString& ); // read in 0-terminated string
+ inline void Skip( const sal_uInt16 nNumBytes );
+
+public:
+ ImportLotus(LotusContext& rContext, SvStream&, rtl_TextEncoding eSrc);
+
+ virtual ~ImportLotus() override;
+
+ ErrCode parse(); //parse + CalcAfterLoad
+ ErrCode Read();
+ ErrCode Read( SvStream& ); // special for *.fm3 files
+};
+
+inline void ImportLotus::Read( ScAddress& rAddr )
+{
+ sal_uInt16 nRow;
+ pIn->ReadUInt16( nRow );
+ rAddr.SetRow( static_cast<SCROW>(nRow) );
+ sal_uInt8 nByte;
+ pIn->ReadUChar( nByte );
+ rAddr.SetTab( static_cast<SCTAB>(nByte) );
+ pIn->ReadUChar( nByte );
+ rAddr.SetCol( static_cast<SCCOL>(nByte) );
+}
+
+inline void ImportLotus::Read( ScRange& rRange )
+{
+ Read( rRange.aStart );
+ Read( rRange.aEnd );
+}
+
+inline void ImportLotus::Read( char& r )
+{
+ pIn->ReadChar( r );
+}
+
+inline void ImportLotus::Read( sal_uInt8& r )
+{
+ pIn->ReadUChar( r );
+}
+
+inline void ImportLotus::Read( sal_uInt16& r )
+{
+ pIn->ReadUInt16( r );
+}
+
+inline void ImportLotus::Read( sal_Int16& r )
+{
+ pIn->ReadInt16( r );
+}
+
+inline void ImportLotus::Read( double& r )
+{
+ ScfTools::ReadLongDouble(*pIn, r);
+}
+
+inline void ImportLotus::Read( LotAttrWK3& r )
+{
+ pIn->ReadUChar( r.nFont ).ReadUChar( r.nFontCol ).ReadUChar( r.nBack ).ReadUChar( r.nLineStyle );
+}
+
+inline void ImportLotus::Skip( const sal_uInt16 n )
+{
+ pIn->SeekRel( n );
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */