]> git.lyx.org Git - lyx.git/blob - src/mathed/math_exfuncinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_exfuncinset.h
1 // -*- C++ -*-
2 #ifndef MATH_EXFUNCINSET_H
3 #define MATH_EXFUNCINSET_H
4
5
6 #include "math_nestinset.h"
7
8 // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x')
9 // for interfacing external programs
10
11 class MathExFuncInset : public MathNestInset {
12 public:
13         ///
14         explicit MathExFuncInset(string const & name);
15         ///
16         MathExFuncInset(string const & name, MathArray const & ar);
17         ///
18         MathInset * clone() const;
19         ///
20         void metrics(MathMetricsInfo & mi) const;
21         ///
22         void draw(MathPainterInfo & pi, int x, int y) const;
23         ///
24         string name() const;
25
26         ///
27         void maple(MapleStream &) const;
28         ///
29         void maxima(MaximaStream &) const;
30         ///
31         void mathematica(MathematicaStream &) const;
32         ///
33         void mathmlize(MathMLStream &) const;
34         ///
35         void octave(OctaveStream &) const;
36
37 private:
38         ///
39         string const name_;
40 };
41 #endif