]> git.lyx.org Git - features.git/blob - src/insets/insettext.C
*duck*
[features.git] / src / insets / insettext.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1998-2001 The LyX Team.
7  *
8  * ======================================================
9  */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "insettext.h"
18 #include "paragraph.h"
19 #include "lyxlex.h"
20 #include "debug.h"
21 #include "lyxfont.h"
22 #include "commandtags.h"
23 #include "buffer.h"
24 #include "frontends/LyXView.h"
25 #include "BufferView.h"
26 #include "lyxtextclasslist.h"
27 #include "LaTeXFeatures.h"
28 #include "frontends/Painter.h"
29 #include "lyxtext.h"
30 #include "lyxcursor.h"
31 #include "CutAndPaste.h"
32 #include "frontends/font_metrics.h"
33 #include "LColor.h"
34 #include "lyxrow.h"
35 #include "lyxrc.h"
36 #include "intl.h"
37 #include "trans_mgr.h"
38 #include "frontends/screen.h"
39 #include "gettext.h"
40 #include "lyxfunc.h"
41 #include "ParagraphParameters.h"
42 #include "undo_funcs.h"
43 #include "lyxfind.h"
44
45 #include "frontends/Alert.h"
46 #include "frontends/Dialogs.h"
47
48 #include "support/textutils.h"
49 #include "support/LAssert.h"
50 #include "support/lstrings.h"
51 #include "support/lyxalgo.h" // lyx::count
52
53 #include <fstream>
54 #include <algorithm>
55 #include <cstdlib>
56 //#include <csignal>
57
58 using std::ostream;
59 using std::ifstream;
60 using std::endl;
61 using std::min;
62 using std::max;
63 using std::make_pair;
64 using std::vector;
65 using std::pair;
66
67 using lyx::pos_type;
68 using lyx::textclass_type;
69
70 extern unsigned char getCurrentTextClass(Buffer *);
71 extern bool math_insert_greek(BufferView *, char);
72 extern int greek_kb_flag;
73
74
75 // These functions should probably go into bufferview_funcs somehow (Jug)
76
77 void InsetText::saveLyXTextState(LyXText * t) const
78 {
79         // check if my paragraphs are still valid
80         Paragraph * p = par;
81         while (p) {
82                 if (p == t->cursor.par())
83                         break;
84                 p = p->next();
85         }
86
87         if (p && t->cursor.pos() <= p->size()) {
88                 sstate.lpar = t->cursor.par();
89                 sstate.pos = t->cursor.pos();
90                 sstate.boundary = t->cursor.boundary();
91                 sstate.selstartpar = t->selection.start.par();
92                 sstate.selstartpos = t->selection.start.pos();
93                 sstate.selstartboundary = t->selection.start.boundary();
94                 sstate.selendpar = t->selection.end.par();
95                 sstate.selendpos = t->selection.end.pos();
96                 sstate.selendboundary = t->selection.end.boundary();
97                 sstate.selection = t->selection.set();
98                 sstate.mark_set = t->selection.mark();
99                 sstate.refresh = t->refresh_row != 0;
100         } else {
101                 sstate.lpar = 0;
102         }
103 }
104
105 void InsetText::restoreLyXTextState(BufferView * bv, LyXText * t) const
106 {
107         if (sstate.lpar) {
108                 t->selection.set(true);
109                 /* at this point just to avoid the Delete-Empty-Paragraph
110                  * Mechanism when setting the cursor */
111                 t->selection.mark(sstate.mark_set);
112                 if (sstate.selection) {
113                         t->setCursor(bv, sstate.selstartpar, sstate.selstartpos,
114                                      true, sstate.selstartboundary);
115                         t->selection.cursor = t->cursor;
116                         t->setCursor(bv, sstate.selendpar, sstate.selendpos,
117                                      true, sstate.selendboundary);
118                         t->setSelection(bv);
119                         t->setCursor(bv, sstate.lpar, sstate.pos);
120                 } else {
121                         t->setCursor(bv, sstate.lpar, sstate.pos, true, sstate.boundary);
122                         t->selection.cursor = t->cursor;
123                         t->selection.set(false);
124                 }
125                 if (sstate.refresh) {
126                 }
127         }
128 }
129
130
131 InsetText::InnerCache::InnerCache(boost::shared_ptr<LyXText> t)
132 {
133         text = t;
134         remove = false;
135 }
136
137
138 InsetText::InsetText(BufferParams const & bp)
139         : UpdatableInset(), lt(0), in_update(false), do_resize(0),
140           do_reinit(false)
141 {
142         par = new Paragraph;
143         par->layout(textclasslist[bp.textclass].defaultLayoutName());
144
145         init();
146 }
147
148
149 InsetText::InsetText(InsetText const & in, bool same_id)
150         : UpdatableInset(in, same_id), lt(0), in_update(false), do_resize(0),
151           do_reinit(false)
152 {
153         par = 0;
154         init(&in, same_id);
155 }
156
157
158 InsetText & InsetText::operator=(InsetText const & it)
159 {
160         init(&it);
161         return * this;
162 }
163
164
165 void InsetText::init(InsetText const * ins, bool same_id)
166 {
167         if (ins) {
168                 setParagraphData(ins->par, same_id);
169                 autoBreakRows = ins->autoBreakRows;
170                 drawFrame_ = ins->drawFrame_;
171                 frame_color = ins->frame_color;
172                 if (same_id)
173                         id_ = ins->id_;
174         } else {
175                 Paragraph * p = par;
176                 while (p) {
177                         p->setInsetOwner(this);
178                         p = p->next();
179                 }
180                 the_locking_inset = 0;
181                 drawFrame_ = NEVER;
182                 frame_color = LColor::insetframe;
183                 autoBreakRows = false;
184         }
185         top_y = 0;
186         insetAscent = 0;
187         insetDescent = 0;
188         insetWidth = 0;
189         old_max_width = 0;
190         no_selection = true;
191         need_update = FULL;
192         drawTextXOffset = 0;
193         drawTextYOffset = 0;
194         xpos = 0.0;
195         locked = false;
196         old_par = 0;
197         last_drawn_width = -1;
198         frame_is_visible = false;
199         cached_bview = 0;
200         sstate.lpar = 0;
201         in_insetAllowed = false;
202 }
203
204
205 InsetText::~InsetText()
206 {
207         cached_bview = 0;
208
209         // NOTE
210
211         while (par) {
212                 Paragraph * tmp = par->next();
213                 delete par;
214                 par = tmp;
215         }
216 }
217
218
219 void InsetText::clear()
220 {
221         // This is a gross hack...
222         string old_layout = par->layout();
223
224         while (par) {
225                 Paragraph * tmp = par->next();
226                 delete par;
227                 par = tmp;
228         }
229         par = new Paragraph;
230         par->setInsetOwner(this);
231         par->layout(old_layout);
232
233         reinitLyXText();
234         need_update = INIT;
235 }
236
237
238 Inset * InsetText::clone(Buffer const &, bool same_id) const
239 {
240         return new InsetText(*this, same_id);
241 }
242
243
244 void InsetText::write(Buffer const * buf, ostream & os) const
245 {
246         os << "Text\n";
247         writeParagraphData(buf, os);
248 }
249
250
251 void InsetText::writeParagraphData(Buffer const * buf, ostream & os) const
252 {
253         par->writeFile(buf, os, buf->params, 0);
254 }
255
256
257 void InsetText::read(Buffer const * buf, LyXLex & lex)
258 {
259         string token;
260         int pos = 0;
261         Paragraph * return_par = 0;
262         Paragraph::depth_type depth = 0;
263         LyXFont font(LyXFont::ALL_INHERIT);
264
265         clear();
266
267         while (lex.isOK()) {
268                 lex.nextToken();
269                 token = lex.getString();
270                 if (token.empty())
271                         continue;
272                 if (token == "\\end_inset") {
273 #ifndef NO_COMPABILITY
274                         const_cast<Buffer*>(buf)->insertErtContents(par, pos, false);
275 #endif
276                         break;
277                 }
278
279                 if (const_cast<Buffer*>(buf)->
280                         parseSingleLyXformat2Token(lex, par, return_par,
281                                                    token, pos, depth, font)) {
282                         // the_end read this should NEVER happen
283                         lex.printError("\\the_end read in inset! Error in document!");
284                         return;
285                 }
286         }
287         if (!return_par)
288                 return_par = par;
289         par = return_par;
290         while (return_par) {
291                 return_par->setInsetOwner(this);
292                 return_par = return_par->next();
293         }
294
295         if (token != "\\end_inset") {
296                 lex.printError("Missing \\end_inset at this point. "
297                                            "Read: `$$Token'");
298         }
299         need_update = FULL;
300 }
301
302
303 int InsetText::ascent(BufferView * bv, LyXFont const &) const
304 {
305         insetAscent = getLyXText(bv)->firstRow()->ascent_of_text() +
306                 TEXT_TO_INSET_OFFSET;
307         return insetAscent;
308 }
309
310
311 int InsetText::descent(BufferView * bv, LyXFont const &) const
312 {
313         LyXText * llt = getLyXText(bv);
314         insetDescent = llt->height - llt->firstRow()->ascent_of_text() +
315                 TEXT_TO_INSET_OFFSET;
316         return insetDescent;
317 }
318
319
320 int InsetText::width(BufferView * bv, LyXFont const &) const
321 {
322         insetWidth = max(textWidth(bv), (int)getLyXText(bv)->width) +
323                 (2 * TEXT_TO_INSET_OFFSET);
324         insetWidth = max(insetWidth, 10);
325         return insetWidth;
326 }
327
328
329 int InsetText::textWidth(BufferView * bv, bool fordraw) const
330 {
331         int w;
332         if (!autoBreakRows) {
333                 w = -1;
334         } else {
335                 w = getMaxWidth(bv, this);
336         }
337         if (fordraw) {
338                 return max(w - (2 * TEXT_TO_INSET_OFFSET),
339                            (int)getLyXText(bv)->width);
340         } else if (w < 0) {
341             return -1;
342         }
343         return w - (2 * TEXT_TO_INSET_OFFSET);
344 }
345
346
347 void InsetText::draw(BufferView * bv, LyXFont const & f,
348                      int baseline, float & x, bool cleared) const
349 {
350         if (nodraw())
351                 return;
352
353         Painter & pain = bv->painter();
354
355         // this is the first thing we have to ask because if the x pos
356         // changed we have to do a complete rebreak of the text as we
357         // may have few space to draw in. Well we should check on this too
358         int old_x = top_x;
359         if (top_x != int(x)) {
360                 top_x = int(x);
361                 topx_set = true;
362                 int nw = getMaxWidth(bv, this);
363                 if (nw > 0 && old_max_width != nw) {
364                         need_update = INIT;
365                         old_max_width = nw;
366                         bv->text->status(bv, LyXText::CHANGED_IN_DRAW);
367                         return;
368                 }
369         }
370
371         // call these methods so that insetWidth, insetAscent and
372         // insetDescent have the right values.
373         width(bv, f);
374         ascent(bv, f);
375         descent(bv, f);
376
377         // repaint the background if needed
378         if (cleared && backgroundColor() != LColor::background) {
379                 clearInset(bv, baseline, cleared);
380         }
381
382         // no draw is necessary !!!
383         if ((drawFrame_ == LOCKED) && !locked && !par->size()) {
384                 top_baseline = baseline;
385                 x += width(bv, f);
386                 if (need_update & CLEAR_FRAME)
387                         clearFrame(pain, cleared);
388                 need_update = NONE;
389                 return;
390         }
391
392         xpos = x;
393         if (!owner())
394                 x += static_cast<float>(scroll());
395
396         // if top_x differs we did it already
397         if (!cleared && (old_x == int(x))
398             && ((need_update&(INIT|FULL)) || (top_baseline != baseline)
399                 ||(last_drawn_width != insetWidth)))
400         {
401                 // Condition necessary to eliminate bug 59 attachment 37
402                 if (baseline > 0)
403                         clearInset(bv, baseline, cleared);
404         }
405
406         if (cleared)
407                 frame_is_visible = false;
408
409         if (!cleared && (need_update == NONE)) {
410                 if (locked)
411                         drawFrame(pain, cleared);
412                 return;
413         }
414
415         top_baseline = baseline;
416         top_y = baseline - insetAscent;
417
418         if (last_drawn_width != insetWidth) {
419                 if (!cleared)
420                         clearInset(bv, baseline, cleared);
421                 need_update |= FULL;
422                 last_drawn_width = insetWidth;
423         }
424
425         if (the_locking_inset && (cpar(bv) == inset_par)
426                 && (cpos(bv) == inset_pos)) {
427                 inset_x = cix(bv) - top_x + drawTextXOffset;
428                 inset_y = ciy(bv) + drawTextYOffset;
429         }
430         if (!cleared && (need_update == CURSOR)
431             && !getLyXText(bv)->selection.set()) {
432                 drawFrame(pain, cleared);
433                 x += insetWidth;
434                 need_update = NONE;
435                 return;
436         }
437         bool clear = false;
438         if (!lt) {
439                 lt = getLyXText(bv);
440                 clear = true;
441         }
442         x += TEXT_TO_INSET_OFFSET;
443
444         Row * row = lt->firstRow();
445         int y_offset = baseline - row->ascent_of_text();
446         int ph = pain.paperHeight();
447         int first = 0;
448         int y = y_offset;
449         while ((row != 0) && ((y+row->height()) <= 0)) {
450                 y += row->height();
451                 first += row->height();
452                 row = row->next();
453         }
454         if (y_offset < 0) {
455                 lt->first_y = -y_offset;
456                 first = y;
457                 y_offset = 0;
458         } else {
459                 lt->first_y = first;
460                 first = 0;
461         }
462         if (cleared || (need_update&(INIT|FULL))) {
463                 int yf = y_offset + first;
464                 y = 0;
465                 while ((row != 0) && (yf < ph)) {
466                         lt->getVisibleRow(bv, y + y_offset + first, int(x),
467                                           row, y + lt->first_y, cleared);
468                         if (bv->text->status() == LyXText::CHANGED_IN_DRAW) {
469                                 lt->need_break_row = row;
470                                 lt->fullRebreak(bv);
471                                 lt->setCursor(bv, lt->cursor.par(),
472                                               lt->cursor.pos());
473                                 if (lt->selection.set()) {
474                                         lt->setCursor(bv, lt->selection.start,
475                                                       lt->selection.start.par(),
476                                                       lt->selection.start.pos());
477                                         lt->setCursor(bv, lt->selection.end,
478                                                       lt->selection.end.par(),
479                                                       lt->selection.end.pos());
480                                 }
481                                 break;
482                         }
483                         y += row->height();
484                         yf += row->height();
485                         row = row->next();
486                 }
487         } else if (!locked) {
488                 if (need_update & CURSOR) {
489                         bv->screen().toggleSelection(lt, bv, true, y_offset,int(x));
490                         lt->clearSelection();
491                         lt->selection.cursor = lt->cursor;
492                 }
493                 bv->screen().update(lt, bv, y_offset, int(x));
494         } else {
495                 locked = false;
496                 if (need_update & SELECTION) {
497                         bv->screen().toggleToggle(lt, bv, y_offset, int(x));
498                 } else if (need_update & CURSOR) {
499                         bv->screen().toggleSelection(lt, bv, true, y_offset,int(x));
500                         lt->clearSelection();
501                         lt->selection.cursor = lt->cursor;
502                 }
503                 bv->screen().update(lt, bv, y_offset, int(x));
504                 locked = true;
505         }
506
507         lt->refresh_y = 0;
508         lt->status(bv, LyXText::UNCHANGED);
509         if ((drawFrame_ == ALWAYS) ||
510                 ((cleared || (need_update != CURSOR_PAR)) &&
511                  (drawFrame_ == LOCKED) && locked))
512         {
513                 drawFrame(pain, cleared);
514         } else if (need_update & CLEAR_FRAME) {
515                 clearFrame(pain, cleared);
516         }
517
518         x += insetWidth - TEXT_TO_INSET_OFFSET;
519
520         if (bv->text->status() == LyXText::CHANGED_IN_DRAW) {
521                 need_update |= FULL;
522         } else if (need_update != INIT) {
523                 need_update = NONE;
524         }
525         if (clear)
526                 lt = 0;
527 }
528
529
530 void InsetText::drawFrame(Painter & pain, bool cleared) const
531 {
532         static int const ttoD2 = TEXT_TO_INSET_OFFSET / 2;
533         if (!frame_is_visible || cleared) {
534                 frame_x = top_x + ttoD2;
535                 frame_y = top_baseline - insetAscent + ttoD2;
536                 frame_w = insetWidth - TEXT_TO_INSET_OFFSET;
537                 frame_h = insetAscent + insetDescent - TEXT_TO_INSET_OFFSET;
538                 pain.rectangle(frame_x, frame_y, frame_w, frame_h,
539                                frame_color);
540                 frame_is_visible = true;
541         }
542 }
543
544
545 void InsetText::clearFrame(Painter & pain, bool cleared) const
546 {
547         if (frame_is_visible) {
548                 if (!cleared) {
549                         pain.rectangle(frame_x, frame_y, frame_w, frame_h,
550                                        backgroundColor());
551                 }
552                 frame_is_visible = false;
553         }
554 }
555
556
557 void InsetText::update(BufferView * bv, LyXFont const & font, bool reinit)
558 {
559         if (in_update) {
560                 if (reinit && owner()) {
561                         reinitLyXText();
562                         owner()->update(bv, font, true);
563                 }
564                 return;
565         }
566         in_update = true;
567         if (reinit || need_update == INIT) {
568                 need_update = FULL;
569                 // we should put this call where we set need_update to INIT!
570                 reinitLyXText();
571                 if (owner())
572                         owner()->update(bv, font, true);
573                 in_update = false;
574                 return;
575         }
576
577         if (!autoBreakRows && par->next())
578                 collapseParagraphs(bv);
579
580         if (the_locking_inset) {
581                 inset_x = cix(bv) - top_x + drawTextXOffset;
582                 inset_y = ciy(bv) + drawTextYOffset;
583                 the_locking_inset->update(bv, font, reinit);
584         }
585
586         bool clear = false;
587         if (!lt) {
588                 lt = getLyXText(bv);
589                 clear = true;
590         }
591         if ((need_update & CURSOR_PAR) && (lt->status() == LyXText::UNCHANGED) &&
592                 the_locking_inset)
593         {
594                 lt->updateInset(bv, the_locking_inset);
595         }
596         if (lt->status() == LyXText::NEED_MORE_REFRESH)
597                 need_update |= FULL;
598         if (clear)
599                 lt = 0;
600         in_update = false;
601 }
602
603
604 void InsetText::setUpdateStatus(BufferView * bv, int what) const
605 {
606         // this does nothing dangerous so use only a localized buffer
607         LyXText * llt = getLyXText(bv);
608
609         need_update |= what;
610         // we have to redraw us full if our LyXText NEEDS_MORE_REFRES or
611         // if we don't break row so that we only have one row to update!
612         if ((llt->status() == LyXText::NEED_MORE_REFRESH) ||
613             (!autoBreakRows &&
614              (llt->status() == LyXText::NEED_VERY_LITTLE_REFRESH)))
615         {
616                 need_update |= FULL;
617         } else if (llt->status() == LyXText::NEED_VERY_LITTLE_REFRESH) {
618                 need_update |= CURSOR_PAR;
619         }
620
621         // this to not draw a selection when we redraw all of it!
622         if (need_update & CURSOR && !(need_update & SELECTION)) {
623                 if (llt->selection.set())
624                         need_update = FULL;
625                 llt->clearSelection();
626         }
627 }
628
629
630 void InsetText::updateLocal(BufferView * bv, int what, bool mark_dirty) const
631 {
632         if (!autoBreakRows && par->next())
633                 collapseParagraphs(bv);
634         bool clear = false;
635         if (!lt) {
636                 lt = getLyXText(bv);
637                 clear = true;
638         }
639         lt->fullRebreak(bv);
640         setUpdateStatus(bv, what);
641         bool flag = mark_dirty ||
642                 (((need_update != CURSOR) && (need_update != NONE)) ||
643                  (lt->status() != LyXText::UNCHANGED) || lt->selection.set());
644         if (!lt->selection.set())
645                 lt->selection.cursor = lt->cursor;
646         if (clear)
647                 lt = 0;
648 #if 0
649         // IMO this is not anymore needed as we do this in fitInsetCursor!
650         // and we always get "true" as returnvalue of this function in the
651         // case of a locking inset (Jug 20020412)
652         if (locked && (need_update & CURSOR) && bv->fitCursor())
653                 need_update |= FULL;
654 #else
655         bv->fitCursor();
656 #endif
657         if (flag)
658                 bv->updateInset(const_cast<InsetText *>(this), mark_dirty);
659
660         if (need_update == CURSOR)
661                 need_update = NONE;
662         bv->owner()->showState();
663         bv->owner()->updateMenubar();
664         bv->owner()->updateToolbar();
665         if (old_par != cpar(bv)) {
666                 bv->owner()->setLayout(cpar(bv)->layout());
667                 old_par = cpar(bv);
668         }
669 }
670
671
672 string const InsetText::editMessage() const
673 {
674         return _("Opened Text Inset");
675 }
676
677
678 void InsetText::edit(BufferView * bv, int x, int y, mouse_button::state button)
679 {
680         UpdatableInset::edit(bv, x, y, button);
681
682         if (!bv->lockInset(this)) {
683                 lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
684                 return;
685         }
686         locked = true;
687         the_locking_inset = 0;
688         inset_pos = inset_x = inset_y = 0;
689         inset_boundary = false;
690         inset_par = 0;
691         old_par = 0;
692         int tmp_y = (y < 0) ? 0 : y;
693         bool clear = false;
694         if (!lt) {
695                 lt = getLyXText(bv);
696                 clear = true;
697         }
698         // we put here -1 and not button as now the button in the
699         // edit call should not be needed we will fix this in 1.3.x
700         // cycle hopefully (Jug 20020509)
701         // FIXME: GUII I've changed this to none: probably WRONG
702         if (!checkAndActivateInset(bv, x, tmp_y, mouse_button::none)) {
703                 lt->setCursorFromCoordinates(bv, x - drawTextXOffset,
704                                             y + insetAscent);
705                 lt->cursor.x_fix(lt->cursor.x());
706         }
707         lt->clearSelection();
708         finishUndo();
709         // If the inset is empty set the language of the current font to the
710         // language to the surronding text (if different).
711         if (par->size() == 0 && !par->next() &&
712                 bv->getParentLanguage(this) != lt->current_font.language())
713         {
714                 LyXFont font(LyXFont::ALL_IGNORE);
715                 font.setLanguage(bv->getParentLanguage(this));
716                 setFont(bv, font, false);
717         }
718         if (clear)
719                 lt = 0;
720
721         int code = CURSOR;
722         if (drawFrame_ == LOCKED)
723                 code = CURSOR|DRAW_FRAME;
724         updateLocal(bv, code, false);
725         showInsetCursor(bv);
726
727         // Tell the paragraph dialog that we've entered an insettext.
728         bv->owner()->getDialogs()->updateParagraph();
729 }
730
731
732 void InsetText::edit(BufferView * bv, bool front)
733 {
734         UpdatableInset::edit(bv, front);
735
736         if (!bv->lockInset(this)) {
737                 lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
738                 return;
739         }
740         locked = true;
741         the_locking_inset = 0;
742         inset_pos = inset_x = inset_y = 0;
743         inset_boundary = false;
744         inset_par = 0;
745         old_par = 0;
746         bool clear = false;
747         if (!lt) {
748                 lt = getLyXText(bv);
749                 clear = true;
750         }
751         if (front)
752                 lt->setCursor(bv, par, 0);
753         else {
754                 Paragraph * p = par;
755                 while (p->next())
756                         p = p->next();
757 //              int const pos = (p->size() ? p->size()-1 : p->size());
758                 lt->setCursor(bv, p, p->size());
759         }
760         lt->clearSelection();
761         finishUndo();
762         // If the inset is empty set the language of the current font to the
763         // language to the surronding text (if different).
764         if (par->size() == 0 && !par->next() &&
765                 bv->getParentLanguage(this) != lt->current_font.language()) {
766                 LyXFont font(LyXFont::ALL_IGNORE);
767                 font.setLanguage(bv->getParentLanguage(this));
768                 setFont(bv, font, false);
769         }
770         if (clear)
771                 lt = 0;
772         int code = CURSOR;
773         if (drawFrame_ == LOCKED)
774                 code = CURSOR|DRAW_FRAME;
775         updateLocal(bv, code, false);
776         showInsetCursor(bv);
777 }
778
779
780 void InsetText::insetUnlock(BufferView * bv)
781 {
782         if (the_locking_inset) {
783                 the_locking_inset->insetUnlock(bv);
784                 the_locking_inset = 0;
785                 updateLocal(bv, CURSOR_PAR, false);
786         }
787         hideInsetCursor(bv);
788         no_selection = true;
789         locked = false;
790         int code = NONE;
791 #if 0
792         if (drawFrame_ == LOCKED)
793                 code = CURSOR|CLEAR_FRAME;
794         else
795                 code = CURSOR;
796 #else
797         if (drawFrame_ == LOCKED)
798                 code = CLEAR_FRAME;
799 #endif
800         bool clear = false;
801         if (!lt) {
802                 lt = getLyXText(bv);
803                 clear = true;
804         }
805         if (lt->selection.set()) {
806                 lt->clearSelection();
807                 code = FULL;
808         } else if (owner()) {
809                 bv->owner()->setLayout(owner()->getLyXText(bv)
810                                        ->cursor.par()->layout());
811         } else
812                 bv->owner()->setLayout(bv->text->cursor.par()->layout());
813         // hack for deleteEmptyParMech
814         if (par->size()) {
815                 lt->setCursor(bv, par, 0);
816         } else if (par->next()) {
817                 lt->setCursor(bv, par->next(), 0);
818         }
819         if (clear)
820                 lt = 0;
821 #if 0
822         updateLocal(bv, code, false);
823 #else
824         if (code != NONE)
825                 setUpdateStatus(bv, code);
826 #endif
827 }
828
829
830 void InsetText::lockInset(BufferView * bv)
831 {
832         locked = true;
833         the_locking_inset = 0;
834         inset_pos = inset_x = inset_y = 0;
835         inset_boundary = false;
836         inset_par = 0;
837         old_par = 0;
838         bool clear = false;
839         if (!lt) {
840                 lt = getLyXText(bv);
841                 clear = true;
842         }
843         lt->setCursor(bv, par, 0);
844         lt->clearSelection();
845         finishUndo();
846         // If the inset is empty set the language of the current font to the
847         // language to the surronding text (if different).
848         if (par->size() == 0 && !par->next() &&
849                 bv->getParentLanguage(this) != lt->current_font.language()) {
850                 LyXFont font(LyXFont::ALL_IGNORE);
851                 font.setLanguage(bv->getParentLanguage(this));
852                 setFont(bv, font, false);
853         }
854         if (clear)
855                 lt = 0;
856         int code = CURSOR;
857         if (drawFrame_ == LOCKED)
858                 code = CURSOR|DRAW_FRAME;
859         setUpdateStatus(bv, code);
860 }
861
862
863 void InsetText::lockInset(BufferView * bv, UpdatableInset * inset)
864 {
865         the_locking_inset = inset;
866         inset_x = cix(bv) - top_x + drawTextXOffset;
867         inset_y = ciy(bv) + drawTextYOffset;
868         inset_pos = cpos(bv);
869         inset_par = cpar(bv);
870         inset_boundary = cboundary(bv);
871         updateLocal(bv, CURSOR, false);
872 }
873
874
875 bool InsetText::lockInsetInInset(BufferView * bv, UpdatableInset * inset)
876 {
877         lyxerr[Debug::INSETS] << "InsetText::LockInsetInInset("
878                               << inset << "): ";
879         if (!inset)
880                 return false;
881         if (!the_locking_inset) {
882                 Paragraph * p = par;
883                 int const id = inset->id();
884                 while(p) {
885                         Paragraph::inset_iterator it =
886                                 p->inset_iterator_begin();
887                         Paragraph::inset_iterator const end =
888                                 p->inset_iterator_end();
889                         for (; it != end; ++it) {
890                                 if ((*it) == inset) {
891                                         getLyXText(bv)->setCursorIntern(bv, p, it.getPos());
892                                         lockInset(bv, inset);
893                                         return true;
894                                 }
895                                 if ((*it)->getInsetFromID(id)) {
896                                         getLyXText(bv)->setCursorIntern(bv, p, it.getPos());
897                                         (*it)->edit(bv);
898                                         return the_locking_inset->lockInsetInInset(bv, inset);
899                                 }
900                         }
901                         p = p->next();
902                 }
903                 return false;
904         }
905         if (inset == cpar(bv)->getInset(cpos(bv))) {
906                 lyxerr[Debug::INSETS] << "OK" << endl;
907                 lockInset(bv, inset);
908                 return true;
909         } else if (the_locking_inset && (the_locking_inset == inset)) {
910                 if (cpar(bv) == inset_par && cpos(bv) == inset_pos) {
911                         lyxerr[Debug::INSETS] << "OK" << endl;
912                         inset_x = cix(bv) - top_x + drawTextXOffset;
913                         inset_y = ciy(bv) + drawTextYOffset;
914                 } else {
915                         lyxerr[Debug::INSETS] << "cursor.pos != inset_pos" << endl;
916                 }
917         } else if (the_locking_inset) {
918                 lyxerr[Debug::INSETS] << "MAYBE" << endl;
919                 return the_locking_inset->lockInsetInInset(bv, inset);
920         }
921         lyxerr[Debug::INSETS] << "NOT OK" << endl;
922         return false;
923 }
924
925
926 bool InsetText::unlockInsetInInset(BufferView * bv, UpdatableInset * inset,
927                                    bool lr)
928 {
929         if (!the_locking_inset)
930                 return false;
931         if (the_locking_inset == inset) {
932                 the_locking_inset->insetUnlock(bv);
933                 getLyXText(bv)->updateInset(bv, inset);
934                 the_locking_inset = 0;
935                 if (lr)
936                         moveRight(bv, false);
937                 old_par = 0; // force layout setting
938                 if (scroll())
939                         scroll(bv, 0.0F);
940                 else
941                         updateLocal(bv, CURSOR, false);
942                 return true;
943         }
944         return the_locking_inset->unlockInsetInInset(bv, inset, lr);
945 }
946
947
948 bool InsetText::updateInsetInInset(BufferView * bv, Inset * inset)
949 {
950         if (!autoBreakRows && par->next())
951                 collapseParagraphs(bv);
952         if (inset == this)
953                 return true;
954         bool clear = false;
955         if (!lt) {
956                 lt = getLyXText(bv);
957                 clear = true;
958         }
959         if (inset->owner() != this) {
960                 int ustat = CURSOR_PAR;
961                 bool found = false;
962                 UpdatableInset * tl_inset = the_locking_inset;
963                 if (tl_inset)
964                         found = tl_inset->updateInsetInInset(bv, inset);
965                 if (!found) {
966                         tl_inset = static_cast<UpdatableInset *>(inset);
967                         while(tl_inset->owner() && tl_inset->owner() != this)
968                                 tl_inset = static_cast<UpdatableInset *>(tl_inset->owner());
969                         if (!tl_inset->owner())
970                                 return false;
971                         found = tl_inset->updateInsetInInset(bv, inset);
972                         ustat = FULL;
973                 }
974                 if (found)
975                         lt->updateInset(bv, tl_inset);
976                 if (clear)
977                         lt = 0;
978                 if (found)
979                         setUpdateStatus(bv, ustat);
980                 return found;
981         }
982         bool found = lt->updateInset(bv, inset);
983         if (clear)
984                 lt = 0;
985         if (found) {
986                 setUpdateStatus(bv, CURSOR_PAR);
987                 if (the_locking_inset &&
988                     cpar(bv) == inset_par && cpos(bv) == inset_pos)
989                 {
990                         inset_x = cix(bv) - top_x + drawTextXOffset;
991                         inset_y = ciy(bv) + drawTextYOffset;
992                 }
993         }
994         return found;
995 }
996
997
998 void InsetText::insetButtonPress(BufferView * bv,
999         int x, int y, mouse_button::state button)
1000 {
1001         no_selection = true;
1002
1003         // use this to check mouse motion for selection!
1004         mouse_x = x;
1005         mouse_y = y;
1006
1007         if (!locked)
1008                 lockInset(bv);
1009
1010         int tmp_x = x - drawTextXOffset;
1011         int tmp_y = y + insetAscent - getLyXText(bv)->first_y;
1012         Inset * inset = bv->checkInsetHit(getLyXText(bv), tmp_x, tmp_y);
1013
1014         hideInsetCursor(bv);
1015         if (the_locking_inset) {
1016                 if (the_locking_inset == inset) {
1017                         the_locking_inset->insetButtonPress(bv,
1018                                                             x - inset_x,
1019                                                             y - inset_y,
1020                                                             button);
1021                         return;
1022                 }
1023 #if 0
1024                 else if (inset) {
1025                         // otherwise unlock the_locking_inset and lock the new inset
1026                         the_locking_inset->insetUnlock(bv);
1027                         inset_x = cix(bv) - top_x + drawTextXOffset;
1028                         inset_y = ciy(bv) + drawTextYOffset;
1029                         the_locking_inset = 0;
1030                         inset->insetButtonPress(bv, x - inset_x,
1031                                                 y - inset_y, button);
1032 //                      inset->edit(bv, x - inset_x, y - inset_y, button);
1033                         if (the_locking_inset)
1034                                 updateLocal(bv, CURSOR, false);
1035                         return;
1036                 }
1037 #endif
1038                 // otherwise only unlock the_locking_inset
1039                 the_locking_inset->insetUnlock(bv);
1040                 the_locking_inset = 0;
1041         }
1042         if (!inset)
1043                 no_selection = false;
1044
1045         if (bv->theLockingInset()) {
1046                 if (isHighlyEditableInset(inset)) {
1047                         // We just have to lock the inset before calling a
1048                         // PressEvent on it!
1049                         UpdatableInset * uinset = static_cast<UpdatableInset*>(inset);
1050                         if (!bv->lockInset(uinset)) {
1051                                 lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
1052                         }
1053                         inset->insetButtonPress(bv, x - inset_x, y - inset_y, button);
1054                         if (the_locking_inset)
1055                                 updateLocal(bv, CURSOR, false);
1056                         return;
1057                 }
1058         }
1059         if (!inset) { // && (button == mouse_button::button2)) {
1060                 bool paste_internally = false;
1061                 if ((button == mouse_button::button2) && getLyXText(bv)->selection.set()) {
1062                         localDispatch(bv, LFUN_COPY, "");
1063                         paste_internally = true;
1064                 }
1065                 bool clear = false;
1066                 if (!lt) {
1067                         lt = getLyXText(bv);
1068                         clear = true;
1069                 }
1070                 int old_first_y = lt->first_y;
1071
1072                 lt->setCursorFromCoordinates(bv, x - drawTextXOffset,
1073                                              y + insetAscent);
1074                 // set the selection cursor!
1075                 lt->selection.cursor = lt->cursor;
1076                 lt->cursor.x_fix(lt->cursor.x());
1077
1078                 if (lt->selection.set()) {
1079                         lt->clearSelection();
1080                         if (clear)
1081                                 lt = 0;
1082                         updateLocal(bv, FULL, false);
1083                 } else {
1084                         lt->clearSelection();
1085                         if (clear)
1086                                 lt = 0;
1087                         updateLocal(bv, CURSOR, false);
1088                 }
1089                 bv->owner()->setLayout(cpar(bv)->layout());
1090                 // we moved the view we cannot do mouse selection in this case!
1091                 if (getLyXText(bv)->first_y != old_first_y)
1092                         no_selection = true;
1093                 old_par = cpar(bv);
1094                 // Insert primary selection with middle mouse
1095                 // if there is a local selection in the current buffer,
1096                 // insert this
1097                 if (button == mouse_button::button2) {
1098                         if (paste_internally)
1099                                 localDispatch(bv, LFUN_PASTE, "");
1100                         else
1101                                 localDispatch(bv, LFUN_PASTESELECTION,
1102                                               "paragraph");
1103                 }
1104         } else {
1105                 getLyXText(bv)->clearSelection();
1106         }
1107         showInsetCursor(bv);
1108 }
1109
1110
1111 bool InsetText::insetButtonRelease(BufferView * bv,
1112         int x, int y, mouse_button::state button)
1113 {
1114         no_selection = true;
1115         if (the_locking_inset) {
1116                 return the_locking_inset->insetButtonRelease(bv,
1117                                                              x - inset_x, y - inset_y,
1118                                                              button);
1119         }
1120         int tmp_x = x - drawTextXOffset;
1121         int tmp_y = y + insetAscent - getLyXText(bv)->first_y;
1122         Inset * inset = bv->checkInsetHit(getLyXText(bv), tmp_x, tmp_y);
1123         bool ret = false;
1124         if (inset) {
1125                 if (isHighlyEditableInset(inset)) {
1126                         ret = inset->insetButtonRelease(bv, x - inset_x,
1127                                                         y - inset_y, button);
1128                 } else {
1129                         inset_x = cix(bv) - top_x + drawTextXOffset;
1130                         inset_y = ciy(bv) + drawTextYOffset;
1131                         ret = inset->insetButtonRelease(bv, x - inset_x,
1132                                                         y - inset_y, button);
1133                         inset->edit(bv, x - inset_x,
1134                                     y - inset_y, button);
1135                 }
1136                 updateLocal(bv, CURSOR_PAR, false);
1137         }
1138         return ret;
1139 }
1140
1141
1142 void InsetText::insetMotionNotify(BufferView * bv, int x, int y, mouse_button::state state)
1143 {
1144         if (the_locking_inset) {
1145                 the_locking_inset->insetMotionNotify(bv, x - inset_x,
1146                                                      y - inset_y,state);
1147                 return;
1148         }
1149
1150         if (no_selection || ((mouse_x == x) && (mouse_y == y)))
1151                 return;
1152
1153         bool clear = false;
1154         if (!lt) {
1155                 lt = getLyXText(bv);
1156                 clear = true;
1157         }
1158         hideInsetCursor(bv);
1159         LyXCursor cur = lt->cursor;
1160         lt->setCursorFromCoordinates(bv, x - drawTextXOffset, y + insetAscent);
1161         lt->cursor.x_fix(lt->cursor.x());
1162         if (cur == lt->cursor) {
1163                 if (clear)
1164                         lt = 0;
1165                 return;
1166         }
1167         lt->setSelection(bv);
1168         bool flag = (lt->toggle_cursor.par() != lt->toggle_end_cursor.par() ||
1169                                  lt->toggle_cursor.pos() != lt->toggle_end_cursor.pos());
1170         if (clear)
1171                 lt = 0;
1172         if (flag) {
1173                 updateLocal(bv, SELECTION, false);
1174         }
1175         showInsetCursor(bv);
1176 }
1177
1178
1179 UpdatableInset::RESULT
1180 InsetText::localDispatch(BufferView * bv,
1181                          kb_action action, string const & arg)
1182 {
1183         bool was_empty = par->size() == 0 && !par->next();
1184         no_selection = false;
1185         UpdatableInset::RESULT
1186                 result= UpdatableInset::localDispatch(bv, action, arg);
1187         if (result != UNDISPATCHED) {
1188                 return DISPATCHED;
1189         }
1190
1191         result = DISPATCHED;
1192         if ((action < 0) && arg.empty())
1193                 return FINISHED;
1194
1195         if (the_locking_inset) {
1196                 result = the_locking_inset->localDispatch(bv, action, arg);
1197                 if (result == DISPATCHED_NOUPDATE)
1198                         return result;
1199                 else if (result == DISPATCHED) {
1200                         updateLocal(bv, CURSOR_PAR, false);
1201                         return result;
1202                 } else if (result >= FINISHED) {
1203                         switch (result) {
1204                         case FINISHED_RIGHT:
1205                                 moveRightIntern(bv, false, false);
1206                                 result = DISPATCHED;
1207                                 break;
1208                         case FINISHED_UP:
1209                                 if ((result = moveUp(bv)) >= FINISHED) {
1210                                         updateLocal(bv, CURSOR, false);
1211                                         bv->unlockInset(this);
1212                                 }
1213                                 break;
1214                         case FINISHED_DOWN:
1215                         {
1216                                 LyXText *lt = getLyXText(bv);
1217                                 if (lt->cursor.irow()->next()) {
1218                                         lt->setCursorFromCoordinates(
1219                                                 bv, lt->cursor.ix() + inset_x,
1220                                                 lt->cursor.iy() -
1221                                                 lt->cursor.irow()->baseline() +
1222                                                 lt->cursor.irow()->height() + 1);
1223                                         lt->cursor.x_fix(lt->cursor.x());
1224                                         updateLocal(bv, CURSOR, false);
1225                                 } else {
1226                                         bv->unlockInset(this);
1227                                 }
1228                         }
1229                                 break;
1230                         default:
1231                                 result = DISPATCHED;
1232                                 break;
1233                         }
1234                         the_locking_inset = 0;
1235                         updateLocal(bv, CURSOR, false);
1236                         return result;
1237                 }
1238         }
1239         hideInsetCursor(bv);
1240         bool clear = false;
1241         if (!lt) {
1242                 lt = getLyXText(bv);
1243                 clear = true;
1244         }
1245         int updwhat = 0;
1246         int updflag = false;
1247         switch (action) {
1248         // Normal chars
1249         case LFUN_SELFINSERT:
1250                 if (bv->buffer()->isReadonly()) {
1251 //          setErrorMessage(N_("Document is read only"));
1252                         break;
1253                 }
1254                 if (!arg.empty()) {
1255                         /* Automatically delete the currently selected
1256                          * text and replace it with what is being
1257                          * typed in now. Depends on lyxrc settings
1258                          * "auto_region_delete", which defaults to
1259                          * true (on). */
1260
1261                         setUndo(bv, Undo::INSERT,
1262                                 lt->cursor.par(), lt->cursor.par()->next());
1263                         bv->setState();
1264                         if (lyxrc.auto_region_delete) {
1265                                 if (lt->selection.set()) {
1266                                         lt->cutSelection(bv, false);
1267                                 }
1268                         }
1269                         lt->clearSelection();
1270                         for (string::size_type i = 0; i < arg.length(); ++i) {
1271                                 bv->owner()->getIntl()->getTransManager().
1272                                         TranslateAndInsert(arg[i], lt);
1273                         }
1274                 }
1275                 lt->selection.cursor = lt->cursor;
1276                 updwhat = CURSOR | CURSOR_PAR;
1277                 updflag = true;
1278                 result = DISPATCHED_NOUPDATE;
1279                 break;
1280                 // --- Cursor Movements -----------------------------------
1281         case LFUN_RIGHTSEL:
1282                 finishUndo();
1283                 moveRight(bv, false, true);
1284                 lt->setSelection(bv);
1285                 updwhat = SELECTION;
1286                 break;
1287         case LFUN_RIGHT:
1288                 result = moveRight(bv);
1289                 finishUndo();
1290                 updwhat = CURSOR;
1291                 break;
1292         case LFUN_LEFTSEL:
1293                 finishUndo();
1294                 moveLeft(bv, false, true);
1295                 lt->setSelection(bv);
1296                 updwhat = SELECTION;
1297                 break;
1298         case LFUN_LEFT:
1299                 finishUndo();
1300                 result = moveLeft(bv);
1301                 updwhat = CURSOR;
1302                 break;
1303         case LFUN_DOWNSEL:
1304                 finishUndo();
1305                 moveDown(bv);
1306                 lt->setSelection(bv);
1307                 updwhat = SELECTION;
1308                 break;
1309         case LFUN_DOWN:
1310                 finishUndo();
1311                 result = moveDown(bv);
1312                 updwhat = CURSOR;
1313                 break;
1314         case LFUN_UPSEL:
1315                 finishUndo();
1316                 moveUp(bv);
1317                 lt->setSelection(bv);
1318                 updwhat = SELECTION;
1319                 break;
1320         case LFUN_UP:
1321                 finishUndo();
1322                 result = moveUp(bv);
1323                 updwhat = CURSOR;
1324                 break;
1325         case LFUN_HOME:
1326                 finishUndo();
1327                 lt->cursorHome(bv);
1328                 updwhat = CURSOR;
1329                 break;
1330         case LFUN_END:
1331                 lt->cursorEnd(bv);
1332                 updwhat = CURSOR;
1333                 break;
1334         case LFUN_BACKSPACE: {
1335                 setUndo(bv, Undo::DELETE,
1336                         lt->cursor.par(), lt->cursor.par()->next());
1337                 if (lt->selection.set())
1338                         lt->cutSelection(bv);
1339                 else
1340                         lt->backspace(bv);
1341                 updwhat = CURSOR_PAR;
1342                 updflag = true;
1343         }
1344         break;
1345
1346         case LFUN_DELETE: {
1347                 setUndo(bv, Undo::DELETE,
1348                         lt->cursor.par(), lt->cursor.par()->next());
1349                 if (lt->selection.set()) {
1350                         lt->cutSelection(bv);
1351                 } else {
1352                         lt->Delete(bv);
1353                 }
1354                 updwhat = CURSOR_PAR;
1355                 updflag = true;
1356         }
1357         break;
1358
1359         case LFUN_CUT: {
1360                 setUndo(bv, Undo::DELETE,
1361                         lt->cursor.par(), lt->cursor.par()->next());
1362                 lt->cutSelection(bv);
1363                 updwhat = CURSOR_PAR;
1364                 updflag = true;
1365         }
1366         break;
1367
1368         case LFUN_COPY:
1369                 finishUndo();
1370                 lt->copySelection(bv);
1371                 updwhat = CURSOR_PAR;
1372                 break;
1373         case LFUN_PASTESELECTION:
1374         {
1375                 string const clip(bv->getClipboard());
1376
1377                 if (clip.empty())
1378                         break;
1379                 if (arg == "paragraph") {
1380                         lt->insertStringAsParagraphs(bv, clip);
1381                 } else {
1382                         lt->insertStringAsLines(bv, clip);
1383                 }
1384                 // bug 393
1385                 lt->clearSelection();
1386
1387                 updwhat = CURSOR_PAR;
1388                 updflag = true;
1389                 break;
1390         }
1391         case LFUN_PASTE: {
1392                 if (!autoBreakRows) {
1393
1394                         if (CutAndPaste::nrOfParagraphs() > 1) {
1395                                 Alert::alert(_("Impossible operation"),
1396                                                    _("Cannot include more than one paragraph!"),
1397                                                    _("Sorry."));
1398                                 break;
1399                         }
1400                 }
1401                 setUndo(bv, Undo::INSERT,
1402                         lt->cursor.par(), lt->cursor.par()->next());
1403                 lt->pasteSelection(bv);
1404                 // bug 393
1405                 lt->clearSelection();
1406                 updwhat = CURSOR_PAR;
1407                 updflag = true;
1408         }
1409         break;
1410
1411         case LFUN_BREAKPARAGRAPH:
1412                 if (!autoBreakRows) {
1413                         result = DISPATCHED;
1414                         break;
1415                 }
1416                 lt->breakParagraph(bv, 0);
1417                 updwhat = CURSOR | FULL;
1418                 updflag = true;
1419                 break;
1420         case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
1421                 if (!autoBreakRows) {
1422                         result = DISPATCHED;
1423                         break;
1424                 }
1425                 lt->breakParagraph(bv, 1);
1426                 updwhat = CURSOR | FULL;
1427                 updflag = true;
1428                 break;
1429
1430         case LFUN_BREAKLINE: {
1431                 if (!autoBreakRows) {
1432                         result = DISPATCHED;
1433                         break;
1434                 }
1435                 setUndo(bv, Undo::INSERT,
1436                         lt->cursor.par(), lt->cursor.par()->next());
1437                 lt->insertChar(bv, Paragraph::META_NEWLINE);
1438                 updwhat = CURSOR | CURSOR_PAR;
1439                 updflag = true;
1440         }
1441         break;
1442
1443         case LFUN_LAYOUT:
1444                 // do not set layouts on non breakable textinsets
1445                 if (autoBreakRows) {
1446                         string cur_layout = cpar(bv)->layout();
1447
1448                         // Derive layout number from given argument (string)
1449                         // and current buffer's textclass (number). */
1450                         textclass_type tclass = bv->buffer()->params.textclass;
1451                         string layout = arg;
1452                         bool hasLayout = textclasslist[tclass].hasLayout(layout);
1453
1454                         // If the entry is obsolete, use the new one instead.
1455                         if (hasLayout) {
1456                                 string const & obs =
1457                                         textclasslist[tclass][layout].
1458                                         obsoleted_by();
1459                                 if (!obs.empty())
1460                                         layout = obs;
1461                         }
1462
1463                         // see if we found the layout number:
1464                         if (!hasLayout) {
1465                                 string const msg = string(N_("Layout ")) + arg + N_(" not known");
1466                                 bv->owner()->getLyXFunc()->dispatch(LFUN_MESSAGE, msg);
1467                                 break;
1468                         }
1469
1470                         if (cur_layout != layout) {
1471                                 cur_layout = layout;
1472                                 lt->setLayout(bv, layout);
1473                                 bv->owner()->setLayout(cpar(bv)->layout());
1474                                 updwhat = CURSOR_PAR;
1475                                 updflag = true;
1476                         }
1477                 } else {
1478                         // reset the layout box
1479                         bv->owner()->setLayout(cpar(bv)->layout());
1480                 }
1481                 break;
1482         case LFUN_PARAGRAPH_SPACING:
1483                 // This one is absolutely not working. When fiddling with this
1484                 // it also seems to me that the paragraphs inside the insettext
1485                 // inherit bufferparams/paragraphparams in a strange way. (Lgb)
1486         {
1487                 Paragraph * par = lt->cursor.par();
1488                 Spacing::Space cur_spacing = par->params().spacing().getSpace();
1489                 float cur_value = 1.0;
1490                 if (cur_spacing == Spacing::Other) {
1491                         cur_value = par->params().spacing().getValue();
1492                 }
1493
1494                 istringstream istr(arg.c_str());
1495                 string tmp;
1496                 istr >> tmp;
1497                 Spacing::Space new_spacing = cur_spacing;
1498                 float new_value = cur_value;
1499                 if (tmp.empty()) {
1500                         lyxerr << "Missing argument to `paragraph-spacing'"
1501                                    << endl;
1502                 } else if (tmp == "single") {
1503                         new_spacing = Spacing::Single;
1504                 } else if (tmp == "onehalf") {
1505                         new_spacing = Spacing::Onehalf;
1506                 } else if (tmp == "double") {
1507                         new_spacing = Spacing::Double;
1508                 } else if (tmp == "other") {
1509                         new_spacing = Spacing::Other;
1510                         float tmpval = 0.0;
1511                         istr >> tmpval;
1512                         lyxerr << "new_value = " << tmpval << endl;
1513                         if (tmpval != 0.0)
1514                                 new_value = tmpval;
1515                 } else if (tmp == "default") {
1516                         new_spacing = Spacing::Default;
1517                 } else {
1518                         lyxerr << _("Unknown spacing argument: ")
1519                                    << arg << endl;
1520                 }
1521                 if (cur_spacing != new_spacing || cur_value != new_value) {
1522                         par->params().spacing(Spacing(new_spacing, new_value));
1523                         updwhat = CURSOR_PAR;
1524                         updflag = true;
1525                 }
1526         }
1527         break;
1528
1529         default:
1530                 if (!bv->Dispatch(action, arg))
1531                         result = UNDISPATCHED;
1532                 break;
1533         }
1534
1535         if (clear)
1536                 lt = 0;
1537         if (updwhat > 0)
1538                 updateLocal(bv, updwhat, updflag);
1539         /// If the action has deleted all text in the inset, we need to change the
1540         // language to the language of the surronding text.
1541         if (!was_empty && par->size() == 0 && !par->next()) {
1542                 LyXFont font(LyXFont::ALL_IGNORE);
1543                 font.setLanguage(bv->getParentLanguage(this));
1544                 setFont(bv, font, false);
1545         }
1546
1547         if (result >= FINISHED)
1548                 bv->unlockInset(this);
1549
1550         if (result == DISPATCHED_NOUPDATE && (need_update & FULL))
1551                 result = DISPATCHED;
1552         return result;
1553 }
1554
1555
1556 int InsetText::latex(Buffer const * buf, ostream & os, bool moving_arg, bool) const
1557 {
1558         TexRow texrow;
1559         buf->latexParagraphs(os, par, 0, texrow, moving_arg);
1560         return texrow.rows();
1561 }
1562
1563
1564 int InsetText::ascii(Buffer const * buf, ostream & os, int linelen) const
1565 {
1566         Paragraph * p = par;
1567         unsigned int lines = 0;
1568
1569         while (p) {
1570                 string const tmp = buf->asciiParagraph(p, linelen, p->previous()==0);
1571                 lines += lyx::count(tmp.begin(), tmp.end(), '\n');
1572                 os << tmp;
1573                 p = p->next();
1574         }
1575         return lines;
1576 }
1577
1578
1579 int InsetText::docbook(Buffer const * buf, ostream & os, bool mixcont) const
1580 {
1581         Paragraph * p = par;
1582         unsigned int lines = 0;
1583
1584         vector<string> environment_stack(10);
1585         vector<string> environment_inner(10);
1586
1587         int const command_depth = 0;
1588         string item_name;
1589
1590         Paragraph::depth_type depth = 0; // paragraph depth
1591
1592         while (p) {
1593                 string sgmlparam;
1594                 int desc_on = 0; // description mode
1595
1596                 LyXLayout const & style =
1597                         textclasslist[buf->params.textclass][p->layout()];
1598
1599                 // environment tag closing
1600                 for (; depth > p->params().depth(); --depth) {
1601                         if (environment_inner[depth] != "!-- --") {
1602                                 item_name = "listitem";
1603                                 lines += buf->sgmlCloseTag(os, command_depth + depth, mixcont, item_name);
1604                                 if (environment_inner[depth] == "varlistentry")
1605                                         lines += buf->sgmlCloseTag(os, depth+command_depth, mixcont, environment_inner[depth]);
1606                         }
1607                         lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, environment_stack[depth]);
1608                         environment_stack[depth].erase();
1609                         environment_inner[depth].erase();
1610                 }
1611
1612                 if (depth == p->params().depth()
1613                    && environment_stack[depth] != style.latexname()
1614                    && !environment_stack[depth].empty()) {
1615                         if (environment_inner[depth] != "!-- --") {
1616                                 item_name= "listitem";
1617                                 lines += buf->sgmlCloseTag(os, command_depth+depth, mixcont, item_name);
1618                                 if (environment_inner[depth] == "varlistentry")
1619                                         lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, environment_inner[depth]);
1620                         }
1621
1622                         lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, environment_stack[depth]);
1623
1624                         environment_stack[depth].erase();
1625                         environment_inner[depth].erase();
1626                 }
1627
1628                 // Write opening SGML tags.
1629                 switch (style.latextype) {
1630                 case LATEX_PARAGRAPH:
1631                         lines += buf->sgmlOpenTag(os, depth + command_depth, mixcont, style.latexname());
1632                         break;
1633
1634                 case LATEX_COMMAND:
1635                         buf->sgmlError(p, 0,  _("Error : LatexType Command not allowed here.\n"));
1636                         return -1;
1637                         break;
1638
1639                 case LATEX_ENVIRONMENT:
1640                 case LATEX_ITEM_ENVIRONMENT:
1641                         if (depth < p->params().depth()) {
1642                                 depth = p->params().depth();
1643                                 environment_stack[depth].erase();
1644                         }
1645
1646                         if (environment_stack[depth] != style.latexname()) {
1647                                 if (environment_stack.size() == depth + 1) {
1648                                         environment_stack.push_back("!-- --");
1649                                         environment_inner.push_back("!-- --");
1650                                 }
1651                                 environment_stack[depth] = style.latexname();
1652                                 environment_inner[depth] = "!-- --";
1653                                 lines += buf->sgmlOpenTag(os, depth + command_depth, mixcont, environment_stack[depth]);
1654                         } else {
1655                                 if (environment_inner[depth] != "!-- --") {
1656                                         item_name= "listitem";
1657                                         lines += buf->sgmlCloseTag(os, command_depth + depth, mixcont, item_name);
1658                                         if (environment_inner[depth] == "varlistentry")
1659                                                 lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, environment_inner[depth]);
1660                                 }
1661                         }
1662
1663                         if (style.latextype == LATEX_ENVIRONMENT) {
1664                                 if (!style.latexparam().empty()) {
1665                                         if (style.latexparam() == "CDATA")
1666                                                 os << "<![CDATA[";
1667                                         else
1668                                           lines += buf->sgmlOpenTag(os, depth + command_depth, mixcont, style.latexparam());
1669                                 }
1670                                 break;
1671                         }
1672
1673                         desc_on = (style.labeltype == LABEL_MANUAL);
1674
1675                         environment_inner[depth] = desc_on?"varlistentry":"listitem";
1676                         lines += buf->sgmlOpenTag(os, depth + 1 + command_depth, mixcont, environment_inner[depth]);
1677
1678                         item_name = desc_on?"term":"para";
1679                         lines += buf->sgmlOpenTag(os, depth + 1 + command_depth, mixcont, item_name);
1680
1681                         break;
1682                 default:
1683                         lines += buf->sgmlOpenTag(os, depth + command_depth, mixcont, style.latexname());
1684                         break;
1685                 }
1686
1687                 buf->simpleDocBookOnePar(os, p, desc_on, depth + 1 + command_depth);
1688                 p = p->next();
1689
1690                 string end_tag;
1691                 // write closing SGML tags
1692                 switch (style.latextype) {
1693                 case LATEX_ENVIRONMENT:
1694                         if (!style.latexparam().empty()) {
1695                                 if (style.latexparam() == "CDATA")
1696                                         os << "]]>";
1697                                 else
1698                                         lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, style.latexparam());
1699                         }
1700                         break;
1701                 case LATEX_ITEM_ENVIRONMENT:
1702                         if (desc_on == 1) break;
1703                         end_tag= "para";
1704                         lines += buf->sgmlCloseTag(os, depth + 1 + command_depth, mixcont, end_tag);
1705                         break;
1706                 case LATEX_PARAGRAPH:
1707                         lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, style.latexname());
1708                         break;
1709                 default:
1710                         lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, style.latexname());
1711                         break;
1712                 }
1713         }
1714
1715         // Close open tags
1716         for (int d = depth; d >= 0; --d) {
1717                 if (!environment_stack[depth].empty()) {
1718                         if (environment_inner[depth] != "!-- --") {
1719                                 item_name = "listitem";
1720                                 lines += buf->sgmlCloseTag(os, command_depth + depth, mixcont, item_name);
1721                                if (environment_inner[depth] == "varlistentry")
1722                                        lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, environment_inner[depth]);
1723                         }
1724
1725                         lines += buf->sgmlCloseTag(os, depth + command_depth, mixcont, environment_stack[depth]);
1726                 }
1727         }
1728
1729         return lines;
1730 }
1731
1732
1733 void InsetText::validate(LaTeXFeatures & features) const
1734 {
1735         Paragraph * p = par;
1736         while (p) {
1737                 p->validate(features);
1738                 p = p->next();
1739         }
1740 }
1741
1742
1743 int InsetText::beginningOfMainBody(Buffer const * buf, Paragraph * p) const
1744 {
1745         if (textclasslist[buf->params.textclass][p->layout()].labeltype != LABEL_MANUAL)
1746                 return 0;
1747         else
1748                 return p->beginningOfMainBody();
1749 }
1750
1751
1752 void InsetText::getCursorPos(BufferView * bv, int & x, int & y) const
1753 {
1754         if (the_locking_inset) {
1755                 the_locking_inset->getCursorPos(bv, x, y);
1756                 return;
1757         }
1758         x = cx(bv) - top_x - TEXT_TO_INSET_OFFSET;
1759         y = cy(bv) - TEXT_TO_INSET_OFFSET;
1760 }
1761
1762
1763 int InsetText::insetInInsetY() const
1764 {
1765         if (!the_locking_inset)
1766                 return 0;
1767
1768         return (inset_y + the_locking_inset->insetInInsetY());
1769 }
1770
1771
1772 void InsetText::toggleInsetCursor(BufferView * bv)
1773 {
1774         if (the_locking_inset) {
1775                 the_locking_inset->toggleInsetCursor(bv);
1776                 return;
1777         }
1778
1779         LyXFont const font(getLyXText(bv)->getFont(bv->buffer(), cpar(bv), cpos(bv)));
1780
1781         int const asc = font_metrics::maxAscent(font);
1782         int const desc = font_metrics::maxDescent(font);
1783
1784         if (isCursorVisible())
1785                 bv->hideLockedInsetCursor();
1786         else
1787                 bv->showLockedInsetCursor(cx(bv), cy(bv), asc, desc);
1788         toggleCursorVisible();
1789 }
1790
1791
1792 void InsetText::showInsetCursor(BufferView * bv, bool show)
1793 {
1794         if (the_locking_inset) {
1795                 the_locking_inset->showInsetCursor(bv, show);
1796                 return;
1797         }
1798         if (!isCursorVisible()) {
1799                 LyXFont const font =
1800                         getLyXText(bv)->getFont(bv->buffer(), cpar(bv), cpos(bv));
1801
1802                 int const asc = font_metrics::maxAscent(font);
1803                 int const desc = font_metrics::maxDescent(font);
1804
1805                 bv->fitLockedInsetCursor(cx(bv), cy(bv), asc, desc);
1806                 if (show)
1807                         bv->showLockedInsetCursor(cx(bv), cy(bv), asc, desc);
1808                 setCursorVisible(true);
1809         }
1810 }
1811
1812
1813 void InsetText::hideInsetCursor(BufferView * bv)
1814 {
1815         if (isCursorVisible()) {
1816                 bv->hideLockedInsetCursor();
1817                 setCursorVisible(false);
1818         }
1819         if (the_locking_inset)
1820                 the_locking_inset->hideInsetCursor(bv);
1821 }
1822
1823
1824 void InsetText::fitInsetCursor(BufferView * bv) const
1825 {
1826         if (the_locking_inset) {
1827                 the_locking_inset->fitInsetCursor(bv);
1828                 return;
1829         }
1830         LyXFont const font =
1831                 getLyXText(bv)->getFont(bv->buffer(), cpar(bv), cpos(bv));
1832
1833         int const asc = font_metrics::maxAscent(font);
1834         int const desc = font_metrics::maxDescent(font);
1835
1836         if (bv->fitLockedInsetCursor(cx(bv), cy(bv), asc, desc))
1837                 need_update |= FULL;
1838 }
1839
1840
1841 UpdatableInset::RESULT
1842 InsetText::moveRight(BufferView * bv, bool activate_inset, bool selecting)
1843 {
1844         if (getLyXText(bv)->cursor.par()->isRightToLeftPar(bv->buffer()->params))
1845                 return moveLeftIntern(bv, true, activate_inset, selecting);
1846         else
1847                 return moveRightIntern(bv, true, activate_inset, selecting);
1848 }
1849
1850
1851 UpdatableInset::RESULT
1852 InsetText::moveLeft(BufferView * bv, bool activate_inset, bool selecting)
1853 {
1854         if (getLyXText(bv)->cursor.par()->isRightToLeftPar(bv->buffer()->params))
1855                 return moveRightIntern(bv, false, activate_inset, selecting);
1856         else
1857                 return moveLeftIntern(bv, false, activate_inset, selecting);
1858 }
1859
1860
1861 UpdatableInset::RESULT
1862 InsetText::moveRightIntern(BufferView * bv, bool front,
1863                            bool activate_inset, bool selecting)
1864 {
1865         if (!cpar(bv)->next() && (cpos(bv) >= cpar(bv)->size()))
1866                 return FINISHED_RIGHT;
1867         if (activate_inset && checkAndActivateInset(bv, front))
1868                 return DISPATCHED;
1869         getLyXText(bv)->cursorRight(bv);
1870         if (!selecting)
1871                 getLyXText(bv)->selection.cursor = getLyXText(bv)->cursor;
1872         return DISPATCHED_NOUPDATE;
1873 }
1874
1875
1876 UpdatableInset::RESULT
1877 InsetText::moveLeftIntern(BufferView * bv, bool front,
1878                           bool activate_inset, bool selecting)
1879 {
1880         if (!cpar(bv)->previous() && (cpos(bv) <= 0))
1881                 return FINISHED;
1882         getLyXText(bv)->cursorLeft(bv);
1883         if (!selecting)
1884                 getLyXText(bv)->selection.cursor = getLyXText(bv)->cursor;
1885         if (activate_inset && checkAndActivateInset(bv, front))
1886                 return DISPATCHED;
1887         return DISPATCHED_NOUPDATE;
1888 }
1889
1890
1891 UpdatableInset::RESULT
1892 InsetText::moveUp(BufferView * bv)
1893 {
1894         if (!crow(bv)->previous())
1895                 return FINISHED_UP;
1896         getLyXText(bv)->cursorUp(bv);
1897         return DISPATCHED_NOUPDATE;
1898 }
1899
1900
1901 UpdatableInset::RESULT
1902 InsetText::moveDown(BufferView * bv)
1903 {
1904         if (!crow(bv)->next())
1905                 return FINISHED_DOWN;
1906         getLyXText(bv)->cursorDown(bv);
1907         return DISPATCHED_NOUPDATE;
1908 }
1909
1910
1911 bool InsetText::insertInset(BufferView * bv, Inset * inset)
1912 {
1913         if (the_locking_inset) {
1914                 if (the_locking_inset->insetAllowed(inset))
1915                         return the_locking_inset->insertInset(bv, inset);
1916                 return false;
1917         }
1918         inset->setOwner(this);
1919         hideInsetCursor(bv);
1920         getLyXText(bv)->insertInset(bv, inset);
1921         bv->fitCursor();
1922         updateLocal(bv, CURSOR_PAR|CURSOR, true);
1923         return true;
1924 }
1925
1926
1927 bool InsetText::insetAllowed(Inset::Code code) const
1928 {
1929         // in_insetAllowed is a really gross hack,
1930         // to allow us to call the owner's insetAllowed
1931         // without stack overflow, which can happen
1932         // when the owner uses InsetCollapsable::insetAllowed()
1933         bool ret = true;
1934         if (in_insetAllowed)
1935                 return ret;
1936         in_insetAllowed = true;
1937         if (the_locking_inset)
1938                 ret = the_locking_inset->insetAllowed(code);
1939         else if (owner())
1940                 ret = owner()->insetAllowed(code);
1941         in_insetAllowed = false;
1942         return ret;
1943 }
1944
1945
1946 UpdatableInset * InsetText::getLockingInset() const
1947 {
1948         return the_locking_inset ? the_locking_inset->getLockingInset() :
1949                 const_cast<InsetText *>(this);
1950 }
1951
1952
1953 UpdatableInset * InsetText::getFirstLockingInsetOfType(Inset::Code c)
1954 {
1955         if (c == lyxCode())
1956                 return this;
1957         if (the_locking_inset)
1958                 return the_locking_inset->getFirstLockingInsetOfType(c);
1959         return 0;
1960 }
1961
1962
1963 bool InsetText::showInsetDialog(BufferView * bv) const
1964 {
1965         if (the_locking_inset)
1966                 return the_locking_inset->showInsetDialog(bv);
1967         return false;
1968 }
1969
1970
1971 vector<string> const InsetText::getLabelList() const
1972 {
1973         vector<string> label_list;
1974
1975         Paragraph * tpar = par;
1976         while (tpar) {
1977                 Paragraph::inset_iterator beg = tpar->inset_iterator_begin();
1978                 Paragraph::inset_iterator end = tpar->inset_iterator_end();
1979                 for (; beg != end; ++beg) {
1980                         vector<string> const l = (*beg)->getLabelList();
1981                         label_list.insert(label_list.end(), l.begin(), l.end());
1982                 }
1983                 tpar = tpar->next();
1984         }
1985         return label_list;
1986 }
1987
1988
1989 void InsetText::setFont(BufferView * bv, LyXFont const & font, bool toggleall,
1990                         bool selectall)
1991 {
1992         if (the_locking_inset) {
1993                 the_locking_inset->setFont(bv, font, toggleall, selectall);
1994                 return;
1995         }
1996         if ((!par->next() && !par->size()) || !cpar(bv)->size()) {
1997                 getLyXText(bv)->setFont(bv, font, toggleall);
1998                 return;
1999         }
2000         bool clear = false;
2001         if (!lt) {
2002                 lt = getLyXText(bv);
2003                 clear = true;
2004         }
2005         if (lt->selection.set()) {
2006                 setUndo(bv, Undo::EDIT, lt->cursor.par(), lt->cursor.par()->next());
2007         }
2008         if (selectall)
2009                 selectAll(bv);
2010         lt->toggleFree(bv, font, toggleall);
2011         if (selectall)
2012                 lt->clearSelection();
2013         bv->fitCursor();
2014         bool flag = (selectall || lt->selection.set());
2015         if (clear)
2016                 lt = 0;
2017         if (flag)
2018                 updateLocal(bv, FULL, true);
2019         else
2020                 updateLocal(bv, CURSOR_PAR, true);
2021 }
2022
2023
2024 bool InsetText::checkAndActivateInset(BufferView * bv, bool front)
2025 {
2026         if (cpar(bv)->isInset(cpos(bv))) {
2027                 Inset * inset =
2028                         static_cast<UpdatableInset*>(cpar(bv)->getInset(cpos(bv)));
2029                 if (!isHighlyEditableInset(inset))
2030                         return false;
2031                 inset->edit(bv, front);
2032                 if (!the_locking_inset)
2033                         return false;
2034                 updateLocal(bv, CURSOR, false);
2035                 return true;
2036         }
2037         return false;
2038 }
2039
2040
2041 bool InsetText::checkAndActivateInset(BufferView * bv, int x, int y,
2042                                       mouse_button::state button)
2043 {
2044         x -= drawTextXOffset;
2045         int dummyx = x;
2046         int dummyy = y + insetAscent;
2047         Inset * inset = bv->checkInsetHit(getLyXText(bv), dummyx, dummyy);
2048         // we only do the edit() call if the inset was hit by the mouse
2049         // or if it is a highly editable inset. So we should call this
2050         // function from our own edit with button < 0.
2051         // FIXME: GUII jbl. I've changed this to ::none for now which is probably
2052         // WRONG
2053         if (button == mouse_button::none && !isHighlyEditableInset(inset))
2054                 return false;
2055
2056         if (inset) {
2057                 if (x < 0)
2058                         x = insetWidth;
2059                 if (y < 0)
2060                         y = insetDescent;
2061                 inset_x = cix(bv) - top_x + drawTextXOffset;
2062                 inset_y = ciy(bv) + drawTextYOffset;
2063                 inset->edit(bv, x - inset_x, y - inset_y, button);
2064                 if (!the_locking_inset)
2065                         return false;
2066                 updateLocal(bv, CURSOR, false);
2067                 return true;
2068         }
2069         return false;
2070 }
2071
2072
2073 int InsetText::getMaxWidth(BufferView * bv, UpdatableInset const * inset) const
2074 {
2075 #if 0
2076         int w = UpdatableInset::getMaxWidth(bv, inset);
2077         if (w < 0) {
2078                 return -1;
2079         }
2080         if (owner()) {
2081                 w = w - top_x + owner()->x();
2082                 return w;
2083         }
2084         w -= (2 * TEXT_TO_INSET_OFFSET);
2085         return w - top_x;
2086 #else
2087         return UpdatableInset::getMaxWidth(bv, inset);
2088 #endif
2089 }
2090
2091
2092 void InsetText::setParagraphData(Paragraph * p, bool same_id)
2093 {
2094         // we have to unlock any locked inset otherwise we're in troubles
2095         the_locking_inset = 0;
2096         while (par) {
2097                 Paragraph * tmp = par->next();
2098                 delete par;
2099                 par = tmp;
2100         }
2101
2102         par = new Paragraph(*p, same_id);
2103         par->setInsetOwner(this);
2104         Paragraph * np = par;
2105         while (p->next()) {
2106                 p = p->next();
2107                 np->next(new Paragraph(*p, same_id));
2108                 np->next()->previous(np);
2109                 np = np->next();
2110                 np->setInsetOwner(this);
2111         }
2112         reinitLyXText();
2113         need_update = INIT;
2114 }
2115
2116
2117 void InsetText::setText(string const & data, LyXFont const & font)
2118 {
2119         clear();
2120         for (unsigned int i=0; i < data.length(); ++i)
2121                 par->insertChar(i, data[i], font);
2122         reinitLyXText();
2123 }
2124
2125
2126 void InsetText::setAutoBreakRows(bool flag)
2127 {
2128         if (flag != autoBreakRows) {
2129                 autoBreakRows = flag;
2130                 if (!flag)
2131                         removeNewlines();
2132                 need_update = INIT;
2133         }
2134 }
2135
2136
2137 void InsetText::setDrawFrame(BufferView * bv, DrawFrame how)
2138 {
2139         if (how != drawFrame_) {
2140                 drawFrame_ = how;
2141                 if (bv)
2142                         updateLocal(bv, DRAW_FRAME, false);
2143         }
2144 }
2145
2146
2147 void InsetText::setFrameColor(BufferView * bv, LColor::color col)
2148 {
2149         if (frame_color != col) {
2150                 frame_color = col;
2151                 if (bv)
2152                         updateLocal(bv, DRAW_FRAME, false);
2153         }
2154 }
2155
2156
2157 int InsetText::cx(BufferView * bv) const
2158 {
2159         // we do nothing dangerous so we use a local cache
2160         LyXText * llt = getLyXText(bv);
2161         int x = llt->cursor.x() + top_x + TEXT_TO_INSET_OFFSET;
2162         if (the_locking_inset) {
2163                 LyXFont font = llt->getFont(bv->buffer(), llt->cursor.par(),
2164                                             llt->cursor.pos());
2165                 if (font.isVisibleRightToLeft())
2166                         x -= the_locking_inset->width(bv, font);
2167         }
2168         return x;
2169 }
2170
2171
2172 int InsetText::cix(BufferView * bv) const
2173 {
2174         // we do nothing dangerous so we use a local cache
2175         LyXText * llt = getLyXText(bv);
2176         int x = llt->cursor.ix() + top_x + TEXT_TO_INSET_OFFSET;
2177         if (the_locking_inset) {
2178                 LyXFont font = llt->getFont(bv->buffer(), llt->cursor.par(),
2179                                             llt->cursor.pos());
2180                 if (font.isVisibleRightToLeft())
2181                         x -= the_locking_inset->width(bv, font);
2182         }
2183         return x;
2184 }
2185
2186
2187 int InsetText::cy(BufferView * bv) const
2188 {
2189         LyXFont font;
2190         return getLyXText(bv)->cursor.y() - ascent(bv, font) + TEXT_TO_INSET_OFFSET;
2191 }
2192
2193
2194 int InsetText::ciy(BufferView * bv) const
2195 {
2196         LyXFont font;
2197         return getLyXText(bv)->cursor.iy() - ascent(bv, font) + TEXT_TO_INSET_OFFSET;
2198 }
2199
2200
2201 pos_type InsetText::cpos(BufferView * bv) const
2202 {
2203         return getLyXText(bv)->cursor.pos();
2204 }
2205
2206
2207 Paragraph * InsetText::cpar(BufferView * bv) const
2208 {
2209         return getLyXText(bv)->cursor.par();
2210 }
2211
2212
2213 bool InsetText::cboundary(BufferView * bv) const
2214 {
2215         return getLyXText(bv)->cursor.boundary();
2216 }
2217
2218
2219 Row * InsetText::crow(BufferView * bv) const
2220 {
2221         return getLyXText(bv)->cursor.row();
2222 }
2223
2224
2225 LyXText * InsetText::getLyXText(BufferView const * lbv,
2226                                 bool const recursive) const
2227 {
2228         if (cached_bview == lbv) {
2229                 if (recursive && the_locking_inset)
2230                         return the_locking_inset->getLyXText(lbv, true);
2231                 LyXText * lt = cached_text.get();
2232                 lyx::Assert(lt && lt->firstRow()->par() == par);
2233                 return lt;
2234         }
2235         // Super UGLY! (Lgb)
2236         BufferView * bv = const_cast<BufferView *>(lbv);
2237
2238         cached_bview = bv;
2239         Cache::iterator it = cache.find(bv);
2240
2241         if (it != cache.end()) {
2242                 if (do_reinit) {
2243                         reinitLyXText();
2244                 } else if (do_resize) {
2245                         resizeLyXText(do_resize);
2246                 } else {
2247                         if (lt || !it->second.remove) {
2248                                 lyx::Assert(it->second.text.get());
2249                                 cached_text = it->second.text;
2250                                 if (recursive && the_locking_inset) {
2251                                         return the_locking_inset->getLyXText(bv, true);
2252                                 }
2253                                 return cached_text.get();
2254                         } else if (it->second.remove) {
2255                                 if (locked) {
2256                                         saveLyXTextState(it->second.text.get());
2257                                 } else {
2258                                         sstate.lpar = 0;
2259                                 }
2260                         }
2261                         //
2262                         // when we have to reinit the existing LyXText!
2263                         //
2264                         it->second.text->init(bv);
2265                         restoreLyXTextState(bv, it->second.text.get());
2266                         it->second.remove = false;
2267                 }
2268                 cached_text = it->second.text;
2269                 if (the_locking_inset && recursive) {
2270                         return the_locking_inset->getLyXText(bv);
2271                 }
2272                 return cached_text.get();
2273         }
2274         ///
2275         // we are here only if we don't have a BufferView * in the cache!!!
2276         ///
2277         cached_text.reset(new LyXText(const_cast<InsetText *>(this)));
2278         cached_text->init(bv);
2279         restoreLyXTextState(bv, cached_text.get());
2280
2281         cache.insert(make_pair(bv, cached_text));
2282
2283         if (the_locking_inset && recursive) {
2284                 return the_locking_inset->getLyXText(bv);
2285         }
2286         return cached_text.get();
2287 }
2288
2289
2290 void InsetText::deleteLyXText(BufferView * bv, bool recursive) const
2291 {
2292         cached_bview = 0;
2293
2294         Cache::iterator it = cache.find(bv);
2295
2296         if (it == cache.end()) {
2297                 return;
2298         }
2299
2300         lyx::Assert(it->second.text.get());
2301
2302         it->second.remove = true;
2303         if (recursive) {
2304                 /// then remove all LyXText in text-insets
2305                 Paragraph * p = par;
2306                 for (; p; p = p->next()) {
2307                         p->deleteInsetsLyXText(bv);
2308                 }
2309         }
2310 }
2311
2312
2313 void InsetText::resizeLyXText(BufferView * bv, bool force) const
2314 {
2315         if (lt) {
2316                 // we cannot resize this because we are in use!
2317                 // so do this on the next possible getLyXText()
2318                 do_resize = bv;
2319                 return;
2320         }
2321         do_resize = 0;
2322 //      lyxerr << "InsetText::resizeLyXText\n";
2323         if (!par->next() && !par->size()) { // no data, resize not neccessary!
2324                 // we have to do this as a fixed width may have changed!
2325                 LyXText * t = getLyXText(bv);
2326                 saveLyXTextState(t);
2327                 t->init(bv, true);
2328                 restoreLyXTextState(bv, t);
2329                 return;
2330         }
2331         // one endless line, resize normally not necessary
2332         if (!force && getMaxWidth(bv, this) < 0)
2333                 return;
2334
2335         Cache::iterator it = cache.find(bv);
2336         if (it == cache.end()) {
2337                 return;
2338         }
2339         lyx::Assert(it->second.text.get());
2340
2341         LyXText * t = it->second.text.get();
2342         saveLyXTextState(t);
2343         for (Paragraph * p = par; p; p = p->next()) {
2344                 p->resizeInsetsLyXText(bv);
2345         }
2346         t->init(bv, true);
2347         restoreLyXTextState(bv, t);
2348         if (the_locking_inset) {
2349                 inset_x = cix(bv) - top_x + drawTextXOffset;
2350                 inset_y = ciy(bv) + drawTextYOffset;
2351         }
2352
2353         t->first_y = bv->screen().topCursorVisible(t->cursor, t->first_y);
2354         if (!owner()) {
2355                 updateLocal(bv, FULL, false);
2356                 // this will scroll the screen such that the cursor becomes visible
2357                 bv->updateScrollbar();
2358         } else {
2359                 need_update |= FULL;
2360         }
2361 }
2362
2363
2364 void InsetText::reinitLyXText() const
2365 {
2366         if (lt) {
2367                 // we cannot resize this because we are in use!
2368                 // so do this on the next possible getLyXText()
2369                 do_reinit = true;
2370                 return;
2371         }
2372         do_reinit = false;
2373         do_resize = 0;
2374 //      lyxerr << "InsetText::reinitLyXText\n";
2375         for(Cache::iterator it = cache.begin(); it != cache.end(); ++it) {
2376                 lyx::Assert(it->second.text.get());
2377
2378                 LyXText * t = it->second.text.get();
2379                 BufferView * bv = it->first;
2380
2381                 saveLyXTextState(t);
2382                 for (Paragraph * p = par; p; p = p->next()) {
2383                         p->resizeInsetsLyXText(bv);
2384                 }
2385                 t->init(bv, true);
2386                 restoreLyXTextState(bv, t);
2387                 if (the_locking_inset) {
2388                         inset_x = cix(bv) - top_x + drawTextXOffset;
2389                         inset_y = ciy(bv) + drawTextYOffset;
2390                 }
2391                 t->first_y = bv->screen().topCursorVisible(t->cursor, t->first_y);
2392                 if (!owner()) {
2393                         updateLocal(bv, FULL, false);
2394                         // this will scroll the screen such that the cursor becomes visible
2395                         bv->updateScrollbar();
2396                 } else {
2397                         need_update = FULL;
2398                 }
2399         }
2400 }
2401
2402
2403 void InsetText::removeNewlines()
2404 {
2405         bool changed = false;
2406
2407         for (Paragraph * p = par; p; p = p->next()) {
2408                 for (int i = 0; i < p->size(); ++i) {
2409                         if (p->getChar(i) == Paragraph::META_NEWLINE) {
2410                                 changed = true;
2411                                 p->erase(i);
2412                         }
2413                 }
2414         }
2415         if (changed)
2416                 reinitLyXText();
2417 }
2418
2419
2420 bool InsetText::nodraw() const
2421 {
2422         if (the_locking_inset)
2423                 return the_locking_inset->nodraw();
2424         return UpdatableInset::nodraw();
2425 }
2426
2427
2428 int InsetText::scroll(bool recursive) const
2429 {
2430         int sx = UpdatableInset::scroll(false);
2431
2432         if (recursive && the_locking_inset)
2433                 sx += the_locking_inset->scroll(recursive);
2434
2435         return sx;
2436 }
2437
2438
2439 bool InsetText::doClearArea() const
2440 {
2441         return !locked || (need_update & (FULL|INIT));
2442 }
2443
2444
2445 void InsetText::selectAll(BufferView * bv)
2446 {
2447         getLyXText(bv)->cursorTop(bv);
2448         getLyXText(bv)->selection.cursor = getLyXText(bv)->cursor;
2449         getLyXText(bv)->cursorBottom(bv);
2450         getLyXText(bv)->setSelection(bv);
2451 }
2452
2453
2454 void InsetText::clearSelection(BufferView * bv)
2455 {
2456         getLyXText(bv)->clearSelection();
2457 }
2458
2459
2460 void InsetText::clearInset(BufferView * bv, int baseline, bool & cleared) const
2461 {
2462         Painter & pain = bv->painter();
2463         int w = insetWidth;
2464         int h = insetAscent + insetDescent;
2465         int ty = baseline - insetAscent;
2466
2467         if (ty < 0) {
2468                 h += ty;
2469                 ty = 0;
2470         }
2471         if ((ty + h) > pain.paperHeight())
2472                 h = pain.paperHeight();
2473         if ((top_x + drawTextXOffset + w) > pain.paperWidth())
2474                 w = pain.paperWidth();
2475 //      w -= TEXT_TO_INSET_OFFSET;
2476         pain.fillRectangle(top_x + 1, ty + 1, w - 1, h - 1, backgroundColor());
2477         cleared = true;
2478         need_update = FULL;
2479         frame_is_visible = false;
2480 }
2481
2482
2483 Paragraph * InsetText::getParFromID(int id) const
2484 {
2485 #if 0
2486         Paragraph * result = par;
2487         Paragraph * ires = 0;
2488         while (result && result->id() != id) {
2489                 if ((ires = result->getParFromID(id)))
2490                         return ires;
2491                 result = result->next();
2492         }
2493         return result;
2494 #else
2495         Paragraph * tmp = par;
2496         while (tmp) {
2497                 if (tmp->id() == id) {
2498                         return tmp;
2499                 }
2500                 Paragraph * tmp2 = tmp->getParFromID(id);
2501                 if (tmp2 != 0) {
2502                         return tmp2;
2503                 }
2504                 tmp = tmp->next();
2505         }
2506         return 0;
2507 #endif
2508 }
2509
2510
2511 Paragraph * InsetText::firstParagraph() const
2512 {
2513         Paragraph * result;
2514         if (the_locking_inset)
2515                 if ((result = the_locking_inset->firstParagraph()))
2516                         return result;
2517         return par;
2518 }
2519
2520
2521 Paragraph * InsetText::getFirstParagraph(int i) const
2522 {
2523         return (i == 0) ? par : 0;
2524 }
2525
2526
2527 LyXCursor const & InsetText::cursor(BufferView * bv) const
2528 {
2529                 if (the_locking_inset)
2530                                 return the_locking_inset->cursor(bv);
2531                 return getLyXText(bv)->cursor;
2532 }
2533
2534
2535 Paragraph * InsetText::paragraph() const
2536 {
2537         return par;
2538 }
2539
2540
2541 void InsetText::paragraph(Paragraph * p)
2542 {
2543         // GENERAL COMMENT: We don't have to free the old paragraphs as the
2544         // caller of this function has to take care of it. This IS important
2545         // as we could have to insert a paragraph before this one and just
2546         // link the actual to a new ones next and set it with this function
2547         // and are done!
2548         par = p;
2549         // set ourself as owner for all the paragraphs inserted!
2550         Paragraph * np = par;
2551         while (np) {
2552                 np->setInsetOwner(this);
2553                 np = np->next();
2554         }
2555         reinitLyXText();
2556         // redraw myself when asked for
2557         need_update = INIT;
2558 }
2559
2560
2561 Inset * InsetText::getInsetFromID(int id_arg) const
2562 {
2563         if (id_arg == id())
2564                 return const_cast<InsetText *>(this);
2565
2566         Paragraph * lp = par;
2567
2568         while (lp) {
2569                 for (Paragraph::inset_iterator it = lp->inset_iterator_begin(),
2570                          en = lp->inset_iterator_end();
2571                          it != en; ++it)
2572                 {
2573                         if ((*it)->id() == id_arg)
2574                                 return *it;
2575                         Inset * in = (*it)->getInsetFromID(id_arg);
2576                         if (in)
2577                                 return in;
2578                 }
2579                 lp = lp->next();
2580         }
2581         return 0;
2582 }
2583
2584
2585 string const InsetText::selectNextWordToSpellcheck(BufferView * bv, float & value) const
2586 {
2587         bool clear = false;
2588         string str;
2589
2590         if (!lt) {
2591                 lt = getLyXText(bv);
2592                 clear = true;
2593         }
2594         if (the_locking_inset) {
2595                 str = the_locking_inset->selectNextWordToSpellcheck(bv, value);
2596                 if (!str.empty()) {
2597                         value += cy(bv);
2598                         if (clear)
2599                                 lt = 0;
2600                         return str;
2601                 }
2602                 // we have to go on checking so move cusor to the next char
2603                 lt->cursor.pos(lt->cursor.pos() + 1);
2604         }
2605         str = lt->selectNextWordToSpellcheck(bv, value);
2606         if (str.empty())
2607                 bv->unlockInset(const_cast<InsetText *>(this));
2608         else
2609                 value = cy(bv);
2610         if (clear)
2611                 lt = 0;
2612         return str;
2613 }
2614
2615
2616 void InsetText::selectSelectedWord(BufferView * bv)
2617 {
2618         if (the_locking_inset) {
2619                 the_locking_inset->selectSelectedWord(bv);
2620                 return;
2621         }
2622         getLyXText(bv)->selectSelectedWord(bv);
2623         updateLocal(bv, SELECTION, false);
2624 }
2625
2626
2627 void InsetText::toggleSelection(BufferView * bv, bool kill_selection)
2628 {
2629         if (the_locking_inset) {
2630                 the_locking_inset->toggleSelection(bv, kill_selection);
2631         }
2632         bool clear = false;
2633         if (!lt) {
2634                 lt = getLyXText(bv);
2635                 clear = true;
2636         }
2637
2638         int x = top_x + TEXT_TO_INSET_OFFSET;
2639
2640         Row * row = lt->firstRow();
2641         int y_offset = top_baseline - row->ascent_of_text();
2642         int y = y_offset;
2643         while ((row != 0) && ((y+row->height()) <= 0)) {
2644                 y += row->height();
2645                 row = row->next();
2646         }
2647         if (y_offset < 0)
2648                 y_offset = y;
2649
2650         if (need_update & SELECTION)
2651                 need_update = NONE;
2652         bv->screen().toggleSelection(lt, bv, kill_selection, y_offset, x);
2653         if (clear)
2654                 lt = 0;
2655 }
2656
2657
2658 bool InsetText::searchForward(BufferView * bv, string const & str,
2659                               bool cs, bool mw)
2660 {
2661         bool clear = false;
2662         if (!lt) {
2663                 lt = getLyXText(bv);
2664                 clear = true;
2665         }
2666         if (the_locking_inset) {
2667                 if (the_locking_inset->searchForward(bv, str, cs, mw))
2668                         return true;
2669                 lt->cursorRight(bv, true);
2670         }
2671         lyxfind::SearchResult result =
2672                 lyxfind::LyXFind(bv, lt, str, true, cs, mw);
2673
2674         if (result == lyxfind::SR_FOUND) {
2675                 LyXCursor cur = lt->cursor;
2676                 bv->unlockInset(bv->theLockingInset());
2677                 if (bv->lockInset(this))
2678                         locked = true;
2679                 lt->cursor = cur;
2680                 lt->setSelectionOverString(bv, str);
2681                 updateLocal(bv, SELECTION, false);
2682         }
2683         if (clear)
2684                 lt = 0;
2685         return (result != lyxfind::SR_NOT_FOUND);
2686 }
2687
2688 bool InsetText::searchBackward(BufferView * bv, string const & str,
2689                                bool cs, bool mw)
2690 {
2691         if (the_locking_inset) {
2692                 if (the_locking_inset->searchBackward(bv, str, cs, mw))
2693                         return true;
2694         }
2695         bool clear = false;
2696         if (!lt) {
2697                 lt = getLyXText(bv);
2698                 clear = true;
2699         }
2700         if (!locked) {
2701                 Paragraph * p = par;
2702                 while (p->next())
2703                         p = p->next();
2704                 lt->setCursor(bv, p, p->size());
2705         }
2706         lyxfind::SearchResult result =
2707                 lyxfind::LyXFind(bv, lt, str, false, cs, mw);
2708
2709         if (result == lyxfind::SR_FOUND) {
2710                 LyXCursor cur = lt->cursor;
2711                 bv->unlockInset(bv->theLockingInset());
2712                 if (bv->lockInset(this))
2713                         locked = true;
2714                 lt->cursor = cur;
2715                 lt->setSelectionOverString(bv, str);
2716                 updateLocal(bv, SELECTION, false);
2717         }
2718         if (clear)
2719                 lt = 0;
2720         return (result != lyxfind::SR_NOT_FOUND);
2721 }
2722
2723
2724 bool InsetText::checkInsertChar(LyXFont & font)
2725 {
2726         if (owner())
2727                 return owner()->checkInsertChar(font);
2728         return true;
2729 }
2730
2731
2732 void InsetText::collapseParagraphs(BufferView * bv) const
2733 {
2734         BufferParams const & bparams = bv->buffer()->params;
2735         LyXText * llt = getLyXText(bv);
2736
2737         while(par->next()) {
2738                 if (par->size() && par->next()->size() &&
2739                         !par->isSeparator(par->size()-1))
2740                 {
2741                         par->insertChar(par->size(), ' ');
2742                 }
2743                 if (llt->selection.set()) {
2744                         if (llt->selection.start.par() == par->next()) {
2745                                 llt->selection.start.par(par);
2746                                 llt->selection.start.pos(
2747                                         llt->selection.start.pos() + par->size());
2748                         }
2749                         if (llt->selection.end.par() == par->next()) {
2750                                 llt->selection.end.par(par);
2751                                 llt->selection.end.pos(
2752                                         llt->selection.end.pos() + par->size());
2753                         }
2754                 }
2755                 par->pasteParagraph(bparams);
2756         }
2757         reinitLyXText();
2758 }
2759
2760
2761 void InsetText::getDrawFont(LyXFont & font) const
2762 {
2763         if (!owner())
2764                 return;
2765         owner()->getDrawFont(font);
2766 }
2767
2768
2769 void InsetText::appendParagraphs(BufferParams const & bparams,
2770                                  Paragraph * newpar)
2771 {
2772         Paragraph * buf;
2773         Paragraph * tmpbuf = newpar;
2774         Paragraph * lastbuffer = buf = new Paragraph(*tmpbuf, false);
2775
2776         while (tmpbuf->next()) {
2777                 tmpbuf = tmpbuf->next();
2778                 lastbuffer->next(new Paragraph(*tmpbuf, false));
2779                 lastbuffer->next()->previous(lastbuffer);
2780                 lastbuffer = lastbuffer->next();
2781         }
2782         lastbuffer = par;
2783         while (lastbuffer->next())
2784                 lastbuffer = lastbuffer->next();
2785         if (newpar->size() && lastbuffer->size() &&
2786                 !lastbuffer->isSeparator(lastbuffer->size()-1))
2787         {
2788                 lastbuffer->insertChar(lastbuffer->size(), ' ');
2789         }
2790
2791         // make the buf exactly the same layout than our last paragraph
2792         buf->makeSameLayout(lastbuffer);
2793
2794         // paste it!
2795         lastbuffer->next(buf);
2796         buf->previous(lastbuffer);
2797         lastbuffer->pasteParagraph(bparams);
2798
2799         reinitLyXText();
2800 }