A bit more re-organization.
[lyx.git] / src / mathed / InsetMathExFunc.h
blobfb6dda8b360e2e84f7b68cab4bebcc1d98ee47fc
1 // -*- C++ -*-
2 /**
3 * \file InsetMathExFunc.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author André Pönitz
9 * Full author contact details are available in file CREDITS.
12 #ifndef MATH_EXFUNCINSET_H
13 #define MATH_EXFUNCINSET_H
16 #include "InsetMathNest.h"
18 #include <string>
21 namespace lyx {
23 // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x')
24 // for interfacing external programs
26 class InsetMathExFunc : public InsetMathNest {
27 public:
28 ///
29 InsetMathExFunc(Buffer * buf, docstring const & name);
30 ///
31 InsetMathExFunc(Buffer * buf, docstring const & name, MathData const & ar);
32 ///
33 void metrics(MetricsInfo & mi, Dimension & dim) const;
34 ///
35 void draw(PainterInfo & pi, int x, int y) const;
36 ///
37 docstring name() const;
39 ///
40 void maple(MapleStream &) const;
41 ///
42 void maxima(MaximaStream &) const;
43 ///
44 void mathematica(MathematicaStream &) const;
45 ///
46 void mathmlize(MathStream &) const;
47 ///
48 void octave(OctaveStream &) const;
49 ///
50 InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }
52 private:
53 virtual Inset * clone() const;
54 ///
55 docstring const name_;
58 } // namespace lyx
60 #endif