mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file math_parser.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_PARSER_H
|
|
#define MATH_PARSER_H
|
|
|
|
#include <string>
|
|
|
|
|
|
class MathAtom;
|
|
class MathArray;
|
|
class MathGridInset;
|
|
class LyXLex;
|
|
|
|
|
|
///
|
|
struct latexkeys {
|
|
/// name of the macro or primitive
|
|
std::string name;
|
|
/// name of a inset that handles that macro
|
|
std::string inset;
|
|
/// position of the ting in a font
|
|
std::string draw;
|
|
/// operator/..., fontname e
|
|
std::string extra;
|
|
/// how is this called as XML entity?
|
|
std::string xmlname;
|
|
};
|
|
|
|
|
|
/// check whether this is a well-known (La)TeX macro or primitive
|
|
latexkeys const * in_word_set(std::string const & str);
|
|
|
|
/// parse formula from a string
|
|
bool mathed_parse_normal(MathAtom &, std::string const &);
|
|
/// ... a stream
|
|
bool mathed_parse_normal(MathAtom &, std::istream &);
|
|
/// ... the LyX lexxer
|
|
bool mathed_parse_normal(MathAtom &, LyXLex &);
|
|
/// ... the LyX lexxer
|
|
void mathed_parse_normal(MathGridInset &, std::string const &);
|
|
|
|
/// parse a single cell from a string
|
|
void mathed_parse_cell(MathArray & ar, std::string const &);
|
|
/// ... a stream
|
|
void mathed_parse_cell(MathArray & ar, std::istream &);
|
|
|
|
#endif
|