]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathLefteqn.h
more latin1..utf8 schanges. all of src/* should be utf8 now
[lyx.git] / src / mathed / InsetMathLefteqn.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathLefteqn.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_LEFTEQNINSET_H
13 #define MATH_LEFTEQNINSET_H
14
15 #include "InsetMathNest.h"
16
17
18 namespace lyx {
19
20
21 /// Support for LaTeX's \\lefteqn command
22
23 class InsetMathLefteqn : public InsetMathNest {
24 public:
25         ///
26         InsetMathLefteqn();
27         ///
28         docstring name() const;
29         ///
30         void metrics(MetricsInfo & mi, Dimension & dim) const;
31         ///
32         void draw(PainterInfo & pi, int x, int y) const;
33         ///
34         void infoize(odocstream & os) const;
35 private:
36         virtual Inset * clone() const;
37 };
38
39
40 } // namespace lyx
41 #endif