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