]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathExFunc.h
Replace boost::scoped_ptr with unique_ptr
[lyx.git] / src / mathed / InsetMathExFunc.h
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.
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 "InsetMathNest.h"
17
18
19 namespace lyx {
20
21 // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x')
22 // for interfacing external programs
23
24 class InsetMathExFunc : public InsetMathNest {
25 public:
26         ///
27         InsetMathExFunc(Buffer * buf, docstring const & name);
28         ///
29         InsetMathExFunc(Buffer * buf, docstring const & name, MathData const & ar);
30         ///
31         void metrics(MetricsInfo & mi, Dimension & dim) const;
32         ///
33         void draw(PainterInfo & pi, int x, int y) const;
34         ///
35         docstring name() const;
36
37         ///
38         void maple(MapleStream &) const;
39         ///
40         void maxima(MaximaStream &) const;
41         ///
42         void mathematica(MathematicaStream &) const;
43         ///
44         void mathmlize(MathStream &) const;
45         ///
46         void htmlize(HtmlStream &) const;
47         ///
48         void octave(OctaveStream &) const;
49         ///
50         InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }
51
52 private:
53         virtual Inset * clone() const;
54         ///
55         docstring const name_;
56 };
57
58 } // namespace lyx
59
60 #endif