]> git.lyx.org Git - lyx.git/blob - src/mathed/math_bigopinset.h
small cleanup, doxygen, formatting changes
[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 Metrics();
21         ///
22         bool GetLimits() const;
23         ///
24         void SetLimits(bool);
25 protected:
26         ///
27         int lims;
28         ///
29         int sym;   
30 };
31 #endif