]> git.lyx.org Git - lyx.git/blob - src/mathed/math_exfuncinset.h
macro rework
[lyx.git] / src / mathed / math_exfuncinset.h
1 // -*- C++ -*-
2 /**
3  * \file math_exfuncinset.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_EXFUNCINSET_H
13 #define MATH_EXFUNCINSET_H
14
15
16 #include "math_nestinset.h"
17
18 #include <string>
19
20
21 // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x')
22 // for interfacing external programs
23
24 class MathExFuncInset : public MathNestInset {
25 public:
26         ///
27         explicit MathExFuncInset(std::string const & name);
28         ///
29         MathExFuncInset(std::string const & name, MathArray const & ar);
30         ///
31         virtual std::auto_ptr<InsetBase> clone() const;
32         ///
33         void metrics(MetricsInfo & mi, Dimension & dim) const;
34         ///
35         void draw(PainterInfo & pi, int x, int y) const;
36         ///
37         std::string name() const;
38
39         ///
40         void maple(MapleStream &) const;
41         ///
42         void maxima(MaximaStream &) const;
43         ///
44         void mathematica(MathematicaStream &) const;
45         ///
46         void mathmlize(MathMLStream &) const;
47         ///
48         void octave(OctaveStream &) const;
49
50 private:
51         ///
52         std::string const name_;
53 };
54 #endif