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