]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathGrid.h
... and RELEASE-NOTES
[lyx.git] / src / mathed / InsetMathGrid.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathGrid.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_GRID_H
13 #define MATH_GRID_H
14
15 #include "InsetMathNest.h"
16 #include "Length.h"
17
18
19 namespace lyx {
20
21
22 /** Gridded math inset base class.
23  *  This is the base to all grid-like editable math objects
24  */
25 class InsetMathGrid : public InsetMathNest {
26 public:
27
28         enum Multicolumn {
29                 /// A normal cell
30                 CELL_NORMAL = 0,
31                 /// A multicolumn cell. The number of columns is <tt>1 + number
32                 /// of CELL_PART_OF_MULTICOLUMN cells</tt> that follow directly
33                 CELL_BEGIN_OF_MULTICOLUMN = 1,
34                 /// This is a dummy cell (part of a multicolumn cell)
35                 CELL_PART_OF_MULTICOLUMN = 2
36         };
37
38         /// additional per-cell information
39         class CellInfo {
40         public:
41                 ///
42                 CellInfo();
43                 /// multicolumn flag
44                 Multicolumn multi_;
45                 /// special multi colums alignment
46                 docstring align_;
47         };
48
49         /// additional per-row information
50         class RowInfo {
51         public:
52                 ///
53                 RowInfo();
54                 ///
55                 int skipPixels(MetricsInfo const & mi) const;
56                 /// cached descent
57                 mutable int descent_;
58                 /// cached ascent
59                 mutable int ascent_;
60                 /// cached offset
61                 mutable int offset_;
62                 /// how many hlines above this row?
63                 unsigned int lines_;
64                 /// parameter to the line break
65                 Length crskip_;
66                 /// extra distance between lines
67                 int skip_;
68                 /// Is a page break allowed after this row?
69                 bool allow_newpage_;
70         };
71
72         // additional per-row information
73         class ColInfo {
74         public:
75                 ///
76                 ColInfo();
77                 /// currently possible: 'l', 'c', 'r'
78                 char align_;
79                 /// cached width
80                 mutable int width_;
81                 /// cached offset
82                 mutable int offset_;
83                 /// how many lines to the left of this column?
84                 unsigned int lines_;
85                 /// additional amount to the right to be skipped when drawing
86                 int skip_;
87                 /// Special alignment.
88                 /// This does also contain align_ and lines_ if it is nonempty.
89                 /// It needs to be in sync with align_ and lines_ because some
90                 /// code only uses align_ and lines_.
91                 docstring special_;
92         };
93
94 public:
95         /// sets nrows and ncols to 1, vertical alingment to 'c'
96         InsetMathGrid(Buffer * buf);
97         /// Note: columns first!
98         InsetMathGrid(Buffer * buf, col_type m, row_type n);
99         ///
100         InsetMathGrid(Buffer * buf, col_type m, row_type n, char valign,
101                 docstring const & halign);
102         ///
103         void metrics(MetricsInfo & mi, Dimension &) const;
104         ///
105         void draw(PainterInfo & pi, int x, int y) const;
106         ///
107         void drawWithMargin(PainterInfo & pi, int x, int y,
108                 int lmargin = 0, int rmargin = 0) const;
109         /// draw decorations.
110         void drawDecoration(PainterInfo & pi, int x, int y) const
111         { drawMarkers2(pi, x, y); }
112         ///
113         void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
114         ///
115         void drawT(TextPainter & pi, int x, int y) const;
116         ///
117         void updateBuffer(ParIterator const &, UpdateType);
118         /// extract number of columns from alignment string
119         static col_type guessColumns(docstring const & halign);
120         /// accepts some LaTeX column codes: p,m,!,@,M,<,>
121         void setHorizontalAlignments(docstring const & align);
122         ///
123         void setHorizontalAlignment(char c, col_type col);
124         ///
125         char horizontalAlignment(col_type col) const;
126         ///
127         docstring horizontalAlignments() const;
128         /// 't', 'b', or 'm'
129         void setVerticalAlignment(char c);
130         ///
131         char verticalAlignment() const;
132         ///
133         void vcrskip(Length const &, row_type row);
134         ///
135         Length vcrskip(row_type row) const;
136         ///
137         void resize(short int type, col_type cols);
138         ///
139         const RowInfo & rowinfo(row_type row) const;
140         /// returns topmost row if passed (-1)
141         RowInfo & rowinfo(row_type row);
142         ///
143         const CellInfo & cellinfo(idx_type idx) const { return cellinfo_[idx]; }
144         ///
145         CellInfo & cellinfo(idx_type idx) { return cellinfo_[idx]; }
146         /// identifies GridInset
147         InsetMathGrid * asGridInset() { return this; }
148         /// identifies GridInset
149         InsetMathGrid const * asGridInset() const { return this; }
150         //
151         bool isTable() const { return true; }
152         ///
153         col_type ncols() const;
154         ///
155         row_type nrows() const;
156         ///
157         col_type col(idx_type idx) const;
158         ///
159         row_type row(idx_type idx) const;
160         /// number of columns of cell \p idx
161         col_type ncellcols(idx_type idx) const;
162
163         ///
164         bool idxUpDown(Cursor &, bool up) const;
165         ///
166         bool idxBackward(Cursor &) const;
167         ///
168         bool idxForward(Cursor &) const;
169         ///
170         bool idxFirst(Cursor &) const;
171         ///
172         bool idxLast(Cursor &) const;
173         ///
174         bool idxDelete(idx_type & idx);
175         /// pulls cell after pressing erase
176         void idxGlue(idx_type idx);
177
178         /// add a row, one row down
179         virtual void addRow(row_type r);
180         /// delete a row
181         virtual void delRow(row_type r);
182         /// copy a row
183         virtual void copyRow(row_type r);
184         /// swap two rows
185         virtual void swapRow(row_type r);
186         /// add a column, here
187         virtual void addCol(col_type c);
188         /// delete a column
189         virtual void delCol(col_type c);
190         /// copy a column
191         virtual void copyCol(col_type c);
192         /// swap two columns
193         virtual void swapCol(col_type c);
194         ///
195         idx_type index(row_type r, col_type c) const;
196         ///
197         bool idxBetween(idx_type idx, idx_type from, idx_type to) const;
198         ///
199         virtual int defaultColSpace(col_type) { return 0; }
200         ///
201         virtual char defaultColAlign(col_type) { return 'c'; }
202         ///
203         void setDefaults();
204         ///
205         virtual bool interpretString(Cursor & cur, docstring const & str);
206
207         ///
208         virtual int colsep() const;
209         ///
210         virtual int rowsep() const;
211         ///
212         virtual int hlinesep() const;
213         ///
214         virtual int vlinesep() const;
215         ///
216         virtual int border() const;
217
218         ///
219         void write(WriteStream & os) const;
220         ///
221         void write(WriteStream & os,
222                    row_type beg_row, col_type beg_col,
223                    row_type end_row, col_type end_col) const;
224         ///
225         void normalize(NormalStream &) const;
226         ///
227         //void maple(MapleStream &) const;
228         ///
229         void mathmlize(MathStream &) const;
230         /// 
231         void htmlize(HtmlStream &) const;
232         ///
233         void htmlize(HtmlStream &, std::string attrib) const;
234         ///
235         void validate(LaTeXFeatures & features) const;
236         ///
237         //void octave(OctaveStream &) const;
238
239 protected:
240         ///
241         void doDispatch(Cursor & cur, FuncRequest & cmd);
242         ///
243         bool getStatus(Cursor & cur, FuncRequest const & cmd,
244                 FuncStatus & flag) const;
245         /// returns x offset of cell compared to inset
246         int cellXOffset(BufferView const &, idx_type idx) const;
247         /// returns y offset of cell compared to inset
248         int cellYOffset(idx_type idx) const;
249         /// Width of cell, taking combined columns into account
250         int cellWidth(idx_type idx) const;
251         /// returns proper 'end of line' code for LaTeX
252         virtual docstring eolString(row_type row, bool fragile, bool latex,
253                         bool last_eoln) const;
254         /// returns proper 'end of column' code for LaTeX
255         virtual docstring eocString(col_type col, col_type lastcol) const;
256         /// splits cells and shifts right part to the next cell
257         void splitCell(Cursor & cur);
258         /// Column alignment for display of cell \p idx.
259         /// Must not be written to file!
260         virtual char displayColAlign(idx_type idx) const;
261         /// Column spacing for display of column \p col.
262         /// Must not be written to file!
263         virtual int displayColSpace(col_type col) const;
264
265         // The following two functions are used in InsetMathHull and
266         // InsetMathSplit.
267         /// The value of a fixed col align for a certain hull type 
268         static char colAlign(HullType type, col_type col);
269         /// The value of a fixed col spacing for a certain hull type
270         static int colSpace(HullType type, col_type col);
271
272         /// row info.
273         /// rowinfo_[nrows()] is a dummy row used only for hlines.
274         std::vector<RowInfo> rowinfo_;
275         /// column info.
276         /// colinfo_[ncols()] is a dummy column used only for vlines.
277         std::vector<ColInfo> colinfo_;
278         /// cell info
279         std::vector<CellInfo> cellinfo_;
280         ///
281         InsetCode lyxCode() const { return MATH_GRID_CODE; }
282
283 private:
284         ///
285         char v_align_; // add approp. type
286         ///
287         Inset * clone() const;
288 };
289
290
291 } // namespace lyx
292
293 #endif