A bit more re-organization.
[lyx.git] / src / mathed / InsetMathSplit.h
blob123f9258690e28a099c1c817430368cddab264a8
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(Buffer * buf, docstring const & name,
25 char valign = 'c');
26 ///
27 void draw(PainterInfo & pi, int x, int y) const;
28 ///
29 bool getStatus(Cursor & cur, FuncRequest const & cmd,
30 FuncStatus & flag) const;
32 void write(WriteStream & os) const;
33 ///
34 void infoize(odocstream & os) const;
35 ///
36 void validate(LaTeXFeatures & features) const;
37 ///
38 int defaultColSpace(col_type) { return 0; }
39 ///
40 char defaultColAlign(col_type);
41 ///
42 InsetCode lyxCode() const { return MATH_SPLIT_CODE; }
44 private:
45 ///
46 virtual Inset * clone() const;
47 ///
48 docstring name_;
52 } // namespace lyx
53 #endif