2010-10-14 01:30:41 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 06:47:05 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 06:47:05 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 06:47:05 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 06:47:05 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 06:47:05 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 06:47:05 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2007-05-25 06:13:55 -05:00
|
|
|
|
|
|
|
#ifndef MATHTYPE_HXX
|
2000-09-18 11:07:07 -05:00
|
|
|
#define MATHTYPE_HXX
|
|
|
|
|
|
|
|
#include "node.hxx"
|
2005-07-12 05:11:00 -05:00
|
|
|
#include "eqnolefilehdr.hxx"
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2004-10-04 12:04:07 -05:00
|
|
|
#include <sot/storage.hxx>
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2001-06-27 07:47:14 -05:00
|
|
|
#include <set>
|
|
|
|
|
2004-10-04 12:04:07 -05:00
|
|
|
class SfxMedium;
|
|
|
|
|
2001-06-27 07:47:14 -05:00
|
|
|
class MathTypeFont
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
sal_uInt8 nTface;
|
|
|
|
sal_uInt8 nStyle;
|
|
|
|
MathTypeFont() : nTface(0),nStyle(0) {}
|
|
|
|
MathTypeFont(sal_uInt8 nFace) : nTface(nFace),nStyle(0) {}
|
|
|
|
void AppendStyleToText(String &rS);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct LessMathTypeFont
|
|
|
|
{
|
|
|
|
sal_Bool operator() (const MathTypeFont &rValue1,
|
|
|
|
const MathTypeFont &rValue2) const
|
|
|
|
{
|
|
|
|
return rValue1.nTface < rValue2.nTface;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef ::std::set< MathTypeFont, LessMathTypeFont > MathTypeFontSet;
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
class MathType
|
|
|
|
{
|
|
|
|
public:
|
2007-05-25 06:13:55 -05:00
|
|
|
MathType(String &rIn) :
|
|
|
|
rRet(rIn), nHAlign(0), nVAlign(0), nDefaultSize(12),
|
|
|
|
nLSize(0), nDSize(0), nCurSize(0), nLastSize(0), bIsSilent(sal_False)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
MathType(String &rIn,SmNode *pIn) :
|
|
|
|
rRet(rIn), pTree(pIn), nHAlign(2), nVAlign(0), nInsertion(0), nDefaultSize(12),
|
|
|
|
nLSize(0), nDSize(0), nCurSize(0), nLastSize(0), nSpec(0), bIsSilent(sal_False)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
2007-01-30 08:21:17 -06:00
|
|
|
|
2004-10-04 12:04:07 -05:00
|
|
|
int Parse( SotStorage* pStor );
|
|
|
|
int ConvertFromStarMath( SfxMedium& rMedium );
|
2005-07-12 05:11:00 -05:00
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
private:
|
|
|
|
/*Ver 2 Header*/
|
2001-06-27 07:47:14 -05:00
|
|
|
sal_uInt8 nVersion;
|
|
|
|
sal_uInt8 nPlatform;
|
|
|
|
sal_uInt8 nProduct;
|
|
|
|
sal_uInt8 nProdVersion;
|
|
|
|
sal_uInt8 nProdSubVersion;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2007-05-25 06:13:55 -05:00
|
|
|
SvStorageStream *pS;
|
|
|
|
|
2001-06-27 07:47:14 -05:00
|
|
|
void Init();
|
|
|
|
|
2007-05-25 06:13:55 -05:00
|
|
|
int HandleRecords(int nLevel=0,sal_uInt8 nSelector=0xFF,
|
|
|
|
sal_uInt8 nVariation=0xFF,int nRows=0,int nCols=0);
|
2001-06-27 07:47:14 -05:00
|
|
|
sal_Bool HandleSize(sal_Int16 nLSize,sal_Int16 nDSize, int &rSetSize);
|
|
|
|
void HandleAlign(sal_uInt8 nHAlign,sal_uInt8 nVAlign, int &rSetAlign);
|
|
|
|
int HandlePile(int &rSetAlign,int nLevel,sal_uInt8 nSelector,
|
|
|
|
sal_uInt8 nVariation);
|
|
|
|
int HandleMatrix(int nLevel,sal_uInt8 nSelector,sal_uInt8 nVariarion);
|
|
|
|
void HandleMatrixSeperator(int nMatrixRows,int nMatrixCols,int &rCurCol,
|
|
|
|
int &rCurRow);
|
|
|
|
int HandleTemplate(int nLevel,sal_uInt8 &rSelector,sal_uInt8 &rVariation,
|
2001-06-07 06:12:17 -05:00
|
|
|
xub_StrLen &rLastTemplateBracket);
|
2000-09-18 11:07:07 -05:00
|
|
|
void HandleEmblishments();
|
|
|
|
void HandleSetSize();
|
2001-06-27 07:47:14 -05:00
|
|
|
int HandleChar(xub_StrLen &rTextStart,int &rSetSize,int nLevel,
|
|
|
|
sal_uInt8 nTag,sal_uInt8 nSelector,sal_uInt8 nVariation,
|
|
|
|
sal_Bool bSilent);
|
2004-02-04 05:11:03 -06:00
|
|
|
void HandleNudge();
|
2001-06-27 07:47:14 -05:00
|
|
|
int xfLMOVE(sal_uInt8 nTest) {return nTest&0x80;}
|
|
|
|
int xfAUTO(sal_uInt8 nTest) {return nTest&0x10;}
|
|
|
|
int xfEMBELL(sal_uInt8 nTest) {return nTest&0x20;}
|
|
|
|
int xfNULL(sal_uInt8 nTest) {return nTest&0x10;}
|
|
|
|
int xfLSPACE(sal_uInt8 nTest) {return nTest&0x40;}
|
|
|
|
int xfRULER(sal_uInt8 nTest) {return nTest&0x20;}
|
|
|
|
|
|
|
|
sal_uInt8 HandleNodes(SmNode *pNode,int nLevel=0);
|
|
|
|
int StartTemplate(sal_uInt16 nSelector,sal_uInt16 nVariation=0);
|
2000-09-18 11:07:07 -05:00
|
|
|
void EndTemplate(int nOldPendingAttributes);
|
|
|
|
void HandleSmMatrix(SmMatrixNode *pMatrix,int nLevel);
|
|
|
|
void HandleTable(SmNode *pNode,int nLevel);
|
|
|
|
void HandleRoot(SmNode *pNode,int nLevel);
|
|
|
|
void HandleSubSupScript(SmNode *pNode,int nLevel);
|
2001-06-27 07:47:14 -05:00
|
|
|
sal_uInt8 HandleCScript(SmNode *pNode,SmNode *pContent,int nLevel,
|
|
|
|
ULONG *pPos=NULL,sal_Bool bTest=TRUE);
|
2000-09-18 11:07:07 -05:00
|
|
|
void HandleFractions(SmNode *pNode,int nLevel);
|
|
|
|
void HandleBrace(SmNode *pNode,int nLevel);
|
|
|
|
void HandleVerticalBrace(SmNode *pNode,int nLevel);
|
|
|
|
void HandleOperator(SmNode *pNode,int nLevel);
|
2001-06-27 07:47:14 -05:00
|
|
|
sal_Bool HandleLim(SmNode *pNode,int nLevel);
|
2000-09-18 11:07:07 -05:00
|
|
|
void HandleMAlign(SmNode *pNode,int nLevel);
|
|
|
|
void HandleMath(SmNode *pNode,int nLevel);
|
|
|
|
void HandleText(SmNode *pNode,int nLevel);
|
|
|
|
void HandleAttributes(SmNode *pNode,int nLevel);
|
2001-06-27 07:47:14 -05:00
|
|
|
void TypeFaceToString(String &rRet,sal_uInt8 nFace);
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2007-05-25 06:13:55 -05:00
|
|
|
String &rRet;
|
|
|
|
SmNode *pTree;
|
|
|
|
|
|
|
|
sal_uInt8 nHAlign;
|
|
|
|
sal_uInt8 nVAlign;
|
|
|
|
|
|
|
|
int nPendingAttributes;
|
|
|
|
ULONG nInsertion;
|
|
|
|
|
|
|
|
sal_Int16 aSizeTable[7];
|
|
|
|
sal_Int16 nDefaultSize;
|
|
|
|
sal_Int16 nLSize;
|
|
|
|
sal_Int16 nDSize;
|
|
|
|
sal_Int16 nCurSize;
|
|
|
|
sal_Int16 nLastSize;
|
|
|
|
sal_uInt8 nSpec;
|
|
|
|
sal_Bool bIsSilent, bIsReInterpBrace;
|
|
|
|
String sPost;
|
|
|
|
xub_StrLen nPostSup;
|
|
|
|
xub_StrLen nPostlSup;
|
|
|
|
sal_uInt8 nTypeFace;
|
|
|
|
MathTypeFontSet aUserStyles;
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
enum MTOKENS {END,LINE,CHAR,TMPL,PILE,MATRIX,EMBEL,RULER,FONT,SIZE};
|
|
|
|
enum MTEMPLATES
|
|
|
|
{
|
|
|
|
tmANGLE,tmPAREN,tmBRACE,tmBRACK,tmBAR,tmDBAR,tmFLOOR,tmCEILING,
|
|
|
|
tmLBLB,tmRBRB,tmRBLB,tmLBRP,tmLPRB,tmROOT,tmFRACT,tmSCRIPT,tmUBAR,
|
|
|
|
tmOBAR,tmLARROW,tmRARROW,tmBARROW,tmSINT,tmDINT,tmTINT,tmSSINT,
|
|
|
|
tmDSINT,tmTSINT,tmUHBRACE,tmLHBRACE,tmSUM
|
|
|
|
};
|
2001-01-18 07:57:19 -06:00
|
|
|
public:
|
|
|
|
static sal_Bool LookupChar(sal_Unicode nChar,String &rRet,
|
2001-06-27 07:47:14 -05:00
|
|
|
sal_uInt8 nVersion=3,sal_uInt8 nTypeFace=0);
|
2000-09-18 11:07:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
2010-10-14 01:30:41 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|