Give inset codes to all the math insets, so we get more information when
[lyx.git] / src / mathed / InsetMathSplit.h
blob9a8d4b93d4e7056695dc1e0371247945000b0acf
1 // -*- C++ -*-
2 /**
3 * \file InsetMathSplit.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_SPLITINSET_H
13 #define MATH_SPLITINSET_H
15 #include "InsetMathGrid.h"
18 namespace lyx {
21 class InsetMathSplit : public InsetMathGrid {
22 public:
23 ///
24 explicit InsetMathSplit(docstring const & name, char valign = 'c');
25 ///
26 void draw(PainterInfo & pi, int x, int y) const;
27 ///
28 bool getStatus(Cursor & cur, FuncRequest const & cmd,
29 FuncStatus & flag) const;
31 void write(WriteStream & os) const;
32 ///
33 void infoize(odocstream & os) const;
34 ///
35 void validate(LaTeXFeatures & features) const;
36 ///
37 int defaultColSpace(col_type) { return 0; }
38 ///
39 char defaultColAlign(col_type);
40 ///
41 InsetCode lyxCode() const { return MATH_SPLIT_CODE; }
43 private:
44 ///
45 virtual Inset * clone() const;
46 ///
47 docstring name_;
51 } // namespace lyx
52 #endif