]> git.lyx.org Git - lyx.git/blob - src/mathed/math_stackrelinset.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_stackrelinset.h
1 // -*- C++ -*-
2 #ifndef MATH_STACKRELINSET_H
3 #define MATH_STACKRELINSET_H
4
5 #include "math_fracbase.h"
6
7
8 /** Stackrel objects
9  *  \author André Pönitz
10  *
11  * Full author contact details are available in file CREDITS
12  */
13 class MathStackrelInset : public MathFracbaseInset {
14 public:
15         ///
16         MathStackrelInset();
17         ///
18         InsetBase * clone() const;
19         ///
20         void metrics(MetricsInfo & mi, Dimension & dim) const;
21         ///
22         void draw(PainterInfo & pi, int x, int y) const;
23
24         ///
25         void write(WriteStream & os) const;
26         ///
27         void normalize(NormalStream &) const;
28 };
29
30 #endif