]> git.lyx.org Git - lyx.git/blob - src/mathed/math_stackrelinset.h
small up/down tweaking
[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  * Full author contact details are available in file CREDITS
15  */
16 class MathStackrelInset : public MathFracbaseInset {
17 public:
18         ///
19         MathStackrelInset();
20         ///
21         MathInset * clone() const;
22         ///
23         void metrics(MathMetricsInfo & mi) const;
24         ///
25         void draw(MathPainterInfo & pi, int x, int y) const;
26
27         ///
28         void write(WriteStream & os) const;
29         ///
30         void normalize(NormalStream &) const;
31 };
32
33 #endif