/************************************************************** * * 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 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef SC_LOTFORM_HXX #define SC_LOTFORM_HXX #include "formel.hxx" #include enum FUNC_TYPE { FT_Return = 0, // End Formula FT_FuncFix0, // Funktion, 0 Parameter FT_FuncFix1, // Funktion, 0 Parameter FT_FuncFix2, // Funktion, 0 Parameter FT_FuncFix3, // Funktion, 0 Parameter FT_FuncFix4, // Funktion, 0 Parameter FT_FuncVar, // ~, var. P. FT_Neg, // Negierung FT_Op, // Operator FT_NotImpl, // nicht implementiert FT_ConstFloat, // Double (8-Byte) FT_Variable, // Single Ref FT_Range, // Double Ref FT_Braces, // Klammmern FT_ConstInt, // Integer FT_ConstString, // String FT_NOP, // nichts // zusaetzlich ab WK3 FT_Cref, // Cell Reference FT_Rref, // Range Reference FT_Nrref, // Named range reference FT_Absnref, // Absolut named range FT_Erref, // Err range reference FT_Ecref, // Err cell reference FT_Econstant, // Err constant FT_Splfunc, // SPLfunction FT_Const10Float,// Float (10-Byte) FT_Snum // Const Short Num // fuer 'Problemfaelle' beim Import }; class LotusToSc : public LotusConverterBase { private: CharSet eSrcChar; TokenId nAddToken; // ')+1.0' TokenId nSubToken; // ~ TokenId n0Token; // '0.0'; // --------------------------------------------------------------- static FUNC_TYPE IndexToType( sal_uInt8 ); static DefTokenId IndexToToken( sal_uInt8 ); static FUNC_TYPE IndexToTypeWK123( sal_uInt8 ); static DefTokenId IndexToTokenWK123( sal_uInt8 ); void DoFunc( DefTokenId eOc, sal_uInt8 nAnz, const sal_Char* pExtName ); void LotusRelToScRel( sal_uInt16 nCol, sal_uInt16 nRow, ScSingleRefData& rSRD ); sal_Bool bWK3; // alternative Codeumsetzung statt fuer < WK1 sal_Bool bWK123; // alternative for 123 // ------------------------------------------------------------------- void ReadSRD( ScSingleRefData& rSRD, sal_uInt8 nFlags ); inline void ReadCRD( ScComplexRefData& rCRD, sal_uInt8 nFlags ); void IncToken( TokenId &rParam ); // ACHTUNG: hier wird die aktuelle Token-Kette im Pool // mit '()+1' fortgeschrieben und mit // Store() abgeschlossen! void DecToken( TokenId& rParam ); // ACHTUNG: ~ void NegToken( TokenId& rParam ); // ACHTUNG: wie ~, nur wird '-()' gebildet public: LotusToSc( SvStream& aStr, CharSet eSrc, sal_Bool b ); virtual ConvErr Convert( const ScTokenArray*& rpErg, sal_Int32& nRest, const FORMULA_TYPE eFT = FT_CellFormula ); void Reset( const ScAddress& rEingPos ); inline void SetWK3( void ); private: using LotusConverterBase::Reset; }; inline void LotusToSc::ReadCRD( ScComplexRefData& rCRD, sal_uInt8 nRelBit ) { // erster Teil ReadSRD( rCRD.Ref1, nRelBit ); // zweiter Teil ReadSRD( rCRD.Ref2, nRelBit >> 3 ); } inline void LotusToSc::SetWK3( void ) { bWK3 = sal_True; } #endif