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