mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
2a5ab60ce8
Some mathed internal renamings to prepare further IU git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7173 a592a061-630c-0410-9148-cb99ea01b6c8
42 lines
815 B
C++
42 lines
815 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_EXFUNCINSET_H
|
|
#define MATH_EXFUNCINSET_H
|
|
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
// f(x) in one block (as opposed to 'f','(','x',')' or 'f','x')
|
|
// for interfacing external programs
|
|
|
|
class MathExFuncInset : public MathNestInset {
|
|
public:
|
|
///
|
|
explicit MathExFuncInset(string const & name);
|
|
///
|
|
MathExFuncInset(string const & name, MathArray const & ar);
|
|
///
|
|
InsetBase * clone() const;
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
string name() const;
|
|
|
|
///
|
|
void maple(MapleStream &) const;
|
|
///
|
|
void maxima(MaximaStream &) const;
|
|
///
|
|
void mathematica(MathematicaStream &) const;
|
|
///
|
|
void mathmlize(MathMLStream &) const;
|
|
///
|
|
void octave(OctaveStream &) const;
|
|
|
|
private:
|
|
///
|
|
string const name_;
|
|
};
|
|
#endif
|