]> git.lyx.org Git - lyx.git/blob - src/mathed/math_lefteqninset.h
small up/down tweaking
[lyx.git] / src / mathed / math_lefteqninset.h
1 // -*- C++ -*-
2 #ifndef MATH_LEFTEQNINSET_H
3 #define MATH_LEFTEQNINSET_H
4
5 #include "math_nestinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /// Support for LaTeX's \\lefteqn command
12
13 class MathLefteqnInset : public MathNestInset {
14 public:
15         ///
16         MathLefteqnInset();
17         ///
18         MathInset * clone() const;
19         ///
20         string name() const;
21         ///
22         void metrics(MathMetricsInfo & mi) const;
23         ///
24         void draw(MathPainterInfo & pi, int x, int y) const;
25         ///
26         void infoize(std::ostream & os) const;
27 };
28 #endif