]> git.lyx.org Git - lyx.git/blob - src/mathed/math_sqrtinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_sqrtinset.h
1 // -*- C++ -*-
2 #ifndef MATH_SQRTINSET_H
3 #define MATH_SQRTINSET_H
4
5 #include "math_nestinset.h"
6
7
8 /** The square root inset.
9  *  \author Alejandro Aguilar Siearra
10  *
11  * Full author contact details are available in file CREDITS
12  */
13 class MathSqrtInset : public MathNestInset {
14 public:
15         ///
16         MathSqrtInset();
17         ///
18         MathInset * clone() const;
19         ///
20         void draw(MathPainterInfo &, int x, int y) const;
21         ///
22         void metrics(MathMetricsInfo & mi) const;
23         ///
24         void drawT(TextPainter &, int x, int y) const;
25         ///
26         void metricsT(TextMetricsInfo const & mi) const;
27
28         ///
29         void write(WriteStream & os) const;
30         ///
31         void normalize(NormalStream &) const;
32         ///
33         void maple(MapleStream &) const;
34         ///
35         void mathematica(MathematicaStream &) const;
36         ///
37         void octave(OctaveStream &) const;
38         ///
39         void mathmlize(MathMLStream &) const;
40 };
41 #endif