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