]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathCancelto.h
Rename WriteStream to TeXMathStream.
[lyx.git] / src / mathed / InsetMathCancelto.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathCancelto.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_CANCELTOINSET_H
13 #define MATH_CANCELTOINSET_H
14
15 #include "InsetMathNest.h"
16
17
18 namespace lyx {
19
20 class InsetMathCancelto : public InsetMathNest {
21 public:
22         ///
23         explicit InsetMathCancelto(Buffer * buf);
24         ///
25         bool idxUpDown(Cursor & cur, bool up) const override;
26         ///
27         void metrics(MetricsInfo & mi, Dimension & dim) const override;
28         ///
29         void draw(PainterInfo & pi, int x, int y) const override;
30         ///
31         void write(TeXMathStream & os) const override;
32         /// write normalized content
33         void normalize(NormalStream & ns) const override;
34         ///
35         void infoize(odocstream & os) const override;
36         ///
37         InsetCode lyxCode() const override { return MATH_CANCELTO_CODE; }
38         /// Nothing for now
39         void mathmlize(MathMLStream &) const override {}
40         /// Nothing for HTML
41         void htmlize(HtmlStream &) const override {}
42         ///
43         void validate(LaTeXFeatures &) const override;
44
45 private:
46         ///
47         Inset * clone() const override;
48 };
49
50
51
52 } // namespace lyx
53 #endif