]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.C
LyXCursor::x_fix -> BufferView::x_target
[lyx.git] / src / insets / insettext.C
1 /**
2  * \file insettext.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insettext.h"
14 #include "insetnewline.h"
15
16 #include "buffer.h"
17 #include "bufferparams.h"
18 #include "BufferView.h"
19 #include "CutAndPaste.h"
20 #include "debug.h"
21 #include "dispatchresult.h"
22 #include "errorlist.h"
23 #include "funcrequest.h"
24 #include "gettext.h"
25 #include "intl.h"
26 #include "LColor.h"
27 #include "lyxfind.h"
28 #include "lyxlex.h"
29 #include "lyxrc.h"
30 #include "metricsinfo.h"
31 #include "paragraph.h"
32 #include "paragraph_funcs.h"
33 #include "ParagraphParameters.h"
34 #include "rowpainter.h"
35 #include "sgml.h"
36 #include "texrow.h"
37 #include "undo.h"
38 #include "WordLangTuple.h"
39
40 #include "frontends/Alert.h"
41 #include "frontends/font_metrics.h"
42 #include "frontends/LyXView.h"
43 #include "frontends/Painter.h"
44
45 #include "support/lyxalgo.h" // lyx::count
46
47 #include <boost/bind.hpp>
48
49 using bv_funcs::replaceSelection;
50
51 using lyx::pos_type;
52
53 using lyx::graphics::PreviewLoader;
54
55 using lyx::support::isStrUnsignedInt;
56 using lyx::support::strToUnsignedInt;
57
58 using std::endl;
59 using std::for_each;
60 using std::max;
61 using std::string;
62 using std::auto_ptr;
63 using std::ostream;
64 using std::vector;
65
66
67 InsetText::InsetText(BufferParams const & bp)
68         : UpdatableInset(),
69           paragraphs(1),
70           autoBreakRows_(false),
71           drawFrame_(NEVER),
72           frame_color_(LColor::insetframe),
73           text_(0, this, true, paragraphs)
74 {
75         textwidth_ = 0; // broken
76         paragraphs.begin()->layout(bp.getLyXTextClass().defaultLayout());
77         if (bp.tracking_changes)
78                 paragraphs.begin()->trackChanges();
79         init();
80 }
81
82
83 InsetText::InsetText(InsetText const & in)
84         : UpdatableInset(in),
85           text_(in.text_.bv_owner, this, true, paragraphs)
86 {
87         // this is ugly...
88         operator=(in);
89 }
90
91
92 void InsetText::operator=(InsetText const & in)
93 {
94         UpdatableInset::operator=(in);
95         paragraphs = in.paragraphs;
96         autoBreakRows_ = in.autoBreakRows_;
97         drawFrame_ = in.drawFrame_;
98         frame_color_ = in.frame_color_;
99         textwidth_ = in.textwidth_;
100         text_ = LyXText(in.text_.bv_owner, this, true, paragraphs);
101         init();
102 }
103
104
105 void InsetText::init()
106 {
107         ParagraphList::iterator pit = paragraphs.begin();
108         ParagraphList::iterator end = paragraphs.end();
109         for (; pit != end; ++pit)
110                 pit->setInsetOwner(this);
111         text_.paragraphs_ = &paragraphs;
112         top_y = 0;
113
114         locked = false;
115         inset_par = -1;
116         inset_pos = 0;
117         inset_x = 0;
118         inset_y = 0;
119         no_selection = true;
120         the_locking_inset = 0;
121         old_par = -1;
122         in_insetAllowed = false;
123         mouse_x = 0;
124         mouse_y = 0;
125 }
126
127
128 void InsetText::clear(bool just_mark_erased)
129 {
130         if (just_mark_erased) {
131                 ParagraphList::iterator it = paragraphs.begin();
132                 ParagraphList::iterator end = paragraphs.end();
133                 for (; it != end; ++it)
134                         it->markErased();
135                 return;
136         }
137
138         // This is a gross hack...
139         LyXLayout_ptr old_layout = paragraphs.begin()->layout();
140
141         paragraphs.clear();
142         paragraphs.push_back(Paragraph());
143         paragraphs.begin()->setInsetOwner(this);
144         paragraphs.begin()->layout(old_layout);
145 }
146
147
148 auto_ptr<InsetBase> InsetText::clone() const
149 {
150         return auto_ptr<InsetBase>(new InsetText(*this));
151 }
152
153
154 void InsetText::write(Buffer const & buf, ostream & os) const
155 {
156         os << "Text\n";
157         writeParagraphData(buf, os);
158 }
159
160
161 void InsetText::writeParagraphData(Buffer const & buf, ostream & os) const
162 {
163         ParagraphList::const_iterator it = paragraphs.begin();
164         ParagraphList::const_iterator end = paragraphs.end();
165         Paragraph::depth_type dth = 0;
166         for (; it != end; ++it) {
167                 it->write(buf, os, buf.params(), dth);
168         }
169 }
170
171
172 void InsetText::read(Buffer const & buf, LyXLex & lex)
173 {
174         string token;
175         Paragraph::depth_type depth = 0;
176
177         clear(false);
178
179 #warning John, look here. Doesnt make much sense.
180         if (buf.params().tracking_changes)
181                 paragraphs.begin()->trackChanges();
182
183         // delete the initial paragraph
184         Paragraph oldpar = *paragraphs.begin();
185         paragraphs.clear();
186         ParagraphList::iterator pit = paragraphs.begin();
187
188         while (lex.isOK()) {
189                 lex.nextToken();
190                 token = lex.getString();
191                 if (token.empty())
192                         continue;
193                 if (token == "\\end_inset") {
194                         break;
195                 }
196
197                 if (token == "\\end_document") {
198                         lex.printError("\\end_document read in inset! Error in document!");
199                         return;
200                 }
201
202                 // FIXME: ugly.
203                 const_cast<Buffer&>(buf).readParagraph(lex, token, paragraphs, pit, depth);
204         }
205
206         pit = paragraphs.begin();
207         ParagraphList::iterator const end = paragraphs.end();
208         for (; pit != end; ++pit)
209                 pit->setInsetOwner(this);
210
211         if (token != "\\end_inset") {
212                 lex.printError("Missing \\end_inset at this point. "
213                                            "Read: `$$Token'");
214         }
215
216         // sanity check
217         // ensure we have at least one par.
218         if (paragraphs.empty())
219                 paragraphs.push_back(oldpar);
220 }
221
222
223 void InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
224 {
225         //lyxerr << "InsetText::metrics: width: " << mi.base.textwidth << endl;
226         textwidth_ = mi.base.textwidth - 30;
227         BufferView * bv = mi.base.bv;
228         setViewCache(bv);
229         text_.metrics(mi, dim);
230         dim.asc += TEXT_TO_INSET_OFFSET;
231         dim.des += TEXT_TO_INSET_OFFSET;
232         dim.wid += 2 * TEXT_TO_INSET_OFFSET;
233         dim.wid = max(dim.wid, 10);
234         dim_ = dim;
235 }
236
237
238 int InsetText::textWidth() const
239 {
240         return textwidth_;
241 }
242
243
244 void InsetText::draw(PainterInfo & pi, int x, int y) const
245 {
246         // update our idea of where we are. Clearly, we should
247         // not have to know this information.
248         top_x = x;
249
250         int const start_x = x;
251
252         BufferView * bv = pi.base.bv;
253         Painter & pain = pi.pain;
254
255         // repaint the background if needed
256         if (backgroundColor() != LColor::background)
257                 clearInset(bv, start_x + TEXT_TO_INSET_OFFSET, y);
258
259         // no draw is necessary !!!
260         if (drawFrame_ == LOCKED && !locked && paragraphs.begin()->empty()) {
261                 top_baseline = y;
262                 return;
263         }
264
265         bv->hideCursor();
266
267         if (!owner())
268                 x += scroll();
269
270         top_baseline = y;
271         top_y = y - dim_.asc;
272
273         if (the_locking_inset
274                   && text_.cursor.par() == inset_par && cpos() == inset_pos) {
275                 inset_x = cx() - x;
276                 inset_y = cy();
277         }
278
279         x += TEXT_TO_INSET_OFFSET;
280
281         paintTextInset(*bv, text_, x, y);
282
283         if (drawFrame_ == ALWAYS || (drawFrame_ == LOCKED && locked))
284                 drawFrame(pain, start_x);
285 }
286
287
288 void InsetText::drawFrame(Painter & pain, int x) const
289 {
290         int const ttoD2 = TEXT_TO_INSET_OFFSET / 2;
291         int const frame_x = x + ttoD2;
292         int const frame_y = top_baseline - dim_.asc + ttoD2;
293         int const frame_w = dim_.wid - TEXT_TO_INSET_OFFSET;
294         int const frame_h = dim_.asc + dim_.des - TEXT_TO_INSET_OFFSET;
295         pain.rectangle(frame_x, frame_y, frame_w, frame_h, frameColor());
296 }
297
298
299 void InsetText::updateLocal(BufferView * bv, bool /*mark_dirty*/)
300 {
301         if (!bv)
302                 return;
303
304         if (!autoBreakRows_ && paragraphs.size() > 1)
305                 collapseParagraphs(bv);
306
307         if (!text_.selection.set())
308                 text_.selection.cursor = text_.cursor;
309
310         bv->fitCursor();
311         bv->updateInset(this);
312         bv->owner()->view_state_changed();
313         bv->owner()->updateMenubar();
314         bv->owner()->updateToolbar();
315         if (old_par != text_.cursor.par()) {
316                 bv->owner()->setLayout(cpar()->layout()->name());
317                 old_par = text_.cursor.par();
318         }
319 }
320
321
322 string const InsetText::editMessage() const
323 {
324         return _("Opened Text Inset");
325 }
326
327
328 void InsetText::insetUnlock(BufferView * bv)
329 {
330         if (the_locking_inset) {
331                 the_locking_inset->insetUnlock(bv);
332                 the_locking_inset = 0;
333                 updateLocal(bv, false);
334         }
335         no_selection = true;
336         locked = false;
337
338         if (text_.selection.set())
339                 text_.clearSelection();
340         else if (owner())
341                 bv->owner()->setLayout(owner()->getLyXText(bv)
342                                        ->cursorPar()->layout()->name());
343         else
344                 bv->owner()->setLayout(bv->text->cursorPar()->layout()->name());
345         // hack for deleteEmptyParMech
346         if (!paragraphs.begin()->empty())
347                 text_.setCursor(0, 0);
348         else if (paragraphs.size() > 1)
349                 text_.setCursor(1, 0);
350 }
351
352
353 void InsetText::lockInset(BufferView * bv)
354 {
355         locked = true;
356         the_locking_inset = 0;
357         inset_pos = inset_x = inset_y = 0;
358         inset_boundary = false;
359         inset_par =  -1;
360         old_par = -1;
361         text_.setCursorIntern(0, 0);
362         text_.clearSelection();
363         finishUndo();
364         // If the inset is empty set the language of the current font to the
365         // language to the surronding text (if different).
366         if (paragraphs.begin()->empty() && paragraphs.size() == 1 &&
367                 bv->getParentLanguage(this) != text_.current_font.language()) {
368                 LyXFont font(LyXFont::ALL_IGNORE);
369                 font.setLanguage(bv->getParentLanguage(this));
370                 setFont(bv, font, false);
371         }
372 }
373
374
375 void InsetText::lockInset(BufferView * /*bv*/, UpdatableInset * inset)
376 {
377         the_locking_inset = inset;
378         inset_x = cx() - top_x;
379         inset_y = cy();
380         inset_pos = cpos();
381         inset_par = text_.cursor.par();
382         inset_boundary = cboundary();
383 }
384
385
386 bool InsetText::lockInsetInInset(BufferView * bv, UpdatableInset * inset)
387 {
388         lyxerr[Debug::INSETS] << "InsetText::LockInsetInInset("
389                               << inset << "): " << endl;
390         if (!inset)
391                 return false;
392         if (!the_locking_inset) {
393                 ParagraphList::iterator pit = paragraphs.begin();
394                 ParagraphList::iterator pend = paragraphs.end();
395
396                 for (; pit != pend; ++pit) {
397                         InsetList::iterator it = pit->insetlist.begin();
398                         InsetList::iterator const end = pit->insetlist.end();
399                         for (; it != end; ++it) {
400                                 if (it->inset == inset) {
401                                         lyxerr << "InsetText::lockInsetInInset: 1 a" << endl;
402                                         text_.setCursorIntern(
403                                                 std::distance(paragraphs.begin(), pit), it->pos);
404                                         lyxerr << "InsetText::lockInsetInInset: 1 b" << endl;
405                                         lyxerr << "bv: " << bv << " inset: " << inset << endl;
406                                         lockInset(bv, inset);
407                                         lyxerr << "InsetText::lockInsetInInset: 1 c" << endl;
408                                         return true;
409                                 }
410                         }
411                 }
412                 lyxerr << "InsetText::lockInsetInInset: 3" << endl;
413                 return false;
414         }
415         if (inset == cpar()->getInset(cpos())) {
416                 lyxerr[Debug::INSETS] << "OK" << endl;
417                 lockInset(bv, inset);
418                 return true;
419         }
420
421         if (the_locking_inset && the_locking_inset == inset) {
422                 if (text_.cursor.par() == inset_par && cpos() == inset_pos) {
423                         lyxerr[Debug::INSETS] << "OK" << endl;
424                         inset_x = cx() - top_x;
425                         inset_y = cy();
426                 } else {
427                         lyxerr[Debug::INSETS] << "cursor.pos != inset_pos" << endl;
428                 }
429         } else if (the_locking_inset) {
430                 lyxerr[Debug::INSETS] << "MAYBE" << endl;
431                 return the_locking_inset->lockInsetInInset(bv, inset);
432         }
433         lyxerr[Debug::INSETS] << "NOT OK" << endl;
434         return false;
435 }
436
437
438 bool InsetText::unlockInsetInInset(BufferView * bv, UpdatableInset * inset,
439                                    bool lr)
440 {
441         if (!the_locking_inset)
442                 return false;
443         if (the_locking_inset == inset) {
444                 the_locking_inset->insetUnlock(bv);
445                 the_locking_inset = 0;
446                 if (lr)
447                         moveRightIntern(bv, true, false);
448                 old_par = -1; // force layout setting
449                 if (scroll())
450                         scroll(bv, 0.0F);
451                 else
452                         updateLocal(bv, false);
453                 return true;
454         }
455         return the_locking_inset->unlockInsetInInset(bv, inset, lr);
456 }
457
458
459 void InsetText::lfunMousePress(FuncRequest const & cmd)
460 {
461         no_selection = true;
462
463         // use this to check mouse motion for selection!
464         mouse_x = cmd.x;
465         mouse_y = cmd.y;
466
467         BufferView * bv = cmd.view();
468         FuncRequest cmd1 = cmd;
469         cmd1.x -= inset_x;
470         cmd1.y -= inset_y;
471         if (!locked)
472                 lockInset(bv);
473
474         int tmp_x = cmd.x;
475         int tmp_y = cmd.y + dim_.asc - bv->top_y();
476         InsetOld * inset = getLyXText(bv)->checkInsetHit(tmp_x, tmp_y);
477
478         if (the_locking_inset) {
479                 if (the_locking_inset == inset) {
480                         the_locking_inset->dispatch(cmd1);
481                         return;
482                 }
483                 // otherwise only unlock the_locking_inset
484                 the_locking_inset->insetUnlock(bv);
485                 the_locking_inset = 0;
486         }
487         if (!inset)
488                 no_selection = false;
489
490         if (bv->theLockingInset()) {
491                 if (isHighlyEditableInset(inset)) {
492                         // We just have to lock the inset before calling a
493                         // PressEvent on it!
494                         UpdatableInset * uinset = static_cast<UpdatableInset*>(inset);
495                         if (!bv->lockInset(uinset)) {
496                                 lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
497                         }
498                         inset->dispatch(cmd1);
499                         if (the_locking_inset)
500                                 updateLocal(bv, false);
501                         return;
502                 }
503         }
504         if (!inset) {
505                 bool paste_internally = false;
506                 if (cmd.button() == mouse_button::button2 && getLyXText(bv)->selection.set()) {
507                         dispatch(FuncRequest(bv, LFUN_COPY));
508                         paste_internally = true;
509                 }
510                 int old_top_y = bv->top_y();
511
512                 text_.setCursorFromCoordinates(cmd.x, cmd.y + dim_.asc);
513                 // set the selection cursor!
514                 text_.selection.cursor = text_.cursor;
515                 bv->x_target(text_.cursor.x());
516
517                 text_.clearSelection();
518                 updateLocal(bv, false);
519
520                 bv->owner()->setLayout(cpar()->layout()->name());
521
522                 // we moved the view we cannot do mouse selection in this case!
523                 if (bv->top_y() != old_top_y)
524                         no_selection = true;
525                 old_par = text_.cursor.par();
526                 // Insert primary selection with middle mouse
527                 // if there is a local selection in the current buffer,
528                 // insert this
529                 if (cmd.button() == mouse_button::button2) {
530                         if (paste_internally)
531                                 dispatch(FuncRequest(bv, LFUN_PASTE));
532                         else
533                                 dispatch(FuncRequest(bv, LFUN_PASTESELECTION, "paragraph"));
534                 }
535         } else {
536                 getLyXText(bv)->clearSelection();
537         }
538 }
539
540
541 bool InsetText::lfunMouseRelease(FuncRequest const & cmd)
542 {
543         BufferView * bv = cmd.view();
544         FuncRequest cmd1 = cmd;
545         cmd1.x -= inset_x;
546         cmd1.y -= inset_y;
547
548         no_selection = true;
549         if (the_locking_inset) {
550                 DispatchResult const res = the_locking_inset->dispatch(cmd1);
551
552                 return res.dispatched();
553         }
554
555         int tmp_x = cmd.x;
556         int tmp_y = cmd.y + dim_.asc - bv->top_y();
557         InsetOld * inset = getLyXText(bv)->checkInsetHit(tmp_x, tmp_y);
558         if (!inset)
559                 return false;
560
561         // We still need to deal properly with the whole relative vs.
562         // absolute mouse co-ords thing in a realiable, sensible way
563         DispatchResult const res = inset->dispatch(cmd1);
564         bool const ret = res.dispatched();
565         updateLocal(bv, false);
566         return ret;
567 }
568
569
570 void InsetText::lfunMouseMotion(FuncRequest const & cmd)
571 {
572         FuncRequest cmd1 = cmd;
573         cmd1.x -= inset_x;
574         cmd1.y -= inset_y;
575
576         if (the_locking_inset) {
577                 the_locking_inset->dispatch(cmd1);
578                 return;
579         }
580
581         if (no_selection || (mouse_x == cmd.x && mouse_y == cmd.y))
582                 return;
583
584         BufferView * bv = cmd.view();
585         LyXCursor cur = text_.cursor;
586         text_.setCursorFromCoordinates (cmd.x, cmd.y + dim_.asc);
587         bv->x_target(text_.cursor.x());
588         if (cur == text_.cursor)
589                 return;
590         text_.setSelection();
591         updateLocal(bv, false);
592 }
593
594
595 DispatchResult
596 InsetText::priv_dispatch(FuncRequest const & cmd,
597                          idx_type & idx, pos_type & pos)
598 {
599         BufferView * bv = cmd.view();
600         setViewCache(bv);
601
602         switch (cmd.action) {
603         case LFUN_INSET_EDIT: {
604                 UpdatableInset::priv_dispatch(cmd, idx, pos);
605
606                 if (!bv->lockInset(this)) {
607                         lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
608                         return DispatchResult(true, true);
609                 }
610
611                 locked = true;
612                 the_locking_inset = 0;
613                 inset_pos = 0;
614                 inset_x = 0;
615                 inset_y = 0;
616                 inset_boundary = false;
617                 inset_par = -1;
618                 old_par = -1;
619
620
621                 if (cmd.argument.size()) {
622                         if (cmd.argument == "left")
623                                 text_.setCursorIntern(0, 0);
624                         else
625                                 text_.setCursor(paragraphs.size() - 1, paragraphs.back().size());
626                 } else {
627                         int tmp_y = (cmd.y < 0) ? 0 : cmd.y;
628                         // we put here -1 and not button as now the button in the
629                         // edit call should not be needed we will fix this in 1.3.x
630                         // cycle hopefully (Jug 20020509)
631                         // FIXME: GUII I've changed this to none: probably WRONG
632                         if (!checkAndActivateInset(bv, cmd.x, tmp_y, mouse_button::none)) {
633                                 text_.setCursorFromCoordinates(cmd.x, cmd.y + dim_.asc);
634                                 text_.cursor.x(text_.cursor.x());
635                                 bv->x_target(text_.cursor.x());
636                         }
637                 }
638
639                 text_.clearSelection();
640                 finishUndo();
641
642                 // If the inset is empty set the language of the current font to the
643                 // language to the surronding text (if different).
644                 if (paragraphs.begin()->empty() &&
645                     paragraphs.size() == 1 &&
646                     bv->getParentLanguage(this) != text_.current_font.language())
647                 {
648                         LyXFont font(LyXFont::ALL_IGNORE);
649                         font.setLanguage(bv->getParentLanguage(this));
650                         setFont(bv, font, false);
651                 }
652
653                 updateLocal(bv, false);
654                 // Tell the paragraph dialog that we've entered an insettext.
655                 bv->dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
656                 return DispatchResult(true, true);
657         }
658
659         case LFUN_MOUSE_PRESS:
660                 lfunMousePress(cmd);
661                 return DispatchResult(true, true);
662
663         case LFUN_MOUSE_MOTION:
664                 lfunMouseMotion(cmd);
665                 return DispatchResult(true, true);
666
667         case LFUN_MOUSE_RELEASE:
668                 return DispatchResult(lfunMouseRelease(cmd));
669
670         default:
671                 break;
672         }
673
674         bool was_empty = paragraphs.begin()->empty() && paragraphs.size() == 1;
675         no_selection = false;
676
677         DispatchResult result = UpdatableInset::priv_dispatch(cmd, idx, pos);
678         if (result.dispatched())
679                 return DispatchResult(true, true);
680
681         result = DispatchResult(true, true);
682         if (cmd.action == LFUN_UNKNOWN_ACTION && cmd.argument.empty())
683                 return DispatchResult(false, FINISHED);
684
685         if (the_locking_inset) {
686                 result = the_locking_inset->dispatch(cmd);
687
688                 if (result.dispatched()) {
689                         if (result.update()) {
690                                 result.update(false);
691                                 updateLocal(bv, false);
692                         }
693                         return result;
694                 }
695
696                 switch (result.val()) {
697                 case FINISHED_RIGHT:
698                         moveRightIntern(bv, false, false);
699                         result = DispatchResult(true, true);
700                         break;
701                 case FINISHED_UP:
702                         result = moveUp(bv);
703                         if (result.val() >= FINISHED) {
704                                 updateLocal(bv, false);
705                                 bv->unlockInset(this);
706                         }
707                         break;
708                 case FINISHED_DOWN:
709                         result = moveDown(bv);
710                         if (result.val() >= FINISHED) {
711                                 updateLocal(bv, false);
712                                 bv->unlockInset(this);
713                         }
714                         break;
715                 default:
716                         result = DispatchResult(true, true);
717                         break;
718                 }
719                 the_locking_inset = 0;
720                 updateLocal(bv, false);
721                 // make sure status gets reset immediately
722                 bv->owner()->clearMessage();
723                 return result;
724         }
725         bool updflag = false;
726
727         switch (cmd.action) {
728
729         // Normal chars
730         case LFUN_SELFINSERT:
731                 if (bv->buffer()->isReadonly()) {
732 //          setErrorMessage(N_("Document is read only"));
733                         break;
734                 }
735                 if (!cmd.argument.empty()) {
736                         /* Automatically delete the currently selected
737                          * text and replace it with what is being
738                          * typed in now. Depends on lyxrc settings
739                          * "auto_region_delete", which defaults to
740                          * true (on). */
741 #if 0
742                         // This should not be needed here and is also WRONG!
743                         recordUndo(bv, Undo::INSERT, text_.cursorPar());
744 #endif
745                         bv->switchKeyMap();
746
747                         if (lyxrc.auto_region_delete && text_.selection.set())
748                                 text_.cutSelection(false, false);
749                         text_.clearSelection();
750
751                         for (string::size_type i = 0; i < cmd.argument.length(); ++i)
752                                 bv->owner()->getIntl().getTransManager().
753                                         TranslateAndInsert(cmd.argument[i], &text_);
754                 }
755                 text_.selection.cursor = text_.cursor;
756                 updflag = true;
757                 result = DispatchResult(true);
758                 break;
759
760         // cursor movements that need special handling
761
762         case LFUN_RIGHT:
763                 result = moveRight(bv);
764                 finishUndo();
765                 break;
766         case LFUN_LEFT:
767                 finishUndo();
768                 result = moveLeft(bv);
769                 break;
770         case LFUN_DOWN:
771                 finishUndo();
772                 result = moveDown(bv);
773                 break;
774         case LFUN_UP:
775                 finishUndo();
776                 result = moveUp(bv);
777                 break;
778
779         case LFUN_PRIOR:
780                 if (crow() == text_.firstRow())
781                         result = DispatchResult(false, FINISHED_UP);
782                 else {
783                         text_.cursorPrevious();
784                         text_.clearSelection();
785                         result = DispatchResult(true);
786                 }
787                 break;
788
789         case LFUN_NEXT:
790                 if (crow() == text_.lastRow())
791                         result = DispatchResult(false, FINISHED_DOWN);
792                 else {
793                         text_.cursorNext();
794                         text_.clearSelection();
795                         result = DispatchResult(true);
796                 }
797                 break;
798
799         case LFUN_BACKSPACE:
800                 if (text_.selection.set())
801                         text_.cutSelection(true, false);
802                 else
803                         text_.backspace();
804                 updflag = true;
805                 break;
806
807         case LFUN_DELETE:
808                 if (text_.selection.set())
809                         text_.cutSelection(true, false);
810                 else
811                         text_.Delete();
812                 updflag = true;
813                 break;
814
815         case LFUN_PASTE:
816                 if (!autoBreakRows_) {
817                         if (CutAndPaste::nrOfParagraphs() > 1) {
818 #ifdef WITH_WARNINGS
819 #warning FIXME horrendously bad UI
820 #endif
821                                 Alert::error(_("Paste failed"), _("Cannot include more than one paragraph."));
822                         }
823                 } else {
824                         replaceSelection(bv->getLyXText());
825                         size_t sel_index = 0;
826                         string const & arg = cmd.argument;
827                         if (isStrUnsignedInt(arg)) {
828 #warning FIXME Check if the arg is in the domain of available selections.
829                                 sel_index = strToUnsignedInt(arg);
830                         }
831                         text_.pasteSelection(sel_index);
832                         // bug 393
833                         text_.clearSelection();
834                         updflag = true;
835                 }
836                 break;
837
838         case LFUN_BREAKPARAGRAPH:
839                 if (!autoBreakRows_) {
840                         result = DispatchResult(true, true);
841                 } else {
842                         replaceSelection(bv->getLyXText());
843                         text_.breakParagraph(paragraphs, 0);
844                         updflag = true;
845                 }
846                 break;
847
848         case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
849                 if (!autoBreakRows_) {
850                         result = DispatchResult(true, true);
851                 } else {
852                         replaceSelection(bv->getLyXText());
853                         text_.breakParagraph(paragraphs, 1);
854                         updflag = true;
855                 }
856                 break;
857
858         case LFUN_BREAKLINE: {
859                 if (!autoBreakRows_) {
860                         result = DispatchResult(true, true);
861                 } else {
862                         replaceSelection(bv->getLyXText());
863                         auto_ptr<InsetNewline> ins(new InsetNewline);
864                         text_.insertInset(ins.release());
865                         updflag = true;
866                 }
867                 break;
868         }
869
870         case LFUN_LAYOUT:
871                 // do not set layouts on non breakable textinsets
872                 if (autoBreakRows_) {
873                         string cur_layout = cpar()->layout()->name();
874
875                         // Derive layout number from given argument (string)
876                         // and current buffer's textclass (number).
877                         LyXTextClass const & tclass =
878                                 bv->buffer()->params().getLyXTextClass();
879                         string layout = cmd.argument;
880                         bool hasLayout = tclass.hasLayout(layout);
881
882                         // If the entry is obsolete, use the new one instead.
883                         if (hasLayout) {
884                                 string const & obs = tclass[layout]->obsoleted_by();
885                                 if (!obs.empty())
886                                         layout = obs;
887                         }
888
889                         // see if we found the layout number:
890                         if (!hasLayout) {
891                                 FuncRequest lf(LFUN_MESSAGE, N_("Layout ") + cmd.argument + N_(" not known"));
892                                 bv->owner()->dispatch(lf);
893                                 break;
894                         }
895
896                         if (cur_layout != layout) {
897                                 cur_layout = layout;
898                                 text_.setLayout(layout);
899                                 bv->owner()->setLayout(cpar()->layout()->name());
900                                 updflag = true;
901                         }
902                 } else {
903                         // reset the layout box
904                         bv->owner()->setLayout(cpar()->layout()->name());
905                 }
906                 break;
907
908         default:
909                 if (!bv->dispatch(cmd))
910                         result = DispatchResult(false);
911                 break;
912         }
913
914         updateLocal(bv, updflag);
915
916         /// If the action has deleted all text in the inset, we need to change the
917         // language to the language of the surronding text.
918         if (!was_empty && paragraphs.begin()->empty() &&
919             paragraphs.size() == 1) {
920                 LyXFont font(LyXFont::ALL_IGNORE);
921                 font.setLanguage(bv->getParentLanguage(this));
922                 setFont(bv, font, false);
923         }
924
925         if (result.val() >= FINISHED)
926                 bv->unlockInset(this);
927
928         if (result.val() == NONE)
929                 result = DispatchResult(true, true);
930         return result;
931 }
932
933
934 int InsetText::latex(Buffer const & buf, ostream & os,
935                      LatexRunParams const & runparams) const
936 {
937         TexRow texrow;
938         latexParagraphs(buf, paragraphs, os, texrow, runparams);
939         return texrow.rows();
940 }
941
942
943 int InsetText::ascii(Buffer const & buf, ostream & os,
944                      LatexRunParams const & runparams) const
945 {
946         ParagraphList::const_iterator beg = paragraphs.begin();
947         ParagraphList::const_iterator end = paragraphs.end();
948         ParagraphList::const_iterator it = beg;
949         for (; it != end; ++it)
950                 asciiParagraph(buf, *it, os, runparams, it == beg);
951
952         //FIXME: Give the total numbers of lines
953         return 0;
954 }
955
956
957 int InsetText::linuxdoc(Buffer const & buf, ostream & os,
958                         LatexRunParams const & runparams) const
959 {
960         linuxdocParagraphs(buf, paragraphs, os, runparams);
961         return 0;
962 }
963
964
965 int InsetText::docbook(Buffer const & buf, ostream & os,
966                        LatexRunParams const & runparams) const
967 {
968         docbookParagraphs(buf, paragraphs, os, runparams);
969         return 0;
970 }
971
972
973 void InsetText::validate(LaTeXFeatures & features) const
974 {
975         for_each(paragraphs.begin(), paragraphs.end(),
976                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
977 }
978
979
980 void InsetText::getCursor(BufferView & bv, int & x, int & y) const
981 {
982         if (the_locking_inset) {
983                 the_locking_inset->getCursor(bv, x, y);
984                 return;
985         }
986         x = cx();
987         y = cy() + InsetText::y();
988 }
989
990
991 void InsetText::getCursorPos(BufferView * bv, int & x, int & y) const
992 {
993         if (the_locking_inset) {
994                 the_locking_inset->getCursorPos(bv, x, y);
995                 return;
996         }
997         x = cx() - top_x - TEXT_TO_INSET_OFFSET;
998         y = cy() - TEXT_TO_INSET_OFFSET;
999 }
1000
1001
1002 int InsetText::insetInInsetY() const
1003 {
1004         if (!the_locking_inset)
1005                 return 0;
1006
1007         return inset_y + the_locking_inset->insetInInsetY();
1008 }
1009
1010
1011 void InsetText::fitInsetCursor(BufferView * bv) const
1012 {
1013         if (the_locking_inset) {
1014                 the_locking_inset->fitInsetCursor(bv);
1015                 return;
1016         }
1017
1018         LyXFont const font = text_.getFont(cpar(), cpos());
1019
1020         int const asc = font_metrics::maxAscent(font);
1021         int const desc = font_metrics::maxDescent(font);
1022
1023         bv->fitLockedInsetCursor(cx(), cy(), asc, desc);
1024 }
1025
1026
1027 DispatchResult InsetText::moveRight(BufferView * bv)
1028 {
1029         if (text_.cursorPar()->isRightToLeftPar(bv->buffer()->params()))
1030                 return moveLeftIntern(bv, false, true, false);
1031         else
1032                 return moveRightIntern(bv, true, true, false);
1033 }
1034
1035
1036 DispatchResult InsetText::moveLeft(BufferView * bv)
1037 {
1038         if (text_.cursorPar()->isRightToLeftPar(bv->buffer()->params()))
1039                 return moveRightIntern(bv, true, true, false);
1040         else
1041                 return moveLeftIntern(bv, false, true, false);
1042 }
1043
1044
1045 DispatchResult
1046 InsetText::moveRightIntern(BufferView * bv, bool front,
1047                            bool activate_inset, bool selecting)
1048 {
1049         ParagraphList::iterator c_par = cpar();
1050
1051         if (boost::next(c_par) == paragraphs.end() && cpos() >= c_par->size())
1052                 return DispatchResult(false, FINISHED_RIGHT);
1053         if (activate_inset && checkAndActivateInset(bv, front))
1054                 return DispatchResult(true, true);
1055         text_.cursorRight(bv);
1056         if (!selecting)
1057                 text_.clearSelection();
1058         return DispatchResult(true);
1059 }
1060
1061
1062 DispatchResult
1063 InsetText::moveLeftIntern(BufferView * bv, bool front,
1064                           bool activate_inset, bool selecting)
1065 {
1066         if (cpar() == paragraphs.begin() && cpos() <= 0)
1067                 return DispatchResult(false, FINISHED);
1068         text_.cursorLeft(bv);
1069         if (!selecting)
1070                 text_.clearSelection();
1071         if (activate_inset && checkAndActivateInset(bv, front))
1072                 return DispatchResult(true, true);
1073         return DispatchResult(true);
1074 }
1075
1076
1077 DispatchResult InsetText::moveUp(BufferView * bv)
1078 {
1079         if (crow() == text_.firstRow())
1080                 return DispatchResult(false, FINISHED_UP);
1081         text_.cursorUp(bv);
1082         text_.clearSelection();
1083         return DispatchResult(true);
1084 }
1085
1086
1087 DispatchResult InsetText::moveDown(BufferView * bv)
1088 {
1089         if (crow() == text_.lastRow())
1090                 return DispatchResult(false, FINISHED_DOWN);
1091         text_.cursorDown(bv);
1092         text_.clearSelection();
1093         return DispatchResult(true);
1094 }
1095
1096
1097 bool InsetText::insertInset(BufferView * bv, InsetOld * inset)
1098 {
1099         if (the_locking_inset) {
1100                 if (the_locking_inset->insetAllowed(inset))
1101                         return the_locking_inset->insertInset(bv, inset);
1102                 return false;
1103         }
1104         inset->setOwner(this);
1105         text_.insertInset(inset);
1106         bv->fitCursor();
1107         updateLocal(bv, true);
1108         return true;
1109 }
1110
1111
1112 bool InsetText::insetAllowed(InsetOld::Code code) const
1113 {
1114         // in_insetAllowed is a really gross hack,
1115         // to allow us to call the owner's insetAllowed
1116         // without stack overflow, which can happen
1117         // when the owner uses InsetCollapsable::insetAllowed()
1118         bool ret = true;
1119         if (in_insetAllowed)
1120                 return ret;
1121         in_insetAllowed = true;
1122         if (the_locking_inset)
1123                 ret = the_locking_inset->insetAllowed(code);
1124         else if (owner())
1125                 ret = owner()->insetAllowed(code);
1126         in_insetAllowed = false;
1127         return ret;
1128 }
1129
1130
1131 UpdatableInset * InsetText::getLockingInset() const
1132 {
1133         return the_locking_inset ? the_locking_inset->getLockingInset() :
1134                 const_cast<InsetText *>(this);
1135 }
1136
1137
1138 UpdatableInset * InsetText::getFirstLockingInsetOfType(InsetOld::Code c)
1139 {
1140         if (c == lyxCode())
1141                 return this;
1142         if (the_locking_inset)
1143                 return the_locking_inset->getFirstLockingInsetOfType(c);
1144         return 0;
1145 }
1146
1147
1148 bool InsetText::showInsetDialog(BufferView * bv) const
1149 {
1150         if (the_locking_inset)
1151                 return the_locking_inset->showInsetDialog(bv);
1152         return false;
1153 }
1154
1155
1156 void InsetText::getLabelList(Buffer const & buffer,
1157                              std::vector<string> & list) const
1158 {
1159         ParagraphList::const_iterator pit = paragraphs.begin();
1160         ParagraphList::const_iterator pend = paragraphs.end();
1161         for (; pit != pend; ++pit) {
1162                 InsetList::const_iterator beg = pit->insetlist.begin();
1163                 InsetList::const_iterator end = pit->insetlist.end();
1164                 for (; beg != end; ++beg)
1165                         beg->inset->getLabelList(buffer, list);
1166         }
1167 }
1168
1169
1170 void InsetText::setFont(BufferView * bv, LyXFont const & font, bool toggleall,
1171                         bool selectall)
1172 {
1173         if (the_locking_inset) {
1174                 the_locking_inset->setFont(bv, font, toggleall, selectall);
1175                 return;
1176         }
1177
1178         if ((paragraphs.size() == 1 && paragraphs.begin()->empty())
1179             || cpar()->empty()) {
1180                 text_.setFont(font, toggleall);
1181                 return;
1182         }
1183
1184
1185         if (text_.selection.set())
1186                 text_.recUndo(text_.cursor.par());
1187
1188         if (selectall) {
1189                 text_.cursorTop();
1190                 text_.selection.cursor = text_.cursor;
1191                 text_.cursorBottom();
1192                 text_.setSelection();
1193         }
1194
1195         text_.toggleFree(font, toggleall);
1196
1197         if (selectall)
1198                 text_.clearSelection();
1199
1200         bv->fitCursor();
1201         updateLocal(bv, true);
1202 }
1203
1204
1205 bool InsetText::checkAndActivateInset(BufferView * bv, bool front)
1206 {
1207         if (cpos() == cpar()->size())
1208                 return false;
1209         InsetOld * inset = cpar()->getInset(cpos());
1210         if (!isHighlyEditableInset(inset))
1211                 return false;
1212         FuncRequest cmd(bv, LFUN_INSET_EDIT, front ? "left" : "right");
1213         inset->dispatch(cmd);
1214         if (!the_locking_inset)
1215                 return false;
1216         updateLocal(bv, false);
1217         return true;
1218 }
1219
1220
1221 bool InsetText::checkAndActivateInset(BufferView * bv, int x, int y,
1222                                       mouse_button::state button)
1223 {
1224         int dummyx = x;
1225         int dummyy = y + dim_.asc;
1226         InsetOld * inset = getLyXText(bv)->checkInsetHit(dummyx, dummyy);
1227         // we only do the edit() call if the inset was hit by the mouse
1228         // or if it is a highly editable inset. So we should call this
1229         // function from our own edit with button < 0.
1230         // FIXME: GUII jbl. I've changed this to ::none for now which is probably
1231         // WRONG
1232         if (button == mouse_button::none && !isHighlyEditableInset(inset))
1233                 return false;
1234
1235         if (!inset)
1236                 return false;
1237         if (x < 0)
1238                 x = dim_.wid;
1239         if (y < 0)
1240                 y = dim_.des;
1241         inset_x = cx() - top_x;
1242         inset_y = cy();
1243         FuncRequest cmd(bv, LFUN_INSET_EDIT, x - inset_x, y - inset_y, button);
1244         inset->dispatch(cmd);
1245         if (!the_locking_inset)
1246                 return false;
1247         updateLocal(bv, false);
1248         return true;
1249 }
1250
1251
1252 void InsetText::markNew(bool track_changes)
1253 {
1254         ParagraphList::iterator pit = paragraphs.begin();
1255         ParagraphList::iterator end = paragraphs.end();
1256         for (; pit != end; ++pit) {
1257                 if (track_changes) {
1258                         pit->trackChanges();
1259                 } else {
1260                         // no-op when not tracking
1261                         pit->cleanChanges();
1262                 }
1263         }
1264 }
1265
1266
1267 void InsetText::setText(string const & data, LyXFont const & font)
1268 {
1269         clear(false);
1270         for (unsigned int i = 0; i < data.length(); ++i)
1271                 paragraphs.begin()->insertChar(i, data[i], font);
1272 }
1273
1274
1275 void InsetText::setAutoBreakRows(bool flag)
1276 {
1277         if (flag != autoBreakRows_) {
1278                 autoBreakRows_ = flag;
1279                 if (!flag)
1280                         removeNewlines();
1281         }
1282 }
1283
1284
1285 void InsetText::setDrawFrame(DrawFrame how)
1286 {
1287         drawFrame_ = how;
1288 }
1289
1290
1291 LColor_color InsetText::frameColor() const
1292 {
1293         return LColor::color(frame_color_);
1294 }
1295
1296
1297 void InsetText::setFrameColor(LColor_color col)
1298 {
1299         frame_color_ = col;
1300 }
1301
1302
1303 int InsetText::cx() const
1304 {
1305         int x = text_.cursor.x() + top_x + TEXT_TO_INSET_OFFSET;
1306         if (the_locking_inset) {
1307                 LyXFont font = text_.getFont(text_.cursorPar(), text_.cursor.pos());
1308                 if (font.isVisibleRightToLeft())
1309                         x -= the_locking_inset->width();
1310         }
1311         return x;
1312 }
1313
1314
1315 int InsetText::cy() const
1316 {
1317         return text_.cursor.y() - dim_.asc + TEXT_TO_INSET_OFFSET;
1318 }
1319
1320
1321 pos_type InsetText::cpos() const
1322 {
1323         return text_.cursor.pos();
1324 }
1325
1326
1327 ParagraphList::iterator InsetText::cpar() const
1328 {
1329         return text_.cursorPar();
1330 }
1331
1332
1333 bool InsetText::cboundary() const
1334 {
1335         return text_.cursor.boundary();
1336 }
1337
1338
1339 RowList::iterator InsetText::crow() const
1340 {
1341         return cpar()->getRow(cpos());
1342 }
1343
1344
1345 LyXText * InsetText::getLyXText(BufferView const * bv,
1346                                 bool const recursive) const
1347 {
1348         setViewCache(bv);
1349         if (recursive && the_locking_inset)
1350                 return the_locking_inset->getLyXText(bv, true);
1351         return &text_;
1352 }
1353
1354
1355 void InsetText::setViewCache(BufferView const * bv) const
1356 {
1357         if (bv) {
1358                 if (bv != text_.bv_owner) {
1359                         //lyxerr << "setting view cache from "
1360                         //      << text_.bv_owner << " to " << bv << "\n";
1361                         text_.init(const_cast<BufferView *>(bv));
1362                 }
1363                 text_.bv_owner = const_cast<BufferView *>(bv);
1364         }
1365 }
1366
1367
1368 void InsetText::deleteLyXText(BufferView * bv, bool recursive) const
1369 {
1370         if (recursive) {
1371                 /// then remove all LyXText in text-insets
1372                 for_each(const_cast<ParagraphList&>(paragraphs).begin(),
1373                          const_cast<ParagraphList&>(paragraphs).end(),
1374                          boost::bind(&Paragraph::deleteInsetsLyXText, _1, bv));
1375         }
1376 }
1377
1378
1379 void InsetText::removeNewlines()
1380 {
1381         ParagraphList::iterator it = paragraphs.begin();
1382         ParagraphList::iterator end = paragraphs.end();
1383         for (; it != end; ++it)
1384                 for (int i = 0; i < it->size(); ++i)
1385                         if (it->isNewline(i))
1386                                 it->erase(i);
1387 }
1388
1389
1390 int InsetText::scroll(bool recursive) const
1391 {
1392         int sx = UpdatableInset::scroll(false);
1393
1394         if (recursive && the_locking_inset)
1395                 sx += the_locking_inset->scroll(recursive);
1396
1397         return sx;
1398 }
1399
1400
1401 void InsetText::clearSelection(BufferView *)
1402 {
1403         text_.clearSelection();
1404 }
1405
1406
1407 void InsetText::clearInset(BufferView * bv, int start_x, int baseline) const
1408 {
1409         Painter & pain = bv->painter();
1410         int w = dim_.wid;
1411         int h = dim_.asc + dim_.des;
1412         int ty = baseline - dim_.asc;
1413
1414         if (ty < 0) {
1415                 h += ty;
1416                 ty = 0;
1417         }
1418         if (ty + h > pain.paperHeight())
1419                 h = pain.paperHeight();
1420         if (top_x + w > pain.paperWidth())
1421                 w = pain.paperWidth();
1422         pain.fillRectangle(start_x + 1, ty + 1, w - 3, h - 1, backgroundColor());
1423 }
1424
1425
1426 ParagraphList * InsetText::getParagraphs(int i) const
1427 {
1428         return (i == 0) ? const_cast<ParagraphList*>(&paragraphs) : 0;
1429 }
1430
1431
1432 LyXText * InsetText::getText(int i) const
1433 {
1434         return (i == 0) ? const_cast<LyXText*>(&text_) : 0;
1435 }
1436
1437
1438 LyXCursor const & InsetText::cursor(BufferView * bv) const
1439 {
1440         if (the_locking_inset)
1441                 return the_locking_inset->cursor(bv);
1442         return getLyXText(bv)->cursor;
1443 }
1444
1445
1446 WordLangTuple const
1447 InsetText::selectNextWordToSpellcheck(BufferView * bv, float & value) const
1448 {
1449         WordLangTuple word;
1450         if (the_locking_inset) {
1451                 word = the_locking_inset->selectNextWordToSpellcheck(bv, value);
1452                 if (!word.word().empty()) {
1453                         value += cy();
1454                         return word;
1455                 }
1456                 // we have to go on checking so move cursor to the next char
1457                 text_.cursor.pos(text_.cursor.pos() + 1);
1458         }
1459         word = text_.selectNextWordToSpellcheck(value);
1460         if (word.word().empty())
1461                 bv->unlockInset(const_cast<InsetText *>(this));
1462         else
1463                 value = cy();
1464         return word;
1465 }
1466
1467
1468 void InsetText::selectSelectedWord(BufferView * bv)
1469 {
1470         if (the_locking_inset) {
1471                 the_locking_inset->selectSelectedWord(bv);
1472                 return;
1473         }
1474         getLyXText(bv)->selectSelectedWord();
1475         updateLocal(bv, false);
1476 }
1477
1478
1479 bool InsetText::nextChange(BufferView * bv, lyx::pos_type & length)
1480 {
1481         if (the_locking_inset) {
1482                 if (the_locking_inset->nextChange(bv, length))
1483                         return true;
1484                 text_.cursorRight(true);
1485         }
1486         lyx::find::SearchResult result =
1487                 lyx::find::findNextChange(bv, &text_, length);
1488
1489         if (result == lyx::find::SR_FOUND) {
1490                 LyXCursor cur = text_.cursor;
1491                 bv->unlockInset(bv->theLockingInset());
1492                 if (bv->lockInset(this))
1493                         locked = true;
1494                 text_.cursor = cur;
1495                 text_.setSelectionRange(length);
1496                 updateLocal(bv, false);
1497         }
1498         return result != lyx::find::SR_NOT_FOUND;
1499 }
1500
1501
1502 bool InsetText::searchForward(BufferView * bv, string const & str,
1503                               bool cs, bool mw)
1504 {
1505         if (the_locking_inset) {
1506                 if (the_locking_inset->searchForward(bv, str, cs, mw))
1507                         return true;
1508                 text_.cursorRight(true);
1509         }
1510         lyx::find::SearchResult result =
1511                 lyx::find::find(bv, &text_, str, true, cs, mw);
1512
1513         if (result == lyx::find::SR_FOUND) {
1514                 LyXCursor cur = text_.cursor;
1515                 bv->unlockInset(bv->theLockingInset());
1516                 if (bv->lockInset(this))
1517                         locked = true;
1518                 text_.cursor = cur;
1519                 text_.setSelectionRange(str.length());
1520                 updateLocal(bv, false);
1521         }
1522         return result != lyx::find::SR_NOT_FOUND;
1523 }
1524
1525
1526 bool InsetText::searchBackward(BufferView * bv, string const & str,
1527                                bool cs, bool mw)
1528 {
1529         if (the_locking_inset) {
1530                 if (the_locking_inset->searchBackward(bv, str, cs, mw))
1531                         return true;
1532         }
1533         if (!locked) {
1534                 text_.setCursor(paragraphs.size() - 1, paragraphs.back().size());
1535         }
1536         lyx::find::SearchResult result =
1537                 lyx::find::find(bv, &text_, str, false, cs, mw);
1538
1539         if (result == lyx::find::SR_FOUND) {
1540                 LyXCursor cur = text_.cursor;
1541                 bv->unlockInset(bv->theLockingInset());
1542                 if (bv->lockInset(this))
1543                         locked = true;
1544                 text_.cursor = cur;
1545                 text_.setSelectionRange(str.length());
1546                 updateLocal(bv, false);
1547         }
1548         return result != lyx::find::SR_NOT_FOUND;
1549 }
1550
1551
1552 bool InsetText::checkInsertChar(LyXFont & font)
1553 {
1554         return owner() ? owner()->checkInsertChar(font) : true;
1555 }
1556
1557
1558 void InsetText::collapseParagraphs(BufferView * bv)
1559 {
1560         while (paragraphs.size() > 1) {
1561                 ParagraphList::iterator const first = paragraphs.begin();
1562                 ParagraphList::iterator second = first;
1563                 advance(second, 1);
1564                 size_t const first_par_size = first->size();
1565
1566                 if (!first->empty() &&
1567                     !second->empty() &&
1568                     !first->isSeparator(first_par_size - 1)) {
1569                         first->insertChar(first_par_size, ' ');
1570                 }
1571
1572 #warning probably broken
1573                 if (text_.selection.set()) {
1574                         if (text_.selection.start.par() == 1) {
1575                                 text_.selection.start.par(1);
1576                                 text_.selection.start.pos(text_.selection.start.pos() + first_par_size);
1577                         }
1578                         if (text_.selection.end.par() == 2) {
1579                                 text_.selection.end.par(1);
1580                                 text_.selection.end.pos(text_.selection.end.pos() + first_par_size);
1581                         }
1582                 }
1583
1584                 mergeParagraph(bv->buffer()->params(), paragraphs, first);
1585         }
1586 }
1587
1588
1589 void InsetText::getDrawFont(LyXFont & font) const
1590 {
1591         if (!owner())
1592                 return;
1593         owner()->getDrawFont(font);
1594 }
1595
1596
1597 void InsetText::appendParagraphs(Buffer * buffer, ParagraphList & plist)
1598 {
1599 #warning FIXME Check if Changes stuff needs changing here. (Lgb)
1600 // And it probably does. You have to take a look at this John. (Lgb)
1601 #warning John, have a look here. (Lgb)
1602         ParagraphList::iterator pit = plist.begin();
1603         ParagraphList::iterator ins = paragraphs.insert(paragraphs.end(), *pit);
1604         ++pit;
1605         mergeParagraph(buffer->params(), paragraphs, boost::prior(ins));
1606
1607         ParagraphList::iterator pend = plist.end();
1608         for (; pit != pend; ++pit)
1609                 paragraphs.push_back(*pit);
1610 }
1611
1612
1613 void InsetText::addPreview(PreviewLoader & loader) const
1614 {
1615         ParagraphList::const_iterator pit = paragraphs.begin();
1616         ParagraphList::const_iterator pend = paragraphs.end();
1617
1618         for (; pit != pend; ++pit) {
1619                 InsetList::const_iterator it  = pit->insetlist.begin();
1620                 InsetList::const_iterator end = pit->insetlist.end();
1621                 for (; it != end; ++it)
1622                         it->inset->addPreview(loader);
1623         }
1624 }