]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathXYMatrix.h
Fixed longstanding bug in Advanced Find&Replace, when dealing with documents containi...
[lyx.git] / src / mathed / InsetMathXYMatrix.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathXYMatrix.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_XYMATRIX_H
13 #define MATH_XYMATRIX_H
14
15 #include "Length.h"
16 #include "InsetMathGrid.h"
17
18
19 namespace lyx {
20
21
22 class InsetMathXYMatrix : public InsetMathGrid {
23 public:
24         ///
25         InsetMathXYMatrix(Buffer * buf, Length const & = Length(), char c = '\0',
26                 bool equal_spacing = false);
27         ///
28         void metrics(MetricsInfo &, Dimension &) const;
29         ///
30         InsetMathXYMatrix const * asXYMatrixInset() const { return this; }
31         ///
32         virtual int colsep() const;
33         ///
34         virtual int rowsep() const;
35
36         ///
37         void write(WriteStream & os) const;
38         ///
39         void infoize(odocstream & os) const;
40         ///
41         void normalize(NormalStream &) const;
42         ///
43         void maple(MapleStream &) const;
44         ///
45         void validate(LaTeXFeatures & features) const;
46         ///
47         InsetCode lyxCode() const { return MATH_XYMATRIX_CODE; }
48         ///
49         void mathmlize(MathStream &) const;
50         ///
51         void htmlize(HtmlStream &) const;
52
53 private:
54         ///
55         virtual Inset * clone() const;
56         /// extra spacing, may be empty
57         Length spacing_;
58         ///
59         char spacing_code_;
60         ///
61         bool equal_spacing_;
62 };
63
64
65
66 } // namespace lyx
67 #endif