]> git.lyx.org Git - lyx.git/blob - src/mathed/math_undersetinset.h
small up/down tweaking
[lyx.git] / src / mathed / math_undersetinset.h
1 // -*- C++ -*-
2
3 /** Underset objects
4  *  \author André Pönitz
5  *
6  *  Full author contact details are available in file CREDITS
7  */
8
9 #ifndef MATH_UNDERSETINSET_H
10 #define MATH_UNDERSETINSET_H
11
12 #ifdef __GNUG__
13 #pragma interface
14 #endif
15
16 #include "math_fracbase.h"
17
18 /// Inset for underset
19 class MathUndersetInset : public MathFracbaseInset {
20 public:
21         ///
22         MathUndersetInset();
23         ///
24         MathInset * clone() const;
25         ///
26         void metrics(MathMetricsInfo & st) const;
27         ///
28         void draw(MathPainterInfo &, int x, int y) const;
29
30         ///
31         void write(WriteStream & os) const;
32         ///
33         void normalize(NormalStream &) const;
34 };
35
36 #endif