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