]> git.lyx.org Git - lyx.git/blob - src/insets/insettabular.C
Revert this change as it sneaked in and wasn't discussed yet.
[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)-1;
495                 pain.fillRectangle(x, baseline - tabular->GetAscentOfRow(row) + 1,
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         resetPos(bv);
1483         if (bv->fitLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc))
1484                 need_update = FULL;
1485 }
1486
1487
1488 void InsetTabular::setPos(BufferView * bv, int x, int y) const
1489 {
1490         cursor_.y(0);
1491
1492         actcell = actrow = actcol = 0;
1493         int ly = tabular->GetDescentOfRow(actrow);
1494
1495         // first search the right row
1496         while ((ly < y) && ((actrow+1) < tabular->rows())) {
1497                 cursor_.y(cursor_.y() + tabular->GetDescentOfRow(actrow) +
1498                                  tabular->GetAscentOfRow(actrow + 1) +
1499                                  tabular->GetAdditionalHeight(actrow + 1));
1500                 ++actrow;
1501                 ly = cursor_.y() + tabular->GetDescentOfRow(actrow);
1502         }
1503         actcell = tabular->GetCellNumber(actrow, actcol);
1504
1505         // now search the right column
1506         int lx = tabular->GetWidthOfColumn(actcell) -
1507                 tabular->GetAdditionalWidth(actcell);
1508         for (; !tabular->IsLastCellInRow(actcell) && lx < x; ++actcell) {
1509                 lx += tabular->GetWidthOfColumn(actcell + 1)
1510                         + tabular->GetAdditionalWidth(actcell);
1511         }
1512         cursor_.x(lx - tabular->GetWidthOfColumn(actcell) + top_x + 2);
1513         resetPos(bv);
1514 }
1515
1516
1517 int InsetTabular::getCellXPos(int cell) const
1518 {
1519         int c = cell;
1520
1521         for (; !tabular->IsFirstCellInRow(c); --c)
1522                 ;
1523         int lx = tabular->GetWidthOfColumn(cell);
1524         for (; c < cell; ++c) {
1525                 lx += tabular->GetWidthOfColumn(c);
1526         }
1527         return (lx - tabular->GetWidthOfColumn(cell) + top_x);
1528 }
1529
1530
1531 void InsetTabular::resetPos(BufferView * bv) const
1532 {
1533 #ifdef WITH_WARNINGS
1534 #warning This should be fixed in the right manner (20011128 Jug)
1535 #endif
1536         // fast hack to fix infinite repaintings!
1537         if (in_reset_pos)
1538                 return;
1539
1540         int cell = 0;
1541         actcol = tabular->column_of_cell(actcell);
1542         actrow = 0;
1543         cursor_.y(0);
1544         for (; (cell < actcell) && !tabular->IsLastRow(cell); ++cell) {
1545                 if (tabular->IsLastCellInRow(cell)) {
1546                         cursor_.y(cursor_.y() + tabular->GetDescentOfRow(actrow) +
1547                                          tabular->GetAscentOfRow(actrow + 1) +
1548                                          tabular->GetAdditionalHeight(actrow + 1));
1549                         ++actrow;
1550                 }
1551         }
1552         if (!locked || nodraw()) {
1553                 if (the_locking_inset)
1554                         inset_y = cursor_.y();
1555                 return;
1556         }
1557         // we need this only from here on!!!
1558         in_reset_pos = true;
1559         static int const offset = ADD_TO_TABULAR_WIDTH + 2;
1560         int new_x = getCellXPos(actcell);
1561         int old_x = cursor_.x();
1562         new_x += offset;
1563         cursor_.x(new_x);
1564 //    cursor.x(getCellXPos(actcell) + offset);
1565         if ((actcol < tabular->columns()-1) && scroll(false) &&
1566                 (tabular->GetWidthOfTabular() < bv->workWidth()-20))
1567         {
1568                 scroll(bv, 0.0F);
1569                 updateLocal(bv, FULL, false);
1570         } else if (the_locking_inset &&
1571                  (tabular->GetWidthOfColumn(actcell) > bv->workWidth()-20))
1572         {
1573                 int xx = cursor_.x() - offset + bv->text->getRealCursorX(bv);
1574                 if (xx > (bv->workWidth()-20)) {
1575                         scroll(bv, -(xx - bv->workWidth() + 60));
1576                         updateLocal(bv, FULL, false);
1577                 } else if (xx < 20) {
1578                         if (xx < 0)
1579                                 xx = -xx + 60;
1580                         else
1581                                 xx = 60;
1582                         scroll(bv, xx);
1583                         updateLocal(bv, FULL, false);
1584                 }
1585         } else if ((cursor_.x() - offset) > 20 &&
1586                    (cursor_.x() - offset + tabular->GetWidthOfColumn(actcell))
1587                    > (bv->workWidth() - 20)) {
1588                 scroll(bv, -tabular->GetWidthOfColumn(actcell) - 20);
1589                 updateLocal(bv, FULL, false);
1590         } else if ((cursor_.x() - offset) < 20) {
1591                 scroll(bv, 20 - cursor_.x() + offset);
1592                 updateLocal(bv, FULL, false);
1593         } else if (scroll(false) && top_x > 20 &&
1594                    (top_x + tabular->GetWidthOfTabular()) > (bv->workWidth() - 20)) {
1595                 scroll(bv, old_x - cursor_.x());
1596                 updateLocal(bv, FULL, false);
1597         }
1598         if (the_locking_inset) {
1599                 inset_x = cursor_.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
1600                 inset_y = cursor_.y();
1601         }
1602         if ((!the_locking_inset ||
1603              !the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE)) &&
1604             actcell != oldcell) {
1605                 InsetTabular * inset = const_cast<InsetTabular *>(this);
1606                 bv->owner()->getDialogs()->updateTabular(inset);
1607                 oldcell = actcell;
1608         }
1609         in_reset_pos = false;
1610 }
1611
1612
1613 UpdatableInset::RESULT InsetTabular::moveRight(BufferView * bv, bool lock)
1614 {
1615         if (lock && !old_locking_inset) {
1616                 if (activateCellInset(bv))
1617                         return DISPATCHED;
1618         } else {
1619                 bool moved = isRightToLeft(bv)
1620                         ? movePrevCell(bv) : moveNextCell(bv);
1621                 if (!moved)
1622                         return FINISHED_RIGHT;
1623                 if (lock && activateCellInset(bv))
1624                         return DISPATCHED;
1625         }
1626         resetPos(bv);
1627         return DISPATCHED_NOUPDATE;
1628 }
1629
1630
1631 UpdatableInset::RESULT InsetTabular::moveLeft(BufferView * bv, bool lock)
1632 {
1633         bool moved = isRightToLeft(bv) ? moveNextCell(bv) : movePrevCell(bv);
1634         if (!moved)
1635                 return FINISHED;
1636         if (lock) {       // behind the inset
1637                 if (activateCellInset(bv, 0, 0, 0, true))
1638                         return DISPATCHED;
1639         }
1640         resetPos(bv);
1641         return DISPATCHED_NOUPDATE;
1642 }
1643
1644
1645 UpdatableInset::RESULT InsetTabular::moveUp(BufferView * bv, bool lock)
1646 {
1647         int const ocell = actcell;
1648         actcell = tabular->GetCellAbove(actcell);
1649         if (actcell == ocell) // we moved out of the inset
1650                 return FINISHED_UP;
1651         resetPos(bv);
1652         if (lock) {
1653                 int x = 0;
1654                 int y = 0;
1655                 if (old_locking_inset) {
1656                         old_locking_inset->getCursorPos(bv, x, y);
1657                         x -= cursor_.x() + tabular->GetBeginningOfTextInCell(actcell);
1658                 }
1659                 if (activateCellInset(bv, x, 0))
1660                         return DISPATCHED;
1661         }
1662         return DISPATCHED_NOUPDATE;
1663 }
1664
1665
1666 UpdatableInset::RESULT InsetTabular::moveDown(BufferView * bv, bool lock)
1667 {
1668         int const ocell = actcell;
1669         actcell = tabular->GetCellBelow(actcell);
1670         if (actcell == ocell) // we moved out of the inset
1671                 return FINISHED_DOWN;
1672         resetPos(bv);
1673         if (lock) {
1674                 int x = 0;
1675                 int y = 0;
1676                 if (old_locking_inset) {
1677                         old_locking_inset->getCursorPos(bv, x, y);
1678                         x -= cursor_.x() + tabular->GetBeginningOfTextInCell(actcell);
1679                 }
1680                 if (activateCellInset(bv, x, 0))
1681                         return DISPATCHED;
1682         }
1683         return DISPATCHED_NOUPDATE;
1684 }
1685
1686
1687 bool InsetTabular::moveNextCell(BufferView * bv, bool lock)
1688 {
1689         if (isRightToLeft(bv)) {
1690                 if (tabular->IsFirstCellInRow(actcell)) {
1691                         int row = tabular->row_of_cell(actcell);
1692                         if (row == tabular->rows() - 1)
1693                                 return false;
1694                         actcell = tabular->GetLastCellInRow(row);
1695                         actcell = tabular->GetCellBelow(actcell);
1696                 } else {
1697                         if (!actcell)
1698                                 return false;
1699                         --actcell;
1700                 }
1701         } else {
1702                 if (tabular->IsLastCell(actcell))
1703                         return false;
1704                 ++actcell;
1705         }
1706         if (lock) {
1707                 bool rtl = tabular->GetCellInset(actcell)->paragraph()->
1708                         isRightToLeftPar(bv->buffer()->params);
1709                 activateCellInset(bv, 0, 0, 0, !rtl);
1710         }
1711         resetPos(bv);
1712         return true;
1713 }
1714
1715
1716 bool InsetTabular::movePrevCell(BufferView * bv, bool lock)
1717 {
1718         if (isRightToLeft(bv)) {
1719                 if (tabular->IsLastCellInRow(actcell)) {
1720                         int row = tabular->row_of_cell(actcell);
1721                         if (row == 0)
1722                                 return false;
1723                         actcell = tabular->GetFirstCellInRow(row);
1724                         actcell = tabular->GetCellAbove(actcell);
1725                 } else {
1726                         if (tabular->IsLastCell(actcell))
1727                                 return false;
1728                         ++actcell;
1729                 }
1730         } else {
1731                 if (!actcell) // first cell
1732                         return false;
1733                 --actcell;
1734         }
1735         if (lock) {
1736                 bool rtl = tabular->GetCellInset(actcell)->paragraph()->
1737                         isRightToLeftPar(bv->buffer()->params);
1738                 activateCellInset(bv, 0, 0, 0, !rtl);
1739         }
1740         resetPos(bv);
1741         return true;
1742 }
1743
1744
1745 bool InsetTabular::deletable() const
1746 {
1747         return true;
1748 }
1749
1750
1751 void InsetTabular::setFont(BufferView * bv, LyXFont const & font, bool tall,
1752                            bool selectall)
1753 {
1754         if (selectall) {
1755                 setSelection(0, tabular->GetNumberOfCells() - 1);
1756         }
1757         if (hasSelection()) {
1758                 setUndo(bv, Undo::EDIT,
1759                         bv->text->cursor.par(),
1760                         bv->text->cursor.par()->next());
1761                 bool frozen = undo_frozen;
1762                 if (!frozen)
1763                         freezeUndo();
1764                 // apply the fontchange on the whole selection
1765                 int sel_row_start;
1766                 int sel_row_end;
1767                 int sel_col_start;
1768                 int sel_col_end;
1769                 getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
1770                 for(int i = sel_row_start; i <= sel_row_end; ++i) {
1771                         for(int j = sel_col_start; j <= sel_col_end; ++j) {
1772                                 tabular->GetCellInset(i, j)->setFont(bv, font, tall, true);
1773                         }
1774                 }
1775                 if (!frozen)
1776                         unFreezeUndo();
1777                 if (selectall)
1778                         clearSelection();
1779                 updateLocal(bv, INIT, true);
1780         }
1781         if (the_locking_inset)
1782                 the_locking_inset->setFont(bv, font, tall);
1783 }
1784
1785
1786 bool InsetTabular::tabularFeatures(BufferView * bv, string const & what)
1787 {
1788         LyXTabular::Feature action = LyXTabular::LAST_ACTION;
1789
1790         int i = 0;
1791         for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
1792                 string const tmp = tabularFeature[i].feature;
1793
1794                 if (tmp == what.substr(0, tmp.length())) {
1795                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
1796                         //tabularFeatures[i].feature.length())) {
1797                         action = tabularFeature[i].action;
1798                         break;
1799                 }
1800         }
1801         if (action == LyXTabular::LAST_ACTION)
1802                 return false;
1803
1804         string const val =
1805                 frontStrip(what.substr(tabularFeature[i].feature.length()));
1806         tabularFeatures(bv, action, val);
1807         return true;
1808 }
1809
1810 static void checkLongtableSpecial(LyXTabular::ltType & ltt,
1811                                   string const & special, bool & flag)
1812 {
1813         if (special == "dl_above") {
1814                 ltt.topDL = flag;
1815                 ltt.set = false;
1816         } else if (special == "dl_below") {
1817                 ltt.bottomDL = flag;
1818                 ltt.set = false;
1819         } else if (special == "empty") {
1820                 ltt.empty = flag;
1821                 ltt.set = false;
1822         } else if (flag) {
1823                 ltt.empty = false;
1824                 ltt.set = true;
1825         }
1826 }
1827
1828
1829 void InsetTabular::tabularFeatures(BufferView * bv,
1830                                    LyXTabular::Feature feature,
1831                                    string const & value)
1832 {
1833         int sel_col_start;
1834         int sel_col_end;
1835         int sel_row_start;
1836         int sel_row_end;
1837         bool setLines = false;
1838         LyXAlignment setAlign = LYX_ALIGN_LEFT;
1839         LyXTabular::VAlignment setVAlign = LyXTabular::LYX_VALIGN_TOP;
1840
1841         switch (feature) {
1842         case LyXTabular::M_ALIGN_LEFT:
1843         case LyXTabular::ALIGN_LEFT:
1844                 setAlign = LYX_ALIGN_LEFT;
1845                 break;
1846         case LyXTabular::M_ALIGN_RIGHT:
1847         case LyXTabular::ALIGN_RIGHT:
1848                 setAlign = LYX_ALIGN_RIGHT;
1849                 break;
1850         case LyXTabular::M_ALIGN_CENTER:
1851         case LyXTabular::ALIGN_CENTER:
1852                 setAlign = LYX_ALIGN_CENTER;
1853                 break;
1854         case LyXTabular::M_VALIGN_TOP:
1855         case LyXTabular::VALIGN_TOP:
1856                 setVAlign = LyXTabular::LYX_VALIGN_TOP;
1857                 break;
1858         case LyXTabular::M_VALIGN_BOTTOM:
1859         case LyXTabular::VALIGN_BOTTOM:
1860                 setVAlign = LyXTabular::LYX_VALIGN_BOTTOM;
1861                 break;
1862         case LyXTabular::M_VALIGN_CENTER:
1863         case LyXTabular::VALIGN_CENTER:
1864                 setVAlign = LyXTabular::LYX_VALIGN_CENTER;
1865                 break;
1866         default:
1867                 break;
1868         }
1869         if (hasSelection()) {
1870                 getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
1871         } else {
1872                 sel_col_start = sel_col_end = tabular->column_of_cell(actcell);
1873                 sel_row_start = sel_row_end = tabular->row_of_cell(actcell);
1874         }
1875         setUndo(bv, Undo::FINISH,
1876                 bv->text->cursor.par(),
1877                 bv->text->cursor.par()->next());
1878
1879         int row =  tabular->row_of_cell(actcell);
1880         int column = tabular->column_of_cell(actcell);
1881         bool flag = true;
1882         LyXTabular::ltType ltt;
1883
1884         switch (feature) {
1885         case LyXTabular::SET_PWIDTH:
1886         {
1887                 LyXLength const vallen(value);
1888                 LyXLength const & tmplen = tabular->GetColumnPWidth(actcell);
1889
1890                 bool const update = (tmplen != vallen);
1891                 tabular->SetColumnPWidth(actcell, vallen);
1892                 if (update) {
1893                         int cell;
1894                         for (int i = 0; i < tabular->rows(); ++i) {
1895                                 cell = tabular->GetCellNumber(i,column);
1896                                 tabular->GetCellInset(cell)->resizeLyXText(bv);
1897                         }
1898                         updateLocal(bv, INIT, true);
1899                 }
1900         }
1901         break;
1902         case LyXTabular::SET_MPWIDTH:
1903         {
1904                 LyXLength const vallen(value);
1905                 LyXLength const & tmplen = tabular->GetPWidth(actcell);
1906
1907                 bool const update = (tmplen != vallen);
1908                 tabular->SetMColumnPWidth(actcell, vallen);
1909                 if (update) {
1910                         for (int i = 0; i < tabular->rows(); ++i) {
1911                                 tabular->GetCellInset(tabular->GetCellNumber(i, column))->
1912                                         resizeLyXText(bv);
1913                         }
1914                         updateLocal(bv, INIT, true);
1915                 }
1916         }
1917         break;
1918         case LyXTabular::SET_SPECIAL_COLUMN:
1919         case LyXTabular::SET_SPECIAL_MULTI:
1920                 tabular->SetAlignSpecial(actcell,value,feature);
1921                 updateLocal(bv, FULL, true);
1922                 break;
1923         case LyXTabular::APPEND_ROW:
1924                 // append the row into the tabular
1925                 unlockInsetInInset(bv, the_locking_inset);
1926                 tabular->AppendRow(bv->buffer()->params, actcell);
1927                 updateLocal(bv, INIT, true);
1928                 break;
1929         case LyXTabular::APPEND_COLUMN:
1930                 // append the column into the tabular
1931                 unlockInsetInInset(bv, the_locking_inset);
1932                 tabular->AppendColumn(bv->buffer()->params, actcell);
1933                 actcell = tabular->GetCellNumber(row, column);
1934                 updateLocal(bv, INIT, true);
1935                 break;
1936         case LyXTabular::DELETE_ROW:
1937                 unlockInsetInInset(bv, the_locking_inset);
1938                 for(int i = sel_row_start; i <= sel_row_end; ++i) {
1939                         tabular->DeleteRow(sel_row_start);
1940                 }
1941                 if (sel_row_start >= tabular->rows())
1942                         --sel_row_start;
1943                 actcell = tabular->GetCellNumber(sel_row_start, column);
1944                 clearSelection();
1945                 updateLocal(bv, INIT, true);
1946                 break;
1947         case LyXTabular::DELETE_COLUMN:
1948                 unlockInsetInInset(bv, the_locking_inset);
1949                 for(int i = sel_col_start; i <= sel_col_end; ++i) {
1950                         tabular->DeleteColumn(sel_col_start);
1951                 }
1952                 if (sel_col_start >= tabular->columns())
1953                         --sel_col_start;
1954                 actcell = tabular->GetCellNumber(row, sel_col_start);
1955                 clearSelection();
1956                 updateLocal(bv, INIT, true);
1957                 break;
1958         case LyXTabular::M_TOGGLE_LINE_TOP:
1959                 flag = false;
1960         case LyXTabular::TOGGLE_LINE_TOP:
1961         {
1962                 bool lineSet = !tabular->TopLine(actcell, flag);
1963                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1964                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1965                                 tabular->SetTopLine(
1966                                         tabular->GetCellNumber(i, j),
1967                                         lineSet, flag);
1968                 updateLocal(bv, INIT, true);
1969                 break;
1970         }
1971
1972         case LyXTabular::M_TOGGLE_LINE_BOTTOM:
1973                 flag = false;
1974         case LyXTabular::TOGGLE_LINE_BOTTOM:
1975         {
1976                 bool lineSet = !tabular->BottomLine(actcell, flag);
1977                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1978                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1979                                 tabular->SetBottomLine(
1980                                         tabular->GetCellNumber(i, j),
1981                                         lineSet,
1982                                         flag);
1983                 updateLocal(bv, INIT, true);
1984                 break;
1985         }
1986
1987         case LyXTabular::M_TOGGLE_LINE_LEFT:
1988                 flag = false;
1989         case LyXTabular::TOGGLE_LINE_LEFT:
1990         {
1991                 bool lineSet = !tabular->LeftLine(actcell, flag);
1992                 for (int i = sel_row_start; i <= sel_row_end; ++i)
1993                         for (int j = sel_col_start; j <= sel_col_end; ++j)
1994                                 tabular->SetLeftLine(
1995                                         tabular->GetCellNumber(i,j),
1996                                         lineSet,
1997                                         flag);
1998                 updateLocal(bv, INIT, true);
1999                 break;
2000         }
2001
2002         case LyXTabular::M_TOGGLE_LINE_RIGHT:
2003                 flag = false;
2004         case LyXTabular::TOGGLE_LINE_RIGHT:
2005         {
2006                 bool lineSet = !tabular->RightLine(actcell, flag);
2007                 for (int i = sel_row_start; i <= sel_row_end; ++i)
2008                         for (int j = sel_col_start; j <= sel_col_end; ++j)
2009                                 tabular->SetRightLine(
2010                                         tabular->GetCellNumber(i,j),
2011                                         lineSet,
2012                                         flag);
2013                 updateLocal(bv, INIT, true);
2014                 break;
2015         }
2016
2017         case LyXTabular::M_ALIGN_LEFT:
2018         case LyXTabular::M_ALIGN_RIGHT:
2019         case LyXTabular::M_ALIGN_CENTER:
2020                 flag = false;
2021         case LyXTabular::ALIGN_LEFT:
2022         case LyXTabular::ALIGN_RIGHT:
2023         case LyXTabular::ALIGN_CENTER:
2024                 for (int i = sel_row_start; i <= sel_row_end; ++i)
2025                         for (int j = sel_col_start; j <= sel_col_end; ++j)
2026                                 tabular->SetAlignment(
2027                                         tabular->GetCellNumber(i, j),
2028                                         setAlign,
2029                                         flag);
2030                 updateLocal(bv, INIT, true);
2031                 break;
2032         case LyXTabular::M_VALIGN_TOP:
2033         case LyXTabular::M_VALIGN_BOTTOM:
2034         case LyXTabular::M_VALIGN_CENTER:
2035                 flag = false;
2036         case LyXTabular::VALIGN_TOP:
2037         case LyXTabular::VALIGN_BOTTOM:
2038         case LyXTabular::VALIGN_CENTER:
2039                 for (int i = sel_row_start; i <= sel_row_end; ++i)
2040                         for (int j = sel_col_start; j <= sel_col_end; ++j)
2041                                 tabular->SetVAlignment(
2042                                         tabular->GetCellNumber(i, j),
2043                                         setVAlign, flag);
2044                 updateLocal(bv, INIT, true);
2045                 break;
2046         case LyXTabular::MULTICOLUMN:
2047         {
2048                 if (sel_row_start != sel_row_end) {
2049                         Alert::alert(_("Impossible Operation!"),
2050                                    _("Multicolumns can only be horizontally."),
2051                                    _("Sorry."));
2052                         return;
2053                 }
2054                 // just multicol for one Single Cell
2055                 if (!hasSelection()) {
2056                         // check wether we are completly in a multicol
2057                         if (tabular->IsMultiColumn(actcell)) {
2058                                 tabular->UnsetMultiColumn(actcell);
2059                                 updateLocal(bv, INIT, true);
2060                         } else {
2061                                 tabular->SetMultiColumn(bv->buffer(), actcell, 1);
2062                                 updateLocal(bv, CELL, true);
2063                         }
2064                         return;
2065                 }
2066                 // we have a selection so this means we just add all this
2067                 // cells to form a multicolumn cell
2068                 int s_start;
2069                 int s_end;
2070
2071                 if (sel_cell_start > sel_cell_end) {
2072                         s_start = sel_cell_end;
2073                         s_end = sel_cell_start;
2074                 } else {
2075                         s_start = sel_cell_start;
2076                         s_end = sel_cell_end;
2077                 }
2078                 tabular->SetMultiColumn(bv->buffer(), s_start, s_end - s_start + 1);
2079                 actcell = s_start;
2080                 clearSelection();
2081                 updateLocal(bv, INIT, true);
2082                 break;
2083         }
2084         case LyXTabular::SET_ALL_LINES:
2085                 setLines = true;
2086         case LyXTabular::UNSET_ALL_LINES:
2087                 for (int i = sel_row_start; i <= sel_row_end; ++i)
2088                         for (int j = sel_col_start; j <= sel_col_end; ++j)
2089                                 tabular->SetAllLines(
2090                                         tabular->GetCellNumber(i,j), setLines);
2091                 updateLocal(bv, INIT, true);
2092                 break;
2093         case LyXTabular::SET_LONGTABULAR:
2094                 tabular->SetLongTabular(true);
2095                 updateLocal(bv, INIT, true); // because this toggles displayed
2096                 break;
2097         case LyXTabular::UNSET_LONGTABULAR:
2098                 tabular->SetLongTabular(false);
2099                 updateLocal(bv, INIT, true); // because this toggles displayed
2100                 break;
2101         case LyXTabular::SET_ROTATE_TABULAR:
2102                 tabular->SetRotateTabular(true);
2103                 break;
2104         case LyXTabular::UNSET_ROTATE_TABULAR:
2105                 tabular->SetRotateTabular(false);
2106                 break;
2107         case LyXTabular::SET_ROTATE_CELL:
2108                 for (int i = sel_row_start; i <= sel_row_end; ++i)
2109                         for (int j = sel_col_start; j<=sel_col_end; ++j)
2110                                 tabular->SetRotateCell(
2111                                         tabular->GetCellNumber(i, j),
2112                                         true);
2113                 break;
2114         case LyXTabular::UNSET_ROTATE_CELL:
2115                 for (int i = sel_row_start; i <= sel_row_end; ++i)
2116                         for (int j = sel_col_start; j <= sel_col_end; ++j)
2117                                 tabular->SetRotateCell(
2118                                         tabular->GetCellNumber(i, j), false);
2119                 break;
2120         case LyXTabular::SET_USEBOX:
2121         {
2122                 LyXTabular::BoxType val = LyXTabular::BoxType(strToInt(value));
2123                 if (val == tabular->GetUsebox(actcell))
2124                         val = LyXTabular::BOX_NONE;
2125                 for (int i = sel_row_start; i <= sel_row_end; ++i)
2126                         for (int j = sel_col_start; j <= sel_col_end; ++j)
2127                                 tabular->SetUsebox(
2128                                         tabular->GetCellNumber(i, j), val);
2129                 break;
2130         }
2131         case LyXTabular::UNSET_LTFIRSTHEAD:
2132                 flag = false;
2133         case LyXTabular::SET_LTFIRSTHEAD:
2134                 (void)tabular->GetRowOfLTFirstHead(row, ltt);
2135                 checkLongtableSpecial(ltt, value, flag);
2136                 tabular->SetLTHead(row, flag, ltt, true);
2137                 break;
2138         case LyXTabular::UNSET_LTHEAD:
2139                 flag = false;
2140         case LyXTabular::SET_LTHEAD:
2141                 (void)tabular->GetRowOfLTHead(row, ltt);
2142                 checkLongtableSpecial(ltt, value, flag);
2143                 tabular->SetLTHead(row, flag, ltt, false);
2144                 break;
2145         case LyXTabular::UNSET_LTFOOT:
2146                 flag = false;
2147         case LyXTabular::SET_LTFOOT:
2148                 (void)tabular->GetRowOfLTFoot(row, ltt);
2149                 checkLongtableSpecial(ltt, value, flag);
2150                 tabular->SetLTFoot(row, flag, ltt, false);
2151                 break;
2152         case LyXTabular::UNSET_LTLASTFOOT:
2153                 flag = false;
2154         case LyXTabular::SET_LTLASTFOOT:
2155                 (void)tabular->GetRowOfLTLastFoot(row, ltt);
2156                 checkLongtableSpecial(ltt, value, flag);
2157                 tabular->SetLTFoot(row, flag, ltt, true);
2158                 break;
2159         case LyXTabular::SET_LTNEWPAGE:
2160         {
2161                 bool what = !tabular->GetLTNewPage(row);
2162                 tabular->SetLTNewPage(row, what);
2163                 break;
2164         }
2165         // dummy stuff just to avoid warnings
2166         case LyXTabular::LAST_ACTION:
2167                 break;
2168         }
2169 }
2170
2171
2172 bool InsetTabular::activateCellInset(BufferView * bv, int x, int y, int button,
2173                                      bool behind)
2174 {
2175         UpdatableInset * inset =
2176                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2177         LyXFont font(LyXFont::ALL_SANE);
2178         if (behind) {
2179                 x = inset->x() + inset->width(bv, font);
2180                 y = inset->descent(bv, font);
2181         }
2182         //inset_x = cursor.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
2183         //inset_y = cursor.y();
2184         inset->edit(bv, x,  y, button);
2185         if (!the_locking_inset)
2186                 return false;
2187         updateLocal(bv, CELL, false);
2188         return (the_locking_inset != 0);
2189 }
2190
2191
2192 bool InsetTabular::activateCellInsetAbs(BufferView * bv, int x, int y,
2193                                         int button)
2194 {
2195         inset_x = cursor_.x()
2196                 - top_x + tabular->GetBeginningOfTextInCell(actcell);
2197         inset_y = cursor_.y();
2198         return activateCellInset(bv, x - inset_x, y - inset_y, button);
2199 }
2200
2201
2202 bool InsetTabular::insetHit(BufferView *, int x, int) const
2203 {
2204         return (x + top_x)
2205                 > (cursor_.x() + tabular->GetBeginningOfTextInCell(actcell));
2206 }
2207
2208
2209 // This returns paperWidth() if the cell-width is unlimited or the width
2210 // in pixels if we have a pwidth for this cell.
2211 int InsetTabular::getMaxWidthOfCell(BufferView * bv, int cell) const
2212 {
2213         LyXLength const len = tabular->GetPWidth(cell);
2214
2215         if (len.zero())
2216                 return -1;
2217         return len.inPixels(latexTextWidth(bv), bv->text->defaultHeight());
2218 }
2219
2220
2221 int InsetTabular::getMaxWidth(BufferView * bv,
2222                               UpdatableInset const * inset) const
2223 {
2224         int cell = tabular->GetCellFromInset(inset, actcell);
2225
2226         if (cell == -1) {
2227                 lyxerr << "Own inset not found, shouldn't really happen!"
2228                        << endl;
2229                 return -1;
2230         }
2231
2232         int w = getMaxWidthOfCell(bv, cell);
2233         if (w > 0) {
2234                 // because the inset then subtracts it's top_x and owner->x()
2235                 w += (inset->x() - top_x);
2236         }
2237
2238         return w;
2239 }
2240
2241
2242 void InsetTabular::deleteLyXText(BufferView * bv, bool recursive) const
2243 {
2244         resizeLyXText(bv, recursive);
2245 }
2246
2247
2248 void InsetTabular::resizeLyXText(BufferView * bv, bool force) const
2249 {
2250         if (force) {
2251                 for(int i = 0; i < tabular->rows(); ++i) {
2252                         for(int j = 0; j < tabular->columns(); ++j) {
2253                                 tabular->GetCellInset(i, j)->resizeLyXText(bv, true);
2254                         }
2255                 }
2256         }
2257         need_update = FULL;
2258 }
2259
2260
2261 LyXText * InsetTabular::getLyXText(BufferView const * bv,
2262                                    bool const recursive) const
2263 {
2264         if (the_locking_inset)
2265                 return the_locking_inset->getLyXText(bv, recursive);
2266 #if 0
2267         // if we're locked lock the actual insettext and return it's LyXText!!!
2268         if (locked) {
2269                 UpdatableInset * inset =
2270                         static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2271                 inset->edit(const_cast<BufferView *>(bv), 0,  0, 0);
2272                 return the_locking_inset->getLyXText(bv, recursive);
2273         }
2274 #endif
2275         return Inset::getLyXText(bv, recursive);
2276 }
2277
2278
2279 bool InsetTabular::showInsetDialog(BufferView * bv) const
2280 {
2281         if (!the_locking_inset || !the_locking_inset->showInsetDialog(bv))
2282                 bv->owner()->getDialogs()
2283                         ->showTabular(const_cast<InsetTabular *>(this));
2284         return true;
2285 }
2286
2287
2288 void InsetTabular::openLayoutDialog(BufferView * bv) const
2289 {
2290         if (the_locking_inset) {
2291                 InsetTabular * i = static_cast<InsetTabular *>
2292                         (the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE));
2293                 if (i) {
2294                         i->openLayoutDialog(bv);
2295                         return;
2296                 }
2297         }
2298         bv->owner()->getDialogs()->showTabular(
2299                 const_cast<InsetTabular *>(this));
2300 }
2301
2302
2303 //
2304 // function returns an object as defined in func_status.h:
2305 // states OK, Unknown, Disabled, On, Off.
2306 //
2307 FuncStatus InsetTabular::getStatus(string const & what) const
2308 {
2309         int action = LyXTabular::LAST_ACTION;
2310         FuncStatus status;
2311
2312         int i = 0;
2313         for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
2314                 string const tmp = tabularFeature[i].feature;
2315                 if (tmp == what.substr(0, tmp.length())) {
2316                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
2317                         //   tabularFeatures[i].feature.length())) {
2318                         action = tabularFeature[i].action;
2319                         break;
2320                 }
2321         }
2322         if (action == LyXTabular::LAST_ACTION) {
2323                 status.clear();
2324                 return status.unknown(true);
2325         }
2326
2327         string const argument = frontStrip(what.substr(tabularFeature[i].feature.length()));
2328
2329         int sel_row_start;
2330         int sel_row_end;
2331         int dummy;
2332         LyXTabular::ltType dummyltt;
2333         bool flag = true;
2334
2335         if (hasSelection()) {
2336                 getSelection(sel_row_start, sel_row_end, dummy, dummy);
2337         } else {
2338                 sel_row_start = sel_row_end = tabular->row_of_cell(actcell);
2339         }
2340
2341         switch (action) {
2342         case LyXTabular::SET_PWIDTH:
2343         case LyXTabular::SET_MPWIDTH:
2344         case LyXTabular::SET_SPECIAL_COLUMN:
2345         case LyXTabular::SET_SPECIAL_MULTI:
2346                 return status.disabled(true);
2347
2348         case LyXTabular::APPEND_ROW:
2349         case LyXTabular::APPEND_COLUMN:
2350         case LyXTabular::DELETE_ROW:
2351         case LyXTabular::DELETE_COLUMN:
2352         case LyXTabular::SET_ALL_LINES:
2353         case LyXTabular::UNSET_ALL_LINES:
2354                 return status.clear();
2355
2356         case LyXTabular::MULTICOLUMN:
2357                 status.setOnOff(tabular->IsMultiColumn(actcell));
2358                 break;
2359         case LyXTabular::M_TOGGLE_LINE_TOP:
2360                 flag = false;
2361         case LyXTabular::TOGGLE_LINE_TOP:
2362                 status.setOnOff(tabular->TopLine(actcell, flag));
2363                 break;
2364         case LyXTabular::M_TOGGLE_LINE_BOTTOM:
2365                 flag = false;
2366         case LyXTabular::TOGGLE_LINE_BOTTOM:
2367                 status.setOnOff(tabular->BottomLine(actcell, flag));
2368                 break;
2369         case LyXTabular::M_TOGGLE_LINE_LEFT:
2370                 flag = false;
2371         case LyXTabular::TOGGLE_LINE_LEFT:
2372                 status.setOnOff(tabular->LeftLine(actcell, flag));
2373                 break;
2374         case LyXTabular::M_TOGGLE_LINE_RIGHT:
2375                 flag = false;
2376         case LyXTabular::TOGGLE_LINE_RIGHT:
2377                 status.setOnOff(tabular->RightLine(actcell, flag));
2378                 break;
2379         case LyXTabular::M_ALIGN_LEFT:
2380                 flag = false;
2381         case LyXTabular::ALIGN_LEFT:
2382                 status.setOnOff(tabular->GetAlignment(actcell, flag) == LYX_ALIGN_LEFT);
2383                 break;
2384         case LyXTabular::M_ALIGN_RIGHT:
2385                 flag = false;
2386         case LyXTabular::ALIGN_RIGHT:
2387                 status.setOnOff(tabular->GetAlignment(actcell, flag) == LYX_ALIGN_RIGHT);
2388                 break;
2389         case LyXTabular::M_ALIGN_CENTER:
2390                 flag = false;
2391         case LyXTabular::ALIGN_CENTER:
2392                 status.setOnOff(tabular->GetAlignment(actcell, flag) == LYX_ALIGN_CENTER);
2393                 break;
2394         case LyXTabular::M_VALIGN_TOP:
2395                 flag = false;
2396         case LyXTabular::VALIGN_TOP:
2397                 status.setOnOff(tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_TOP);
2398                 break;
2399         case LyXTabular::M_VALIGN_BOTTOM:
2400                 flag = false;
2401         case LyXTabular::VALIGN_BOTTOM:
2402                 status.setOnOff(tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_BOTTOM);
2403                 break;
2404         case LyXTabular::M_VALIGN_CENTER:
2405                 flag = false;
2406         case LyXTabular::VALIGN_CENTER:
2407                 status.setOnOff(tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_CENTER);
2408                 break;
2409         case LyXTabular::SET_LONGTABULAR:
2410                 status.setOnOff(tabular->IsLongTabular());
2411                 break;
2412         case LyXTabular::UNSET_LONGTABULAR:
2413                 status.setOnOff(!tabular->IsLongTabular());
2414                 break;
2415         case LyXTabular::SET_ROTATE_TABULAR:
2416                 status.setOnOff(tabular->GetRotateTabular());
2417                 break;
2418         case LyXTabular::UNSET_ROTATE_TABULAR:
2419                 status.setOnOff(!tabular->GetRotateTabular());
2420                 break;
2421         case LyXTabular::SET_ROTATE_CELL:
2422                 status.setOnOff(tabular->GetRotateCell(actcell));
2423                 break;
2424         case LyXTabular::UNSET_ROTATE_CELL:
2425                 status.setOnOff(!tabular->GetRotateCell(actcell));
2426                 break;
2427         case LyXTabular::SET_USEBOX:
2428                 status.setOnOff(strToInt(argument) == tabular->GetUsebox(actcell));
2429                 break;
2430         case LyXTabular::SET_LTFIRSTHEAD:
2431                 status.setOnOff(tabular->GetRowOfLTHead(sel_row_start, dummyltt));
2432                 break;
2433         case LyXTabular::SET_LTHEAD:
2434                 status.setOnOff(tabular->GetRowOfLTHead(sel_row_start, dummyltt));
2435                 break;
2436         case LyXTabular::SET_LTFOOT:
2437                 status.setOnOff(tabular->GetRowOfLTFoot(sel_row_start, dummyltt));
2438                 break;
2439         case LyXTabular::SET_LTLASTFOOT:
2440                 status.setOnOff(tabular->GetRowOfLTFoot(sel_row_start, dummyltt));
2441                 break;
2442         case LyXTabular::SET_LTNEWPAGE:
2443                 status.setOnOff(tabular->GetLTNewPage(sel_row_start));
2444                 break;
2445         default:
2446                 status.clear();
2447                 status.disabled(true);
2448                 break;
2449         }
2450         return status;
2451 }
2452
2453
2454 vector<string> const InsetTabular::getLabelList() const
2455 {
2456         return tabular->getLabelList();
2457 }
2458
2459
2460 bool InsetTabular::copySelection(BufferView * bv)
2461 {
2462         if (!hasSelection())
2463                 return false;
2464
2465         int sel_col_start = tabular->column_of_cell(sel_cell_start);
2466         int sel_col_end = tabular->column_of_cell(sel_cell_end);
2467         if (sel_col_start > sel_col_end) {
2468                 sel_col_start = sel_col_end;
2469                 sel_col_end = tabular->right_column_of_cell(sel_cell_start);
2470         } else {
2471                 sel_col_end = tabular->right_column_of_cell(sel_cell_end);
2472         }
2473         int const columns = sel_col_end - sel_col_start + 1;
2474
2475         int sel_row_start = tabular->row_of_cell(sel_cell_start);
2476         int sel_row_end = tabular->row_of_cell(sel_cell_end);
2477         if (sel_row_start > sel_row_end) {
2478                 swap(sel_row_start, sel_row_end);
2479         }
2480         int const rows = sel_row_end - sel_row_start + 1;
2481
2482         delete paste_tabular;
2483         paste_tabular = new LyXTabular(bv->buffer()->params,
2484                                        this, *tabular); // rows, columns);
2485         for (int i = 0; i < sel_row_start; ++i)
2486                 paste_tabular->DeleteRow(0);
2487         while (paste_tabular->rows() > rows)
2488                 paste_tabular->DeleteRow(rows);
2489         paste_tabular->SetTopLine(0, true, true);
2490         paste_tabular->SetBottomLine(paste_tabular->GetFirstCellInRow(rows - 1),
2491                                      true, true);
2492         for (int i = 0; i < sel_col_start; ++i)
2493                 paste_tabular->DeleteColumn(0);
2494         while (paste_tabular->columns() > columns)
2495                 paste_tabular->DeleteColumn(columns);
2496         paste_tabular->SetLeftLine(0, true, true);
2497         paste_tabular->SetRightLine(paste_tabular->GetLastCellInRow(0),
2498                                     true, true);
2499
2500         ostringstream sstr;
2501         paste_tabular->ascii(bv->buffer(), sstr,
2502                              (int)parOwner()->params().depth(), true, '\t');
2503         bv->stuffClipboard(sstr.str().c_str());
2504         return true;
2505 }
2506
2507
2508 bool InsetTabular::pasteSelection(BufferView * bv)
2509 {
2510         if (!paste_tabular)
2511                 return false;
2512
2513         for (int r1 = 0, r2 = actrow;
2514              (r1 < paste_tabular->rows()) && (r2 < tabular->rows());
2515              ++r1, ++r2) {
2516                 for(int c1 = 0, c2 = actcol;
2517                     (c1 < paste_tabular->columns()) && (c2 < tabular->columns());
2518                     ++c1, ++c2) {
2519                         if (paste_tabular->IsPartOfMultiColumn(r1,c1) &&
2520                             tabular->IsPartOfMultiColumn(r2,c2))
2521                                 continue;
2522                         if (paste_tabular->IsPartOfMultiColumn(r1,c1)) {
2523                                 --c2;
2524                                 continue;
2525                         }
2526                         if (tabular->IsPartOfMultiColumn(r2,c2)) {
2527                                 --c1;
2528                                 continue;
2529                         }
2530                         int const n1 = paste_tabular->GetCellNumber(r1, c1);
2531                         int const n2 = tabular->GetCellNumber(r2, c2);
2532                         *(tabular->GetCellInset(n2)) = *(paste_tabular->GetCellInset(n1));
2533                         tabular->GetCellInset(n2)->setOwner(this);
2534                         tabular->GetCellInset(n2)->deleteLyXText(bv);
2535                 }
2536         }
2537         return true;
2538 }
2539
2540
2541 bool InsetTabular::cutSelection()
2542 {
2543         if (!hasSelection())
2544                 return false;
2545
2546         int sel_col_start = tabular->column_of_cell(sel_cell_start);
2547         int sel_col_end = tabular->column_of_cell(sel_cell_end);
2548         if (sel_col_start > sel_col_end) {
2549                 sel_col_start = sel_col_end;
2550                 sel_col_end = tabular->right_column_of_cell(sel_cell_start);
2551         } else {
2552                 sel_col_end = tabular->right_column_of_cell(sel_cell_end);
2553         }
2554         int sel_row_start = tabular->row_of_cell(sel_cell_start);
2555         int sel_row_end = tabular->row_of_cell(sel_cell_end);
2556         if (sel_row_start > sel_row_end) {
2557                 swap(sel_row_start, sel_row_end);
2558         }
2559         if (sel_cell_start > sel_cell_end) {
2560                 swap(sel_cell_start, sel_cell_end);
2561         }
2562         for (int i = sel_row_start; i <= sel_row_end; ++i) {
2563                 for (int j = sel_col_start; j <= sel_col_end; ++j) {
2564                         tabular->GetCellInset(tabular->GetCellNumber(i, j))->clear();
2565                 }
2566         }
2567         return true;
2568 }
2569
2570
2571 bool InsetTabular::isRightToLeft(BufferView * bv)
2572 {
2573         return bv->getParentLanguage(this)->RightToLeft();
2574 }
2575
2576
2577 bool InsetTabular::nodraw() const
2578 {
2579         if (!UpdatableInset::nodraw() && the_locking_inset)
2580                 return the_locking_inset->nodraw();
2581         return UpdatableInset::nodraw();
2582 }
2583
2584
2585 int InsetTabular::scroll(bool recursive) const
2586 {
2587         int sx = UpdatableInset::scroll(false);
2588
2589         if (recursive && the_locking_inset)
2590                 sx += the_locking_inset->scroll(recursive);
2591
2592         return sx;
2593 }
2594
2595
2596 bool InsetTabular::doClearArea() const
2597 {
2598         return !locked || (need_update & (FULL|INIT));
2599 }
2600
2601
2602 void InsetTabular::getSelection(int & srow, int & erow,
2603                                 int & scol, int & ecol) const
2604 {
2605         int const start = hasSelection() ? sel_cell_start : actcell;
2606         int const end = hasSelection() ? sel_cell_end : actcell;
2607
2608         srow = tabular->row_of_cell(start);
2609         erow = tabular->row_of_cell(end);
2610         if (srow > erow) {
2611                 swap(srow, erow);
2612         }
2613
2614         scol = tabular->column_of_cell(start);
2615         ecol = tabular->column_of_cell(end);
2616         if (scol > ecol) {
2617                 swap(scol, ecol);
2618         } else {
2619                 ecol = tabular->right_column_of_cell(end);
2620         }
2621 }
2622
2623
2624 Paragraph * InsetTabular::getParFromID(int id) const
2625 {
2626         Paragraph * result;
2627         for(int i = 0; i < tabular->rows(); ++i) {
2628                 for(int j = 0; j < tabular->columns(); ++j) {
2629                         if ((result = tabular->GetCellInset(i, j)->getParFromID(id)))
2630                                 return result;
2631                 }
2632         }
2633         return 0;
2634 }
2635
2636
2637 Paragraph * InsetTabular::firstParagraph() const
2638 {
2639         if (the_locking_inset)
2640                 return the_locking_inset->firstParagraph();
2641         return 0;
2642 }
2643
2644
2645 Paragraph * InsetTabular::getFirstParagraph(int i) const
2646 {
2647         return (i < tabular->GetNumberOfCells())
2648                 ? tabular->GetCellInset(i)->getFirstParagraph(0)
2649                 : 0;
2650 }
2651
2652
2653 LyXCursor const & InsetTabular::cursor(BufferView * bv) const
2654 {
2655         if (the_locking_inset)
2656                 return the_locking_inset->cursor(bv);
2657         return Inset::cursor(bv);
2658 }
2659
2660
2661 Inset * InsetTabular::getInsetFromID(int id_arg) const
2662 {
2663         if (id_arg == id())
2664                 return const_cast<InsetTabular *>(this);
2665
2666         Inset * result;
2667         for(int i = 0; i < tabular->rows(); ++i) {
2668                 for(int j = 0; j < tabular->columns(); ++j) {
2669                         if ((result = tabular->GetCellInset(i, j)->getInsetFromID(id_arg)))
2670                                 return result;
2671                 }
2672         }
2673         return 0;
2674 }
2675
2676
2677 string const
2678 InsetTabular::selectNextWordToSpellcheck(BufferView * bv, float & value) const
2679 {
2680         nodraw(true);
2681         if (the_locking_inset) {
2682                 string const str(the_locking_inset->selectNextWordToSpellcheck(bv, value));
2683                 if (!str.empty()) {
2684                         nodraw(false);
2685                         return str;
2686                 }
2687                 if (tabular->IsLastCell(actcell)) {
2688                         bv->unlockInset(const_cast<InsetTabular *>(this));
2689                         nodraw(false);
2690                         return string();
2691                 }
2692                 ++actcell;
2693         }
2694         // otherwise we have to lock the next inset and ask for it's selecttion
2695         UpdatableInset * inset =
2696                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2697         inset->edit(bv, 0,  0, 0);
2698         string const str(selectNextWordInt(bv, value));
2699         nodraw(false);
2700         if (!str.empty())
2701                 resetPos(bv);
2702         return str;
2703 }
2704
2705
2706 string InsetTabular::selectNextWordInt(BufferView * bv, float & value) const
2707 {
2708         // when entering this function the inset should be ALWAYS locked!
2709         lyx::Assert(the_locking_inset);
2710
2711         string const str(the_locking_inset->selectNextWordToSpellcheck(bv, value));
2712         if (!str.empty())
2713                 return str;
2714
2715         if (tabular->IsLastCell(actcell)) {
2716                 bv->unlockInset(const_cast<InsetTabular *>(this));
2717                 return string();
2718         }
2719
2720         // otherwise we have to lock the next inset and ask for it's selecttion
2721         UpdatableInset * inset =
2722                 static_cast<UpdatableInset*>(tabular->GetCellInset(++actcell));
2723         inset->edit(bv);
2724         return selectNextWordInt(bv, value);
2725 }
2726
2727
2728 void InsetTabular::selectSelectedWord(BufferView * bv)
2729 {
2730         if (the_locking_inset) {
2731                 the_locking_inset->selectSelectedWord(bv);
2732                 return;
2733         }
2734         return;
2735 }
2736
2737
2738 void InsetTabular::toggleSelection(BufferView * bv, bool kill_selection)
2739 {
2740         if (the_locking_inset) {
2741                 the_locking_inset->toggleSelection(bv, kill_selection);
2742         }
2743 }
2744
2745
2746 bool InsetTabular::searchForward(BufferView * bv, string const & str,
2747                                  bool cs, bool mw)
2748 {
2749         nodraw(true);
2750         if (the_locking_inset) {
2751                 if (the_locking_inset->searchForward(bv, str, cs, mw)) {
2752                         nodraw(false);
2753                         updateLocal(bv, CELL, false);
2754                         return true;
2755                 }
2756                 if (tabular->IsLastCell(actcell)) {
2757                         nodraw(false);
2758                         bv->unlockInset(const_cast<InsetTabular *>(this));
2759                         return false;
2760                 }
2761                 ++actcell;
2762         }
2763         // otherwise we have to lock the next inset and search there
2764         UpdatableInset * inset =
2765                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2766         inset->edit(bv);
2767         bool const ret = searchForward(bv, str, cs, mw);
2768         nodraw(false);
2769         updateLocal(bv, CELL, false);
2770         return ret;
2771 }
2772
2773
2774 bool InsetTabular::searchBackward(BufferView * bv, string const & str,
2775                                bool cs, bool mw)
2776 {
2777         nodraw(true);
2778         if (the_locking_inset) {
2779                 if (the_locking_inset->searchBackward(bv, str, cs, mw)) {
2780                         nodraw(false);
2781                         updateLocal(bv, CELL, false);
2782                         return true;
2783                 }
2784                 if (!actcell) { // we are already in the first cell
2785                         nodraw(false);
2786                         bv->unlockInset(const_cast<InsetTabular *>(this));
2787                         return false;
2788                 }
2789                 --actcell;
2790         }
2791         // otherwise we have to lock the next inset and search there
2792         UpdatableInset * inset =
2793                 static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
2794         inset->edit(bv, false);
2795         bool const ret = searchBackward(bv, str, cs, mw);
2796         nodraw(false);
2797         updateLocal(bv, CELL, false);
2798         return ret;
2799 }
2800
2801
2802 bool InsetTabular::insetAllowed(Inset::Code code) const
2803 {
2804         if (the_locking_inset)
2805                 return the_locking_inset->insetAllowed(code);
2806         // we return true here because if the inset is not locked someone
2807         // wants to insert something in one of our insettexts and we generally
2808         // allow to do so.
2809         return true;
2810 }
2811
2812
2813 bool InsetTabular::forceDefaultParagraphs(Inset const * in) const
2814 {
2815         const int cell = tabular->GetCellFromInset(in, actcell);
2816
2817         if (cell != -1)
2818                 return tabular->GetPWidth(cell).zero();
2819
2820         // well we didn't obviously find it so maybe our owner knows more
2821         if (owner())
2822                 return owner()->forceDefaultParagraphs(in);
2823         // if we're here there is really something strange going on!!!
2824         return false;
2825 }
2826
2827 bool InsetTabular::insertAsciiString(BufferView * bv, string const & buf,
2828                                      bool usePaste)
2829 {
2830         if (buf.length() <= 0)
2831                 return true;
2832
2833         int cols = 1;
2834         int rows = 1;
2835         int maxCols = 1;
2836         string::size_type len = buf.length();
2837         string::size_type p = 0;
2838
2839         while (p < len &&
2840                ((p = buf.find_first_of("\t\n", p)) != string::npos))
2841         {
2842                 switch (buf[p]) {
2843                 case '\t':
2844                         ++cols;
2845                         break;
2846                 case '\n':
2847                         if ((p+1) < len)
2848                                 ++rows;
2849                         maxCols = max(cols, maxCols);
2850                         cols = 1;
2851                         break;
2852                 }
2853                 ++p;
2854         }
2855         maxCols = max(cols, maxCols);
2856         LyXTabular * loctab;
2857         int cell = 0;
2858         int ocol = 0;
2859         int row = 0;
2860         if (usePaste) {
2861                 delete paste_tabular;
2862                 paste_tabular = new LyXTabular(bv->buffer()->params,
2863                                                this, rows, maxCols);
2864                 loctab = paste_tabular;
2865                 cols = 0;
2866         } else {
2867                 loctab = tabular.get();
2868                 cell = actcell;
2869                 ocol = actcol;
2870                 row = actrow;
2871         }
2872         string::size_type op = 0;
2873         int cells = loctab->GetNumberOfCells();
2874         p = 0;
2875         cols = ocol;
2876         rows = loctab->rows();
2877         int const columns = loctab->columns();
2878         while ((cell < cells) && (p < len) && (row < rows) &&
2879                (p = buf.find_first_of("\t\n", p)) != string::npos)
2880         {
2881                 if (p >= len)
2882                         break;
2883                 switch (buf[p]) {
2884                 case '\t':
2885                         // we can only set this if we are not too far right
2886                         if (cols < columns) {
2887                                 InsetText * ti = loctab->GetCellInset(cell);
2888                                 LyXFont const font = ti->getLyXText(bv)->
2889                                         getFont(bv->buffer(), ti->paragraph(), 0);
2890                                 ti->setText(buf.substr(op, p-op), font);
2891                                 ++cols;
2892                                 ++cell;
2893                         }
2894                         break;
2895                 case '\n':
2896                         // we can only set this if we are not too far right
2897                         if (cols < columns) {
2898                                 InsetText * ti = loctab->GetCellInset(cell);
2899                                 LyXFont const font = ti->getLyXText(bv)->
2900                                         getFont(bv->buffer(), ti->paragraph(), 0);
2901                                 ti->setText(buf.substr(op, p-op), font);
2902                         }
2903                         cols = ocol;
2904                         ++row;
2905                         if (row < rows)
2906                                 cell = loctab->GetCellNumber(row, cols);
2907                         break;
2908                 }
2909                 ++p;
2910                 op = p;
2911         }
2912         // check for the last cell if there is no trailing '\n'
2913         if ((cell < cells) && (op < len)) {
2914                 InsetText * ti = loctab->GetCellInset(cell);
2915                 LyXFont const font = ti->getLyXText(bv)->
2916                         getFont(bv->buffer(), ti->paragraph(), 0);
2917                 ti->setText(buf.substr(op, len-op), font);
2918         }
2919
2920         return true;
2921 }