Give inset codes to all the math insets, so we get more information when
[lyx.git] / src / mathed / InsetMathSubstack.h
blobc0576aaa6bd16253d5195df4b7f711529eb8f380
1 // -*- C++ -*-
2 /**
3 * \file InsetMathSubstack.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_SUBSTACK_H
13 #define MATH_SUBSTACK_H
15 #include "InsetMathGrid.h"
18 namespace lyx {
21 /// support for AMS's \\substack
23 class InsetMathSubstack : public InsetMathGrid {
24 public:
25 ///
26 InsetMathSubstack();
27 ///
28 void metrics(MetricsInfo & mi, Dimension & dim) const;
29 ///
30 void draw(PainterInfo & pi, int x, int y) const;
31 ///
32 InsetMathSubstack const * asSubstackInset() const { return this; }
34 ///
35 bool getStatus(Cursor & cur, FuncRequest const & cmd,
36 FuncStatus & flag) const;
37 ///
38 void infoize(odocstream & os) const;
39 ///
40 void write(WriteStream & os) const;
41 ///
42 void normalize(NormalStream &) const;
43 ///
44 void maple(MapleStream &) const;
45 ///
46 void validate(LaTeXFeatures & features) const;
47 ///
48 InsetCode lyxCode() const { return MATH_SUBSTACK_CODE; }
50 private:
51 virtual Inset * clone() const;
56 } // namespace lyx
57 #endif