]> git.lyx.org Git - lyx.git/blob - src/mathed/math_exintinset.h
don't #include too much stuff in .h
[lyx.git] / src / mathed / math_exintinset.h
1 // -*- C++ -*-
2 #ifndef MATH_EXINTINSET_H
3 #define MATH_EXINTINSET_H
4
5 // /\int_l^u f(x) dxin one block (as opposed to 'f','(','x',')' or 'f','x')
6 // for interfacing external programs
7
8 #include "math_scriptinset.h"
9
10 class MathExIntInset : public MathInset {
11 public:
12         ///
13         MathExIntInset(MathScriptInset const &, MathArray const &, MathArray const &);
14         ///
15         MathInset * clone() const;
16         ///
17         void metrics(MathMetricsInfo const & st) const;
18         ///
19         void draw(Painter &, int x, int y) const;
20         ///
21         void write(MathWriteInfo & os) const;
22         ///
23         void writeNormal(NormalStream &) const;
24         ///
25         void maplize(MapleStream &) const;
26         ///
27         void mathmlize(MathMLStream &) const;
28 private:
29         ///
30         MathAtom int_;
31         ///
32         MathScriptInset scripts_;
33         ///
34         MathArray core_;
35         ///
36         MathArray diff_;
37 };
38 #endif