]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathDecoration.h
adabcd7c04425d6637e2a88f3fdee77983aec810
[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         void draw(PainterInfo &, int x, int y) const;
30         ///
31         void write(WriteStream & os) const;
32         ///
33         void metrics(MetricsInfo & mi, Dimension & dim) const;
34         ///
35         void normalize(NormalStream & os) const;
36         ///
37         void infoize(odocstream & os) const;
38         ///
39         bool isScriptable() const;
40         ///
41         void validate(LaTeXFeatures & features) const;
42         ///
43         InsetCode lyxCode() const { return MATH_DECORATION_CODE; }
44         ///
45         void mathmlize(MathStream &) const;
46         ///
47         void htmlize(HtmlStream &) const;
48 private:
49         virtual Inset * clone() const;
50         ///
51         bool upper() const;
52         ///
53         bool protect() const;
54         /// is it a wide decoration?
55         bool wide() const;
56
57         ///
58         latexkeys const * key_;
59         /// height cache of deco
60         mutable int dh_;
61         /// vertical offset cache of deco
62         mutable int dy_;
63         /// width for non-wide deco
64         mutable int dw_;
65 };
66
67 } // namespace lyx
68
69 #endif