]> git.lyx.org Git - lyx.git/blob - src/mathed/math_undersetinset.h
split inset -> inset + updatableinset
[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
13 #include "math_fracbase.h"
14
15 /// Inset for underset
16 class MathUndersetInset : public MathFracbaseInset {
17 public:
18         ///
19         MathUndersetInset();
20         ///
21         MathInset * clone() const;
22         ///
23         void metrics(MathMetricsInfo & st) const;
24         ///
25         void draw(MathPainterInfo &, int x, int y) const;
26
27         ///
28         void write(WriteStream & os) const;
29         ///
30         void normalize(NormalStream &) const;
31 };
32
33 #endif