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