]> git.lyx.org Git - lyx.git/blob - src/mathed/math_bigopinset.h
mathed65.diff
[lyx.git] / src / mathed / math_bigopinset.h
1 // -*- C++ -*-
2 #ifndef MATH_BIGOPINSET_H
3 #define MATH_BIGOPINSET_H
4
5 #include "math_inset.h"
6 #include "math_defs.h"
7
8 /// big operators
9 class MathBigopInset : public MathedInset {
10 public:
11         ///
12         MathBigopInset(string const &, int, short st = LM_ST_TEXT);
13         ///
14         MathedInset * Clone();
15         ///
16         void draw(Painter &, int, int);
17         ///
18         void Write(std::ostream &, bool fragile);
19         ///
20         void WriteNormal(std::ostream &);
21         ///
22         void Metrics();
23         ///
24         bool GetLimits() const;
25         ///
26         void SetLimits(bool);
27 private:
28         ///
29         int lims_;
30         ///
31         int sym_;
32 };
33 #endif