]> git.lyx.org Git - lyx.git/blob - src/mathed/math_matrixinset.h
Use references instead of pointers where possible
[lyx.git] / src / mathed / math_matrixinset.h
1 // -*- C++ -*-
2 #ifndef MATH_MATRIXINSET_H
3 #define MATH_MATRIXINSET_H
4
5 #include "math_gridinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /** Multiline math paragraph base class.
12     This is the base to all multiline editable math objects
13     like array and eqnarray.
14     \author Alejandro Aguilar Sierra
15 */
16
17 class LaTeXFeatures;
18
19 class MathMatrixInset : public MathGridInset {
20 public: 
21         ///
22         MathMatrixInset();
23         ///
24         explicit MathMatrixInset(MathInsetTypes t);
25         ///
26         MathMatrixInset(MathInsetTypes t, col_type cols);
27         ///
28         MathInset * clone() const;
29         ///
30         void write(std::ostream &, bool fragile) const;
31         ///
32         void metrics(MathStyles st) const;
33         ///
34         void draw(Painter &, int x, int y) const;
35         ///
36         string label(row_type row) const;
37         ///
38         void label(row_type row, string const & label);
39         ///
40         void numbered(row_type row, bool num);
41         ///
42         bool numbered(row_type row) const;
43         ///
44         bool numberedType() const;
45         ///
46         bool display() const;
47         ///
48         bool ams() const;
49         ///
50         std::vector<string> const getLabelList() const;
51         ///
52         void validate(LaTeXFeatures & features) const;
53         /// identifies MatrixInsets
54         virtual MathMatrixInset const * asMatrixInset() const { return this; }
55         /// identifies MatrixInsets
56         virtual MathMatrixInset * asMatrixInset() { return this; }
57
58         ///
59         void addRow(row_type);
60         ///
61         void delRow(row_type);
62         ///
63         void addCol(col_type);
64         ///
65         void delCol(col_type);
66         ///
67         void appendRow();
68
69         /// change type
70         void mutate(string const &);
71         ///
72         void mutate(MathInsetTypes);
73
74         ///
75         int defaultColSpace(col_type col);
76         ///
77         char defaultColAlign(col_type col);
78
79         ///
80         MathInsetTypes getType() const;
81
82 private:
83         ///
84         void setType(MathInsetTypes t);
85         ///
86         void validate1(LaTeXFeatures & features);
87         ///
88         void header_write(std::ostream &) const;
89         ///
90         void footer_write(std::ostream &) const;
91         ///
92         void glueall();
93         ///
94         string nicelabel(row_type row) const;
95
96         ///
97         MathInsetTypes objtype_;
98         ///
99         std::vector<int> nonum_;
100         ///
101         std::vector<string> label_;
102 };
103
104 #endif