]> git.lyx.org Git - lyx.git/blob - src/mathed/math_liminset.h
enable insertion of spaces in all \textxxx modes.
[lyx.git] / src / mathed / math_liminset.h
1 // -*- C++ -*-
2 #ifndef MATH_LIMINSET_H
3 #define MATH_LIMINSET_H
4
5 // lim_{x->x0} f(x) in one block
6 // for interfacing external programs
7
8 #include "math_nestinset.h"
9
10 class MathLimInset : public MathNestInset {
11 public:
12         ///
13         MathLimInset(MathArray const & f, MathArray const & x, MathArray const & x0);
14         ///
15         MathInset * clone() const;
16         ///
17         void metrics(MathMetricsInfo & mi) const;
18         ///
19         void draw(MathPainterInfo & pi, int x, int y) const;
20
21         ///
22         void normalize(NormalStream &) const;
23         ///
24         void maplize(MapleStream &) const;
25         ///
26         void mathematicize(MathematicaStream &) const;
27         ///
28         void mathmlize(MathMLStream &) const;
29         ///
30         void write(WriteStream & os) const;
31 };
32
33 #endif