]> git.lyx.org Git - lyx.git/blob - src/mathed/math_diffinset.h
d51d3a271e3aac25eb7153a69f9a5fbecebedc7c
[lyx.git] / src / mathed / math_diffinset.h
1 // -*- C++ -*-
2 #ifndef MATH_DIFFINSET_H
3 #define MATH_DIFFINSET_H
4
5
6 // d f(x)/dx in one block
7 // for interfacing external programs
8
9 #include "math_nestinset.h"
10
11 class MathDiffInset : public MathNestInset {
12 public:
13         ///
14         explicit MathDiffInset();
15         ///
16         MathInset * clone() const;
17         ///
18         void addDer(MathArray const & der);
19         ///
20         void metrics(MathMetricsInfo & mi) const;
21         ///
22         void draw(MathPainterInfo & pi, int x, int y) const;
23
24         ///
25         void normalize(NormalStream &) const;
26         ///
27         void maplize(MapleStream &) const;
28         ///
29         void mathematicize(MathematicaStream &) const;
30         ///
31         void mathmlize(MathMLStream &) const;
32         ///
33         void write(WriteStream & os) const;
34 };
35
36 #endif