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