]> git.lyx.org Git - lyx.git/blob - src/mathed/math_funcliminset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_funcliminset.h
1 // -*- C++ -*-
2 #ifndef MATH_FUNCLIMINSET_H
3 #define MATH_FUNCLIMINSET_H
4
5 #include "math_diminset.h"
6
7 // "normal" symbols that don't take limits and don't grow in displayed
8 // formulae
9
10 class MathFuncLimInset : public MathDimInset {
11 public:
12         ///
13         explicit MathFuncLimInset(string const & name);
14         ///
15         MathInset * clone() const;
16         ///
17         void write(WriteStream & os) const;
18         ///
19         void normalize(NormalStream &) const;
20         ///
21         void metrics(MathMetricsInfo const & st) const;
22         ///
23         void draw(Painter &, int x, int y) const;
24         ///
25         bool isScriptable() const;
26
27 private:
28         ///
29         string const name_;
30         ///
31         mutable LyXFont font_;
32 };
33 #endif