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