]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTabular.h
* new function to set border around selection
[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 Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  * \author Matthias Ettrich
10  * \author André Pönitz
11  * \author Jürgen Vigna
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16
17 // This is Juergen's rewrite of the tabular (table) support.
18
19 // Things to think of when designing the new tabular support:
20 // - color support (colortbl, color)
21 // - decimal alignment (dcloumn)
22 // - custom lines (hhline)
23 // - rotation
24 // - multicolumn
25 // - multirow
26 // - column styles
27
28 // This is what I have written about tabular support in the LyX3-Tasks file:
29 //
30 //  o rewrite of table code. Should probably be written as some
31 //    kind of an inset. [Done]
32 // o enhance longtable support
33
34 // Lgb
35
36 #ifndef INSETTABULAR_H
37 #define INSETTABULAR_H
38
39 #include "Inset.h"
40 #include "InsetText.h"
41 #include "Layout.h"
42 #include "Length.h"
43 #include "MailInset.h"
44
45 #include <boost/shared_ptr.hpp>
46
47 #include <iosfwd>
48 #include <vector>
49
50 namespace lyx {
51
52 class FuncStatus;
53 class Lexer;
54 class BufferView;
55 class Buffer;
56 class BufferParams;
57 class Paragraph;
58 class CompletionList;
59 class CursorSlice;
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 getCellAbove(idx_type cell) const;
403         ///
404         idx_type getCellBelow(idx_type cell) const;
405         ///
406         idx_type getLastCellAbove(idx_type cell) const;
407         ///
408         idx_type getLastCellBelow(idx_type cell) const;
409         ///
410         idx_type cellIndex(row_type row, col_type column) const;
411         ///
412         void setUsebox(idx_type cell, BoxType);
413         ///
414         BoxType getUsebox(idx_type cell) const;
415         //
416         // Long Tabular Options support functions
417         ///
418         bool checkLTType(row_type row, ltType const &) const;
419         ///
420         void setLTHead(row_type row, bool flag, ltType const &, bool first);
421         ///
422         bool getRowOfLTHead(row_type row, ltType &) const;
423         ///
424         bool getRowOfLTFirstHead(row_type row, ltType &) const;
425         ///
426         void setLTFoot(row_type row, bool flag, ltType const &, bool last);
427         ///
428         bool getRowOfLTFoot(row_type row, ltType &) const;
429         ///
430         bool getRowOfLTLastFoot(row_type row, ltType &) const;
431         ///
432         void setLTNewPage(row_type row, bool what);
433         ///
434         bool getLTNewPage(row_type row) const;
435         ///
436         bool haveLTHead() const;
437         ///
438         bool haveLTFirstHead() const;
439         ///
440         bool haveLTFoot() const;
441         ///
442         bool haveLTLastFoot() const;
443         ///
444         // end longtable support
445         ///
446         boost::shared_ptr<InsetText> getCellInset(idx_type cell) const;
447         ///
448         boost::shared_ptr<InsetText> getCellInset(row_type row,
449                                                   col_type column) const;
450         ///
451         void setCellInset(row_type row, col_type column,
452                           boost::shared_ptr<InsetText>) const;
453         /// Search for \param inset in the tabular, with the
454         ///
455         idx_type getCellFromInset(Inset const * inset) const;
456         ///
457         row_type rowCount() const { return row_info.size(); }
458         ///
459         col_type columnCount() const { return column_info.size();}
460         ///
461         void validate(LaTeXFeatures &) const;
462         ///
463 //private:
464         ///
465         class CellData {
466         public:
467                 ///
468                 CellData(Buffer const &);
469                 ///
470                 CellData(CellData const &);
471                 ///
472                 CellData & operator=(CellData);
473                 ///
474                 void swap(CellData & rhs);
475                 ///
476                 idx_type cellno;
477                 ///
478                 int width;
479                 ///
480                 int multicolumn;
481                 ///
482                 LyXAlignment alignment;
483                 ///
484                 VAlignment valignment;
485                 ///
486                 bool top_line;
487                 ///
488                 bool bottom_line;
489                 ///
490                 bool left_line;
491                 ///
492                 bool right_line;
493                 ///
494                 BoxType usebox;
495                 ///
496                 bool rotate;
497                 ///
498                 docstring align_special;
499                 ///
500                 Length p_width; // this is only set for multicolumn!!!
501                 ///
502                 boost::shared_ptr<InsetText> inset;
503         };
504         CellData & cellinfo_of_cell(idx_type cell) const;
505         ///
506         typedef std::vector<CellData> cell_vector;
507         ///
508         typedef std::vector<cell_vector> cell_vvector;
509
510         ///
511         class RowData {
512         public:
513                 ///
514                 RowData();
515                 ///
516                 int ascent;
517                 ///
518                 int descent;
519                 ///
520                 bool top_line;
521                 ///
522                 bool bottom_line;
523                 /// Extra space between the top line and this row
524                 Length top_space;
525                 /// Ignore top_space if true and use the default top space
526                 bool top_space_default;
527                 /// Extra space between this row and the bottom line
528                 Length bottom_space;
529                 /// Ignore bottom_space if true and use the default bottom space
530                 bool bottom_space_default;
531                 /// Extra space between the bottom line and the next top line
532                 Length interline_space;
533                 /// Ignore interline_space if true and use the default interline space
534                 bool interline_space_default;
535                 /// This are for longtabulars only
536                 /// a row of endhead
537                 bool endhead;
538                 /// a row of endfirsthead
539                 bool endfirsthead;
540                 /// a row of endfoot
541                 bool endfoot;
542                 /// row of endlastfoot
543                 bool endlastfoot;
544                 /// row for a newpage
545                 bool newpage;
546         };
547         ///
548         typedef std::vector<RowData> row_vector;
549
550         ///
551         class ColumnData {
552                 public:
553                 ///
554                 ColumnData();
555                 ///
556                 LyXAlignment alignment;
557                 ///
558                 VAlignment valignment;
559                 ///
560                 bool left_line;
561                 ///
562                 bool right_line;
563                 ///
564                 int width;
565                 ///
566                 Length p_width;
567                 ///
568                 docstring align_special;
569         };
570         ///
571         typedef std::vector<ColumnData> column_vector;
572
573         ///
574         idx_type numberofcells;
575         ///
576         std::vector<row_type> rowofcell;
577         ///
578         std::vector<col_type> columnofcell;
579         ///
580         row_vector row_info;
581         ///
582         column_vector column_info;
583         ///
584         mutable cell_vvector cell_info;
585         ///
586         bool use_booktabs;
587         ///
588         bool rotate;
589         //
590         // for long tabulars
591         //
592         bool is_long_tabular;
593         /// endhead data
594         ltType endhead;
595         /// endfirsthead data
596         ltType endfirsthead;
597         /// endfoot data
598         ltType endfoot;
599         /// endlastfoot data
600         ltType endlastfoot;
601
602         ///
603         void init(Buffer const &, row_type rows_arg,
604                   col_type columns_arg);
605         ///
606         void updateIndexes();
607         /// Returns true if a complete update is necessary, otherwise false
608         bool setWidthOfMulticolCell(idx_type cell, int new_width);
609         ///
610         void recalculateMulticolumnsOfColumn(col_type column);
611         /// Returns true if change
612         void calculate_width_of_column(col_type column);
613         ///
614         bool calculate_width_of_column_NMC(col_type column); // no multi cells
615         ///
616         idx_type columnSpan(idx_type cell) const;
617         ///
618         BoxType useParbox(idx_type cell) const;
619         ///
620         // helper function for Latex returns number of newlines
621         ///
622         int TeXTopHLine(odocstream &, row_type row) const;
623         ///
624         int TeXBottomHLine(odocstream &, row_type row) const;
625         ///
626         int TeXCellPreamble(odocstream &, idx_type cell) const;
627         ///
628         int TeXCellPostamble(odocstream &, idx_type cell) const;
629         ///
630         int TeXLongtableHeaderFooter(odocstream &, OutputParams const &) const;
631         ///
632         bool isValidRow(row_type const row) const;
633         ///
634         int TeXRow(odocstream &, row_type const row,
635                    OutputParams const &) const;
636         ///
637         // helper functions for plain text
638         ///
639         bool plaintextTopHLine(odocstream &, row_type row,
640                                std::vector<unsigned int> const &) const;
641         ///
642         bool plaintextBottomHLine(odocstream &, row_type row,
643                                   std::vector<unsigned int> const &) const;
644         ///
645         void plaintextPrintCell(odocstream &,
646                                 OutputParams const &,
647                                 idx_type cell, row_type row, col_type column,
648                                 std::vector<unsigned int> const &,
649                                 bool onlydata) const;
650         /// auxiliary function for docbook
651         int docbookRow(odocstream & os, row_type, OutputParams const &) const;
652
653         /// change associated Buffer
654         void setBuffer(Buffer const & buffer) { buffer_ = &buffer; }
655         /// retrieve associated Buffer
656         Buffer const & buffer() const { return *buffer_; }
657
658 private:
659         Buffer const * buffer_;
660
661         /// renumber cells after structural changes
662         void fixCellNums();
663 };
664
665
666
667 class InsetTabular : public Inset {
668 public:
669         ///
670         InsetTabular(Buffer const &, row_type rows = 1,
671                      col_type columns = 1);
672         ///
673         ~InsetTabular();
674         ///
675         void read(Lexer &);
676         ///
677         void write(std::ostream &) const;
678         ///
679         void metrics(MetricsInfo &, Dimension &) const;
680         ///
681         void draw(PainterInfo & pi, int x, int y) const;
682         ///
683         void drawSelection(PainterInfo & pi, int x, int y) const;
684         ///
685         docstring editMessage() const;
686         ///
687         EDITABLE editable() const { return HIGHLY_EDITABLE; }
688         ///
689         bool insetAllowed(InsetCode code) const;
690         ///
691         bool allowSpellCheck() const { return true; }
692         ///
693         bool canTrackChanges() const { return true; }
694         /** returns true if, when outputing LaTeX, font changes should
695             be closed before generating this inset. This is needed for
696             insets that may contain several paragraphs */
697         bool noFontChange() const { return true; }
698         ///
699         DisplayType display() const { return tabular.isLongTabular() ? AlignCenter : Inline; }
700         ///
701         int latex(odocstream &, OutputParams const &) const;
702         ///
703         int plaintext(odocstream &, OutputParams const &) const;
704         ///
705         int docbook(odocstream &, OutputParams const &) const;
706         ///
707         void validate(LaTeXFeatures & features) const;
708         ///
709         InsetCode lyxCode() const { return TABULAR_CODE; }
710         /// get offset of this cursor slice relative to our upper left corner
711         void cursorPos(BufferView const & bv, CursorSlice const & sl,
712                 bool boundary, int & x, int & y) const;
713         ///
714         bool tabularFeatures(Cursor & cur, std::string const & what);
715         ///
716         void tabularFeatures(Cursor & cur, Tabular::Feature feature,
717                              std::string const & val = std::string());
718         ///
719         void openLayoutDialog(BufferView *) const;
720         ///
721         bool showInsetDialog(BufferView *) const;
722         /// number of cells
723         size_t nargs() const { return tabular.cellCount(); }
724         ///
725         boost::shared_ptr<InsetText const> cell(idx_type) const;
726         ///
727         boost::shared_ptr<InsetText> cell(idx_type);
728         ///
729         Text * getText(int) const;
730
731         /// set the change for the entire inset
732         void setChange(Change const & change);
733         /// accept the changes within the inset
734         void acceptChanges(BufferParams const & bparams);
735         /// reject the changes within the inset
736         void rejectChanges(BufferParams const & bparams);
737
738         // this should return true if we have a "normal" cell, otherwise false.
739         // "normal" means without width set!
740         /// should all paragraphs be output with "Standard" layout?
741         virtual bool allowParagraphCustomization(idx_type cell = 0) const;
742         ///
743         virtual bool forceEmptyLayout(idx_type cell = 0) const;
744         ///
745         virtual bool useEmptyLayout() { return true; }
746         ///
747         void addPreview(graphics::PreviewLoader &) const;
748
749         /// lock cell with given index
750         void edit(Cursor & cur, bool front, EntryDirection entry_from);
751         /// get table row from x coordinate
752         int rowFromY(Cursor & cur, int y) const;
753         /// get table column from y coordinate
754         int columnFromX(Cursor & cur, int x) const;
755         ///
756         Inset * editXY(Cursor & cur, int x, int y);
757         /// can we go further down on mouse click?
758         bool descendable() const { return true; }
759         // Update the counters of this inset and of its contents
760         void updateLabels(ParIterator const &);
761
762         ///
763         bool completionSupported(Cursor const &) const;
764         ///
765         bool inlineCompletionSupported(Cursor const & cur) const;
766         ///
767         bool automaticInlineCompletion() const;
768         ///
769         bool automaticPopupCompletion() const;
770         ///
771         bool showCompletionCursor() const;
772         ///
773         CompletionList const * createCompletionList(Cursor const & cur) const;
774         ///
775         docstring completionPrefix(Cursor const & cur) const;
776         ///
777         bool insertCompletion(Cursor & cur, docstring const & s, bool finished);
778         ///
779         void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const;
780
781         //
782         // Public structures and variables
783         ///
784         mutable Tabular tabular;
785
786 private:
787         ///
788         InsetTabular(InsetTabular const &);
789         ///
790         void doDispatch(Cursor & cur, FuncRequest & cmd);
791         ///
792         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
793         ///
794         int scroll() const { return scx_; }
795         ///
796         Inset * clone() const { return new InsetTabular(*this); }
797
798         ///
799         void drawCellLines(frontend::Painter &, int x, int y, row_type row,
800                            idx_type cell, bool erased) const;
801         ///
802         void setCursorFromCoordinates(Cursor & cur, int x, int y) const;
803
804         ///
805         void moveNextCell(Cursor & cur);
806         ///
807         void movePrevCell(Cursor & cur);
808         ///
809         int getCellXPos(idx_type cell) const;
810         ///
811         void resetPos(Cursor & cur) const;
812         ///
813         void removeTabularRow();
814         ///
815         bool copySelection(Cursor & cur);
816         ///
817         bool pasteClipboard(Cursor & cur);
818         ///
819         void cutSelection(Cursor & cur);
820         ///
821         bool isRightToLeft(Cursor & cur) const;
822         ///
823         void getSelection(Cursor & cur, row_type & rs, row_type & re,
824                           col_type & cs, col_type & ce) const;
825         ///
826         bool insertPlaintextString(BufferView &, docstring const & buf, bool usePaste);
827         /// are we operating on several cells?
828         bool tablemode(Cursor & cur) const;
829
830         /// return the "Manhattan distance" to nearest corner
831         int dist(BufferView &, idx_type cell, int x, int y) const;
832         /// return the cell nearest to x, y
833         idx_type getNearestCell(BufferView &, int x, int y) const;
834
835         /// test the rotation state of the give cell range.
836         bool oneCellHasRotationState(bool rotated,
837                                 row_type row_start, row_type row_end,
838                                 col_type col_start, col_type col_end) const;
839         ///
840         mutable idx_type first_visible_cell;
841         ///
842         mutable int scx_;
843 };
844
845
846 class InsetTabularMailer : public MailInset {
847 public:
848         ///
849         InsetTabularMailer(InsetTabular const & inset);
850         ///
851         virtual Inset & inset() const { return inset_; }
852         ///
853         virtual std::string const & name() const { return name_; }
854         ///
855         virtual std::string const inset2string(Buffer const &) const;
856         ///
857         static void string2params(std::string const &, InsetTabular &);
858         ///
859         static std::string const params2string(InsetTabular const &);
860 private:
861         ///
862         static std::string const name_;
863         ///
864         InsetTabular & inset_;
865 };
866
867 std::string const featureAsString(Tabular::Feature feature);
868
869 } // namespace lyx
870
871 #endif