]> git.lyx.org Git - lyx.git/blob - src/mathed/math_commentinset.h
remove noload/don't typeset
[lyx.git] / src / mathed / math_commentinset.h
1 // -*- C++ -*-
2 #ifndef MATH_COMMENTINSET_H
3 #define MATH_COMMENTINSET_H
4
5 #include "math_nestinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /** Inset for end-of-line comments
12     \author André Pönitz
13  */
14
15 class latexkeys;
16
17 class MathCommentInset : public MathNestInset {
18 public:
19         ///
20         MathCommentInset();
21         ///
22         explicit MathCommentInset(string const &);
23         ///
24         MathInset * clone() const;
25         ///
26         void metrics(MathMetricsInfo & mi) const;
27         ///
28         void draw(MathPainterInfo & pi, int x, int y) const;
29         ///
30         void metricsT(TextMetricsInfo const & mi) const;
31         ///
32         void drawT(TextPainter & pi, int x, int y) const;
33
34         ///
35         void write(WriteStream & os) const;
36         ///
37         void maplize(MapleStream &) const;
38         ///
39         void mathematicize(MathematicaStream &) const;
40         ///
41         void octavize(OctaveStream &) const;
42         ///
43         void mathmlize(MathMLStream &) const;
44         ///
45         void infoize(std::ostream & os) const;
46 };
47 #endif