]> git.lyx.org Git - lyx.git/blob - src/insets/insettabular.C
643d676bb8a9dfd59fa964a764e950c49c9208d6
[lyx.git] / src / insets / insettabular.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *
6  *           Copyright 2001 The LyX Team.
7  *
8  * ======================================================
9  */
10
11 #include <config.h>
12
13 #include <fstream>
14 #include <algorithm>
15
16 #include <cstdlib>
17 #include <map>
18 //#include <signal.h>
19 #ifdef __GNUG__
20 #pragma implementation
21 #endif
22
23 #include "insettabular.h"
24
25 #include "buffer.h"
26 #include "commandtags.h"
27 #include "lyxfunc.h"
28 #include "debug.h"
29 #include "LaTeXFeatures.h"
30 #include "Painter.h"
31 #include "font.h"
32 #include "lyxtext.h"
33 #include "lyx_gui_misc.h"
34 #include "LyXView.h"
35 #include "insets/insettext.h"
36 #include "frontends/Dialogs.h"
37 #include "debug.h"
38 #include "WorkArea.h"
39 #include "gettext.h"
40 #include "language.h"
41 #include "BufferView.h"
42 #include "undo_funcs.h"
43 #include "support/LAssert.h"
44 #include "support/lstrings.h"
45
46 using std::ostream;
47 using std::ifstream;
48 using std::max;
49 using std::endl;
50 using std::swap;
51 using std::max;
52
53 namespace {
54
55 const int ADD_TO_HEIGHT = 2;
56 const int ADD_TO_TABULAR_WIDTH = 2;
57 ///
58 LyXTabular * paste_tabular = 0;
59
60
61 struct TabularFeature {
62         LyXTabular::Feature action;
63         string feature;
64 };
65
66 //tabular_features * tabularFeatures = 0;
67
68 TabularFeature tabularFeature[] =
69 {
70         { LyXTabular::APPEND_ROW, "append-row" },
71         { LyXTabular::APPEND_COLUMN, "append-column" },
72         { LyXTabular::DELETE_ROW, "delete-row" },
73         { LyXTabular::DELETE_COLUMN, "delete-column" },
74         { LyXTabular::TOGGLE_LINE_TOP, "toggle-line-top" },
75         { LyXTabular::TOGGLE_LINE_BOTTOM, "toggle-line-bottom" },
76         { LyXTabular::TOGGLE_LINE_LEFT, "toggle-line-left" },
77         { LyXTabular::TOGGLE_LINE_RIGHT, "toggle-line-right" },
78         { LyXTabular::ALIGN_LEFT, "align-left" },
79         { LyXTabular::ALIGN_RIGHT, "align-right" },
80         { LyXTabular::ALIGN_CENTER, "align-center" },
81         { LyXTabular::VALIGN_TOP, "valign-top" },
82         { LyXTabular::VALIGN_BOTTOM, "valign-bottom" },
83         { LyXTabular::VALIGN_CENTER, "valign-center" },
84         { LyXTabular::M_TOGGLE_LINE_TOP, "m-toggle-line-top" },
85         { LyXTabular::M_TOGGLE_LINE_BOTTOM, "m-toggle-line-bottom" },
86         { LyXTabular::M_TOGGLE_LINE_LEFT, "m-toggle-line-left" },
87         { LyXTabular::M_TOGGLE_LINE_RIGHT, "m-toggle-line-right" },
88         { LyXTabular::M_ALIGN_LEFT, "m-align-left" },
89         { LyXTabular::M_ALIGN_RIGHT, "m-align-right" },
90         { LyXTabular::M_ALIGN_CENTER, "m-align-center" },
91         { LyXTabular::M_VALIGN_TOP, "m-valign-top" },
92         { LyXTabular::M_VALIGN_BOTTOM, "m-valign-bottom" },
93         { LyXTabular::M_VALIGN_CENTER, "m-valign-center" },
94         { LyXTabular::MULTICOLUMN, "multicolumn" },
95         { LyXTabular::SET_ALL_LINES, "set-all-lines" },
96         { LyXTabular::UNSET_ALL_LINES, "unset-all-lines" },
97         { LyXTabular::SET_LONGTABULAR, "set-longtabular" },
98         { LyXTabular::UNSET_LONGTABULAR, "unset-longtabular" },
99         { LyXTabular::SET_PWIDTH, "set-pwidth" },
100         { LyXTabular::SET_MPWIDTH, "set-mpwidth" },
101         { LyXTabular::SET_ROTATE_TABULAR, "set-rotate-tabular" },
102         { LyXTabular::UNSET_ROTATE_TABULAR, "unset-rotate-tabular" },
103         { LyXTabular::SET_ROTATE_CELL, "set-rotate-cell" },
104         { LyXTabular::UNSET_ROTATE_CELL, "unset-rotate-cell" },
105         { LyXTabular::SET_USEBOX, "set-usebox" },
106         { LyXTabular::SET_LTHEAD, "set-lthead" },
107         { LyXTabular::SET_LTFIRSTHEAD, "set-ltfirsthead" },
108         { LyXTabular::SET_LTFOOT, "set-ltfoot" },
109         { LyXTabular::SET_LTLASTFOOT, "set-ltlastfoot" },
110         { LyXTabular::SET_LTNEWPAGE, "set-ltnewpage" },
111         { LyXTabular::SET_SPECIAL_COLUMN, "set-special-column" },
112         { LyXTabular::SET_SPECIAL_MULTI, "set-special-multi" },
113         { LyXTabular::LAST_ACTION, "" }
114 };
115
116 } // namespace anon
117
118
119 bool InsetTabular::hasPasteBuffer() const
120 {
121         return (paste_tabular != 0);
122 }
123
124
125 InsetTabular::InsetTabular(Buffer const & buf, int rows, int columns)
126         : buffer(&buf)
127 {
128         if (rows <= 0)
129                 rows = 1;
130         if (columns <= 0)
131                 columns = 1;
132         tabular.reset(new LyXTabular(this, rows, columns));
133         // for now make it always display as display() inset
134         // just for test!!!
135         the_locking_inset = 0;
136         locked = no_selection = false;
137         oldcell = -1;
138         actrow = actcell = 0;
139         clearSelection();
140         need_update = INIT;
141         in_update = false;
142 }
143
144
145 InsetTabular::InsetTabular(InsetTabular const & tab, Buffer const & buf,
146                                                    bool same_id)
147         : UpdatableInset(tab, same_id), buffer(&buf)
148 {
149         tabular.reset(new LyXTabular(this, *(tab.tabular)));
150         the_locking_inset = 0;
151         locked = no_selection = false;
152         oldcell = -1;
153         actrow = actcell = 0;
154         sel_cell_start = sel_cell_end = 0;
155         need_update = INIT;
156         in_update = false;
157 }
158
159
160 InsetTabular::~InsetTabular()
161 {
162         hideDialog();
163 }
164
165
166 Inset * InsetTabular::clone(Buffer const & buf, bool same_id) const
167 {
168         return new InsetTabular(*this, buf, same_id);
169 }
170
171
172 void InsetTabular::write(Buffer const * buf, ostream & os) const
173 {
174         os << " Tabular" << endl;
175         tabular->Write(buf, os);
176 }
177
178
179 void InsetTabular::read(Buffer const * buf, LyXLex & lex)
180 {
181         bool const old_format = (lex.getString() == "\\LyXTable");
182
183         //if (tabular)
184         //delete tabular;
185         //tabular = new LyXTabular(buf, this, lex);
186         tabular.reset(new LyXTabular(buf, this, lex));
187
188         need_update = INIT;
189
190         if (old_format)
191                 return;
192
193         lex.nextToken();
194         string token = lex.getString();
195         while (lex.isOK() && (token != "\\end_inset")) {
196                 lex.nextToken();
197                 token = lex.getString();
198         }
199         if (token != "\\end_inset") {
200                 lex.printError("Missing \\end_inset at this point. "
201                                "Read: `$$Token'");
202         }
203 }
204
205
206 int InsetTabular::ascent(BufferView *, LyXFont const &) const
207 {
208         return tabular->GetAscentOfRow(0);
209 }
210
211
212 int InsetTabular::descent(BufferView *, LyXFont const &) const
213 {
214         return tabular->GetHeightOfTabular() - tabular->GetAscentOfRow(0) + 1;
215 }
216
217
218 int InsetTabular::width(BufferView *, LyXFont const &) const
219 {
220         return tabular->GetWidthOfTabular() + (2 * ADD_TO_TABULAR_WIDTH);
221 }
222
223
224 void InsetTabular::draw(BufferView * bv, LyXFont const & font, int baseline,
225                         float & x, bool cleared) const
226 {
227         if (nodraw()) {
228                 if (cleared)
229                         need_update = FULL;
230                 return;
231         }
232 #if 0
233         if (need_update == INIT) {
234                 if (calculate_dimensions_of_cells(bv, font, true))
235                         bv->text->status = LyXText::CHANGED_IN_DRAW;
236                 need_update = FULL;
237         }
238 #endif
239
240         Painter & pain = bv->painter();
241         int i;
242         int j;
243         int nx;
244
245 #if 0
246         UpdatableInset::draw(bv, font, baseline, x, cleared);
247 #else
248         if (!owner())
249                 x += static_cast<float>(scroll());
250 #endif
251         if (!cleared && ((need_update == INIT) || (need_update == FULL) ||
252                          (top_x != int(x)) || (top_baseline != baseline)))
253         {
254                 int h = ascent(bv, font) + descent(bv, font);
255                 int const tx = display() || !owner() ? 0 : top_x;
256                 int w =  tx ? width(bv, font) : pain.paperWidth();
257                 int ty = baseline - ascent(bv, font);
258         
259                 if (ty < 0)
260                         ty = 0;
261                 if ((ty + h) > pain.paperHeight())
262                         h = pain.paperHeight();
263                 if ((top_x + w) > pain.paperWidth())
264                         w = pain.paperWidth();
265                 pain.fillRectangle(tx, ty, w, h, backgroundColor());
266                 need_update = FULL;
267                 cleared = true;
268         }
269         top_x = int(x);
270         topx_set = true;
271         top_baseline = baseline;
272         x += ADD_TO_TABULAR_WIDTH;
273         if (cleared) {
274                 int cell = 0;
275                 float cx;
276                 first_visible_cell = -1;
277                 for (i = 0; i < tabular->rows(); ++i) {
278                         nx = int(x);
279                         cell = tabular->GetCellNumber(i, 0);
280                         if (!((baseline + tabular->GetDescentOfRow(i)) > 0) &&
281                                 (baseline - tabular->GetAscentOfRow(i))<pain.paperHeight())
282                         {
283                                 baseline += tabular->GetDescentOfRow(i) +
284                                         tabular->GetAscentOfRow(i + 1) +
285                                         tabular->GetAdditionalHeight(i + 1);
286                                 continue;
287                         }
288                         for (j = 0; j < tabular->columns(); ++j) {
289                                 if (nx > bv->workWidth())
290                                         break;
291                                 if (tabular->IsPartOfMultiColumn(i, j))
292                                         continue;
293                                 cx = nx + tabular->GetBeginningOfTextInCell(cell);
294                                 if (first_visible_cell < 0)
295                                         first_visible_cell = cell;
296                                 if (hasSelection())
297                                         drawCellSelection(pain, nx, baseline, i, j, cell);
298                                 
299                                 tabular->GetCellInset(cell)->draw(bv, font, baseline, cx,
300                                                                                                   cleared);
301                                 drawCellLines(pain, nx, baseline, i, cell);
302                                 nx += tabular->GetWidthOfColumn(cell);
303                                 ++cell;
304                         }
305                         baseline += tabular->GetDescentOfRow(i) +
306                                 tabular->GetAscentOfRow(i + 1) +
307                                 tabular->GetAdditionalHeight(i + 1);
308                 }
309         } else if (need_update == CELL) {
310                 int cell = 0;
311                 nx = int(x);
312                 if (the_locking_inset &&
313                         tabular->GetCellInset(actcell) != the_locking_inset)
314                 {
315                         Inset * inset = tabular->GetCellInset(cell);
316                         for (i = 0;
317                              inset != the_locking_inset && i < tabular->rows();
318                              ++i)
319                         {
320                                 for (j = 0;
321                                      inset != the_locking_inset && j < tabular->columns();
322                                      ++j)
323                                 {
324                                         if (tabular->IsPartOfMultiColumn(i, j))
325                                                 continue;
326                                         nx += tabular->GetWidthOfColumn(cell);
327                                         ++cell;
328                                         inset = tabular->GetCellInset(cell);
329                                 }
330                                 if (tabular->row_of_cell(cell) > i) {
331                                         nx = int(x);
332                                         baseline += tabular->GetDescentOfRow(i) +
333                                                 tabular->GetAscentOfRow(i + 1) +
334                                                 tabular->GetAdditionalHeight(i + 1);
335                                 }
336                         }
337                 } else {
338                         // compute baseline for actual row
339                         for (i = 0; i < actrow; ++i) {
340                                 baseline += tabular->GetDescentOfRow(i) +
341                                         tabular->GetAscentOfRow(i + 1) +
342                                         tabular->GetAdditionalHeight(i + 1);
343                         }
344                         // now compute the right x position
345                         cell = tabular->GetCellNumber(actrow, 0);
346                         for (j = 0; (cell < actcell) && (j < tabular->columns()); ++j) {
347                                         if (tabular->IsPartOfMultiColumn(actrow, j))
348                                                 continue;
349                                         nx += tabular->GetWidthOfColumn(cell);
350                                         ++cell;
351                         }
352                 }
353                 i = tabular->row_of_cell(cell);
354                 if (the_locking_inset != tabular->GetCellInset(cell)) {
355                         lyxerr[Debug::INSETS] << "ERROR this shouldn't happen\n";
356                         return;
357                 }
358                 float dx = nx + tabular->GetBeginningOfTextInCell(cell);
359                 float cx = dx;
360                 tabular->GetCellInset(cell)->draw(bv, font, baseline, dx, false);
361                 // clear only if we didn't have a change
362                 if (bv->text->status() != LyXText::CHANGED_IN_DRAW) {
363                         // clear before the inset
364                         pain.fillRectangle(
365                                 nx + 1,
366                                 baseline - tabular->GetAscentOfRow(i) + 1,
367                                 int(cx - nx - 1),
368                                 tabular->GetAscentOfRow(i) +
369                                 tabular->GetDescentOfRow(i) - 1,
370                                 backgroundColor());
371                         // clear behind the inset
372                         pain.fillRectangle(
373                                 int(cx + the_locking_inset->width(bv,font) + 1),
374                                 baseline - tabular->GetAscentOfRow(i) + 1,
375                                 tabular->GetWidthOfColumn(cell) -
376                                 tabular->GetBeginningOfTextInCell(cell) -
377                                 the_locking_inset->width(bv,font) -
378                                 tabular->GetAdditionalWidth(cell) - 1,
379                                 tabular->GetAscentOfRow(i) +
380                                 tabular->GetDescentOfRow(i) - 1,
381                                 backgroundColor());
382                         // clear below the inset
383                         pain.fillRectangle(
384                                 nx + 1,
385                                 baseline + the_locking_inset->descent(bv, font) + 1,
386                                 tabular->GetWidthOfColumn(cell) -
387                                 tabular->GetAdditionalWidth(cell) - 1,
388                                 tabular->GetAscentOfRow(i) +
389                                 tabular->GetDescentOfRow(i) -
390                                 the_locking_inset->ascent(bv, font) -
391                                 the_locking_inset->descent(bv, font) -
392                                 TEXT_TO_INSET_OFFSET - 1,
393                                 backgroundColor());
394                 }
395         }
396         x -= ADD_TO_TABULAR_WIDTH;
397         x += width(bv, font);
398         if (bv->text->status() == LyXText::CHANGED_IN_DRAW) {
399                 int i = 0;
400                 for(Inset * inset=owner(); inset; ++i)
401                         inset = inset->owner();
402                 if (calculate_dimensions_of_cells(bv, font, false))
403                         need_update = INIT;
404         } else {
405                 need_update = NONE;
406         }
407 }
408
409
410 void InsetTabular::drawCellLines(Painter & pain, int x, int baseline,
411                                  int row, int cell) const
412 {
413         int x2 = x + tabular->GetWidthOfColumn(cell);
414         bool on_off;
415         
416         if (!tabular->TopAlreadyDrawed(cell)) {
417                 on_off = !tabular->TopLine(cell);
418                 pain.line(x, baseline - tabular->GetAscentOfRow(row),
419                           x2, baseline -  tabular->GetAscentOfRow(row),
420                           on_off ? LColor::tabularonoffline : LColor::tabularline,
421                           on_off ? Painter::line_onoffdash : Painter::line_solid);
422         }
423         on_off = !tabular->BottomLine(cell);
424         pain.line(x,baseline +  tabular->GetDescentOfRow(row),
425                   x2, baseline +  tabular->GetDescentOfRow(row),
426                   on_off ? LColor::tabularonoffline : LColor::tabularline,
427                   on_off ? Painter::line_onoffdash : Painter::line_solid);
428         if (!tabular->LeftAlreadyDrawed(cell)) {
429                 on_off = !tabular->LeftLine(cell);
430                 pain.line(x, baseline -  tabular->GetAscentOfRow(row),
431                           x, baseline +  tabular->GetDescentOfRow(row),
432                           on_off ? LColor::tabularonoffline : LColor::tabularline,
433                           on_off ? Painter::line_onoffdash : Painter::line_solid);
434         }
435         on_off = !tabular->RightLine(cell);
436         pain.line(x2 - tabular->GetAdditionalWidth(cell),
437                   baseline -  tabular->GetAscentOfRow(row),
438                   x2 - tabular->GetAdditionalWidth(cell),
439                   baseline +  tabular->GetDescentOfRow(row),
440                   on_off ? LColor::tabularonoffline : LColor::tabularline,
441                   on_off ? Painter::line_onoffdash : Painter::line_solid);
442 }
443
444
445 void InsetTabular::drawCellSelection(Painter & pain, int x, int baseline,
446                                      int row, int column, int cell) const
447 {
448         int cs = tabular->column_of_cell(sel_cell_start);
449         int ce = tabular->column_of_cell(sel_cell_end);
450         if (cs > ce) {
451                 ce = cs;
452                 cs = tabular->column_of_cell(sel_cell_end);
453         } else {
454                 ce = tabular->right_column_of_cell(sel_cell_end);
455         }
456         
457         int rs = tabular->row_of_cell(sel_cell_start);
458         int re = tabular->row_of_cell(sel_cell_end);
459         if (rs > re) swap(rs, re);
460         
461         if ((column >= cs) && (column <= ce) && (row >= rs) && (row <= re)) {
462                 int w = tabular->GetWidthOfColumn(cell);
463                 int h = tabular->GetAscentOfRow(row) + tabular->GetDescentOfRow(row);
464                 pain.fillRectangle(x, baseline - tabular->GetAscentOfRow(row),
465                                    w, h, LColor::selection);
466         }
467 }
468
469
470 void InsetTabular::update(BufferView * bv, LyXFont const & font, bool reinit)
471 {
472         if (in_update) {
473                 if (reinit) {
474                         resetPos(bv);
475                         if (owner())
476                                 owner()->update(bv, font, true);
477                 }
478                 return;
479         }
480         in_update = true;
481         if (reinit) {
482                 need_update = INIT;
483                 if (calculate_dimensions_of_cells(bv, font, true))
484                         resetPos(bv);
485                 if (owner())
486                         owner()->update(bv, font, true);
487                 in_update = false;
488                 return;
489         }
490         if (the_locking_inset)
491                 the_locking_inset->update(bv, font, reinit);
492         if (need_update < FULL &&
493                 bv->text->status() == LyXText::NEED_MORE_REFRESH)
494         {
495                 need_update = FULL;
496         }
497
498         switch (need_update) {
499         case INIT:
500         case FULL:
501         case CELL:
502                 if (calculate_dimensions_of_cells(bv, font, false))
503                         need_update = INIT;
504                 break;
505         case SELECTION:
506                 need_update = INIT;
507                 break;
508         default:
509                 break;
510         }
511         in_update = false;
512 }
513
514
515 string const InsetTabular::editMessage() const
516 {
517         return _("Opened Tabular Inset");
518 }
519
520
521 void InsetTabular::edit(BufferView * bv, int x, int y, unsigned int button)
522 {
523         UpdatableInset::edit(bv, x, y, button);
524         
525         if (!bv->lockInset(this)) {
526                 lyxerr[Debug::INSETS] << "InsetTabular::Cannot lock inset" << endl;
527                 return;
528         }
529         locked = true;
530         the_locking_inset = 0;
531         inset_x = 0;
532         inset_y = 0;
533         setPos(bv, x, y);
534         sel_cell_start = sel_cell_end = actcell;
535         finishUndo();
536         if (insetHit(bv, x, y) && (button != 3)) {
537                 activateCellInsetAbs(bv, x, y, button);
538         }
539 }
540
541
542 void InsetTabular::edit(BufferView * bv, bool front)
543 {
544         UpdatableInset::edit(bv, front);
545         
546         if (!bv->lockInset(this)) {
547                 lyxerr[Debug::INSETS] << "InsetTabular::Cannot lock inset" << endl;
548                 return;
549         }
550         locked = true;
551         the_locking_inset = 0;
552         inset_x = 0;
553         inset_y = 0;
554         if (front)
555                 actcell = 0;
556         else
557                 actcell = tabular->GetNumberOfCells() - 1;
558         sel_cell_start = sel_cell_end = actcell;
559         resetPos(bv);
560         finishUndo();
561 }
562
563
564 void InsetTabular::insetUnlock(BufferView * bv)
565 {
566         if (the_locking_inset) {
567                 the_locking_inset->insetUnlock(bv);
568                 the_locking_inset = 0;
569         }
570         hideInsetCursor(bv);
571         no_selection = false;
572         oldcell = -1;
573         locked = false;
574         if (scroll(false) || hasSelection()) {
575                 sel_cell_start = sel_cell_end = 0;
576                 if (scroll(false)) {
577                         scroll(bv, 0.0F);
578                 }
579                 updateLocal(bv, FULL, false);
580         }
581 }
582
583
584 void InsetTabular::updateLocal(BufferView * bv, UpdateCodes what,
585                                bool mark_dirty) const
586 {
587         if (need_update < what) // only set this if it has greater update
588                 need_update = what;
589         if ((what == INIT) && hasSelection())
590                 clearSelection();
591         // Dirty Cast! (Lgb)
592         if (need_update != NONE) {
593                 bv->updateInset(const_cast<InsetTabular *>(this), mark_dirty);
594                 if (locked) // && (what != NONE))
595                         resetPos(bv);
596         }
597 }
598
599
600 bool InsetTabular::lockInsetInInset(BufferView * bv, UpdatableInset * inset)
601 {
602         lyxerr[Debug::INSETS] << "InsetTabular::LockInsetInInset("
603                               << inset << "): ";
604         if (!inset)
605                 return false;
606         oldcell = -1;
607         if (inset == tabular->GetCellInset(actcell)) {
608                 lyxerr[Debug::INSETS] << "OK" << endl;
609                 the_locking_inset = tabular->GetCellInset(actcell);
610                 resetPos(bv);
611                 return true;
612         } else if (the_locking_inset && (the_locking_inset == inset)) {
613                 lyxerr[Debug::INSETS] << "OK" << endl;
614                 resetPos(bv);
615         } else if (the_locking_inset) {
616                 lyxerr[Debug::INSETS] << "MAYBE" << endl;
617                 return the_locking_inset->lockInsetInInset(bv, inset);
618         }
619         lyxerr[Debug::INSETS] << "NOT OK" << endl;
620         return false;
621 }
622
623
624 bool InsetTabular::unlockInsetInInset(BufferView * bv, UpdatableInset * inset,
625                                       bool lr)
626 {
627         if (!the_locking_inset)
628                 return false;
629         if (the_locking_inset == inset) {
630                 the_locking_inset->insetUnlock(bv);
631                 the_locking_inset = 0;
632 #ifdef WITH_WARNINGS
633 #warning fix scrolling when cellinset has requested a scroll (Jug)!!!
634 #endif
635 #if 0
636                 if (scroll(false))
637                         scroll(bv, 0.0F);
638 #endif
639                 updateLocal(bv, CELL, false);
640                 showInsetCursor(bv, false);
641                 return true;
642         }
643         if (the_locking_inset->unlockInsetInInset(bv, inset, lr)) {
644                 if (inset->lyxCode() == TABULAR_CODE &&
645                     !the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE)) {
646                         bv->owner()->getDialogs()->updateTabular(this);
647                         oldcell = actcell;
648                 }
649                 return true;
650         }
651         return false;
652 }
653
654
655 bool InsetTabular::updateInsetInInset(BufferView * bv, Inset * inset)
656 {
657         if (!the_locking_inset)
658                 return false;
659         if (the_locking_inset != inset) {
660                 if (!the_locking_inset->updateInsetInInset(bv, inset))
661                         return false;
662         }
663         updateLocal(bv, CELL, false);
664         return true;
665 }
666
667
668 unsigned int InsetTabular::insetInInsetY()
669 {
670         if (!the_locking_inset)
671                 return 0;
672         
673         return inset_y + the_locking_inset->insetInInsetY();
674 }
675
676
677 UpdatableInset * InsetTabular::getLockingInset() const
678 {
679         return the_locking_inset ? the_locking_inset->getLockingInset() :
680                 const_cast<InsetTabular *>(this);
681 }
682
683
684 UpdatableInset * InsetTabular::getFirstLockingInsetOfType(Inset::Code c)
685 {
686         if (c == lyxCode())
687                 return this;
688         if (the_locking_inset)
689                 return the_locking_inset->getFirstLockingInsetOfType(c);
690         return 0;
691 }
692
693
694 bool InsetTabular::insertInset(BufferView * bv, Inset * inset)
695 {
696         if (the_locking_inset)
697                 return the_locking_inset->insertInset(bv, inset);
698         return false;
699 }
700
701
702 void InsetTabular::insetButtonPress(BufferView * bv, int x, int y, int button)
703 {
704         if (hasSelection() && (button == 3))
705                 return;
706
707         if (hasSelection()) {
708                 clearSelection();
709                 updateLocal(bv, SELECTION, false);
710         }
711
712         no_selection = false;
713
714         int const ocell = actcell;
715         int const orow = actrow;
716
717         hideInsetCursor(bv);
718         setPos(bv, x, y);
719         if (actrow != orow)
720                 updateLocal(bv, NONE, false);
721         sel_cell_start = sel_cell_end = actcell;
722         if (button == 3) {
723                 if ((ocell != actcell) && the_locking_inset) {
724                         the_locking_inset->insetUnlock(bv);
725                         the_locking_inset = 0;
726                 }
727                 showInsetCursor(bv);
728                 return;
729         }
730
731         bool const inset_hit = insetHit(bv, x, y);
732
733         if ((ocell == actcell) && the_locking_inset && inset_hit) {
734                 resetPos(bv);
735                 the_locking_inset->insetButtonPress(bv,
736                                                     x - inset_x, y - inset_y,
737                                                     button);
738                 return;
739         } else if (the_locking_inset) {
740                 the_locking_inset->insetUnlock(bv);
741         }
742         the_locking_inset = 0;
743         if (button == 2) {
744                 localDispatch(bv, LFUN_PASTESELECTION, "paragraph");
745                 return;
746         }
747         if (inset_hit && bv->theLockingInset()) {
748                 if (activateCellInsetAbs(bv, x, y, button))
749                         the_locking_inset->insetButtonPress(bv,
750                                                             x - inset_x,
751                                                             y - inset_y,
752                                                             button);
753                 return;
754         }
755         showInsetCursor(bv);
756 }
757
758
759 void InsetTabular::insetButtonRelease(BufferView * bv,
760                                       int x, int y, int button)
761 {
762         if (button == 3) {
763                 if (the_locking_inset) {
764                         UpdatableInset * i;
765                         if ((i = the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE))) {
766                                 i->insetButtonRelease(bv, x, y, button);
767                                 return;
768                         }
769                 }
770                 bv->owner()->getDialogs()->showTabular(this);
771                 return;
772         }
773         if (the_locking_inset) {
774                 the_locking_inset->insetButtonRelease(bv,
775                                                       x - inset_x, y - inset_y,
776                                                       button);
777                 return;
778         }
779         no_selection = false;
780 }
781
782
783 void InsetTabular::insetMotionNotify(BufferView * bv, int x, int y, int button)
784 {
785         if (the_locking_inset) {
786                 the_locking_inset->insetMotionNotify(bv,
787                                                      x - inset_x,
788                                                      y - inset_y,
789                                                      button);
790                 return;
791         }
792         if (!no_selection) {
793                 hideInsetCursor(bv);
794                 int const old_cell = actcell;
795                 
796                 setPos(bv, x, y);
797                 sel_cell_end = actcell;
798                 if (sel_cell_end != old_cell)
799                         updateLocal(bv, SELECTION, false);
800                 showInsetCursor(bv);
801         }
802         no_selection = false;
803 }
804
805
806 void InsetTabular::insetKeyPress(XKeyEvent * xke)
807 {
808         if (the_locking_inset) {
809                 the_locking_inset->insetKeyPress(xke);
810                 return;
811         }
812 }
813
814
815 UpdatableInset::RESULT
816 InsetTabular::localDispatch(BufferView * bv, kb_action action,
817                             string const & arg)
818 {
819         // We need to save the value of the_locking_inset as the call to 
820         // the_locking_inset->LocalDispatch might unlock it.
821         old_locking_inset = the_locking_inset;
822         no_selection = false;
823         UpdatableInset::RESULT result =
824                 UpdatableInset::localDispatch(bv, action, arg);
825         if (result == DISPATCHED || result == DISPATCHED_NOUPDATE) {
826                 resetPos(bv);
827                 return result;
828         }
829
830         if ((action < 0) && arg.empty())
831                 return FINISHED;
832
833         bool hs = hasSelection();
834
835         result = DISPATCHED;
836         // this one have priority over the locked InsetText, if we're not already
837         // inside another tabular then that one get's priority!
838         if (getFirstLockingInsetOfType(Inset::TABULAR_CODE) == this) {
839                 switch (action) {
840                 case LFUN_SHIFT_TAB:
841                 case LFUN_TAB:
842                         hideInsetCursor(bv);
843                         if (the_locking_inset) {
844                                 unlockInsetInInset(bv, the_locking_inset);
845                                 the_locking_inset = 0;
846                         }
847                         if (action == LFUN_TAB)
848                                 moveNextCell(bv, old_locking_inset != 0);
849                         else
850                                 movePrevCell(bv, old_locking_inset != 0);
851                         sel_cell_start = sel_cell_end = actcell;
852                         if (hs)
853                                 updateLocal(bv, SELECTION, false);
854                         if (!the_locking_inset) {
855                                 showInsetCursor(bv);
856                                 return DISPATCHED_NOUPDATE;
857                         }
858                         return result;
859                 // this to avoid compiler warnings.
860                 default:
861                         break;
862                 }
863         }
864
865         if (the_locking_inset) {
866                 result = the_locking_inset->localDispatch(bv, action, arg);
867                 if (result == DISPATCHED_NOUPDATE) {
868                         int sc = scroll();
869                         resetPos(bv);
870                         if (sc != scroll()) { // inset has been scrolled
871                                 the_locking_inset->toggleInsetCursor(bv);
872                                 updateLocal(bv, FULL, false);
873                                 the_locking_inset->toggleInsetCursor(bv);
874                         }
875                         return result;
876                 } else if (result == DISPATCHED) {
877                         the_locking_inset->toggleInsetCursor(bv);
878                         updateLocal(bv, CELL, false);
879                         the_locking_inset->toggleInsetCursor(bv);
880                         return result;
881                 } else if (result == FINISHED_UP) {
882                         action = LFUN_UP;
883                 } else if (result == FINISHED_DOWN) {
884                         action = LFUN_DOWN;
885                 } else if (result == FINISHED_RIGHT) {
886                         action = LFUN_RIGHT;
887                 }
888         }
889
890         hideInsetCursor(bv);
891         result=DISPATCHED;
892         switch (action) {
893                 // --- Cursor Movements ----------------------------------
894         case LFUN_RIGHTSEL:
895                 if (tabular->IsLastCellInRow(actcell))
896                         break;
897                 moveRight(bv, false);
898                 sel_cell_end = actcell;
899                 updateLocal(bv, SELECTION, false);
900                 break;
901         case LFUN_RIGHT:
902                 result = moveRight(bv);
903                 sel_cell_start = sel_cell_end = actcell;
904                 if (hs)
905                         updateLocal(bv, SELECTION, false);
906                 break;
907         case LFUN_LEFTSEL:
908                 if (tabular->IsFirstCellInRow(actcell))
909                         break;
910                 moveLeft(bv, false);
911                 sel_cell_end = actcell;
912                 updateLocal(bv, SELECTION, false);
913                 break;
914         case LFUN_LEFT:
915                 result = moveLeft(bv);
916                 sel_cell_start = sel_cell_end = actcell;
917                 if (hs)
918                         updateLocal(bv, SELECTION, false);
919                 break;
920         case LFUN_DOWNSEL:
921         {
922                 int const ocell = actcell;
923                 moveDown(bv, false);
924                 if ((ocell == sel_cell_end) ||
925                     (tabular->column_of_cell(ocell)>tabular->column_of_cell(actcell)))
926                         sel_cell_end = tabular->GetCellBelow(sel_cell_end);
927                 else
928                         sel_cell_end = tabular->GetLastCellBelow(sel_cell_end);
929                 updateLocal(bv, SELECTION, false);
930         }
931         break;
932         case LFUN_DOWN:
933                 result = moveDown(bv, old_locking_inset != 0);
934                 sel_cell_start = sel_cell_end = actcell;
935                 if (hs)
936                         updateLocal(bv, SELECTION, false);
937                 break;
938         case LFUN_UPSEL:
939         {
940                 int const ocell = actcell;
941                 moveUp(bv, false);
942                 if ((ocell == sel_cell_end) ||
943                     (tabular->column_of_cell(ocell)>tabular->column_of_cell(actcell)))
944                         sel_cell_end = tabular->GetCellAbove(sel_cell_end);
945                 else
946                         sel_cell_end = tabular->GetLastCellAbove(sel_cell_end);
947                 updateLocal(bv, SELECTION, false);
948         }
949         break;
950         case LFUN_UP:
951                 result = moveUp(bv, old_locking_inset != 0);
952                 sel_cell_start = sel_cell_end = actcell;
953                 if (hs)
954                         updateLocal(bv, SELECTION, false);
955                 break;
956         case LFUN_NEXT: {
957                 int column = actcol;
958                 if (the_locking_inset) {
959                         unlockInsetInInset(bv, the_locking_inset);
960                         the_locking_inset = 0;
961                 }
962                 if (bv->text->first + bv->painter().paperHeight() <
963                     (top_baseline + tabular->GetHeightOfTabular()))
964                         {
965                                 bv->scrollCB(bv->text->first + bv->painter().paperHeight());
966                                 updateLocal(bv, FULL, false);
967                                 actcell = tabular->GetCellBelow(first_visible_cell) + column;
968                         } else {
969                                 actcell = tabular->GetFirstCellInRow(tabular->rows() - 1) + column;
970                         }
971                 resetPos(bv);
972                 updateLocal(bv, CURSOR, false);
973                 break;
974         }
975         case LFUN_PRIOR: {
976                 int column = actcol;
977                 if (the_locking_inset) {
978                         unlockInsetInInset(bv, the_locking_inset);
979                         the_locking_inset = 0;
980                 }
981                 if (top_baseline < 0) {
982                         bv->scrollCB(bv->text->first - bv->painter().paperHeight());
983                         updateLocal(bv, FULL, false);
984                         if (top_baseline > 0)
985                                 actcell = column;
986                         else
987                                 actcell = tabular->GetCellBelow(first_visible_cell) + column;
988                 } else {
989                         actcell = column;
990                 }
991                 resetPos(bv);
992                 updateLocal(bv, CURSOR, false);
993                 break;
994         }
995         case LFUN_BACKSPACE:
996                 break;
997         case LFUN_DELETE:
998                 break;
999         case LFUN_HOME:
1000                 break;
1001         case LFUN_END:
1002                 break;
1003         case LFUN_LAYOUT_TABULAR:
1004         {
1005                 bv->owner()->getDialogs()->showTabular(this);
1006         }
1007         break;
1008         case LFUN_TABULAR_FEATURE:
1009                 if (!tabularFeatures(bv, arg))
1010                         result = UNDISPATCHED;
1011                 break;
1012         case LFUN_CUT:
1013                 if (!copySelection(bv))
1014                         break;
1015                 setUndo(bv, Undo::DELETE,
1016                         bv->text->cursor.par(),
1017                         bv->text->cursor.par()->next());
1018                 cutSelection();
1019                 updateLocal(bv, INIT, true);
1020                 break;
1021         case LFUN_COPY:
1022                 if (!hasSelection())
1023                         break;
1024                 finishUndo();
1025                 copySelection(bv);
1026                 break;
1027         case LFUN_PASTESELECTION:
1028         {
1029                 string const clip(bv->getClipboard());
1030         
1031                 if (clip.empty())
1032                         break;
1033                 if (clip.find('\t') != string::npos) {
1034                         int cols = 1;
1035                         int rows = 1;
1036                         int maxCols = 1;
1037                         unsigned int len = clip.length();
1038                         string::size_type p = 0;
1039
1040                         while(p < len &&
1041                               ((p = clip.find_first_of("\t\n", p)) != string::npos)) {
1042                                 switch(clip[p]) {
1043                                 case '\t':
1044                                         ++cols;
1045                                         break;
1046                                 case '\n':
1047                                         if ((p+1) < len)
1048                                                 ++rows;
1049                                         maxCols = max(cols, maxCols);
1050                                         cols = 1;
1051                                         break;
1052                                 }
1053                                 ++p;
1054                         }
1055                         maxCols = max(cols, maxCols);
1056                         delete paste_tabular;
1057                         paste_tabular = new LyXTabular(this, rows, maxCols);
1058                         string::size_type op = 0;
1059                         int cell = 0;
1060                         int cells = paste_tabular->GetNumberOfCells();
1061                         p = cols = 0;
1062                         while((cell < cells) && (p < len) &&
1063                               (p = clip.find_first_of("\t\n", p)) != string::npos) {
1064                                 if (p >= len)
1065                                         break;
1066                                 switch(clip[p]) {
1067                                 case '\t':
1068                                         paste_tabular->GetCellInset(cell)->setText(clip.substr(op, p-op));
1069                                         ++cols;
1070                                         ++cell;
1071                                         break;
1072                                 case '\n':
1073                                         paste_tabular->GetCellInset(cell)->setText(clip.substr(op, p-op));
1074                                         while(cols++ < maxCols)
1075                                                 ++cell;
1076                                         cols = 0;
1077                                         break;
1078                                 }
1079                                 ++p;
1080                                 op = p;
1081                         }
1082                         // check for the last cell if there is no trailing '\n'
1083                         if ((cell < cells) && (op < len))
1084                                 paste_tabular->GetCellInset(cell)->setText(clip.substr(op, len-op));
1085                 } else {
1086                         // so that the clipboard is used and it goes on
1087                         // to default
1088                         // and executes LFUN_PASTESELECTION in insettext!
1089                         delete paste_tabular;
1090                         paste_tabular = 0;
1091                 }
1092         }
1093         case LFUN_PASTE:
1094                 if (hasPasteBuffer()) {
1095                         setUndo(bv, Undo::INSERT,
1096                                 bv->text->cursor.par(),
1097                                 bv->text->cursor.par()->next());
1098                         pasteSelection(bv);
1099                         updateLocal(bv, INIT, true);
1100                         break;
1101                 }
1102                 // ATTENTION: the function above has to be PASTE and PASTESELECTION!!!
1103         default:
1104                 // we try to activate the actual inset and put this event down to
1105                 // the insets dispatch function.
1106                 result = UNDISPATCHED;
1107                 if (the_locking_inset)
1108                         break;
1109                 nodraw(true);
1110                 if (activateCellInset(bv)) {
1111                         // reset need_update setted in above function!
1112                         need_update = NONE;
1113                         result = the_locking_inset->localDispatch(bv, action, arg);
1114                         if ((result == UNDISPATCHED) || (result >= FINISHED)) {
1115                                 unlockInsetInInset(bv, the_locking_inset);
1116                                 nodraw(false);
1117                                 the_locking_inset = 0;
1118                                 // we need to update if this was requested before
1119                                 updateLocal(bv, NONE, false);
1120                                 return UNDISPATCHED;
1121                         } else if (hs) {
1122                                 clearSelection();
1123                         }
1124                         nodraw(false);
1125                         updateLocal(bv, CELL, false);
1126                         return result;
1127                 }
1128                 break;
1129         }
1130         if (result < FINISHED) {
1131                 if (!the_locking_inset) {
1132                         showInsetCursor(bv);
1133                 }
1134         } else
1135                 bv->unlockInset(this);
1136         return result;
1137 }
1138
1139
1140 int InsetTabular::latex(Buffer const * buf, ostream & os,
1141                         bool fragile, bool fp) const
1142 {
1143         return tabular->Latex(buf, os, fragile, fp);
1144 }
1145
1146
1147 int InsetTabular::ascii(Buffer const * buf, ostream & os, int) const
1148 {
1149         // This should be changed to a real ascii export
1150         return tabular->Ascii(buf, os);
1151 }
1152
1153
1154 int InsetTabular::linuxdoc(Buffer const *, ostream &) const
1155 {
1156         return 0;
1157 }
1158
1159
1160 int InsetTabular::docbook(Buffer const * buf, ostream & os) const
1161 {
1162         return tabular->DocBook(buf,os);
1163 }
1164
1165
1166 void InsetTabular::validate(LaTeXFeatures & features) const
1167 {
1168         tabular->Validate(features);
1169 }
1170
1171
1172 bool InsetTabular::calculate_dimensions_of_cells(BufferView * bv,
1173                                                  LyXFont const & font,
1174                                                  bool reinit) const
1175 {
1176         int cell = -1;
1177         int maxAsc = 0;
1178         int maxDesc = 0;
1179         InsetText * inset;
1180         bool changed = false;
1181         
1182         // if we have a locking_inset we should have to check only this cell for
1183         // change so I'll try this to have a boost, but who knows ;)
1184         if ((need_update != INIT) &&
1185             (the_locking_inset == tabular->GetCellInset(actcell))) {
1186                 for(int i = 0; i < tabular->columns(); ++i) {
1187                         maxAsc = max(tabular->GetCellInset(actrow, i)->ascent(bv, font),
1188                                      maxAsc);
1189                         maxDesc = max(tabular->GetCellInset(actrow, i)->descent(bv, font),
1190                                       maxDesc);
1191                 }
1192                 changed = tabular->SetWidthOfCell(actcell, the_locking_inset->width(bv, font));
1193                 changed = tabular->SetAscentOfRow(actrow, maxAsc + ADD_TO_HEIGHT) || changed;
1194                 changed = tabular->SetDescentOfRow(actrow, maxDesc + ADD_TO_HEIGHT) || changed;
1195                 return changed;
1196         }
1197         for (int i = 0; i < tabular->rows(); ++i) {
1198                 maxAsc = 0;
1199                 maxDesc = 0;
1200                 for (int j = 0; j < tabular->columns(); ++j) {
1201                         if (tabular->IsPartOfMultiColumn(i,j))
1202                                 continue;
1203                         ++cell;
1204                         inset = tabular->GetCellInset(cell);
1205                         if (!reinit && !tabular->GetPWidth(cell).empty())
1206                                 inset->update(bv, font, false);
1207                         maxAsc = max(maxAsc, inset->ascent(bv, font));
1208                         maxDesc = max(maxDesc, inset->descent(bv, font));
1209                         changed = tabular->SetWidthOfCell(cell, inset->width(bv, font)) || changed;
1210                 }
1211                 changed = tabular->SetAscentOfRow(i, maxAsc + ADD_TO_HEIGHT) || changed;
1212                 changed = tabular->SetDescentOfRow(i, maxDesc + ADD_TO_HEIGHT) || changed;
1213         }
1214         return changed;
1215 }
1216
1217
1218 void InsetTabular::getCursorPos(BufferView * bv, int & x, int & y) const
1219 {
1220         if (the_locking_inset) {
1221                 the_locking_inset->getCursorPos(bv, x, y);
1222                 return;
1223         }
1224         x = cursor_.x() - top_x;
1225         y = cursor_.y();
1226 }
1227
1228
1229 void InsetTabular::toggleInsetCursor(BufferView * bv)
1230 {
1231         if (the_locking_inset) {
1232                 the_locking_inset->toggleInsetCursor(bv);
1233                 return;
1234         }
1235         
1236         LyXFont font; // = the_locking_inset->GetFont(par, cursor.pos);
1237         
1238         int const asc = lyxfont::maxAscent(font);
1239         int const desc = lyxfont::maxDescent(font);
1240         
1241         if (isCursorVisible())
1242                 bv->hideLockedInsetCursor();
1243         else
1244                 bv->showLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
1245         toggleCursorVisible();
1246 }
1247
1248
1249 void InsetTabular::showInsetCursor(BufferView * bv, bool show)
1250 {
1251         if (!isCursorVisible()) {
1252                 LyXFont font; // = GetFont(par, cursor.pos);
1253         
1254                 int const asc = lyxfont::maxAscent(font);
1255                 int const desc = lyxfont::maxDescent(font);
1256                 bv->fitLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
1257                 if (show)
1258                         bv->showLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
1259                 setCursorVisible(true);
1260         }
1261 }
1262
1263
1264 void InsetTabular::hideInsetCursor(BufferView * bv)
1265 {
1266         if (isCursorVisible()) {
1267                 bv->hideLockedInsetCursor();
1268                 setCursorVisible(false);
1269         }
1270 }
1271
1272
1273 void InsetTabular::fitInsetCursor(BufferView * bv) const
1274 {
1275         if (the_locking_inset) {
1276                 the_locking_inset->fitInsetCursor(bv);
1277                 return;
1278         }
1279         LyXFont font;
1280         
1281         int const asc = lyxfont::maxAscent(font);
1282         int const desc = lyxfont::maxDescent(font);
1283         bv->fitLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
1284 }
1285
1286
1287 void InsetTabular::setPos(BufferView * bv, int x, int y) const
1288 {
1289         cursor_.y(0);
1290         
1291         actcell = actrow = actcol = 0;
1292         int ly = tabular->GetDescentOfRow(actrow);
1293
1294         // first search the right row
1295         while((ly < y) && ((actrow+1) < tabular->rows())) {
1296                 cursor_.y(cursor_.y() + tabular->GetDescentOfRow(actrow) +
1297                                  tabular->GetAscentOfRow(actrow + 1) +
1298                                  tabular->GetAdditionalHeight(actrow + 1));
1299                 ++actrow;
1300                 ly = cursor_.y() + tabular->GetDescentOfRow(actrow);
1301         }
1302         actcell = tabular->GetCellNumber(actrow, actcol);
1303
1304         // now search the right column
1305         int lx = tabular->GetWidthOfColumn(actcell) -
1306                 tabular->GetAdditionalWidth(actcell);
1307         for (; !tabular->IsLastCellInRow(actcell) && lx < x; ++actcell) {
1308                 lx += tabular->GetWidthOfColumn(actcell + 1)
1309                         + tabular->GetAdditionalWidth(actcell);
1310         }
1311         cursor_.x(lx - tabular->GetWidthOfColumn(actcell) + top_x + 2);
1312         resetPos(bv);
1313 }
1314
1315
1316 int InsetTabular::getCellXPos(int cell) const
1317 {
1318         int c = cell;
1319         
1320         for (; !tabular->IsFirstCellInRow(c); --c)
1321                 ;
1322         int lx = tabular->GetWidthOfColumn(cell);
1323         for (; c < cell; ++c) {
1324                 lx += tabular->GetWidthOfColumn(c);
1325         }
1326         return (lx - tabular->GetWidthOfColumn(cell) + top_x);
1327 }
1328
1329
1330 void InsetTabular::resetPos(BufferView * bv) const
1331 {
1332         if (!locked || nodraw())
1333                 return;
1334         actcol = tabular->column_of_cell(actcell);
1335
1336         int cell = 0;
1337         actrow = 0;
1338         cursor_.y(0);
1339         for (; (cell < actcell) && !tabular->IsLastRow(cell); ++cell) {
1340                 if (tabular->IsLastCellInRow(cell)) {
1341                         cursor_.y(cursor_.y() + tabular->GetDescentOfRow(actrow) +
1342                                          tabular->GetAscentOfRow(actrow + 1) +
1343                                          tabular->GetAdditionalHeight(actrow + 1));
1344                         ++actrow;
1345                 }
1346         }
1347         static int const offset = ADD_TO_TABULAR_WIDTH + 2;
1348         int new_x = getCellXPos(actcell);
1349         int old_x = cursor_.x();
1350         new_x += offset;
1351         cursor_.x(new_x);
1352 //    cursor.x(getCellXPos(actcell) + offset);
1353         if ((actcol < tabular->columns()-1) && scroll(false) &&
1354                 (tabular->GetWidthOfTabular() < bv->workWidth()-20))
1355         {
1356                 scroll(bv, 0.0F);
1357                 updateLocal(bv, FULL, false);
1358         } else if (the_locking_inset &&
1359                  (tabular->GetWidthOfColumn(actcell) > bv->workWidth()-20))
1360         {
1361                 int xx = cursor_.x() - offset + bv->text->getRealCursorX(bv);
1362                 if (xx > (bv->workWidth()-20)) {
1363                         scroll(bv, -(xx - bv->workWidth() + 60));
1364                         updateLocal(bv, FULL, false);
1365                 } else if (xx < 20) {
1366                         if (xx < 0)
1367                                 xx = -xx + 60;
1368                         else
1369                                 xx = 60;
1370                         scroll(bv, xx);
1371                         updateLocal(bv, FULL, false);
1372                 }
1373         } else if ((cursor_.x() - offset) > 20 &&
1374                    (cursor_.x() - offset + tabular->GetWidthOfColumn(actcell))
1375                    > (bv->workWidth() - 20)) {
1376                 scroll(bv, -tabular->GetWidthOfColumn(actcell) - 20);
1377                 updateLocal(bv, FULL, false);
1378         } else if ((cursor_.x() - offset) < 20) {
1379                 scroll(bv, 20 - cursor_.x() + offset);
1380                 updateLocal(bv, FULL, false);
1381         } else if (scroll(false) && top_x > 20 &&
1382                    (top_x + tabular->GetWidthOfTabular()) > (bv->workWidth() - 20)) {
1383                 scroll(bv, old_x - cursor_.x());
1384                 updateLocal(bv, FULL, false);
1385         }
1386         if (the_locking_inset) {
1387                 inset_x = cursor_.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
1388                 inset_y = cursor_.y();
1389         }
1390         if ((!the_locking_inset ||
1391              !the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE)) &&
1392             actcell != oldcell) {
1393                 InsetTabular * inset = const_cast<InsetTabular *>(this);
1394                 bv->owner()->getDialogs()->updateTabular(inset);
1395                 oldcell = actcell;
1396         }
1397 }
1398
1399
1400 UpdatableInset::RESULT InsetTabular::moveRight(BufferView * bv, bool lock)
1401 {
1402         if (lock && !old_locking_inset) {
1403                 if (activateCellInset(bv))
1404                         return DISPATCHED;
1405         } else {
1406                 bool moved = isRightToLeft(bv)
1407                         ? movePrevCell(bv) : moveNextCell(bv);
1408                 if (!moved)
1409                         return FINISHED_RIGHT;
1410                 if (lock && activateCellInset(bv))
1411                         return DISPATCHED;
1412         }
1413         resetPos(bv);
1414         return DISPATCHED_NOUPDATE;
1415 }
1416
1417
1418 UpdatableInset::RESULT InsetTabular::moveLeft(BufferView * bv, bool lock)
1419 {
1420         bool moved = isRightToLeft(bv) ? moveNextCell(bv) : movePrevCell(bv);
1421         if (!moved)
1422                 return FINISHED;
1423         if (lock) {       // behind the inset
1424                 if (activateCellInset(bv, 0, 0, 0, true))
1425                         return DISPATCHED;
1426         }
1427         resetPos(bv);
1428         return DISPATCHED_NOUPDATE;
1429 }
1430
1431
1432 UpdatableInset::RESULT InsetTabular::moveUp(BufferView * bv, bool lock)
1433 {
1434         int const ocell = actcell;
1435         actcell = tabular->GetCellAbove(actcell);
1436         if (actcell == ocell) // we moved out of the inset
1437                 return FINISHED_UP;
1438         resetPos(bv);
1439         if (lock) {
1440                 int x = 0;
1441                 int y = 0;
1442                 if (old_locking_inset) {
1443                         old_locking_inset->getCursorPos(bv, x, y);
1444                         x -= cursor_.x() + tabular->GetBeginningOfTextInCell(actcell);
1445                 }
1446                 if (activateCellInset(bv, x, 0))
1447                         return DISPATCHED;
1448         }
1449         return DISPATCHED_NOUPDATE;
1450 }
1451
1452
1453 UpdatableInset::RESULT InsetTabular::moveDown(BufferView * bv, bool lock)
1454 {
1455         int const ocell = actcell;
1456         actcell = tabular->GetCellBelow(actcell);
1457         if (actcell == ocell) // we moved out of the inset
1458                 return FINISHED_DOWN;
1459         resetPos(bv);
1460         if (lock) {
1461                 int x = 0;
1462                 int y = 0;
1463                 if (old_locking_inset) {
1464                         old_locking_inset->getCursorPos(bv, x, y);
1465                         x -= cursor_.x() + tabular->GetBeginningOfTextInCell(actcell);
1466                 }
1467                 if (activateCellInset(bv, x, 0))
1468                         return DISPATCHED;
1469         }
1470         return DISPATCHED_NOUPDATE;
1471 }
1472
1473
1474 bool InsetTabular::moveNextCell(BufferView * bv, bool lock)
1475 {
1476         if (isRightToLeft(bv)) {
1477                 if (tabular->IsFirstCellInRow(actcell)) {
1478                         int row = tabular->row_of_cell(actcell);
1479                         if (row == tabular->rows() - 1)
1480                                 return false;
1481                         actcell = tabular->GetLastCellInRow(row);
1482                         actcell = tabular->GetCellBelow(actcell);
1483                 } else {
1484                         if (!actcell)
1485                                 return false;
1486                         --actcell;
1487                 }
1488         } else {
1489                 if (tabular->IsLastCell(actcell))
1490                         return false;
1491                 ++actcell;
1492         }
1493         if (lock) {
1494                 bool rtl = tabular->GetCellInset(actcell)->paragraph()->
1495                         isRightToLeftPar(bv->buffer()->params);
1496                 activateCellInset(bv, 0, 0, 0, !rtl);
1497         }
1498         resetPos(bv);
1499         return true;
1500 }
1501
1502
1503 bool InsetTabular::movePrevCell(BufferView * bv, bool lock)
1504 {
1505         if (isRightToLeft(bv)) {
1506                 if (tabular->IsLastCellInRow(actcell)) {
1507                         int row = tabular->row_of_cell(actcell);
1508                         if (row == 0)
1509                                 return false;
1510                         actcell = tabular->GetFirstCellInRow(row);
1511                         actcell = tabular->GetCellAbove(actcell);
1512                 } else {
1513                         if (tabular->IsLastCell(actcell))
1514                                 return false;
1515                         ++actcell;
1516                 }
1517         } else {
1518                 if (!actcell) // first cell
1519                         return false;
1520                 --actcell;
1521         }
1522         if (lock) {
1523                 bool rtl = tabular->GetCellInset(actcell)->paragraph()->
1524                         isRightToLeftPar(bv->buffer()->params);
1525                 activateCellInset(bv, 0, 0, 0, !rtl);
1526         }
1527         resetPos(bv);
1528         return true;
1529 }
1530
1531
1532 bool InsetTabular::deletable()
1533 {
1534         return true;
1535 }
1536
1537
1538 void InsetTabular::setFont(BufferView * bv, LyXFont const & font, bool tall,
1539                            bool selectall)
1540 {
1541         if (selectall) {
1542                 sel_cell_start = 0;
1543                 sel_cell_end = tabular->GetNumberOfCells() - 1;
1544         }
1545         if (hasSelection()) {
1546                 setUndo(bv, Undo::EDIT,
1547                         bv->text->cursor.par(),
1548                         bv->text->cursor.par()->next());
1549                 bool frozen = undo_frozen;
1550                 if (!frozen)
1551                         freezeUndo();
1552                 // apply the fontchange on the whole selection
1553                 int sel_row_start;
1554                 int sel_row_end;
1555                 int sel_col_start;
1556                 int sel_col_end;
1557                 getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
1558                 for(int i = sel_row_start; i <= sel_row_end; ++i) {
1559                         for(int j = sel_col_start; j <= sel_col_end; ++j) {
1560                                 tabular->GetCellInset(i, j)->setFont(bv, font, tall, true);
1561                         }
1562                 }
1563                 if (!frozen)
1564                         unFreezeUndo();
1565                 updateLocal(bv, INIT, true);
1566         }
1567         if (the_locking_inset)
1568                 the_locking_inset->setFont(bv, font, tall);
1569 }
1570
1571
1572 bool InsetTabular::tabularFeatures(BufferView * bv, string const & what)
1573 {
1574         LyXTabular::Feature action = LyXTabular::LAST_ACTION;
1575         
1576         int i = 0;
1577         for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
1578                 string const tmp = tabularFeature[i].feature;
1579                 
1580                 if (tmp == what.substr(0, tmp.length())) {
1581                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
1582                         //tabularFeatures[i].feature.length())) {
1583                         action = tabularFeature[i].action;
1584                         break;
1585                 }
1586         }
1587         if (action == LyXTabular::LAST_ACTION)
1588                 return false;
1589
1590         string const val =
1591                 frontStrip(what.substr(tabularFeature[i].feature.length()));
1592         tabularFeatures(bv, action, val);
1593         return true;
1594 }
1595
1596
1597 void InsetTabular::tabularFeatures(BufferView * bv,
1598                                    LyXTabular::Feature feature,
1599                                    string const & value)
1600 {
1601         int sel_col_start;
1602         int sel_col_end;
1603         int sel_row_start;
1604         int sel_row_end;
1605         bool setLines = false;
1606         LyXAlignment setAlign = LYX_ALIGN_LEFT;
1607         LyXTabular::VAlignment setVAlign = LyXTabular::LYX_VALIGN_TOP;
1608
1609         switch (feature) {
1610         case LyXTabular::M_ALIGN_LEFT:
1611         case LyXTabular::ALIGN_LEFT:
1612                 setAlign=LYX_ALIGN_LEFT;
1613                 break;
1614         case LyXTabular::M_ALIGN_RIGHT:
1615         case LyXTabular::ALIGN_RIGHT:
1616                 setAlign=LYX_ALIGN_RIGHT;
1617                 break;
1618         case LyXTabular::M_ALIGN_CENTER:
1619         case LyXTabular::ALIGN_CENTER:
1620                 setAlign=LYX_ALIGN_CENTER;
1621                 break;
1622         case LyXTabular::M_VALIGN_TOP:
1623         case LyXTabular::VALIGN_TOP:
1624                 setVAlign=LyXTabular::LYX_VALIGN_TOP;
1625                 break;
1626         case LyXTabular::M_VALIGN_BOTTOM:
1627         case LyXTabular::VALIGN_BOTTOM:
1628                 setVAlign=LyXTabular::LYX_VALIGN_BOTTOM;
1629                 break;
1630         case LyXTabular::M_VALIGN_CENTER:
1631         case LyXTabular::VALIGN_CENTER:
1632                 setVAlign=LyXTabular::LYX_VALIGN_CENTER;
1633                 break;
1634         default:
1635                 break;
1636         }
1637         if (hasSelection()) {
1638                 getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
1639         } else {
1640                 sel_col_start = sel_col_end = tabular->column_of_cell(actcell);
1641                 sel_row_start = sel_row_end = tabular->row_of_cell(actcell);
1642         }
1643         setUndo(bv, Undo::FINISH,
1644                 bv->text->cursor.par(),
1645                 bv->text->cursor.par()->next());
1646
1647         int row = tabular->row_of_cell(actcell);
1648         int column = tabular->column_of_cell(actcell);
1649         bool flag = true;
1650         
1651         switch (feature) {
1652         case LyXTabular::SET_PWIDTH:
1653         {
1654                 bool const update = (tabular->GetColumnPWidth(actcell) != value);
1655                 tabular->SetColumnPWidth(actcell,value);
1656                 if (update) {
1657                         for (int i = 0; i < tabular->rows(); ++i) {
1658                                 tabular->GetCellInset(tabular->GetCellNumber(i, column))->
1659                                         resizeLyXText(bv);
1660                         }
1661                         updateLocal(bv, INIT, true);
1662                 }
1663         }
1664         break;
1665         case LyXTabular::SET_MPWIDTH:
1666         {
1667                 bool const update = (tabular->GetPWidth(actcell) != value);
1668                 tabular->SetMColumnPWidth(actcell,value);
1669                 if (update) {
1670                         for (int i = 0; i < tabular->rows(); ++i) {
1671                                 tabular->GetCellInset(tabular->GetCellNumber(i, column))->
1672                                         resizeLyXText(bv);
1673                         }
1674                         updateLocal(bv, INIT, true);
1675                 }
1676         }
1677         break;
1678         case LyXTabular::SET_SPECIAL_COLUMN:
1679         case LyXTabular::SET_SPECIAL_MULTI:
1680                 tabular->SetAlignSpecial(actcell,value,feature);
1681                 updateLocal(bv, FULL, true);
1682                 break;
1683         case LyXTabular::APPEND_ROW:
1684                 // append the row into the tabular
1685                 unlockInsetInInset(bv, the_locking_inset);
1686                 tabular->AppendRow(actcell);
1687                 updateLocal(bv, INIT, true);
1688                 break;
1689         case LyXTabular::APPEND_COLUMN:
1690                 // append the column into the tabular
1691                 unlockInsetInInset(bv, the_locking_inset);
1692                 tabular->AppendColumn(actcell);
1693                 actcell = tabular->GetCellNumber(row, column);
1694                 updateLocal(bv, INIT, true);
1695                 break;
1696         case LyXTabular::DELETE_ROW:
1697                 unlockInsetInInset(bv, the_locking_inset);
1698                 for(int i = sel_row_start; i <= sel_row_end; ++i) {
1699                         tabular->DeleteRow(sel_row_start);
1700                 }
1701                 if (sel_row_start >= tabular->rows())
1702                         --sel_row_start;
1703                 actcell = tabular->GetCellNumber(sel_row_start, column);
1704                 clearSelection();
1705                 updateLocal(bv, INIT, true);
1706                 break;
1707         case LyXTabular::DELETE_COLUMN:
1708                 unlockInsetInInset(bv, the_locking_inset);
1709                 for(int i = sel_col_start; i <= sel_col_end; ++i) {
1710                         tabular->DeleteColumn(sel_col_start);
1711                 }
1712                 if (sel_col_start >= tabular->columns())
1713                         --sel_col_start;
1714                 actcell = tabular->GetCellNumber(row, sel_col_start);
1715                 clearSelection();
1716                 updateLocal(bv, INIT, true);
1717                 break;
1718         case LyXTabular::M_TOGGLE_LINE_TOP:
1719                 flag = false;
1720         case LyXTabular::TOGGLE_LINE_TOP:
1721         {
1722                 bool lineSet = !tabular->TopLine(actcell, flag);
1723                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1724                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1725                                 tabular->SetTopLine(
1726                                         tabular->GetCellNumber(i, j),
1727                                         lineSet, flag);
1728                 updateLocal(bv, INIT, true);
1729                 break;
1730         }
1731         
1732         case LyXTabular::M_TOGGLE_LINE_BOTTOM:
1733                 flag = false;
1734         case LyXTabular::TOGGLE_LINE_BOTTOM:
1735         {
1736                 bool lineSet = !tabular->BottomLine(actcell, flag); 
1737                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1738                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1739                                 tabular->SetBottomLine(
1740                                         tabular->GetCellNumber(i, j),
1741                                         lineSet,
1742                                         flag);
1743                 updateLocal(bv, INIT, true);
1744                 break;
1745         }
1746         
1747         case LyXTabular::M_TOGGLE_LINE_LEFT:
1748                 flag = false;
1749         case LyXTabular::TOGGLE_LINE_LEFT:
1750         {
1751                 bool lineSet = !tabular->LeftLine(actcell, flag);
1752                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1753                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1754                                 tabular->SetLeftLine(
1755                                         tabular->GetCellNumber(i,j),
1756                                         lineSet,
1757                                         flag);
1758                 updateLocal(bv, INIT, true);
1759                 break;
1760         }
1761         
1762         case LyXTabular::M_TOGGLE_LINE_RIGHT:
1763                 flag = false;
1764         case LyXTabular::TOGGLE_LINE_RIGHT:
1765         {
1766                 bool lineSet = !tabular->RightLine(actcell, flag);
1767                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1768                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1769                                 tabular->SetRightLine(
1770                                         tabular->GetCellNumber(i,j),
1771                                         lineSet,
1772                                         flag);
1773                 updateLocal(bv, INIT, true);
1774                 break;
1775         }
1776         
1777         case LyXTabular::M_ALIGN_LEFT:
1778         case LyXTabular::M_ALIGN_RIGHT:
1779         case LyXTabular::M_ALIGN_CENTER:
1780                 flag = false;
1781         case LyXTabular::ALIGN_LEFT:
1782         case LyXTabular::ALIGN_RIGHT:
1783         case LyXTabular::ALIGN_CENTER:
1784                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1785                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1786                                 tabular->SetAlignment(
1787                                         tabular->GetCellNumber(i, j),
1788                                         setAlign,
1789                                         flag);
1790                 updateLocal(bv, INIT, true);
1791                 break;
1792         case LyXTabular::M_VALIGN_TOP:
1793         case LyXTabular::M_VALIGN_BOTTOM:
1794         case LyXTabular::M_VALIGN_CENTER:
1795                 flag = false;
1796         case LyXTabular::VALIGN_TOP:
1797         case LyXTabular::VALIGN_BOTTOM:
1798         case LyXTabular::VALIGN_CENTER:
1799                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1800                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1801                                 tabular->SetVAlignment(
1802                                         tabular->GetCellNumber(i, j),
1803                                         setVAlign, flag);
1804                 updateLocal(bv, INIT, true);
1805                 break;
1806         case LyXTabular::MULTICOLUMN:
1807         {
1808                 if (sel_row_start != sel_row_end) {
1809                         WriteAlert(_("Impossible Operation!"), 
1810                                    _("Multicolumns can only be horizontally."), 
1811                                    _("Sorry."));
1812                         return;
1813                 }
1814                 // just multicol for one Single Cell
1815                 if (!hasSelection()) {
1816                         // check wether we are completly in a multicol
1817                         if (tabular->IsMultiColumn(actcell)) {
1818                                 tabular->UnsetMultiColumn(actcell);
1819                                 updateLocal(bv, INIT, true);
1820                         } else {
1821                                 tabular->SetMultiColumn(actcell, 1);
1822                                 updateLocal(bv, CELL, true);
1823                         }
1824                         return;
1825                 }
1826                 // we have a selection so this means we just add all this
1827                 // cells to form a multicolumn cell
1828                 int s_start;
1829                 int s_end;
1830
1831                 if (sel_cell_start > sel_cell_end) {
1832                         s_start = sel_cell_end;
1833                         s_end = sel_cell_start;
1834                 } else {
1835                         s_start = sel_cell_start;
1836                         s_end = sel_cell_end;
1837                 }
1838                 tabular->SetMultiColumn(s_start, s_end - s_start + 1);
1839                 actcell = s_start;
1840                 sel_cell_end = sel_cell_start;
1841                 updateLocal(bv, INIT, true);
1842                 break;
1843         }
1844         case LyXTabular::SET_ALL_LINES:
1845                 setLines = true;
1846         case LyXTabular::UNSET_ALL_LINES:
1847                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1848                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1849                                 tabular->SetAllLines(
1850                                         tabular->GetCellNumber(i,j), setLines);
1851                 updateLocal(bv, INIT, true);
1852                 break;
1853         case LyXTabular::SET_LONGTABULAR:
1854                 tabular->SetLongTabular(true);
1855                 updateLocal(bv, INIT, true); // because this toggles displayed
1856                 break;
1857         case LyXTabular::UNSET_LONGTABULAR:
1858                 tabular->SetLongTabular(false);
1859                 updateLocal(bv, INIT, true); // because this toggles displayed
1860                 break;
1861         case LyXTabular::SET_ROTATE_TABULAR:
1862                 tabular->SetRotateTabular(true);
1863                 break;
1864         case LyXTabular::UNSET_ROTATE_TABULAR:
1865                 tabular->SetRotateTabular(false);
1866                 break;
1867         case LyXTabular::SET_ROTATE_CELL:
1868                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1869                         for (int j = sel_col_start; j<=sel_col_end; ++j)
1870                                 tabular->SetRotateCell(
1871                                         tabular->GetCellNumber(i, j),
1872                                         true);
1873                 break;
1874         case LyXTabular::UNSET_ROTATE_CELL:
1875                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1876                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1877                                 tabular->SetRotateCell(
1878                                         tabular->GetCellNumber(i, j), false);
1879                 break;
1880         case LyXTabular::SET_USEBOX:
1881         {
1882                 LyXTabular::BoxType val = LyXTabular::BoxType(strToInt(value));
1883                 if (val == tabular->GetUsebox(actcell))
1884                         val = LyXTabular::BOX_NONE;
1885                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1886                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1887                                 tabular->SetUsebox(
1888                                         tabular->GetCellNumber(i, j), val);
1889                 break;
1890         }
1891         case LyXTabular::SET_LTFIRSTHEAD:
1892                 tabular->SetLTHead(actcell, true);
1893                 break;
1894         case LyXTabular::SET_LTHEAD:
1895                 tabular->SetLTHead(actcell, false);
1896                 break;
1897         case LyXTabular::SET_LTFOOT:
1898                 tabular->SetLTFoot(actcell, false);
1899                 break;
1900         case LyXTabular::SET_LTLASTFOOT:
1901                 tabular->SetLTFoot(actcell, true);
1902                 break;
1903         case LyXTabular::SET_LTNEWPAGE:
1904         {
1905                 bool what = !tabular->GetLTNewPage(actcell);
1906                 tabular->SetLTNewPage(actcell, what);
1907                 break;
1908         }
1909         // dummy stuff just to avoid warnings
1910         case LyXTabular::LAST_ACTION:
1911                 break;
1912         }
1913 }
1914
1915
1916 bool InsetTabular::activateCellInset(BufferView * bv, int x, int y, int button,
1917                                      bool behind)
1918 {
1919         UpdatableInset * inset =
1920                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
1921         LyXFont font(LyXFont::ALL_SANE);
1922         if (behind) {
1923                 x = inset->x() + inset->width(bv, font);
1924                 y = inset->descent(bv, font);
1925         }
1926         //inset_x = cursor.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
1927         //inset_y = cursor.y();
1928         inset->edit(bv, x,  y, button);
1929         if (!the_locking_inset)
1930                 return false;
1931         updateLocal(bv, CELL, false);
1932         return (the_locking_inset != 0);
1933 }
1934
1935
1936 bool InsetTabular::activateCellInsetAbs(BufferView * bv, int x, int y,
1937                                         int button)
1938 {
1939         inset_x = cursor_.x()
1940                 - top_x + tabular->GetBeginningOfTextInCell(actcell);
1941         inset_y = cursor_.y();
1942         return activateCellInset(bv, x - inset_x, y - inset_y, button);
1943 }
1944
1945
1946 bool InsetTabular::insetHit(BufferView *, int x, int) const
1947 {
1948         return (x + top_x)
1949                 > (cursor_.x() + tabular->GetBeginningOfTextInCell(actcell));
1950 }
1951
1952
1953 // This returns paperWidth() if the cell-width is unlimited or the width
1954 // in pixels if we have a pwidth for this cell.
1955 int InsetTabular::getMaxWidthOfCell(BufferView * bv, int cell) const
1956 {
1957         string const s = tabular->GetPWidth(cell);
1958         
1959         if (s.empty())
1960                 return -1;
1961         return VSpace(s).inPixels(bv);
1962 }
1963
1964
1965 int InsetTabular::getMaxWidth(BufferView * bv,
1966                               UpdatableInset const * inset) const
1967 {
1968         int cell = tabular->cur_cell;
1969         if (tabular->GetCellInset(cell) != inset) {
1970                 cell = actcell;
1971                 if (tabular->GetCellInset(cell) != inset) {
1972                         
1973                         lyxerr << "Actcell not equal to actual cell!\n";
1974                         cell = -1;
1975                 }
1976         }
1977         
1978         int const n = tabular->GetNumberOfCells();
1979
1980         if (cell == -1) {
1981                 for (cell = 0; cell < n; ++cell) {
1982                         if (tabular->GetCellInset(cell) == inset)
1983                                 break;
1984                 }
1985         }
1986         
1987         if (cell >= n) {
1988                 lyxerr << "Own inset not found, shouldn't really happen!\n";
1989                 return -1;
1990         }
1991         
1992         int w = getMaxWidthOfCell(bv, cell);
1993         if (w > 0) {
1994                 // because the inset then subtracts it's top_x and owner->x()
1995                 w += (inset->x() - top_x);
1996         }
1997         
1998         return w;
1999 }
2000
2001
2002 void InsetTabular::deleteLyXText(BufferView * bv, bool recursive) const
2003 {
2004         resizeLyXText(bv, recursive);
2005 }
2006
2007
2008 void InsetTabular::resizeLyXText(BufferView * bv, bool force) const
2009 {
2010         if (force) {
2011                 for(int i = 0; i < tabular->rows(); ++i) {
2012                         for(int j = 0; j < tabular->columns(); ++j) {
2013                                 tabular->GetCellInset(i, j)->resizeLyXText(bv, true);
2014                         }
2015                 }
2016         }
2017         need_update = FULL;
2018 }
2019
2020
2021 LyXText * InsetTabular::getLyXText(BufferView const * bv,
2022                                    bool const recursive) const
2023 {
2024         if (the_locking_inset)
2025                 return the_locking_inset->getLyXText(bv, recursive);
2026 #if 0
2027         // if we're locked lock the actual insettext and return it's LyXText!!!
2028         if (locked) {
2029                 UpdatableInset * inset =
2030                         static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2031                 inset->edit(const_cast<BufferView *>(bv), 0,  0, 0);
2032                 return the_locking_inset->getLyXText(bv, recursive);
2033         }
2034 #endif
2035         return Inset::getLyXText(bv, recursive);
2036 }
2037
2038
2039 bool InsetTabular::showInsetDialog(BufferView * bv) const
2040 {
2041         if (!the_locking_inset || !the_locking_inset->showInsetDialog(bv))
2042                 bv->owner()->getDialogs()
2043                         ->showTabular(const_cast<InsetTabular *>(this));
2044         return true;
2045 }
2046
2047
2048 void InsetTabular::openLayoutDialog(BufferView * bv) const
2049 {
2050         if (the_locking_inset) {
2051                 InsetTabular * i = static_cast<InsetTabular *>
2052                         (the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE));
2053                 if (i) {
2054                         i->openLayoutDialog(bv);
2055                         return;
2056                 }
2057         }
2058         bv->owner()->getDialogs()->showTabular(
2059                 const_cast<InsetTabular *>(this));
2060 }
2061
2062
2063 //
2064 // functions returns:
2065 // 0 ... disabled
2066 // 1 ... enabled
2067 // 2 ... toggled on
2068 // 3 ... toggled off
2069 //
2070 func_status::value_type InsetTabular::getStatus(string const & what) const
2071 {
2072         int action = LyXTabular::LAST_ACTION;
2073         func_status::value_type status = func_status::OK;
2074         
2075         int i = 0;
2076         for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
2077                 string const tmp = tabularFeature[i].feature;
2078                 if (tmp == what.substr(0, tmp.length())) {                  
2079                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
2080                         //   tabularFeatures[i].feature.length())) {
2081                         action = tabularFeature[i].action;
2082                         break;
2083                 }
2084         }
2085         if (action == LyXTabular::LAST_ACTION)
2086                 return func_status::Unknown;
2087
2088         string const argument = frontStrip(what.substr(tabularFeature[i].feature.length()));
2089
2090         int sel_row_start;
2091         int sel_row_end;
2092         int dummy;
2093         bool flag = true;
2094
2095         if (hasSelection()) {
2096                 getSelection(sel_row_start, sel_row_end, dummy, dummy);
2097         } else {
2098                 sel_row_start = sel_row_end = tabular->row_of_cell(actcell);
2099         }
2100
2101         switch (action) {
2102         case LyXTabular::SET_PWIDTH:
2103         case LyXTabular::SET_MPWIDTH:
2104         case LyXTabular::SET_SPECIAL_COLUMN:
2105         case LyXTabular::SET_SPECIAL_MULTI:
2106                 status |= func_status::Disabled;
2107                 return status;
2108
2109         case LyXTabular::APPEND_ROW:
2110         case LyXTabular::APPEND_COLUMN:
2111         case LyXTabular::DELETE_ROW:
2112         case LyXTabular::DELETE_COLUMN:
2113         case LyXTabular::SET_ALL_LINES:
2114         case LyXTabular::UNSET_ALL_LINES:
2115                 status |= func_status::OK;
2116                 return status;
2117
2118         case LyXTabular::MULTICOLUMN:
2119                 if (tabular->IsMultiColumn(actcell))
2120                         status |= func_status::ToggleOn;
2121                 else
2122                         status |= func_status::ToggleOff;
2123                 break;
2124         case LyXTabular::M_TOGGLE_LINE_TOP:
2125                 flag = false;
2126         case LyXTabular::TOGGLE_LINE_TOP:
2127                 if (tabular->TopLine(actcell, flag))
2128                         status |= func_status::ToggleOn;
2129                 else
2130                         status |= func_status::ToggleOff;
2131                 break;
2132         case LyXTabular::M_TOGGLE_LINE_BOTTOM:
2133                 flag = false;
2134         case LyXTabular::TOGGLE_LINE_BOTTOM:
2135                 if (tabular->BottomLine(actcell, flag))
2136                         status |= func_status::ToggleOn;
2137                 else
2138                         status |= func_status::ToggleOff;
2139                 break;
2140         case LyXTabular::M_TOGGLE_LINE_LEFT:
2141                 flag = false;
2142         case LyXTabular::TOGGLE_LINE_LEFT:
2143                 if (tabular->LeftLine(actcell, flag))
2144                         status |= func_status::ToggleOn;
2145                 else
2146                         status |= func_status::ToggleOff;
2147                 break;
2148         case LyXTabular::M_TOGGLE_LINE_RIGHT:
2149                 flag = false;
2150         case LyXTabular::TOGGLE_LINE_RIGHT:
2151                 if (tabular->RightLine(actcell, flag))
2152                         status |= func_status::ToggleOn;
2153                 else
2154                         status |= func_status::ToggleOff;
2155                 break;
2156         case LyXTabular::M_ALIGN_LEFT:
2157                 flag = false;
2158         case LyXTabular::ALIGN_LEFT:
2159                 if (tabular->GetAlignment(actcell, flag) == LYX_ALIGN_LEFT)
2160                         status |= func_status::ToggleOn;
2161                 else
2162                         status |= func_status::ToggleOff;
2163                 break;
2164         case LyXTabular::M_ALIGN_RIGHT:
2165                 flag = false;
2166         case LyXTabular::ALIGN_RIGHT:
2167                 if (tabular->GetAlignment(actcell, flag) == LYX_ALIGN_RIGHT)
2168                         status |= func_status::ToggleOn;
2169                 else
2170                         status |= func_status::ToggleOff;
2171                 break;
2172         case LyXTabular::M_ALIGN_CENTER:
2173                 flag = false;
2174         case LyXTabular::ALIGN_CENTER:
2175                 if (tabular->GetAlignment(actcell, flag) == LYX_ALIGN_CENTER)
2176                         status |= func_status::ToggleOn;
2177                 else
2178                         status |= func_status::ToggleOff;
2179                 break;
2180         case LyXTabular::M_VALIGN_TOP:
2181                 flag = false;
2182         case LyXTabular::VALIGN_TOP:
2183                 if (tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_TOP)
2184                         status |= func_status::ToggleOn;
2185                 else
2186                         status |= func_status::ToggleOff;
2187                 break;
2188         case LyXTabular::M_VALIGN_BOTTOM:
2189                 flag = false;
2190         case LyXTabular::VALIGN_BOTTOM:
2191                 if (tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_BOTTOM)
2192                         status |= func_status::ToggleOn;
2193                 else
2194                         status |= func_status::ToggleOff;
2195                 break;
2196         case LyXTabular::M_VALIGN_CENTER:
2197                 flag = false;
2198         case LyXTabular::VALIGN_CENTER:
2199                 if (tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_CENTER)
2200                         status |= func_status::ToggleOn;
2201                 else
2202                         status |= func_status::ToggleOff;
2203                 break;
2204         case LyXTabular::SET_LONGTABULAR:
2205                 if (tabular->IsLongTabular())
2206                         status |= func_status::ToggleOn;
2207                 else
2208                         status |= func_status::ToggleOff;
2209                 break;
2210         case LyXTabular::UNSET_LONGTABULAR:
2211                 if (!tabular->IsLongTabular())
2212                         status |= func_status::ToggleOn;
2213                 else
2214                         status |= func_status::ToggleOff;
2215                 break;
2216         case LyXTabular::SET_ROTATE_TABULAR:
2217                 if (tabular->GetRotateTabular())
2218                         status |= func_status::ToggleOn;
2219                 else
2220                         status |= func_status::ToggleOff;
2221                 break;
2222         case LyXTabular::UNSET_ROTATE_TABULAR:
2223                 if (!tabular->GetRotateTabular())
2224                         status |= func_status::ToggleOn;
2225                 else
2226                         status |= func_status::ToggleOff;
2227                 break;
2228         case LyXTabular::SET_ROTATE_CELL:
2229                 if (tabular->GetRotateCell(actcell))
2230                         status |= func_status::ToggleOn;
2231                 else
2232                         status |= func_status::ToggleOff;
2233                 break;
2234         case LyXTabular::UNSET_ROTATE_CELL:
2235                 if (!tabular->GetRotateCell(actcell))
2236                         status |= func_status::ToggleOn;
2237                 else
2238                         status |= func_status::ToggleOff;
2239                 break;
2240         case LyXTabular::SET_USEBOX:
2241                 if (strToInt(argument) == tabular->GetUsebox(actcell))
2242                         status |= func_status::ToggleOn;
2243                 else
2244                         status |= func_status::ToggleOff;
2245                 break;
2246         case LyXTabular::SET_LTFIRSTHEAD:
2247                 if (tabular->GetRowOfLTHead(actcell, dummy))
2248                         status |= func_status::ToggleOn;
2249                 else
2250                         status |= func_status::ToggleOff;
2251                 break;
2252         case LyXTabular::SET_LTHEAD:
2253                 if (tabular->GetRowOfLTHead(actcell, dummy))
2254                         status |= func_status::ToggleOn;
2255                 else
2256                         status |= func_status::ToggleOff;
2257                 break;
2258         case LyXTabular::SET_LTFOOT:
2259                 if (tabular->GetRowOfLTFoot(actcell, dummy))
2260                         status |= func_status::ToggleOn;
2261                 else
2262                         status |= func_status::ToggleOff;
2263                 break;
2264         case LyXTabular::SET_LTLASTFOOT:
2265                 if (tabular->GetRowOfLTFoot(actcell, dummy))
2266                         status |= func_status::ToggleOn;
2267                 else
2268                         status |= func_status::ToggleOff;
2269                 break;
2270         case LyXTabular::SET_LTNEWPAGE:
2271                 if (tabular->GetLTNewPage(actcell))
2272                         status |= func_status::ToggleOn;
2273                 else
2274                         status |= func_status::ToggleOff;
2275                 break;
2276         default:
2277                 status = func_status::Disabled;
2278                 break;
2279         }
2280         return status;
2281 }
2282
2283
2284 std::vector<string> const InsetTabular::getLabelList() const
2285 {
2286         return tabular->getLabelList();
2287 }
2288
2289
2290 bool InsetTabular::copySelection(BufferView * bv)
2291 {
2292         if (!hasSelection())
2293                 return false;
2294
2295         int sel_col_start = tabular->column_of_cell(sel_cell_start);
2296         int sel_col_end = tabular->column_of_cell(sel_cell_end);
2297         if (sel_col_start > sel_col_end) {
2298                 sel_col_start = sel_col_end;
2299                 sel_col_end = tabular->right_column_of_cell(sel_cell_start);
2300         } else {
2301                 sel_col_end = tabular->right_column_of_cell(sel_cell_end);
2302         }
2303         int const columns = sel_col_end - sel_col_start + 1;
2304
2305         int sel_row_start = tabular->row_of_cell(sel_cell_start);
2306         int sel_row_end = tabular->row_of_cell(sel_cell_end);
2307         if (sel_row_start > sel_row_end) {
2308                 swap(sel_row_start, sel_row_end);
2309         }
2310         int const rows = sel_row_end - sel_row_start + 1;
2311
2312         delete paste_tabular;
2313         paste_tabular = new LyXTabular(this, *tabular); // rows, columns);
2314         for (int i = 0; i < sel_row_start; ++i)
2315                 paste_tabular->DeleteRow(0);
2316         while(paste_tabular->rows() > rows)
2317                 paste_tabular->DeleteRow(rows);
2318         paste_tabular->SetTopLine(0, true, true);
2319         paste_tabular->SetBottomLine(paste_tabular->GetFirstCellInRow(rows-1),
2320                                      true, true);
2321         for (int i = 0; i < sel_col_start; ++i)
2322                 paste_tabular->DeleteColumn(0);
2323         while (paste_tabular->columns() > columns)
2324                 paste_tabular->DeleteColumn(columns);
2325         paste_tabular->SetLeftLine(0, true, true);
2326         paste_tabular->SetRightLine(paste_tabular->GetLastCellInRow(0),
2327                                     true, true);
2328
2329         ostringstream sstr;
2330         paste_tabular->Ascii(bv->buffer(), sstr);
2331         bv->stuffClipboard(sstr.str().c_str());
2332         return true;
2333 }
2334
2335
2336 bool InsetTabular::pasteSelection(BufferView * bv)
2337 {
2338         if (!paste_tabular)
2339                 return false;
2340
2341         for (int r1 = 0, r2 = actrow;
2342              (r1 < paste_tabular->rows()) && (r2 < tabular->rows());
2343              ++r1, ++r2) {
2344                 for(int c1 = 0, c2 = actcol;
2345                     (c1 < paste_tabular->columns()) && (c2 < tabular->columns());
2346                     ++c1, ++c2) {
2347                         if (paste_tabular->IsPartOfMultiColumn(r1,c1) &&
2348                             tabular->IsPartOfMultiColumn(r2,c2))
2349                                 continue;
2350                         if (paste_tabular->IsPartOfMultiColumn(r1,c1)) {
2351                                 --c2;
2352                                 continue;
2353                         }
2354                         if (tabular->IsPartOfMultiColumn(r2,c2)) {
2355                                 --c1;
2356                                 continue;
2357                         }
2358                         int const n1 = paste_tabular->GetCellNumber(r1, c1);
2359                         int const n2 = tabular->GetCellNumber(r2, c2);
2360                         *(tabular->GetCellInset(n2)) = *(paste_tabular->GetCellInset(n1));
2361                         tabular->GetCellInset(n2)->setOwner(this);
2362                         tabular->GetCellInset(n2)->deleteLyXText(bv);
2363                 }
2364         }
2365         return true;
2366 }
2367
2368
2369 bool InsetTabular::cutSelection()
2370 {
2371         if (!hasSelection())
2372                 return false;
2373
2374         int sel_col_start = tabular->column_of_cell(sel_cell_start);
2375         int sel_col_end = tabular->column_of_cell(sel_cell_end);
2376         if (sel_col_start > sel_col_end) {
2377                 sel_col_start = sel_col_end;
2378                 sel_col_end = tabular->right_column_of_cell(sel_cell_start);
2379         } else {
2380                 sel_col_end = tabular->right_column_of_cell(sel_cell_end);
2381         }
2382         int sel_row_start = tabular->row_of_cell(sel_cell_start);
2383         int sel_row_end = tabular->row_of_cell(sel_cell_end);
2384         if (sel_row_start > sel_row_end) {
2385                 swap(sel_row_start, sel_row_end);
2386         }
2387         if (sel_cell_start > sel_cell_end) {
2388                 swap(sel_cell_start, sel_cell_end);
2389         }
2390         for (int i = sel_row_start; i <= sel_row_end; ++i) {
2391                 for (int j = sel_col_start; j <= sel_col_end; ++j) {
2392                         tabular->GetCellInset(tabular->GetCellNumber(i, j))->clear();
2393                 }
2394         }
2395         return true;
2396 }
2397
2398
2399 bool InsetTabular::isRightToLeft(BufferView *bv )
2400 {
2401         return bv->getParentLanguage(this)->RightToLeft();
2402 }
2403
2404
2405 bool InsetTabular::nodraw() const
2406 {
2407         if (!UpdatableInset::nodraw() && the_locking_inset)
2408                 return the_locking_inset->nodraw();
2409         return UpdatableInset::nodraw();
2410 }
2411
2412
2413 int InsetTabular::scroll(bool recursive) const
2414 {
2415         int sx = UpdatableInset::scroll(false);
2416
2417         if (recursive && the_locking_inset)
2418                 sx += the_locking_inset->scroll(recursive);
2419
2420         return sx;
2421 }
2422
2423
2424 bool InsetTabular::doClearArea() const
2425 {
2426         return !locked || (need_update & (FULL|INIT));
2427 }
2428
2429
2430 void InsetTabular::getSelection(int & srow, int & erow, int & scol, int & ecol) const
2431 {
2432                 srow = tabular->row_of_cell(sel_cell_start);
2433                 erow = tabular->row_of_cell(sel_cell_end);
2434                 if (srow > erow)
2435                         swap(srow, erow);
2436
2437                 scol = tabular->column_of_cell(sel_cell_start);
2438                 ecol = tabular->column_of_cell(sel_cell_end);
2439                 if (scol > ecol)
2440                         swap(scol, ecol);
2441                 else
2442                         ecol = tabular->right_column_of_cell(sel_cell_end);
2443 }
2444
2445
2446 Paragraph * InsetTabular::getParFromID(int id) const
2447 {
2448         Paragraph * result;
2449         for(int i = 0; i < tabular->rows(); ++i) {
2450                 for(int j = 0; j < tabular->columns(); ++j) {
2451                         if ((result = tabular->GetCellInset(i, j)->getParFromID(id)))
2452                                 return result;
2453                 }
2454         }
2455         return 0;
2456 }
2457
2458
2459 Paragraph * InsetTabular::firstParagraph() const
2460 {
2461         if (the_locking_inset)
2462                 return the_locking_inset->firstParagraph();
2463         return 0;
2464 }
2465
2466
2467 Paragraph * InsetTabular::getFirstParagraph(int i) const
2468 {
2469         return (i < tabular->GetNumberOfCells())
2470                 ? tabular->GetCellInset(i)->getFirstParagraph(0)
2471                 : 0;
2472 }
2473
2474
2475 LyXCursor const & InsetTabular::cursor(BufferView * bv) const
2476 {
2477         if (the_locking_inset)
2478                 return the_locking_inset->cursor(bv);
2479         return Inset::cursor(bv);
2480 }
2481
2482
2483 Inset * InsetTabular::getInsetFromID(int id_arg) const
2484 {
2485         if (id_arg == id())
2486                 return const_cast<InsetTabular *>(this);
2487
2488         Inset * result;
2489         for(int i=0; i < tabular->rows(); ++i) {
2490                 for(int j=0; j < tabular->columns(); ++j) {
2491                         if ((result = tabular->GetCellInset(i, j)->getInsetFromID(id_arg)))
2492                                 return result;
2493                 }
2494         }
2495         return 0;
2496 }
2497
2498
2499 string const InsetTabular::selectNextWordToSpellcheck(BufferView * bv, float & value) const
2500 {
2501         if (the_locking_inset) {
2502                 string const str(the_locking_inset->selectNextWordToSpellcheck(bv, value));
2503                 if (!str.empty())
2504                         return str;
2505                 if (tabular->IsLastCell(actcell)) {
2506                         bv->unlockInset(const_cast<InsetTabular *>(this));
2507                         return string();
2508                 }
2509                 ++actcell;
2510         }
2511         nodraw(true);
2512         // otherwise we have to lock the next inset and ask for it's selecttion
2513         UpdatableInset * inset =
2514                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2515         inset->edit(bv, 0,  0, 0);
2516         string const str(selectNextWordInt(bv, value));
2517         nodraw(false);
2518         if (!str.empty())
2519                 resetPos(bv);
2520         return str;
2521 }
2522
2523
2524 string InsetTabular::selectNextWordInt(BufferView * bv, float & value) const
2525 {
2526         // when entering this function the inset should be ALWAYS locked!
2527         lyx::Assert(the_locking_inset);
2528
2529         string const str(the_locking_inset->selectNextWordToSpellcheck(bv, value));
2530         if (!str.empty())
2531                 return str;
2532
2533         if (tabular->IsLastCell(actcell)) {
2534                 bv->unlockInset(const_cast<InsetTabular *>(this));
2535                 return string();
2536         }
2537         
2538         // otherwise we have to lock the next inset and ask for it's selecttion
2539         UpdatableInset * inset =
2540                 static_cast<UpdatableInset*>(tabular->GetCellInset(++actcell));
2541         inset->edit(bv);
2542         return selectNextWordInt(bv, value);
2543 }
2544
2545
2546 void InsetTabular::selectSelectedWord(BufferView * bv)
2547 {
2548         if (the_locking_inset) {
2549                 the_locking_inset->selectSelectedWord(bv);
2550                 return;
2551         }
2552         return;
2553 }
2554
2555
2556 void InsetTabular::toggleSelection(BufferView * bv, bool kill_selection)
2557 {
2558         if (the_locking_inset) {
2559                 the_locking_inset->toggleSelection(bv, kill_selection);
2560         }
2561 }
2562
2563
2564 bool InsetTabular::searchForward(BufferView * bv, string const & str,
2565                                  bool const & cs, bool const & mw)
2566 {
2567         if (the_locking_inset) {
2568                 if (the_locking_inset->searchForward(bv, str, cs, mw))
2569                         return true;
2570                 if (tabular->IsLastCell(actcell)) {
2571                         bv->unlockInset(const_cast<InsetTabular *>(this));
2572                         return false;
2573                 }
2574                 ++actcell;
2575         }
2576         // otherwise we have to lock the next inset and search there
2577         UpdatableInset * inset =
2578                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2579         inset->edit(bv);
2580 #if 0
2581         bool const res = searchForward(bv, str, cs, mw);
2582         updateLocal(bv, NONE, false);
2583         bv->updateInset(const_cast<InsetTabular *>(this), false);
2584         return res;
2585 #else
2586         return searchForward(bv, str, cs, mw);
2587 #endif
2588 }
2589
2590
2591 bool InsetTabular::searchBackward(BufferView * bv, string const & str,
2592                                bool const & cs, bool const & mw)
2593 {
2594         if (the_locking_inset) {
2595                 if (the_locking_inset->searchBackward(bv, str, cs, mw))
2596                         return true;
2597                 if (!actcell) { // we are already in the first cell
2598                         bv->unlockInset(const_cast<InsetTabular *>(this));
2599                         return false;
2600                 }
2601                 --actcell;
2602         }
2603         // otherwise we have to lock the next inset and search there
2604         UpdatableInset * inset =
2605                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2606         inset->edit(bv, false);
2607 #if 0
2608         bool const res = searchBackward(bv, str, cs, mw);
2609         bv->updateInset(const_cast<InsetTabular *>(this), false);
2610         return res;
2611 #else
2612         return searchBackward(bv, str, cs, mw);
2613 #endif
2614 }
2615
2616
2617 bool InsetTabular::insetAllowed(Inset::Code code) const
2618 {
2619         if (the_locking_inset)
2620                 return the_locking_inset->insetAllowed(code);
2621         return false;
2622 }