]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathDecoration.h
Fix CSS
[lyx.git] / src / mathed / InsetMathDecoration.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathDecoration.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alejandro Aguilar Sierra
8  * \author André Pönitz
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef MATH_DECORATIONINSET_H
14 #define MATH_DECORATIONINSET_H
15
16 #include "InsetMathNest.h"
17
18
19 namespace lyx {
20
21 class latexkeys;
22
23 /// Decorations and accents over (below) a math object
24 class InsetMathDecoration : public InsetMathNest {
25 public:
26         ///
27         explicit InsetMathDecoration(Buffer * buf, latexkeys const * key);
28         ///
29         mode_type currentMode() const override;
30         ///
31         void draw(PainterInfo &, int x, int y) const override;
32         ///
33         void write(TeXMathStream & os) const override;
34         ///
35         void metrics(MetricsInfo & mi, Dimension & dim) const override;
36         ///
37         void normalize(NormalStream & os) const override;
38         ///
39         void infoize(odocstream & os) const override;
40         ///
41         MathClass mathClass() const override;
42         /// The default limits value in \c display style
43         Limits defaultLimits(bool display) const override;
44         /// whether the inset has limit-like sub/superscript
45         Limits limits() const override { return limits_; }
46         /// sets types of sub/superscripts
47         void limits(Limits lim) override { limits_ = lim; }
48         ///
49         void validate(LaTeXFeatures & features) const override;
50         ///
51         InsetCode lyxCode() const override { return MATH_DECORATION_CODE; }
52         ///
53         void mathmlize(MathMLStream &) const override;
54         ///
55         void htmlize(HtmlStream &) const override;
56 private:
57         Inset * clone() const override;
58         ///
59         bool upper() const;
60         ///
61         bool protect() const;
62         /// is it a wide decoration?
63         bool wide() const;
64
65         ///
66         latexkeys const * key_;
67         ///
68         Limits limits_ = AUTO_LIMITS;
69         // FIXME: this should depend on BufferView
70         /// height cache of deco
71         mutable int dh_ = 0;
72         /// vertical offset cache of deco
73         mutable int dy_ = 0;
74         /// width for non-wide deco
75         mutable int dw_ = 0;
76 };
77
78 } // namespace lyx
79
80 #endif