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