]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathBig.h
Be careful before using buffer parameters in colAlign
[lyx.git] / src / mathed / InsetMathBig.h
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.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_BIGINSET_H
13 #define MATH_BIGINSET_H
14
15 #include "InsetMath.h"
16
17
18 namespace lyx {
19
20 /// Inset for \\bigl & Co.
21 class InsetMathBig : public InsetMath {
22 public:
23         ///
24         InsetMathBig(docstring const & name, docstring const & delim);
25         ///
26         docstring name() const;
27         /// class is different for l(eft), r(ight) and m(iddle)
28         MathClass mathClass() 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 mathmlize(MathStream &) const;
39         ///
40         void htmlize(HtmlStream &) const;
41         ///
42         void infoize2(odocstream & os) const;
43         ///
44         static bool isBigInsetDelim(docstring const &);
45         ///
46         InsetCode lyxCode() const { return MATH_BIG_CODE; }
47         ///
48         void validate(LaTeXFeatures &) const;
49 private:
50         virtual Inset * clone() const;
51         ///
52         size_type size() const;
53         ///
54         double increase() const;
55         /// name with leading backslash stripped
56         docstring word() const;
57
58         /// \\bigl or what?
59         docstring const name_;
60         /// ( or [ or \\Vert...
61         docstring const delim_;
62 };
63
64
65 } // namespace lyx
66
67 #endif