]> git.lyx.org Git - lyx.git/blob - src/insets/insettabular.h
39521dbbbaa6d3a61776df2d100e7e834699361d
[lyx.git] / src / insets / insettabular.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 1995-2000 The LyX Team.
8  *
9  *======================================================
10  */
11 // This is the rewrite of the tabular (table) support.
12
13 // It will probably be a lot of work.
14
15 // One first goal could be to make the inset read the old table format
16 // and just output it again... no viewing at all.
17
18 // When making the internal structure of tabular support I really think
19 // that STL containers should be used. This will separate the container from
20 // the rest of the code, which is a good thing.
21
22 // Ideally the tabular support should do as the mathed and use
23 // LaTeX in the .lyx file too.
24
25 // Things to think of when desingning the new tabular support:
26 // - color support (colortbl, color)
27 // - decimal alignment (dcloumn)
28 // - custom lines (hhline)
29 // - rotation
30 // - multicolumn
31 // - multirow
32 // - column styles
33
34 // This is what I have written about tabular support in the LyX3-Tasks file:
35 //
36 //  o rewrite of table code. Should probably be written as some
37 //          kind of an inset. At least get the code out of the kernel.
38 //                - colortbl  -multirow
39 //                - hhline    -multicolumn
40 //                - dcolumn
41 // o enhance longtable support
42
43 // Lgb
44
45 #ifndef INSETTABULAR_H
46 #define INSETTABULAR_H
47
48 #include <sigc++/signal_system.h>
49 #include <boost/smart_ptr.hpp>
50
51 #ifdef __GNUG__
52 #pragma interface
53 #endif
54
55 #include "lyxinset.h"
56 #include "tabular.h"
57 #include "LString.h"
58 #include "lyxcursor.h"
59 #include "lyxfunc.h"
60
61 class LyXLex;
62 class Painter;
63 class BufferView;
64 class Buffer;
65
66 class InsetTabular : public UpdatableInset {
67 public:
68         ///
69         enum UpdateCodes {
70                 NONE = 0,
71                 CURSOR = 1,
72                 CELL = 2,
73                 SELECTION = 3,
74                 FULL = 4,
75                 INIT = 5
76         };
77         ///
78         InsetTabular(Buffer const &, int rows = 1, int columns = 1);
79         ///
80         InsetTabular(InsetTabular const &, Buffer const &);
81         ///
82         ~InsetTabular();
83         ///
84         Inset * Clone(Buffer const &) const;
85         ///
86         void Read(Buffer const *, LyXLex &);
87         ///
88         void Write(Buffer const *, std::ostream &) const;
89         ///
90         int ascent(BufferView *, LyXFont const &) const;
91         ///
92         int descent(BufferView *, LyXFont const &) const;
93         ///
94         int width(BufferView *, LyXFont const & f) const;
95         ///
96         void draw(BufferView *, const LyXFont &, int , float &, bool) const;
97         ///
98         void update(BufferView *, LyXFont const &, bool = false);
99         ///
100         string const EditMessage() const;
101         ///
102         void Edit(BufferView *, int x, int y, unsigned int);
103         ///
104         bool doClearArea() const { return !locked; };
105         ///
106         void InsetUnlock(BufferView *);
107         ///
108         void UpdateLocal(BufferView *, UpdateCodes, bool mark_dirty) const;
109         ///
110         bool LockInsetInInset(BufferView *, UpdatableInset *);
111         ///
112         bool UnlockInsetInInset(BufferView *, UpdatableInset *,
113                                 bool lr = false);
114         ///
115         bool UpdateInsetInInset(BufferView *, Inset *);
116         ///
117         unsigned int InsetInInsetY();
118         ///
119         UpdatableInset * GetLockingInset();
120         ///
121         UpdatableInset * GetFirstLockingInsetOfType(Inset::Code);
122         ///
123         bool InsertInset(BufferView *, Inset *);
124         ///
125         bool IsTextInset() const { return true; }
126         ///
127         bool display() const { return tabular->IsLongTabular(); }
128         ///
129         void InsetButtonRelease(BufferView *, int, int, int);
130         ///
131         void InsetButtonPress(BufferView *, int, int, int);
132         ///
133         void InsetMotionNotify(BufferView *, int, int, int);
134         ///
135         void InsetKeyPress(XKeyEvent *);
136         ///
137         UpdatableInset::RESULT LocalDispatch(BufferView *, kb_action,
138                                              string const &);
139         ///
140         int Latex(Buffer const *, std::ostream &, bool, bool) const;
141         ///
142         int Ascii(Buffer const *, std::ostream &, int linelen) const;
143         ///
144         int Linuxdoc(Buffer const *, std::ostream &) const;
145         ///
146         int DocBook(Buffer const *, std::ostream &) const;
147         ///
148         void Validate(LaTeXFeatures & features) const;
149         ///
150         Inset::Code LyxCode() const { return Inset::TABULAR_CODE; }
151         ///
152         void GetCursorPos(BufferView *, int & x, int & y) const;
153         ///
154         void ToggleInsetCursor(BufferView *);
155         ///
156         bool TabularFeatures(BufferView * bv, string const & what);
157         ///
158         void TabularFeatures(BufferView * bv, LyXTabular::Feature feature,
159                              string const & val = string());
160         ///
161         int GetActCell() const { return actcell; }
162         ///
163         void SetFont(BufferView *, LyXFont const &, bool toggleall = false);
164         ///
165         int getMaxWidth(BufferView *, UpdatableInset const *) const;
166         ///
167         Buffer * BufferOwner() const { return const_cast<Buffer *>(buffer); }
168         ///
169         LyXText * getLyXText(BufferView const *,
170                              bool const recursive = false) const;
171         ///
172         void resizeLyXText(BufferView *) const;
173         ///
174         void OpenLayoutDialog(BufferView *) const;
175         ///
176         bool ShowInsetDialog(BufferView *) const;
177         ///
178         LyXFunc::func_status getStatus(string const & argument) const;
179         ///
180         std::vector<string> const getLabelList() const;
181         //
182         // Public structures and variables
183         ///
184         //LyXTabular * tabular;
185         boost::scoped_ptr<LyXTabular> tabular;
186         ///
187         SigC::Signal0<void> hideDialog;
188
189 private:
190         ///
191         bool calculate_dimensions_of_cells(BufferView *, LyXFont const &,
192                                            bool = false) const;
193         ///
194         void DrawCellLines(Painter &, int x, int baseline,
195                            int row, int cell) const;
196         ///
197         void DrawCellSelection(Painter &, int x, int baseline,
198                                int row, int column, int cell) const;
199         ///
200         void ShowInsetCursor(BufferView *, bool show=true);
201         ///
202         void HideInsetCursor(BufferView *);
203         ///
204         void setPos(BufferView *, int x, int y) const;
205         ///
206         UpdatableInset::RESULT moveRight(BufferView *, bool lock = true);
207         ///
208         UpdatableInset::RESULT moveLeft(BufferView *, bool lock = true);
209         ///
210         UpdatableInset::RESULT moveUp(BufferView *, bool lock = true);
211         ///
212         UpdatableInset::RESULT moveDown(BufferView *, bool lock = true);
213         ///
214         bool moveNextCell(BufferView *, bool lock = false);
215         ///
216         bool movePrevCell(BufferView *, bool lock = false);
217         ///
218         bool Delete();
219         ///
220         int getCellXPos(int cell) const;
221         ///
222         void resetPos(BufferView *) const;
223         ///
224         void RemoveTabularRow();
225         ///
226         bool hasSelection() const {
227                 return sel_cell_start != sel_cell_end;
228         }
229         ///
230         void clearSelection() const {
231         sel_cell_start = sel_cell_end = 0;
232         }
233         ///
234         bool ActivateCellInset(BufferView *, int x = 0, int y = 0,
235                                int button = 0,
236                                bool behind = false);
237         ///
238         bool ActivateCellInsetAbs(BufferView *, int x = 0, int y = 0,
239                                   int button = 0);
240         ///
241         bool InsetHit(BufferView * bv, int x, int y) const;
242         ///
243         int GetMaxWidthOfCell(BufferView * bv, int cell) const;
244         ///
245         bool hasPasteBuffer() const;
246         ///
247         bool copySelection(BufferView *);
248         ///
249         bool pasteSelection(BufferView *);
250         ///
251         bool cutSelection();
252         ///
253         bool isRightToLeft(BufferView *);
254
255         //
256         // Private structures and variables
257         ///
258         InsetText * the_locking_inset;
259         ///
260         InsetText * old_locking_inset;
261         ///
262         Buffer const * buffer;
263         ///
264         mutable LyXCursor cursor;
265         ///
266         mutable unsigned int inset_x;
267         ///
268         mutable unsigned int inset_y;
269         ///
270         mutable int sel_cell_start;
271         ///
272         mutable int sel_cell_end;
273         ///
274         mutable int actcell;
275         ///
276         mutable int oldcell;
277         ///
278         mutable int actcol;
279         ///
280         mutable int actrow;
281         ///
282         mutable int first_visible_cell;
283         ///
284         bool no_selection;
285         ///
286         bool no_draw;
287         ///
288         mutable bool locked;
289         ///
290         mutable UpdateCodes need_update;
291 };
292 #endif