]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathCancel.h
g-brief loads babel internally. So don't load it ourselves.
[lyx.git] / src / mathed / InsetMathCancel.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathCancel.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Uwe Stöhr
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_CANCELINSET_H
13 #define MATH_CANCELINSET_H
14
15 #include "InsetMathNest.h"
16
17
18 namespace lyx {
19
20 class InsetMathCancel : public InsetMathNest {
21 public:
22         ///
23         enum Kind {
24                 cancel,
25                 bcancel,
26                 xcancel
27         };
28         ///
29         explicit InsetMathCancel(Buffer * buf, Kind);
30         ///
31         void metrics(MetricsInfo & mi, Dimension & dim) const override;
32         ///
33         void draw(PainterInfo & pi, int x, int y) const override;
34         ///
35         void write(TeXMathStream & os) const override;
36         /// write normalized content
37         void normalize(NormalStream & ns) const override;
38         ///
39         void infoize(odocstream & os) const override;
40         ///
41         InsetCode lyxCode() const override { return MATH_CANCEL_CODE; }
42         ///
43         void mathmlize(MathMLStream &) const override;
44         ///
45         void htmlize(HtmlStream &) const override;
46         ///
47         void validate(LaTeXFeatures &) const override;
48
49 private:
50         ///
51         Inset * clone() const override;
52         ///
53         Kind kind_;
54 };
55
56
57
58 } // namespace lyx
59 #endif