]> git.lyx.org Git - lyx.git/blob - src/mathed/math_stackrelinset.h
5f6b8fe9805fbdb7ed4f0e5d3002f86581ca5b83
[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 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /** Stackrel objects
12     \author André Pönitz
13  */
14 class MathStackrelInset : public MathFracbaseInset {
15 public:
16         ///
17         MathStackrelInset();
18         ///
19         MathInset * clone() const;
20         ///
21         void metrics(MathMetricsInfo & st) const;
22         ///
23         void draw(MathPainterInfo &, int x, int y) const;
24
25         ///
26         void write(WriteStream & os) const;
27         ///
28         void normalize(NormalStream &) const;
29 };
30
31 #endif