]> git.lyx.org Git - lyx.git/blob - src/mathed/math_exfuncinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[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         void metrics(MetricsInfo & mi, Dimension & dim) const;
32         ///
33         void draw(PainterInfo & pi, int x, int y) const;
34         ///
35         std::string 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(MathMLStream &) const;
45         ///
46         void octave(OctaveStream &) const;
47
48 private:
49         virtual std::auto_ptr<InsetBase> doClone() const;
50         ///
51         std::string const name_;
52 };
53 #endif