]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTabular.h
Fix metrics of varwidth cells (#12089)
[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, ColDirection direction);
554         ///
555         void moveRow(row_type row, RowDirection direction);
556         ///
557         void appendColumn(col_type column);
558         ///
559         void deleteColumn(col_type column, bool const force = false);
560         ///
561         void copyColumn(col_type column);
562         ///
563         void insertColumn(col_type column, bool copy);
564         ///
565         idx_type getFirstCellInRow(row_type row, bool const ct = false) const;
566         ///
567         idx_type getLastCellInRow(row_type row, bool const ct = false) const;
568         ///
569         idx_type getFirstRow(bool const ct = false) const;
570         ///
571         idx_type getLastRow(bool const ct = false) const;
572         ///
573         idx_type numberOfCellsInRow(row_type row) const;
574         ///
575         void write(std::ostream &) const;
576         ///
577         void read(Lexer &);
578         ///
579         void latex(otexstream &, OutputParams const &) const;
580         /// serialise the table in DocBook, according to buffer parameters
581         void docbook(XMLStream &, OutputParams const &) const;
582         ///
583         docstring xhtml(XMLStream &, OutputParams const &) const;
584         ///
585         void plaintext(odocstringstream &,
586                        OutputParams const & runparams, int const depth,
587                        bool onlydata, char_type delim, size_t max_length = INT_MAX) const;
588         ///
589         bool isMultiColumn(idx_type cell) const;
590         ///
591         bool hasMultiColumn(col_type cell) const;
592         ///
593         bool hasVarwidthColumn() const;
594         ///
595         bool isVTypeColumn(col_type cell) const;
596         ///
597         idx_type setMultiColumn(Cursor & cur, idx_type cell, idx_type number,
598                              bool const right_border);
599         ///
600         void unsetMultiColumn(idx_type cell);
601         ///
602         bool isPartOfMultiColumn(row_type row, col_type column) const;
603         ///
604         bool isPartOfMultiRow(row_type row, col_type column) const;
605         ///
606         bool isMultiRow(idx_type cell) const;
607         ///
608         bool hasMultiRow(row_type r) const;
609         ///
610         idx_type setMultiRow(Cursor & cur, idx_type cell, idx_type number,
611                              bool const bottom_border,
612                              LyXAlignment const halign);
613         ///
614         void unsetMultiRow(idx_type cell);
615         ///
616         row_type cellRow(idx_type cell) const;
617         ///
618         col_type cellColumn(idx_type cell) const;
619         ///
620         void setRotateCell(idx_type cell, int);
621         ///
622         int getRotateCell(idx_type cell) const;
623         ///
624         bool needRotating() const;
625         ///
626         bool isLastCell(idx_type cell) const;
627         ///
628         idx_type cellAbove(idx_type cell) const;
629         ///
630         idx_type cellBelow(idx_type cell) const;
631         /// \return the index of the VISIBLE cell at row, column
632         /// this will be the same as the cell in the previous row,
633         /// e.g., if the cell is part of a multirow
634         idx_type cellIndex(row_type row, col_type column) const;
635         ///
636         void setUsebox(idx_type cell, BoxType);
637         ///
638         BoxType getUsebox(idx_type cell) const;
639         //
640         // Long Tabular Options support functions
641         ///
642         void setLTHead(row_type row, bool flag, ltType const &, bool first);
643         ///
644         bool getRowOfLTHead(row_type row, ltType &) const;
645         ///
646         bool getRowOfLTFirstHead(row_type row, ltType &) const;
647         ///
648         void setLTFoot(row_type row, bool flag, ltType const &, bool last);
649         ///
650         bool getRowOfLTFoot(row_type row, ltType &) const;
651         ///
652         bool getRowOfLTLastFoot(row_type row, ltType &) const;
653         ///
654         void setLTNewPage(row_type row, bool what);
655         ///
656         bool getLTNewPage(row_type row) const;
657         ///
658         idx_type setLTCaption(Cursor & cur, row_type row, bool what);
659         ///
660         bool ltCaption(row_type row) const;
661         ///
662         bool haveLTHead(bool withcaptions = true) const;
663         ///
664         bool haveLTFirstHead(bool withcaptions = true) const;
665         ///
666         bool haveLTFoot(bool withcaptions = true) const;
667         ///
668         bool haveLTLastFoot(bool withcaptions = true) const;
669         ///
670         bool haveLTCaption(CaptionType captiontype = CAPTION_ANY) const;
671         ///
672         // end longtable support
673
674         //@{
675         /// there is a subtle difference between these two methods.
676         ///   cellInset(r,c);
677         /// and
678         ///   cellInset(cellIndex(r,c));
679         /// can return different things. this is because cellIndex(r,c)
680         /// returns the VISIBLE cell at r,c, which may be the same as the
681         /// cell at the previous row or column, if we're dealing with some
682         /// multirow or multicell.
683         std::shared_ptr<InsetTableCell> cellInset(idx_type cell);
684         std::shared_ptr<InsetTableCell> cellInset(row_type row, col_type column);
685         InsetTableCell const * cellInset(idx_type cell) const;
686         //@}
687         ///
688         void setCellInset(row_type row, col_type column,
689                           std::shared_ptr<InsetTableCell>);
690         /// Search for \param inset in the tabular, with the
691         ///
692         void validate(LaTeXFeatures &) const;
693
694         //private:
695         // FIXME Now that cells have an InsetTableCell as their insets, rather
696         // than an InsetText, it'd be possible to reverse the relationship here,
697         // so that cell_vector was a vector<InsetTableCell> rather than a
698         // vector<CellData>, and an InsetTableCell had a CellData as a member,
699         // or perhaps just had its members as members.
700         ///
701         class CellData {
702         public:
703                 ///
704                 explicit CellData(Buffer *);
705                 ///
706                 CellData(CellData const &);
707                 ///
708                 CellData & operator=(CellData const &);
709                 ///
710                 idx_type cellno;
711                 ///
712                 int width;
713                 ///
714                 int multicolumn;
715                 ///
716                 int multirow;
717                 ///
718                 Length mroffset;
719                 ///
720                 LyXAlignment alignment;
721                 ///
722                 VAlignment valignment;
723                 /// width of the part before the decimal
724                 int decimal_hoffset;
725                 /// width of the decimal part
726                 int decimal_width;
727                 ///
728                 int voffset;
729                 ///
730                 bool top_line;
731                 ///
732                 bool bottom_line;
733                 ///
734                 bool left_line;
735                 ///
736                 bool right_line;
737                 ///
738                 bool top_line_rtrimmed;
739                 ///
740                 bool top_line_ltrimmed;
741                 ///
742                 bool bottom_line_rtrimmed;
743                 ///
744                 bool bottom_line_ltrimmed;
745                 ///
746                 BoxType usebox;
747                 ///
748                 int rotate;
749                 ///
750                 docstring align_special;
751                 ///
752                 Length p_width; // this is only set for multicolumn!!!
753                 ///
754                 std::shared_ptr<InsetTableCell> inset;
755         };
756         ///
757         CellData const & cellInfo(idx_type cell) const;
758         ///
759         CellData & cellInfo(idx_type cell);
760         ///
761         typedef std::vector<CellData> cell_vector;
762         ///
763         typedef std::vector<cell_vector> cell_vvector;
764
765         ///
766         class RowData {
767         public:
768                 ///
769                 RowData();
770                 ///
771                 int ascent;
772                 ///
773                 int descent;
774                 /// Extra space between the top line and this row
775                 Length top_space;
776                 /// Ignore top_space if true and use the default top space
777                 bool top_space_default;
778                 /// Extra space between this row and the bottom line
779                 Length bottom_space;
780                 /// Ignore bottom_space if true and use the default bottom space
781                 bool bottom_space_default;
782                 /// Extra space between the bottom line and the next top line
783                 Length interline_space;
784                 /// Ignore interline_space if true and use the default interline space
785                 bool interline_space_default;
786                 /// This are for longtabulars only
787                 /// a row of endhead
788                 bool endhead;
789                 /// a row of endfirsthead
790                 bool endfirsthead;
791                 /// a row of endfoot
792                 bool endfoot;
793                 /// row of endlastfoot
794                 bool endlastfoot;
795                 /// row for a newpage
796                 bool newpage;
797                 /// caption
798                 bool caption;
799                 ///
800                 Change change;
801         };
802         ///
803         typedef std::vector<RowData> row_vector;
804
805         ///
806         class ColumnData {
807                 public:
808                 ///
809                 ColumnData();
810                 ///
811                 LyXAlignment alignment;
812                 ///
813                 VAlignment valignment;
814                 ///
815                 int width;
816                 ///
817                 Length p_width;
818                 ///
819                 docstring align_special;
820                 ///
821                 docstring decimal_point;
822                 ///
823                 bool varwidth;
824                 ///
825                 Change change;
826         };
827         ///
828         typedef std::vector<ColumnData> column_vector;
829
830         ///
831         idx_type numberofcells;
832         ///
833         std::vector<row_type> rowofcell;
834         ///
835         std::vector<col_type> columnofcell;
836         ///
837         row_vector row_info;
838         ///
839         column_vector column_info;
840         ///
841         cell_vvector cell_info;
842         ///
843         Length tabular_width;
844         ///
845         bool use_booktabs;
846         ///
847         int rotate;
848         ///
849         VAlignment tabular_valignment;
850         //
851         // for long tabulars
852         ///
853         HAlignment longtabular_alignment;
854         //
855         bool is_long_tabular;
856         /// endhead data
857         ltType endhead;
858         /// endfirsthead data
859         ltType endfirsthead;
860         /// endfoot data
861         ltType endfoot;
862         /// endlastfoot data
863         ltType endlastfoot;
864
865         ///
866         void init(Buffer *, row_type rows_arg,
867                   col_type columns_arg);
868         ///
869         void updateIndexes();
870         ///
871         bool setFixedWidth(row_type r, col_type c);
872         /// return true of update is needed
873         bool updateColumnWidths(MetricsInfo & mi);
874         ///
875         idx_type columnSpan(idx_type cell) const;
876         ///
877         idx_type rowSpan(idx_type cell) const;
878         ///
879         BoxType useBox(idx_type cell) const;
880         ///
881         // helper function for Latex
882         ///
883         void TeXTopHLine(otexstream &, row_type row, std::list<col_type>,
884                          std::list<col_type>) const;
885         ///
886         void TeXBottomHLine(otexstream &, row_type row, std::list<col_type>,
887                             std::list<col_type>) const;
888         ///
889         void TeXCellPreamble(otexstream &, idx_type cell, bool & ismulticol, bool & ismultirow,
890                              bool const bidi) const;
891         ///
892         void TeXCellPostamble(otexstream &, idx_type cell, bool ismulticol, bool ismultirow) const;
893         ///
894         void TeXLongtableHeaderFooter(otexstream &, OutputParams const &, std::list<col_type>,
895                                       std::list<col_type>) const;
896         ///
897         bool isValidRow(row_type const row) const;
898         ///
899         void TeXRow(otexstream &, row_type const row,
900                     OutputParams const &, std::list<col_type>, std::list<col_type>) const;
901         ///
902         // helper functions for plain text
903         ///
904         bool plaintextTopHLine(odocstringstream &, row_type row,
905                                std::vector<unsigned int> const &) const;
906         ///
907         bool plaintextBottomHLine(odocstringstream &, row_type row,
908                                   std::vector<unsigned int> const &) const;
909         ///
910         void plaintextPrintCell(odocstringstream &,
911                                 OutputParams const &,
912                                 idx_type cell, row_type row, col_type column,
913                                 std::vector<unsigned int> const &,
914                                 bool onlydata, size_t max_length) const;
915         /// auxiliary function for DocBook
916         void docbookRow(XMLStream &, row_type, OutputParams const &,
917                                         bool header = false) const;
918         /// auxiliary function for DocBook: export this row as HTML
919         void docbookRowAsHTML(XMLStream &, row_type, OutputParams const &,
920                                         bool header) const;
921         /// auxiliary function for DocBook: export this row as CALS
922         void docbookRowAsCALS(XMLStream &, row_type, OutputParams const &) const;
923         ///
924         docstring xhtmlRow(XMLStream & xs, row_type, OutputParams const &,
925                            bool header = false) const;
926
927         /// change associated Buffer
928         void setBuffer(Buffer & buffer);
929         /// retrieve associated Buffer
930         Buffer const & buffer() const { return *buffer_; }
931         /// retrieve associated Buffer
932         Buffer & buffer() { return *buffer_; }
933
934 private:
935         Buffer * buffer_;
936
937 }; // Tabular
938
939
940 class InsetTabular : public Inset
941 {
942 public:
943         ///
944         InsetTabular(Buffer *, row_type rows = 1,
945                      col_type columns = 1);
946         ///
947         ~InsetTabular();
948         ///
949         void setBuffer(Buffer & buffer) override;
950
951         ///
952         static void string2params(std::string const &, InsetTabular &);
953         ///
954         static std::string params2string(InsetTabular const &);
955         ///
956         void read(Lexer &) override;
957         ///
958         void write(std::ostream &) const override;
959         ///
960         void metrics(MetricsInfo &, Dimension &) const override;
961         ///
962         void draw(PainterInfo & pi, int x, int y) const override;
963         ///
964         void drawSelection(PainterInfo & pi, int x, int y) const override;
965         ///
966         void drawBackground(PainterInfo & pi, int x, int y) const override;
967         ///
968         bool editable() const override { return true; }
969         ///
970         bool hasSettings() const override { return true; }
971         ///
972         bool insetAllowed(InsetCode code) const override;
973         ///
974         bool allowSpellCheck() const override { return true; }
975         ///
976         bool canTrackChanges() const override { return true; }
977         ///
978         bool canPaintChange(BufferView const &) const override { return true; }
979         /** returns false if, when outputting LaTeX, font changes should
980             be closed before generating this inset. This is needed for
981             insets that may contain several paragraphs */
982         bool inheritFont() const override { return false; }
983         ///
984         bool allowMultiPar() const override;
985         ///
986         bool allowsCaptionVariation(std::string const &) const override;
987         //
988         bool isTable() const override { return true; }
989         ///
990         RowFlags rowFlags() const override;
991         ///
992         void latex(otexstream &, OutputParams const &) const override;
993         ///
994         int plaintext(odocstringstream & ods, OutputParams const & op,
995                       size_t max_length = INT_MAX) const override;
996         ///
997         void docbook(XMLStream &, OutputParams const &) const override;
998         ///
999         docstring xhtml(XMLStream &, OutputParams const &) const override;
1000         ///
1001         void validate(LaTeXFeatures & features) const override;
1002         ///
1003         InsetCode lyxCode() const override { return TABULAR_CODE; }
1004         ///
1005         std::string contextMenu(BufferView const &, int, int) const override;
1006         ///
1007         std::string contextMenuName() const override;
1008         /// get offset of this cursor slice relative to our upper left corner
1009         void cursorPos(BufferView const & bv, CursorSlice const & sl,
1010                 bool boundary, int & x, int & y) const override;
1011         /// Executes a space-separated sequence of tabular-features requests
1012         void tabularFeatures(Cursor & cur, std::string const & what);
1013         /// Change a single tabular feature; does not handle undo.
1014         void tabularFeatures(Cursor & cur, Tabular::Feature feature,
1015                              std::string const & val = std::string());
1016         /// number of cells
1017         size_t nargs() const override { return tabular.numberofcells; }
1018         ///
1019         std::shared_ptr<InsetTableCell const> cell(idx_type) const;
1020         ///
1021         std::shared_ptr<InsetTableCell> cell(idx_type);
1022         ///
1023         Text * getText(int) const override;
1024
1025         /// does the inset contain changes ?
1026         bool isChanged() const override;
1027         /// set the change for the entire inset
1028         void setChange(Change const & change) override;
1029         /// accept the changes within the inset
1030         void acceptChanges() override;
1031         /// reject the changes within the inset
1032         void rejectChanges() override;
1033
1034         // this should return true if we have a "normal" cell, otherwise false.
1035         // "normal" means without width set!
1036         /// should all paragraphs be output with "Standard" layout?
1037         bool allowParagraphCustomization(idx_type cell = 0) const override;
1038         ///
1039         void addPreview(DocIterator const & inset_pos,
1040                 graphics::PreviewLoader &) const override;
1041
1042         /// lock cell with given index
1043         void edit(Cursor & cur, bool front, EntryDirection entry_from) override;
1044         /// get table row from x coordinate
1045         int rowFromY(Cursor & cur, int y) const;
1046         /// get table column from y coordinate
1047         int columnFromX(Cursor & cur, int x) const;
1048         ///
1049         Inset * editXY(Cursor & cur, int x, int y) override;
1050         /// can we go further down on mouse click?
1051         bool descendable(BufferView const &) const override { return true; }
1052         /// Update the counters of this inset and of its contents
1053         void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
1054         ///
1055         void addToToc(DocIterator const & di, bool output_active,
1056                                   UpdateType utype, TocBackend & backend) const override;
1057
1058         ///
1059         bool completionSupported(Cursor const &) const override;
1060         ///
1061         bool inlineCompletionSupported(Cursor const & cur) const override;
1062         ///
1063         bool automaticInlineCompletion() const override;
1064         ///
1065         bool automaticPopupCompletion() const override;
1066         ///
1067         bool showCompletionCursor() const override;
1068         ///
1069         CompletionList const * createCompletionList(Cursor const & cur) const override;
1070         ///
1071         docstring completionPrefix(Cursor const & cur) const override;
1072         ///
1073         bool insertCompletion(Cursor & cur, docstring const & s, bool finished) override;
1074         ///
1075         void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const override;
1076         ///
1077         bool usePlainLayout() const override { return true; }
1078         ///
1079         docstring layoutName() const override { return from_ascii("Tabular"); }
1080
1081
1082         ///
1083         InsetTabular * asInsetTabular() override { return this; }
1084         ///
1085         InsetTabular const * asInsetTabular() const override { return this; }
1086         ///
1087         bool isRightToLeft(Cursor & cur) const;
1088         /// writes the cells between stidx and enidx as a string, optionally
1089         /// descending into the insets
1090         docstring asString(idx_type stidx, idx_type enidx, bool intoInsets = true);
1091         ///
1092         ParagraphList asParList(idx_type stidx, idx_type enidx);
1093
1094         /// Returns whether the cell in the specified row and column is selected.
1095         bool isCellSelected(Cursor & cur, row_type row, col_type col) const;
1096         ///
1097         void setLayoutForHiddenCells(DocumentClass const & dc);
1098         //
1099         // Public structures and variables
1100         ///
1101         mutable Tabular tabular;
1102
1103 private:
1104         ///
1105         InsetTabular(InsetTabular const &);
1106         ///
1107         void doDispatch(Cursor & cur, FuncRequest & cmd) override;
1108         ///
1109         bool getFeatureStatus(Cursor & cur, std::string const & s,
1110                          std::string const & argument, FuncStatus & status) const;
1111         ///
1112         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const override;
1113         ///
1114         Inset * clone() const override { return new InsetTabular(*this); }
1115
1116         ///
1117         bool hitSelectRow(BufferView const & bv, int x) const;
1118         ///
1119         bool hitSelectColumn(BufferView const & bv, int y) const;
1120         /// Returns true if coordinates are on row/column selection zones
1121         bool clickable(BufferView const &, int x, int y) const override;
1122
1123         ///
1124         void drawCellLines(PainterInfo &, int x, int y, row_type row,
1125                            idx_type cell) const;
1126         ///
1127         void setCursorFromCoordinates(Cursor & cur, int x, int y) const;
1128
1129         ///
1130         void moveNextCell(Cursor & cur,
1131                                 EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
1132         ///
1133         void movePrevCell(Cursor & cur,
1134                                 EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
1135         ///
1136         int cellXPos(idx_type cell) const;
1137         ///
1138         int cellYPos(idx_type cell) const;
1139         ///
1140         bool copySelection(Cursor & cur);
1141         ///
1142         bool pasteClipboard(Cursor & cur);
1143         ///
1144         void cutSelection(Cursor & cur);
1145         ///
1146         void getSelection(Cursor & cur, row_type & rs, row_type & re,
1147                           col_type & cs, col_type & ce) const;
1148         ///
1149         bool insertPlaintextString(BufferView &, docstring const & buf, bool usePaste);
1150
1151         /// return the "Manhattan distance" to nearest corner
1152         int dist(BufferView &, idx_type cell, int x, int y) const;
1153         /// return the cell nearest to x, y
1154         idx_type getNearestCell(BufferView &, int x, int y) const;
1155
1156         /// test the rotation state of the given cell range.
1157         bool oneCellHasRotationState(bool rotated,
1158                                 row_type row_start, row_type row_end,
1159                                 col_type col_start, col_type col_end) const;
1160
1161         /// true when selecting rows with the mouse
1162         bool rowselect_;
1163         /// true when selecting columns with the mouse
1164         bool colselect_;
1165 };
1166
1167 std::string const featureAsString(Tabular::Feature feature);
1168
1169 /// Split cell on decimal symbol
1170 InsetTableCell splitCell(InsetTableCell & head, docstring const & decimal_sym, bool & hassep);
1171
1172 } // namespace lyx
1173
1174 #endif // INSET_TABULAR_H