]> git.lyx.org Git - lyx.git/blob - src/mathed/math_exfuncinset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_exfuncinset.h
1 // -*- C++ -*-
2 #ifndef MATH_EXFUNCINSET_H
3 #define MATH_EXFUNCINSET_H
4
5 #include "math_nestinset.h"
6
7 // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x')
8 // for interfacing external programs
9
10 class MathExFuncInset : public MathNestInset {
11 public:
12         ///
13         explicit MathExFuncInset(string const & name);
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         ///
22         void normalize(NormalStream &) const;
23         ///
24         void maplize(MapleStream &) const;
25         ///
26         void mathmlize(MathMLStream &) const;
27         ///
28         void octavize(OctaveStream &) const;
29         ///
30         void write(WriteStream & os) const;
31
32 private:
33         ///
34         string const name_;
35         ///
36         mutable LyXFont font_;
37 };
38 #endif