A bit more re-organization.
[lyx.git] / src / mathed / InsetMathBig.h
blob58880dc867afcf1fffa9058233f56e9bee0eae03
1 // -*- C++ -*-
2 /**
3 * \file InsetMathBig.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author André Pönitz
9 * Full author contact details are available in file CREDITS.
12 #ifndef MATH_BIGINSET_H
13 #define MATH_BIGINSET_H
15 #include "InsetMath.h"
17 #include <string>
20 namespace lyx {
22 /// Inset for \\bigl & Co.
23 class InsetMathBig : public InsetMath {
24 public:
25 ///
26 InsetMathBig(docstring const & name, docstring const & delim);
27 ///
28 docstring name() const;
29 ///
30 void metrics(MetricsInfo & mi, Dimension & dim) const;
31 ///
32 void draw(PainterInfo & pi, int x, int y) const;
33 ///
34 void write(WriteStream & os) const;
35 ///
36 void normalize(NormalStream & os) const;
37 ///
38 void infoize2(odocstream & os) const;
39 ///
40 static bool isBigInsetDelim(docstring const &);
41 ///
42 InsetCode lyxCode() const { return MATH_BIG_CODE; }
43 private:
44 virtual Inset * clone() const;
45 ///
46 size_type size() const;
47 ///
48 double increase() const;
50 /// \\bigl or what?
51 docstring const name_;
52 /// ( or [ or \\Vert...
53 docstring const delim_;
57 } // namespace lyx
59 #endif