]> git.lyx.org Git - lyx.git/blob - src/mathed/math_bigopinset.h
math compile cleanups + add bookmarks bindings for emacs
[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
7 /// big operators
8 class MathBigopInset: public MathedInset {
9 public:
10         ///
11         MathBigopInset(string const &, int, short st = LM_ST_TEXT);
12         ///
13         MathedInset * Clone();
14         ///
15         void draw(Painter &, int, int);
16         ///
17         void Write(std::ostream &, bool fragile);
18         ///
19         void Metrics();
20         ///
21         bool GetLimits() const;
22         ///
23         void SetLimits(bool);
24 protected:
25         ///
26         int lims;
27         ///
28         int sym;   
29 };
30 #endif