]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathUnderset.h
Display equation/theorem numbers in insert cross reference dialog.
[lyx.git] / src / mathed / InsetMathUnderset.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathUnderset.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_UNDERSETINSET_H
13 #define MATH_UNDERSETINSET_H
14
15
16 #include "InsetMathFrac.h"
17
18
19 namespace lyx {
20
21 /// Inset for underset
22 class InsetMathUnderset : public InsetMathFracBase {
23 public:
24         ///
25         explicit InsetMathUnderset(Buffer * buf) : InsetMathFracBase(buf) {}
26         ///
27         void metrics(MetricsInfo & mi, Dimension & dim) const override;
28         ///
29         void draw(PainterInfo & pi, int x, int y) const override;
30         ///
31         bool idxFirst(Cursor &) const override;
32         ///
33         bool idxLast(Cursor &) const override;
34         ///
35         void write(TeXMathStream & ws) const override;
36         ///
37         void normalize(NormalStream & ns) const override;
38         ///
39         void mathmlize(MathMLStream &) const override;
40         ///
41         void htmlize(HtmlStream &) const override;
42         ///
43         void validate(LaTeXFeatures & features) const override;
44         ///
45         InsetCode lyxCode() const override { return MATH_UNDERSET_CODE; }
46
47 private:
48         Inset * clone() const override;
49 };
50
51
52
53 } // namespace lyx
54 #endif