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