]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathGrid.h
da7eb28e5da61e2c99267b52351897f7484db8c2
[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 "lyxlength.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         /// additional per-cell information
29         class CellInfo {
30         public:
31                 ///
32                 CellInfo();
33                 /// a dummy cell before a multicolumn cell
34                 int dummy_;
35                 /// special multi colums alignment
36                 docstring align_;
37                 /// these should be a per-cell property, but ok to have it here
38                 /// for single-column grids like paragraphs
39                 mutable int glue_;
40                 ///
41                 mutable pos_type begin_;
42                 ///
43                 mutable pos_type end_;
44         };
45
46         /// additional per-row information
47         class RowInfo {
48         public:
49                 ///
50                 RowInfo();
51                 ///
52                 int skipPixels() const;
53                 /// cached descent
54                 mutable int descent_;
55                 /// cached ascent
56                 mutable int ascent_;
57                 /// cached offset
58                 mutable int offset_;
59                 /// how many hlines above this row?
60                 unsigned int lines_;
61                 /// parameter to the line break
62                 LyXLength crskip_;
63                 /// extra distance between lines
64                 int skip_;
65                 /// Is a page break allowed after this row?
66                 bool allow_pagebreak_;
67         };
68
69         // additional per-row information
70         class ColInfo {
71         public:
72                 ///
73                 ColInfo();
74                 /// currently possible: 'l', 'c', 'r'
75                 char align_;
76                 /// cache for drawing
77                 int h_offset;
78                 /// cached width
79                 mutable int width_;
80                 /// cached offset
81                 mutable int offset_;
82                 /// how many lines to the left of this column?
83                 unsigned int lines_;
84                 /// additional amount to be skipped when drawing
85                 int skip_;
86         };
87
88 public:
89         /// sets nrows and ncols to 1
90         InsetMathGrid();
91         /// constructor from columns description, creates one row
92         InsetMathGrid(char valign, docstring const & halign);
93         /// Note: columns first!
94         InsetMathGrid(col_type m, row_type n);
95         ///
96         InsetMathGrid(col_type m, row_type n, char valign, docstring const & halign);
97         /// Ensures that the dialog is closed.
98         ~InsetMathGrid();
99         ///
100         void metrics(MetricsInfo & mi) const;
101         ///
102         bool metrics(MetricsInfo & mi, Dimension &) const;
103         ///
104         void draw(PainterInfo & pi, int x, int y) const;
105         ///
106         void drawWithMargin(PainterInfo & pi, int x, int y,
107                 int lmargin = 0, int rmargin = 0) const;
108         /// draw decorations.
109         void drawDecoration(PainterInfo & pi, int x, int y) const
110         { drawMarkers2(pi, x, y); }
111         ///
112         void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
113         ///
114         void drawT(TextPainter & pi, int x, int y) const;
115         ///
116         void halign(docstring const & align);
117         ///
118         void halign(char c, col_type col);
119         ///
120         char halign(col_type col) const;
121         ///
122         docstring halign() const;
123         ///
124         void valign(char c);
125         ///
126         char valign() const;
127         ///
128         void vcrskip(LyXLength const &, row_type row);
129         ///
130         LyXLength vcrskip(row_type row) const;
131         ///
132         void resize(short int type, col_type cols);
133         ///
134         const RowInfo & rowinfo(row_type row) const;
135         /// returns topmost row if passed (-1)
136         RowInfo & rowinfo(row_type row);
137         ///
138         const CellInfo & cellinfo(idx_type idx) const { return cellinfo_[idx]; }
139         ///
140         CellInfo & cellinfo(idx_type idx) { return cellinfo_[idx]; }
141         /// identifies GridInset
142         InsetMathGrid * asGridInset() { return this; }
143         /// identifies GridInset
144         InsetMathGrid const * asGridInset() const { return this; }
145         ///
146         col_type ncols() const;
147         ///
148         row_type nrows() const;
149         ///
150         col_type col(idx_type idx) const;
151         ///
152         row_type row(idx_type idx) const;
153
154         ///
155         bool idxUpDown(LCursor &, bool up) const;
156         ///
157         bool idxLeft(LCursor &) const;
158         ///
159         bool idxRight(LCursor &) const;
160         ///
161         bool idxFirst(LCursor &) const;
162         ///
163         bool idxLast(LCursor &) const;
164         ///
165         bool idxDelete(idx_type & idx);
166         /// pulls cell after pressing erase
167         void idxGlue(idx_type idx);
168
169         /// add a row
170         virtual void addRow(row_type r);
171         /// delete a row
172         virtual void delRow(row_type r);
173         /// copy a row
174         virtual void copyRow(row_type r);
175         /// swap two rows
176         virtual void swapRow(row_type r);
177         /// add a column
178         virtual void addCol(col_type c);
179         /// delete a column
180         virtual void delCol(col_type c);
181         /// copy a column
182         virtual void copyCol(col_type c);
183         /// swap two columns
184         virtual void swapCol(col_type c);
185         ///
186         virtual void appendRow();
187         ///
188         idx_type index(row_type r, col_type c) const;
189         ///
190         bool idxBetween(idx_type idx, idx_type from, idx_type to) const;
191         ///
192         virtual int defaultColSpace(col_type) { return 0; }
193         ///
194         virtual char defaultColAlign(col_type) { return 'c'; }
195         ///
196         void setDefaults();
197
198         ///
199         virtual int colsep() const;
200         ///
201         virtual int rowsep() const;
202         ///
203         virtual int hlinesep() const;
204         ///
205         virtual int vlinesep() const;
206         ///
207         virtual int border() const;
208
209         ///
210         void write(WriteStream & os) const;
211         ///
212         void normalize(NormalStream &) const;
213         ///
214         //void maple(MapleStream &) const;
215         ///
216         void mathmlize(MathStream &) const;
217         ///
218         //void octave(OctaveStream &) const;
219
220 protected:
221         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
222         ///
223         bool getStatus(LCursor & cur, FuncRequest const & cmd,
224                 FuncStatus & flag) const;
225         /// returns x offset of cell compared to inset
226         int cellXOffset(idx_type idx) const;
227         /// returns y offset of cell compared to inset
228         int cellYOffset(idx_type idx) const;
229         /// returns proper 'end of line' code for LaTeX
230         virtual docstring eolString(row_type row, bool emptyline,
231                                       bool fragile) const;
232         /// returns proper 'end of column' code for LaTeX
233         virtual docstring eocString(col_type col, col_type lastcol) const;
234         /// extract number of columns from alignment string
235         col_type guessColumns(docstring const & halign) const;
236         /// splits cells and shifts right part to the next cell
237         void splitCell(LCursor & cur);
238
239         /// row info.
240         /// rowinfo_[nrows()] is a dummy row used only for hlines.
241         std::vector<RowInfo> rowinfo_;
242         /// column info.
243         /// colinfo_[ncols()] is a dummy column used only for vlines.
244         std::vector<ColInfo> colinfo_;
245         /// cell info
246         std::vector<CellInfo> cellinfo_;
247         ///
248         char v_align_; // add approp. type
249 private:
250         virtual std::auto_ptr<InsetBase> doClone() const;
251 };
252
253
254
255 } // namespace lyx
256 #endif