]> git.lyx.org Git - lyx.git/blob - src/insets/insettabular.h
fix bug 2188
[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  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12
13 // This is Juergen's rewrite of the tabular (table) support.
14
15 // Things to think of when designing the new tabular support:
16 // - color support (colortbl, color)
17 // - decimal alignment (dcloumn)
18 // - custom lines (hhline)
19 // - rotation
20 // - multicolumn
21 // - multirow
22 // - column styles
23
24 // This is what I have written about tabular support in the LyX3-Tasks file:
25 //
26 //  o rewrite of table code. Should probably be written as some
27 //    kind of an inset. [Done]
28 // o enhance longtable support
29
30 // Lgb
31
32 #ifndef INSETTABULAR_H
33 #define INSETTABULAR_H
34
35 #include "inset.h"
36 #include "tabular.h"
37
38 class FuncStatus;
39 class LyXLex;
40 class Painter;
41 class BufferView;
42 class Buffer;
43 class BufferParams;
44 class Paragraph;
45 class CursorSlice;
46
47
48 class InsetTabular : public InsetOld {
49 public:
50         ///
51         InsetTabular(Buffer const &, row_type rows = 1,
52                      col_type columns = 1);
53         ///
54         ~InsetTabular();
55         ///
56         void read(Buffer const &, LyXLex &);
57         ///
58         void write(Buffer const &, std::ostream &) const;
59         ///
60         void metrics(MetricsInfo &, Dimension &) const;
61         ///
62         void draw(PainterInfo & pi, int x, int y) const;
63         ///
64         void drawSelection(PainterInfo & pi, int x, int y) const;
65         ///
66         std::string const editMessage() const;
67         ///
68         EDITABLE editable() const { return HIGHLY_EDITABLE; }
69         ///
70         bool insetAllowed(InsetBase::Code) const { return true; }
71         ///
72         bool isTextInset() const { return true; }
73         /** returns true if, when outputing LaTeX, font changes should
74             be closed before generating this inset. This is needed for
75             insets that may contain several paragraphs */
76         bool noFontChange() const { return true; }
77         ///
78         bool display() const { return tabular.isLongTabular(); }
79         ///
80         int latex(Buffer const &, std::ostream &,
81                   OutputParams const &) const;
82         ///
83         int plaintext(Buffer const &, std::ostream &,
84                   OutputParams const &) const;
85         ///
86         int linuxdoc(Buffer const &, std::ostream &,
87                      OutputParams const &) const;
88         ///
89         int docbook(Buffer const &, std::ostream &,
90                     OutputParams const &) const;
91         ///
92         void validate(LaTeXFeatures & features) const;
93         ///
94         Code lyxCode() const { return InsetBase::TABULAR_CODE; }
95         /// get offset of this cursor slice relative to our upper left corner
96         void cursorPos(CursorSlice const & sl, bool boundary, int & x, int & y) const;
97         ///
98         bool tabularFeatures(LCursor & cur, std::string const & what);
99         ///
100         void tabularFeatures(LCursor & cur, LyXTabular::Feature feature,
101                              std::string const & val = std::string());
102         ///
103         void openLayoutDialog(BufferView *) const;
104         ///
105         bool showInsetDialog(BufferView *) const;
106         /// number of cells
107         size_t nargs() const { return tabular.getNumberOfCells(); }
108         ///
109         boost::shared_ptr<InsetText const> cell(idx_type) const;
110         ///
111         boost::shared_ptr<InsetText> cell(idx_type);
112         ///
113         LyXText * getText(int) const;
114
115         ///
116         void markErased(bool);
117
118         // this should return true if we have a "normal" cell, otherwise false.
119         // "normal" means without width set!
120         /// should all paragraphs be output with "Standard" layout?
121         bool forceDefaultParagraphs(idx_type cell = 0) const;
122
123         ///
124         void addPreview(lyx::graphics::PreviewLoader &) const;
125
126         ///
127         Buffer const & buffer() const;
128
129         /// set the owning buffer
130         void buffer(Buffer const * buf);
131         /// lock cell with given index
132         void edit(LCursor & cur, bool left);
133         ///
134         InsetBase * editXY(LCursor & cur, int x, int y);
135         /// can we go further down on mouse click?
136         bool descendable() const { return true; }
137
138         //
139         // Public structures and variables
140         ///
141         mutable LyXTabular tabular;
142
143 protected:
144         ///
145         InsetTabular(InsetTabular const &);
146         ///
147         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
148         ///
149         bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
150         ///
151         int scroll() const { return scx_; }
152
153 private:
154         virtual std::auto_ptr<InsetBase> doClone() const;
155
156         ///
157         void drawCellLines(Painter &, int x, int y, row_type row,
158                            idx_type cell, bool erased) const;
159         ///
160         void setCursorFromCoordinates(LCursor & cur, int x, int y) const;
161
162         ///
163         void moveNextCell(LCursor & cur);
164         ///
165         void movePrevCell(LCursor & cur);
166         ///
167         int getCellXPos(idx_type cell) const;
168         ///
169         void resetPos(LCursor & cur) const;
170         ///
171         void removeTabularRow();
172         ///
173         bool hasPasteBuffer() const;
174         ///
175         bool copySelection(LCursor & cur);
176         ///
177         bool pasteSelection(LCursor & cur);
178         ///
179         void cutSelection(LCursor & cur);
180         ///
181         bool isRightToLeft(LCursor & cur) const;
182         ///
183         void getSelection(LCursor & cur, row_type & rs, row_type & re,
184                           col_type & cs, col_type & ce) const;
185         ///
186         bool insertAsciiString(BufferView &, std::string const & buf, bool usePaste);
187         /// are we operating on several cells?
188         bool tablemode(LCursor & cur) const;
189
190         /// return the "Manhattan distance" to nearest corner
191         int dist(idx_type cell, int x, int y) const;
192         /// return the cell nearest to x, y
193         idx_type getNearestCell(int x, int y) const;
194
195         ///
196         Buffer const * buffer_;
197         ///
198         mutable idx_type first_visible_cell;
199         ///
200         mutable int scx_;
201 };
202
203
204 #include "mailinset.h"
205
206
207 class InsetTabularMailer : public MailInset {
208 public:
209         ///
210         InsetTabularMailer(InsetTabular const & inset);
211         ///
212         virtual InsetBase & inset() const { return inset_; }
213         ///
214         virtual std::string const & name() const { return name_; }
215         ///
216         virtual std::string const inset2string(Buffer const &) const;
217         ///
218         static void string2params(std::string const &, InsetTabular &);
219         ///
220         static std::string const params2string(InsetTabular const &);
221 private:
222         ///
223         static std::string const name_;
224         ///
225         InsetTabular & inset_;
226 };
227
228 std::string const featureAsString(LyXTabular::Feature feature);
229
230 #endif