]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTabular.h
Fix copy-paste error (#12092)
[lyx.git] / src / insets / InsetTabular.h
1 // -*- C++ -*-
2 /**
3  * \file InsetTabular.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Matthias Ettrich
9  * \author André Pönitz
10  * \author Jürgen Vigna
11  * \author Edwin Leuven
12  * \author Uwe Stöhr
13  * \author Scott Kostyshak
14  *
15  * Full author contact details are available in file CREDITS.
16  */
17
18 // Things to think of when designing the new tabular support:
19 // - color support (colortbl, color)
20 // - decimal alignment (dcloumn)
21 // - custom lines (hhline)
22 // - column styles
23
24 #ifndef INSET_TABULAR_H
25 #define INSET_TABULAR_H
26
27 #include "Changes.h"
28 #include "InsetText.h"
29
30 #include "support/Length.h"
31 #include "support/types.h"
32
33 #include <climits>
34 #include <iosfwd>
35 #include <memory>
36 #include <vector>
37
38
39 namespace lyx {
40
41 class Buffer;
42 class BufferView;
43 class CompletionList;
44 class Cursor;
45 class CursorSlice;
46 class FuncStatus;
47 class Lexer;
48 class OutputParams;
49 class XMLStream;
50
51
52 ///
53 class InsetTableCell : public InsetText
54 {
55 public:
56         ///
57         explicit InsetTableCell(Buffer * buf);
58         /// We need this since generation of the default is deprecated
59         /// (since we declare the assignment constuctor below).
60         InsetTableCell(InsetTableCell const & in) = default;
61         ///
62         InsetCode lyxCode() const override { return CELL_CODE; }
63         ///
64         Inset * clone() const override { return new InsetTableCell(*this); }
65         ///
66         bool getStatus(Cursor & cur, FuncRequest const & cmd,
67                 FuncStatus & status) const override;
68         ///
69         void toggleFixedWidth(bool fw) { isFixedWidth = fw; }
70         ///
71         void toggleVarWidth(bool vw) { isVarwidth = vw; }
72         ///
73         void toggleMultiCol(bool m) { isMultiColumn = m; }
74         ///
75         void toggleMultiRow(bool m) { isMultiRow = m; }
76         ///
77         void setContentAlignment(LyXAlignment al) {contentAlign = al; }
78         /// writes the contents of the cell as a string, optionally
79         /// descending into insets
80         docstring asString(bool intoInsets = true);
81         ///
82         docstring xhtml(XMLStream &, OutputParams const &) const override;
83         ///
84         void docbook(XMLStream &, OutputParams const &) const override;
85         ///
86         void addToToc(DocIterator const & di, bool output_active,
87                                   UpdateType utype, TocBackend & backend) const override;
88         ///
89         void metrics(MetricsInfo &, Dimension &) const override;
90         /// Needs to be same as InsetTabular
91         bool inheritFont() const override { return false; }
92         /// Can the cell contain several paragraphs?
93         bool allowMultiPar() const override { return !isMultiRow && (!isMultiColumn || isFixedWidth); }
94         ///
95         bool canPaintChange(BufferView const &) const override { return false; }
96 private:
97         ///
98         InsetTableCell() = delete;
99         ///
100         void operator=(InsetTableCell const &) = delete;
101         // FIXME
102         // These booleans are supposed to track whether the cell has had its
103         // width explicitly set and whether it is part of a multicolumn, respectively.
104         // We need to know this to determine whether
105         // layout changes and paragraph customization are allowed---that is,
106         // we need it in forcePlainLayout() and allowParagraphCustomization().
107         // Unfortunately, that information is not readily available in
108         // InsetTableCell. In the case of multicolumn cells, it is present
109         // in CellData, and so would be available here if CellData were to
110         // become a member of InsetTableCell. But in the other case, it isn't
111         // even available there, but is held in Tabular::ColumnData.
112         // So, the present solution uses this boolean to track the information
113         // we need to track, and tries to keep it updated. This is not ideal,
114         // but the other solutions are no better. These are:
115         // (i)  Keep a pointer in InsetTableCell to the table;
116         // (ii) Find the table by iterating over the Buffer's insets.
117         // Solution (i) raises the problem of updating the pointer when an
118         // InsetTableCell is copied, and we'd therefore need a copy constructor
119         // in InsetTabular and then in Tabular, which seems messy, given how
120         // complicated those classes are. Solution (ii) involves a lot of
121         // iterating, since this information is needed quite often, and so may
122         // be quite slow.
123         // So, well, if someone can do better, please do!
124         // --rkh
125         ///
126         bool isFixedWidth;
127         ///
128         bool isVarwidth;
129         ///
130         bool isMultiColumn;
131         ///
132         bool isMultiRow;
133         // FIXME: Here the thoughts from the comment above also apply.
134         ///
135         LyXAlignment contentAlign;
136         /// should paragraph indentation be omitted in any case?
137         bool neverIndent() const override { return true; }
138         ///
139         LyXAlignment contentAlignment() const override { return contentAlign; }
140         ///
141         bool usePlainLayout() const override { return true; }
142         ///
143         bool allowParagraphCustomization(idx_type = 0) const override;
144         ///
145         bool forceLocalFontSwitch() const override;
146         /// Is the width forced to some value?
147         bool hasFixedWidth() const override { return isFixedWidth; }
148 };
149
150
151 //
152 // A helper struct for tables
153 //
154 class Tabular {
155 public:
156         ///
157         enum Feature {
158                 ///
159                 APPEND_ROW = 0,
160                 ///
161                 APPEND_COLUMN,
162                 ///
163                 DELETE_ROW,
164                 ///
165                 DELETE_COLUMN,
166                 ///
167                 COPY_ROW,
168                 ///
169                 COPY_COLUMN,
170                 ///
171                 MOVE_COLUMN_RIGHT,
172                 ///
173                 MOVE_COLUMN_LEFT,
174                 ///
175                 MOVE_ROW_DOWN,
176                 ///
177                 MOVE_ROW_UP,
178                 ///
179                 SET_LINE_TOP,
180                 ///
181                 SET_LINE_BOTTOM,
182                 ///
183                 SET_LINE_LEFT,
184                 ///
185                 SET_LINE_RIGHT,
186                 ///FIXME: remove
187                 TOGGLE_LINE_TOP,
188                 ///FIXME: remove
189                 TOGGLE_LINE_BOTTOM,
190                 ///FIXME: remove
191                 TOGGLE_LINE_LEFT,
192                 ///FIXME: remove
193                 TOGGLE_LINE_RIGHT,
194                 ///
195                 SET_LTRIM_TOP,
196                 ///
197                 SET_RTRIM_TOP,
198                 ///
199                 SET_LTRIM_BOTTOM,
200                 ///
201                 SET_RTRIM_BOTTOM,
202                 ///
203                 TOGGLE_LTRIM_TOP,
204                 ///
205                 TOGGLE_RTRIM_TOP,
206                 ///
207                 TOGGLE_LTRIM_BOTTOM,
208                 ///
209                 TOGGLE_RTRIM_BOTTOM,
210                 ///
211                 ALIGN_LEFT,
212                 ///
213                 ALIGN_RIGHT,
214                 ///
215                 ALIGN_CENTER,
216                 ///
217                 ALIGN_BLOCK,
218                 ///
219                 ALIGN_DECIMAL,
220                 ///
221                 VALIGN_TOP,
222                 ///
223                 VALIGN_BOTTOM,
224                 ///
225                 VALIGN_MIDDLE,
226                 ///
227                 M_ALIGN_LEFT,
228                 ///
229                 M_ALIGN_RIGHT,
230                 ///
231                 M_ALIGN_CENTER,
232                 ///
233                 M_VALIGN_TOP,
234                 ///
235                 M_VALIGN_BOTTOM,
236                 ///
237                 M_VALIGN_MIDDLE,
238                 ///
239                 MULTICOLUMN,
240                 ///
241                 SET_MULTICOLUMN,
242                 ///
243                 UNSET_MULTICOLUMN,
244                 ///
245                 MULTIROW,
246                 ///
247                 SET_MULTIROW,
248                 ///
249                 UNSET_MULTIROW,
250                 ///
251                 SET_MROFFSET,
252                 ///
253                 SET_ALL_LINES,
254                 ///
255                 RESET_FORMAL_DEFAULT,
256                 ///
257                 UNSET_ALL_LINES,
258                 ///
259                 TOGGLE_LONGTABULAR,
260                 ///
261                 SET_LONGTABULAR,
262                 ///
263                 UNSET_LONGTABULAR,
264                 ///
265                 SET_PWIDTH,
266                 ///
267                 SET_MPWIDTH,
268                 ///
269                 TOGGLE_VARWIDTH_COLUMN,
270                 ///
271                 SET_ROTATE_TABULAR,
272                 ///
273                 UNSET_ROTATE_TABULAR,
274                 ///
275                 TOGGLE_ROTATE_TABULAR,
276                 ///
277                 SET_ROTATE_CELL,
278                 ///
279                 UNSET_ROTATE_CELL,
280                 ///
281                 TOGGLE_ROTATE_CELL,
282                 ///
283                 SET_USEBOX,
284                 ///
285                 SET_LTHEAD,
286                 UNSET_LTHEAD,
287                 ///
288                 SET_LTFIRSTHEAD,
289                 UNSET_LTFIRSTHEAD,
290                 ///
291                 SET_LTFOOT,
292                 UNSET_LTFOOT,
293                 ///
294                 SET_LTLASTFOOT,
295                 UNSET_LTLASTFOOT,
296                 ///
297                 SET_LTNEWPAGE,
298                 UNSET_LTNEWPAGE,
299                 ///
300                 TOGGLE_LTCAPTION,
301                 ///
302                 SET_LTCAPTION,
303                 ///
304                 UNSET_LTCAPTION,
305                 ///
306                 SET_SPECIAL_COLUMN,
307                 ///
308                 SET_SPECIAL_MULTICOLUMN,
309                 ///
310                 TOGGLE_BOOKTABS,
311                 ///
312                 SET_BOOKTABS,
313                 ///
314                 UNSET_BOOKTABS,
315                 ///
316                 SET_TOP_SPACE,
317                 ///
318                 SET_BOTTOM_SPACE,
319                 ///
320                 SET_INTERLINE_SPACE,
321                 ///
322                 SET_BORDER_LINES,
323                 ///
324                 TABULAR_VALIGN_TOP,
325                 ///
326                 TABULAR_VALIGN_MIDDLE,
327                 ///
328                 TABULAR_VALIGN_BOTTOM,
329                 ///
330                 LONGTABULAR_ALIGN_LEFT,
331                 ///
332                 LONGTABULAR_ALIGN_CENTER,
333                 ///
334                 LONGTABULAR_ALIGN_RIGHT,
335                 ///
336                 SET_DECIMAL_POINT,
337                 ///
338                 SET_TABULAR_WIDTH,
339                 ///
340                 SET_INNER_LINES,
341                 ///
342                 LAST_ACTION
343         };
344         ///
345         enum {
346                 ///
347                 CELL_NORMAL = 0,
348                 ///
349                 CELL_BEGIN_OF_MULTICOLUMN,
350                 ///
351                 CELL_PART_OF_MULTICOLUMN,
352                 ///
353                 CELL_BEGIN_OF_MULTIROW,
354                 ///
355                 CELL_PART_OF_MULTIROW
356         };
357
358         ///
359         enum VAlignment {
360                 ///
361                 LYX_VALIGN_TOP = 0,
362                 ///
363                 LYX_VALIGN_MIDDLE = 1,
364                 ///
365                 LYX_VALIGN_BOTTOM = 2
366
367         };
368         ///
369         enum HAlignment {
370                 ///
371                 LYX_LONGTABULAR_ALIGN_LEFT = 0,
372                 ///
373                 LYX_LONGTABULAR_ALIGN_CENTER = 1,
374                 ///
375                 LYX_LONGTABULAR_ALIGN_RIGHT = 2
376         };
377
378         enum BoxType {
379                 ///
380                 BOX_NONE = 0,
381                 ///
382                 BOX_PARBOX = 1,
383                 ///
384                 BOX_MINIPAGE = 2,
385                 ///
386                 BOX_VARWIDTH = 3
387         };
388
389         enum CaptionType {
390                 ///
391                 CAPTION_FIRSTHEAD,
392                 ///
393                 CAPTION_HEAD,
394                 ///
395                 CAPTION_FOOT,
396                 ///
397                 CAPTION_LASTFOOT,
398                 ///
399                 CAPTION_ANY
400         };
401
402         enum RowDirection {
403                 UP,
404                 DOWN
405         };
406
407         enum ColDirection {
408                 RIGHT,
409                 LEFT
410         };
411
412         class ltType {
413         public:
414                 // constructor
415                 ltType();
416                 // we have this header type (is set in the getLT... functions)
417                 bool set;
418                 // double borders on top
419                 bool topDL;
420                 // double borders on bottom
421                 bool bottomDL;
422                 // used for FirstHeader & LastFooter and if this is true
423                 // all the rows marked as FirstHeader or LastFooter are
424                 // ignored in the output and it is set to be empty!
425                 bool empty;
426         };
427
428         /// index indicating an invalid position
429         static const idx_type npos = static_cast<idx_type>(-1);
430
431         /// constructor
432         Tabular(Buffer * buf, col_type columns_arg, row_type rows_arg);
433
434         /// Returns true if there is a topline, returns false if not
435         bool topLine(idx_type cell) const;
436         /// Returns true if there is a topline, returns false if not
437         bool bottomLine(idx_type cell) const;
438         /// Returns true if there is a topline, returns false if not
439         /// If \p ignore_bt is true, we return the state as if booktabs was
440         /// not used
441         bool leftLine(idx_type cell, bool const ignore_bt = false) const;
442         /// Returns true if there is a topline, returns false if not
443         /// If \p ignore_bt is true, we return the state as if booktabs was
444         /// not used
445         bool rightLine(idx_type cell, bool const ignore_bt = false) const;
446         /// Returns whether the top line is trimmed left and/or right
447         std::pair<bool, bool> topLineTrim(idx_type const cell) const;
448         /// Returns whether the bottom line is trimmed left and/or right
449         std::pair<bool, bool> bottomLineTrim(idx_type const cell) const;
450
451         /// return space occupied by the second horizontal line and
452         /// interline space above row \p row in pixels
453         int interRowSpace(row_type row) const;
454         ///
455         int interColumnSpace(idx_type cell) const;
456
457         /* returns the maximum over all rows */
458         ///
459         int cellWidth(idx_type cell) const;
460         ///
461         int cellHeight(idx_type cell) const;
462         ///
463         int width() const;
464         ///
465         int height() const;
466         ///
467         row_type nrows() const {return row_info.size();}
468         ///
469         col_type ncols() const {return column_info.size();}
470         ///
471         int rowAscent(row_type row) const;
472         ///
473         int rowDescent(row_type row) const;
474         ///
475         void setRowAscent(row_type row, int height);
476         ///
477         void setRowDescent(row_type row, int height);
478         ///
479         void setTopLine(idx_type cell, bool line);
480         ///
481         void setBottomLine(idx_type cell, bool line);
482         ///
483         void setTopLineLTrim(idx_type cell, bool val);
484         ///
485         void setBottomLineLTrim(idx_type cell, bool val);
486         ///
487         void setTopLineRTrim(idx_type cell, bool val);
488         ///
489         void setBottomLineRTrim(idx_type cell, bool val);
490         ///
491         void setTopLineTrim(idx_type cell, std::pair<bool, bool>);
492         ///
493         void setBottomLineTrim(idx_type cell, std::pair<bool, bool>);
494         ///
495         void setLeftLine(idx_type cell, bool line);
496         ///
497         void setRightLine(idx_type cell, bool line);
498         ///
499         bool rowTopLine(row_type row) const;
500         ///
501         bool rowBottomLine(row_type row) const;
502         ///
503         bool columnLeftLine(col_type column) const;
504         ///
505         bool columnRightLine(col_type column) const;
506
507         void setAlignment(idx_type cell, LyXAlignment align,
508                           bool onlycolumn = false);
509         ///
510         void setVAlignment(idx_type cell, VAlignment align,
511                            bool onlycolumn = false);
512         ///
513         void setTabularWidth(Length const & l) { tabular_width = l; }
514         ///
515         Length tabularWidth() const { return tabular_width; }
516         ///
517         void setColumnPWidth(Cursor &, idx_type, Length const &);
518         ///
519         bool setMColumnPWidth(Cursor &, idx_type, Length const &);
520         ///
521         bool toggleVarwidth(idx_type, bool const);
522         ///
523         bool setMROffset(Cursor &, idx_type, Length const &);
524         ///
525         void setAlignSpecial(idx_type cell, docstring const & special,
526                              Feature what);
527         ///
528         LyXAlignment getAlignment(idx_type cell,
529                                   bool onlycolumn = false) const;
530         ///
531         VAlignment getVAlignment(idx_type cell,
532                                  bool onlycolumn = false) const;
533         /// The vertical offset of the table due to the vertical
534         /// alignment with respect to the baseline.
535         int offsetVAlignment() const;
536         ///
537         Length const getPWidth(idx_type cell) const;
538         ///
539         Length const getMROffset(idx_type cell) const;
540         ///
541         int textHOffset(idx_type cell) const;
542         ///
543         int textVOffset(idx_type cell) const;
544         ///
545         void appendRow(row_type row);
546         ///
547         void deleteRow(row_type row, bool const force = false);
548         ///
549         void copyRow(row_type row);
550         ///
551         void insertRow(row_type row, bool copy);
552         ///
553         void moveColumn(col_type col_start, col_type col_end,
554                         ColDirection direction);
555         ///
556         void moveRow(row_type row_start, row_type row_end,
557                      RowDirection direction);
558         ///
559         void appendColumn(col_type column);
560         ///
561         void deleteColumn(col_type column, bool const force = false);
562         ///
563         void copyColumn(col_type column);
564         ///
565         void insertColumn(col_type column, bool copy);
566         ///
567         idx_type getFirstCellInRow(row_type row, bool const ct = false) const;
568         ///
569         idx_type getLastCellInRow(row_type row, bool const ct = false) const;
570         ///
571         idx_type getFirstRow(bool const ct = false) const;
572         ///
573         idx_type getLastRow(bool const ct = false) const;
574         ///
575         idx_type numberOfCellsInRow(row_type row) const;
576         ///
577         void write(std::ostream &) const;
578         ///
579         void read(Lexer &);
580         ///
581         void latex(otexstream &, OutputParams const &) const;
582         /// serialise the table in DocBook, according to buffer parameters
583         void docbook(XMLStream &, OutputParams const &) const;
584         ///
585         docstring xhtml(XMLStream &, OutputParams const &) const;
586         ///
587         void plaintext(odocstringstream &,
588                        OutputParams const & runparams, int const depth,
589                        bool onlydata, char_type delim, size_t max_length = INT_MAX) const;
590         ///
591         bool isMultiColumn(idx_type cell) const;
592         ///
593         bool hasMultiColumn(col_type cell) const;
594         ///
595         bool hasVarwidthColumn() const;
596         ///
597         bool isVTypeColumn(col_type cell) const;
598         ///
599         idx_type setMultiColumn(Cursor & cur, idx_type cell, idx_type number,
600                              bool const right_border);
601         ///
602         void unsetMultiColumn(idx_type cell);
603         ///
604         bool isPartOfMultiColumn(row_type row, col_type column) const;
605         ///
606         bool isPartOfMultiRow(row_type row, col_type column) const;
607         ///
608         bool isMultiRow(idx_type cell) const;
609         ///
610         bool hasMultiRow(row_type r) const;
611         ///
612         idx_type setMultiRow(Cursor & cur, idx_type cell, idx_type number,
613                              bool const bottom_border,
614                              LyXAlignment const halign);
615         ///
616         void unsetMultiRow(idx_type cell);
617         ///
618         row_type cellRow(idx_type cell) const;
619         ///
620         col_type cellColumn(idx_type cell) const;
621         ///
622         void setRotateCell(idx_type cell, int);
623         ///
624         int getRotateCell(idx_type cell) const;
625         ///
626         bool needRotating() const;
627         ///
628         bool isLastCell(idx_type cell) const;
629         ///
630         idx_type cellAbove(idx_type cell) const;
631         ///
632         idx_type cellBelow(idx_type cell) const;
633         /// \return the index of the VISIBLE cell at row, column
634         /// this will be the same as the cell in the previous row,
635         /// e.g., if the cell is part of a multirow
636         idx_type cellIndex(row_type row, col_type column) const;
637         ///
638         void setUsebox(idx_type cell, BoxType);
639         ///
640         BoxType getUsebox(idx_type cell) const;
641         //
642         // Long Tabular Options support functions
643         ///
644         void setLTHead(row_type row, bool flag, ltType const &, bool first);
645         ///
646         bool getRowOfLTHead(row_type row, ltType &) const;
647         ///
648         bool getRowOfLTFirstHead(row_type row, ltType &) const;
649         ///
650         void setLTFoot(row_type row, bool flag, ltType const &, bool last);
651         ///
652         bool getRowOfLTFoot(row_type row, ltType &) const;
653         ///
654         bool getRowOfLTLastFoot(row_type row, ltType &) const;
655         ///
656         void setLTNewPage(row_type row, bool what);
657         ///
658         bool getLTNewPage(row_type row) const;
659         ///
660         idx_type setLTCaption(Cursor & cur, row_type row, bool what);
661         ///
662         bool ltCaption(row_type row) const;
663         ///
664         bool haveLTHead(bool withcaptions = true) const;
665         ///
666         bool haveLTFirstHead(bool withcaptions = true) const;
667         ///
668         bool haveLTFoot(bool withcaptions = true) const;
669         ///
670         bool haveLTLastFoot(bool withcaptions = true) const;
671         ///
672         bool haveLTCaption(CaptionType captiontype = CAPTION_ANY) const;
673         ///
674         // end longtable support
675
676         //@{
677         /// there is a subtle difference between these two methods.
678         ///   cellInset(r,c);
679         /// and
680         ///   cellInset(cellIndex(r,c));
681         /// can return different things. this is because cellIndex(r,c)
682         /// returns the VISIBLE cell at r,c, which may be the same as the
683         /// cell at the previous row or column, if we're dealing with some
684         /// multirow or multicell.
685         std::shared_ptr<InsetTableCell> cellInset(idx_type cell);
686         std::shared_ptr<InsetTableCell> cellInset(row_type row, col_type column);
687         InsetTableCell const * cellInset(idx_type cell) const;
688         //@}
689         ///
690         void setCellInset(row_type row, col_type column,
691                           std::shared_ptr<InsetTableCell>);
692         /// Search for \param inset in the tabular, with the
693         ///
694         void validate(LaTeXFeatures &) const;
695
696         //private:
697         // FIXME Now that cells have an InsetTableCell as their insets, rather
698         // than an InsetText, it'd be possible to reverse the relationship here,
699         // so that cell_vector was a vector<InsetTableCell> rather than a
700         // vector<CellData>, and an InsetTableCell had a CellData as a member,
701         // or perhaps just had its members as members.
702         ///
703         class CellData {
704         public:
705                 ///
706                 explicit CellData(Buffer *);
707                 ///
708                 CellData(CellData const &);
709                 ///
710                 CellData & operator=(CellData const &);
711                 ///
712                 idx_type cellno;
713                 ///
714                 int width;
715                 ///
716                 int multicolumn;
717                 ///
718                 int multirow;
719                 ///
720                 Length mroffset;
721                 ///
722                 LyXAlignment alignment;
723                 ///
724                 VAlignment valignment;
725                 /// width of the part before the decimal
726                 int decimal_hoffset;
727                 /// width of the decimal part
728                 int decimal_width;
729                 ///
730                 int voffset;
731                 ///
732                 bool top_line;
733                 ///
734                 bool bottom_line;
735                 ///
736                 bool left_line;
737                 ///
738                 bool right_line;
739                 ///
740                 bool top_line_rtrimmed;
741                 ///
742                 bool top_line_ltrimmed;
743                 ///
744                 bool bottom_line_rtrimmed;
745                 ///
746                 bool bottom_line_ltrimmed;
747                 ///
748                 BoxType usebox;
749                 ///
750                 int rotate;
751                 ///
752                 docstring align_special;
753                 ///
754                 Length p_width; // this is only set for multicolumn!!!
755                 ///
756                 std::shared_ptr<InsetTableCell> inset;
757         };
758         ///
759         CellData const & cellInfo(idx_type cell) const;
760         ///
761         CellData & cellInfo(idx_type cell);
762         ///
763         typedef std::vector<CellData> cell_vector;
764         ///
765         typedef std::vector<cell_vector> cell_vvector;
766
767         ///
768         class RowData {
769         public:
770                 ///
771                 RowData();
772                 ///
773                 int ascent;
774                 ///
775                 int descent;
776                 /// Extra space between the top line and this row
777                 Length top_space;
778                 /// Ignore top_space if true and use the default top space
779                 bool top_space_default;
780                 /// Extra space between this row and the bottom line
781                 Length bottom_space;
782                 /// Ignore bottom_space if true and use the default bottom space
783                 bool bottom_space_default;
784                 /// Extra space between the bottom line and the next top line
785                 Length interline_space;
786                 /// Ignore interline_space if true and use the default interline space
787                 bool interline_space_default;
788                 /// This are for longtabulars only
789                 /// a row of endhead
790                 bool endhead;
791                 /// a row of endfirsthead
792                 bool endfirsthead;
793                 /// a row of endfoot
794                 bool endfoot;
795                 /// row of endlastfoot
796                 bool endlastfoot;
797                 /// row for a newpage
798                 bool newpage;
799                 /// caption
800                 bool caption;
801                 ///
802                 Change change;
803         };
804         ///
805         typedef std::vector<RowData> row_vector;
806
807         ///
808         class ColumnData {
809                 public:
810                 ///
811                 ColumnData();
812                 ///
813                 LyXAlignment alignment;
814                 ///
815                 VAlignment valignment;
816                 ///
817                 int width;
818                 ///
819                 Length p_width;
820                 ///
821                 docstring align_special;
822                 ///
823                 docstring decimal_point;
824                 ///
825                 bool varwidth;
826                 ///
827                 Change change;
828         };
829         ///
830         typedef std::vector<ColumnData> column_vector;
831
832         ///
833         idx_type numberofcells;
834         ///
835         std::vector<row_type> rowofcell;
836         ///
837         std::vector<col_type> columnofcell;
838         ///
839         row_vector row_info;
840         ///
841         column_vector column_info;
842         ///
843         cell_vvector cell_info;
844         ///
845         Length tabular_width;
846         ///
847         bool use_booktabs;
848         ///
849         int rotate;
850         ///
851         VAlignment tabular_valignment;
852         //
853         // for long tabulars
854         ///
855         HAlignment longtabular_alignment;
856         //
857         bool is_long_tabular;
858         /// endhead data
859         ltType endhead;
860         /// endfirsthead data
861         ltType endfirsthead;
862         /// endfoot data
863         ltType endfoot;
864         /// endlastfoot data
865         ltType endlastfoot;
866
867         ///
868         void init(Buffer *, row_type rows_arg,
869                   col_type columns_arg);
870         ///
871         void updateIndexes();
872         ///
873         bool setFixedWidth(row_type r, col_type c);
874         /// return true of update is needed
875         bool updateColumnWidths(MetricsInfo & mi);
876         ///
877         idx_type columnSpan(idx_type cell) const;
878         ///
879         idx_type rowSpan(idx_type cell) const;
880         ///
881         BoxType useBox(idx_type cell) const;
882         ///
883         // helper function for Latex
884         ///
885         void TeXTopHLine(otexstream &, row_type row, std::list<col_type>,
886                          std::list<col_type>) const;
887         ///
888         void TeXBottomHLine(otexstream &, row_type row, std::list<col_type>,
889                             std::list<col_type>) const;
890         ///
891         void TeXCellPreamble(otexstream &, idx_type cell, bool & ismulticol, bool & ismultirow,
892                              bool const bidi) const;
893         ///
894         void TeXCellPostamble(otexstream &, idx_type cell, bool ismulticol, bool ismultirow) const;
895         ///
896         void TeXLongtableHeaderFooter(otexstream &, OutputParams const &, std::list<col_type>,
897                                       std::list<col_type>) const;
898         ///
899         bool isValidRow(row_type const row) const;
900         ///
901         void TeXRow(otexstream &, row_type const row,
902                     OutputParams const &, std::list<col_type>, std::list<col_type>) const;
903         ///
904         // helper functions for plain text
905         ///
906         bool plaintextTopHLine(odocstringstream &, row_type row,
907                                std::vector<unsigned int> const &) const;
908         ///
909         bool plaintextBottomHLine(odocstringstream &, row_type row,
910                                   std::vector<unsigned int> const &) const;
911         ///
912         void plaintextPrintCell(odocstringstream &,
913                                 OutputParams const &,
914                                 idx_type cell, row_type row, col_type column,
915                                 std::vector<unsigned int> const &,
916                                 bool onlydata, size_t max_length) const;
917         /// auxiliary function for DocBook
918         void docbookRow(XMLStream &, row_type, OutputParams const &,
919                                         bool header = false) const;
920         /// auxiliary function for DocBook: export this row as HTML
921         void docbookRowAsHTML(XMLStream &, row_type, OutputParams const &,
922                                         bool header) const;
923         /// auxiliary function for DocBook: export this row as CALS
924         void docbookRowAsCALS(XMLStream &, row_type, OutputParams const &) const;
925         ///
926         docstring xhtmlRow(XMLStream & xs, row_type, OutputParams const &,
927                            bool header = false) const;
928
929         /// change associated Buffer
930         void setBuffer(Buffer & buffer);
931         /// retrieve associated Buffer
932         Buffer const & buffer() const { return *buffer_; }
933         /// retrieve associated Buffer
934         Buffer & buffer() { return *buffer_; }
935
936 private:
937         Buffer * buffer_;
938
939 }; // Tabular
940
941
942 class InsetTabular : public Inset
943 {
944 public:
945         ///
946         InsetTabular(Buffer *, row_type rows = 1,
947                      col_type columns = 1);
948         ///
949         ~InsetTabular();
950         ///
951         void setBuffer(Buffer & buffer) override;
952
953         ///
954         static void string2params(std::string const &, InsetTabular &);
955         ///
956         static std::string params2string(InsetTabular const &);
957         ///
958         void read(Lexer &) override;
959         ///
960         void write(std::ostream &) const override;
961         ///
962         void metrics(MetricsInfo &, Dimension &) const override;
963         ///
964         void draw(PainterInfo & pi, int x, int y) const override;
965         ///
966         void drawSelection(PainterInfo & pi, int x, int y) const override;
967         ///
968         void drawBackground(PainterInfo & pi, int x, int y) const override;
969         ///
970         bool editable() const override { return true; }
971         ///
972         bool hasSettings() const override { return true; }
973         ///
974         bool insetAllowed(InsetCode code) const override;
975         ///
976         bool allowSpellCheck() const override { return true; }
977         ///
978         bool canTrackChanges() const override { return true; }
979         ///
980         bool canPaintChange(BufferView const &) const override { return true; }
981         /** returns false if, when outputting LaTeX, font changes should
982             be closed before generating this inset. This is needed for
983             insets that may contain several paragraphs */
984         bool inheritFont() const override { return false; }
985         ///
986         bool allowMultiPar() const override;
987         ///
988         bool allowsCaptionVariation(std::string const &) const override;
989         //
990         bool isTable() const override { return true; }
991         ///
992         RowFlags rowFlags() const override;
993         ///
994         void latex(otexstream &, OutputParams const &) const override;
995         ///
996         int plaintext(odocstringstream & ods, OutputParams const & op,
997                       size_t max_length = INT_MAX) const override;
998         ///
999         void docbook(XMLStream &, OutputParams const &) const override;
1000         ///
1001         docstring xhtml(XMLStream &, OutputParams const &) const override;
1002         ///
1003         void validate(LaTeXFeatures & features) const override;
1004         ///
1005         InsetCode lyxCode() const override { return TABULAR_CODE; }
1006         ///
1007         std::string contextMenu(BufferView const &, int, int) const override;
1008         ///
1009         std::string contextMenuName() const override;
1010         /// get offset of this cursor slice relative to our upper left corner
1011         void cursorPos(BufferView const & bv, CursorSlice const & sl,
1012                 bool boundary, int & x, int & y) const override;
1013         /// Executes a space-separated sequence of tabular-features requests
1014         void tabularFeatures(Cursor & cur, std::string const & what);
1015         /// Change a single tabular feature; does not handle undo.
1016         void tabularFeatures(Cursor & cur, Tabular::Feature feature,
1017                              std::string const & val = std::string());
1018         /// number of cells
1019         size_t nargs() const override { return tabular.numberofcells; }
1020         ///
1021         std::shared_ptr<InsetTableCell const> cell(idx_type) const;
1022         ///
1023         std::shared_ptr<InsetTableCell> cell(idx_type);
1024         ///
1025         Text * getText(int) const override;
1026
1027         /// does the inset contain changes ?
1028         bool isChanged() const override;
1029         /// set the change for the entire inset
1030         void setChange(Change const & change) override;
1031         /// accept the changes within the inset
1032         void acceptChanges() override;
1033         /// reject the changes within the inset
1034         void rejectChanges() override;
1035
1036         // this should return true if we have a "normal" cell, otherwise false.
1037         // "normal" means without width set!
1038         /// should all paragraphs be output with "Standard" layout?
1039         bool allowParagraphCustomization(idx_type cell = 0) const override;
1040         ///
1041         void addPreview(DocIterator const & inset_pos,
1042                 graphics::PreviewLoader &) const override;
1043
1044         /// lock cell with given index
1045         void edit(Cursor & cur, bool front, EntryDirection entry_from) override;
1046         /// get table row from x coordinate
1047         int rowFromY(Cursor & cur, int y) const;
1048         /// get table column from y coordinate
1049         int columnFromX(Cursor & cur, int x) const;
1050         ///
1051         Inset * editXY(Cursor & cur, int x, int y) override;
1052         /// can we go further down on mouse click?
1053         bool descendable(BufferView const &) const override { return true; }
1054         /// Update the counters of this inset and of its contents
1055         void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
1056         ///
1057         void addToToc(DocIterator const & di, bool output_active,
1058                                   UpdateType utype, TocBackend & backend) const override;
1059
1060         ///
1061         bool completionSupported(Cursor const &) const override;
1062         ///
1063         bool inlineCompletionSupported(Cursor const & cur) const override;
1064         ///
1065         bool automaticInlineCompletion() const override;
1066         ///
1067         bool automaticPopupCompletion() const override;
1068         ///
1069         bool showCompletionCursor() const override;
1070         ///
1071         CompletionList const * createCompletionList(Cursor const & cur) const override;
1072         ///
1073         docstring completionPrefix(Cursor const & cur) const override;
1074         ///
1075         bool insertCompletion(Cursor & cur, docstring const & s, bool finished) override;
1076         ///
1077         void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const override;
1078         ///
1079         bool usePlainLayout() const override { return true; }
1080         ///
1081         docstring layoutName() const override { return from_ascii("Tabular"); }
1082
1083
1084         ///
1085         InsetTabular * asInsetTabular() override { return this; }
1086         ///
1087         InsetTabular const * asInsetTabular() const override { return this; }
1088         ///
1089         bool isRightToLeft(Cursor & cur) const;
1090         /// writes the cells between stidx and enidx as a string, optionally
1091         /// descending into the insets
1092         docstring asString(idx_type stidx, idx_type enidx, bool intoInsets = true);
1093         ///
1094         ParagraphList asParList(idx_type stidx, idx_type enidx);
1095
1096         /// Returns whether the cell in the specified row and column is selected.
1097         bool isCellSelected(Cursor & cur, row_type row, col_type col) const;
1098         ///
1099         void setLayoutForHiddenCells(DocumentClass const & dc);
1100         //
1101         // Public structures and variables
1102         ///
1103         mutable Tabular tabular;
1104
1105 private:
1106         ///
1107         InsetTabular(InsetTabular const &);
1108         ///
1109         void doDispatch(Cursor & cur, FuncRequest & cmd) override;
1110         ///
1111         bool getFeatureStatus(Cursor & cur, std::string const & s,
1112                          std::string const & argument, FuncStatus & status) const;
1113         ///
1114         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const override;
1115         ///
1116         Inset * clone() const override { return new InsetTabular(*this); }
1117
1118         ///
1119         bool hitSelectRow(BufferView const & bv, int x) const;
1120         ///
1121         bool hitSelectColumn(BufferView const & bv, int y) const;
1122         /// Returns true if coordinates are on row/column selection zones
1123         bool clickable(BufferView const &, int x, int y) const override;
1124
1125         ///
1126         void drawCellLines(PainterInfo &, int x, int y, row_type row,
1127                            idx_type cell) const;
1128         ///
1129         void setCursorFromCoordinates(Cursor & cur, int x, int y) const;
1130
1131         ///
1132         void moveNextCell(Cursor & cur,
1133                                 EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
1134         ///
1135         void movePrevCell(Cursor & cur,
1136                                 EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
1137         ///
1138         int cellXPos(idx_type cell) const;
1139         ///
1140         int cellYPos(idx_type cell) const;
1141         ///
1142         bool copySelection(Cursor & cur);
1143         ///
1144         bool pasteClipboard(Cursor & cur);
1145         ///
1146         void cutSelection(Cursor & cur);
1147         ///
1148         void getSelection(Cursor & cur, row_type & rs, row_type & re,
1149                           col_type & cs, col_type & ce) const;
1150         ///
1151         bool insertPlaintextString(BufferView &, docstring const & buf, bool usePaste);
1152
1153         /// return the "Manhattan distance" to nearest corner
1154         int dist(BufferView &, idx_type cell, int x, int y) const;
1155         /// return the cell nearest to x, y
1156         idx_type getNearestCell(BufferView &, int x, int y) const;
1157
1158         /// test the rotation state of the given cell range.
1159         bool oneCellHasRotationState(bool rotated,
1160                                 row_type row_start, row_type row_end,
1161                                 col_type col_start, col_type col_end) const;
1162
1163         /// true when selecting rows with the mouse
1164         bool rowselect_;
1165         /// true when selecting columns with the mouse
1166         bool colselect_;
1167 };
1168
1169 std::string const featureAsString(Tabular::Feature feature);
1170
1171 /// Split cell on decimal symbol
1172 InsetTableCell splitCell(InsetTableCell & head, docstring const & decimal_sym, bool & hassep);
1173
1174 } // namespace lyx
1175
1176 #endif // INSET_TABULAR_H