]> git.lyx.org Git - lyx.git/blob - src/mathed/math_bigopinset.h
change a lot of methods to begin with small char
[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 MathScriptInset {
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         int limits() const;
24         ///
25         bool hasLimits() const;
26         ///
27         void limits(int);
28         ///
29         bool idxDelete(int idx);
30 private:
31         /// 1: \limits, -1: \nolimits, 0: use default
32         int lims_;
33         ///
34         int sym_;
35 };
36 #endif