]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.C
unify API for insets export
[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                 text_.cursor.x_fix(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                 return the_locking_inset->dispatch(cmd1) >= DispatchResult(DISPATCHED);
551
552         int tmp_x = cmd.x;
553         int tmp_y = cmd.y + dim_.asc - bv->top_y();
554         InsetOld * inset = getLyXText(bv)->checkInsetHit(tmp_x, tmp_y);
555         if (!inset)
556                 return false;
557
558         // We still need to deal properly with the whole relative vs.
559         // absolute mouse co-ords thing in a realiable, sensible way
560         bool ret = inset->dispatch(cmd1) >= DispatchResult(DISPATCHED);
561         updateLocal(bv, false);
562         return ret;
563 }
564
565
566 void InsetText::lfunMouseMotion(FuncRequest const & cmd)
567 {
568         FuncRequest cmd1 = cmd;
569         cmd1.x -= inset_x;
570         cmd1.y -= inset_y;
571
572         if (the_locking_inset) {
573                 the_locking_inset->dispatch(cmd1);
574                 return;
575         }
576
577         if (no_selection || (mouse_x == cmd.x && mouse_y == cmd.y))
578                 return;
579
580         BufferView * bv = cmd.view();
581         LyXCursor cur = text_.cursor;
582         text_.setCursorFromCoordinates (cmd.x, cmd.y + dim_.asc);
583         text_.cursor.x_fix(text_.cursor.x());
584         if (cur == text_.cursor)
585                 return;
586         text_.setSelection();
587         updateLocal(bv, false);
588 }
589
590
591 DispatchResult
592 InsetText::priv_dispatch(FuncRequest const & cmd,
593                          idx_type & idx, pos_type & pos)
594 {
595         BufferView * bv = cmd.view();
596         setViewCache(bv);
597
598         switch (cmd.action) {
599         case LFUN_INSET_EDIT: {
600                 UpdatableInset::priv_dispatch(cmd, idx, pos);
601
602                 if (!bv->lockInset(this)) {
603                         lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
604                         return DispatchResult(DISPATCHED);
605                 }
606
607                 locked = true;
608                 the_locking_inset = 0;
609                 inset_pos = 0;
610                 inset_x = 0;
611                 inset_y = 0;
612                 inset_boundary = false;
613                 inset_par = -1;
614                 old_par = -1;
615
616
617                 if (cmd.argument.size()) {
618                         if (cmd.argument == "left")
619                                 text_.setCursorIntern(0, 0);
620                         else
621                                 text_.setCursor(paragraphs.size() - 1, paragraphs.back().size());
622                 } else {
623                         int tmp_y = (cmd.y < 0) ? 0 : cmd.y;
624                         // we put here -1 and not button as now the button in the
625                         // edit call should not be needed we will fix this in 1.3.x
626                         // cycle hopefully (Jug 20020509)
627                         // FIXME: GUII I've changed this to none: probably WRONG
628                         if (!checkAndActivateInset(bv, cmd.x, tmp_y, mouse_button::none)) {
629                                 text_.setCursorFromCoordinates(cmd.x, cmd.y + dim_.asc);
630                                 text_.cursor.x(text_.cursor.x());
631                                 text_.cursor.x_fix(text_.cursor.x());
632                         }
633                 }
634
635                 text_.clearSelection();
636                 finishUndo();
637
638                 // If the inset is empty set the language of the current font to the
639                 // language to the surronding text (if different).
640                 if (paragraphs.begin()->empty() &&
641                     paragraphs.size() == 1 &&
642                     bv->getParentLanguage(this) != text_.current_font.language())
643                 {
644                         LyXFont font(LyXFont::ALL_IGNORE);
645                         font.setLanguage(bv->getParentLanguage(this));
646                         setFont(bv, font, false);
647                 }
648
649                 updateLocal(bv, false);
650                 // Tell the paragraph dialog that we've entered an insettext.
651                 bv->dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
652                 return DispatchResult(DISPATCHED);
653         }
654
655         case LFUN_MOUSE_PRESS:
656                 lfunMousePress(cmd);
657                 return DispatchResult(DISPATCHED);
658
659         case LFUN_MOUSE_MOTION:
660                 lfunMouseMotion(cmd);
661                 return DispatchResult(DISPATCHED);
662
663         case LFUN_MOUSE_RELEASE:
664                 return lfunMouseRelease(cmd) ? DispatchResult(DISPATCHED) : DispatchResult(UNDISPATCHED);
665
666         default:
667                 break;
668         }
669
670         bool was_empty = paragraphs.begin()->empty() && paragraphs.size() == 1;
671         no_selection = false;
672
673         DispatchResult result = UpdatableInset::priv_dispatch(cmd, idx, pos);
674         if (result != DispatchResult(UNDISPATCHED))
675                 return DispatchResult(DISPATCHED);
676
677         result = DispatchResult(DISPATCHED);
678         if (cmd.action < 0 && cmd.argument.empty())
679                 return DispatchResult(FINISHED);
680
681         if (the_locking_inset) {
682                 result = the_locking_inset->dispatch(cmd);
683                 if (result == DispatchResult(DISPATCHED_NOUPDATE))
684                         return result;
685                 if (result == DispatchResult(DISPATCHED)) {
686                         updateLocal(bv, false);
687                         return result;
688                 }
689                 if (result >= DispatchResult(FINISHED)) {
690                         switch (result.val()) {
691                         case FINISHED_RIGHT:
692                                 moveRightIntern(bv, false, false);
693                                 result = DispatchResult(DISPATCHED);
694                                 break;
695                         case FINISHED_UP:
696                                 result = moveUp(bv);
697                                 if (result >= DispatchResult(FINISHED)) {
698                                         updateLocal(bv, false);
699                                         bv->unlockInset(this);
700                                 }
701                                 break;
702                         case FINISHED_DOWN:
703                                 result = moveDown(bv);
704                                 if (result >= DispatchResult(FINISHED)) {
705                                         updateLocal(bv, false);
706                                         bv->unlockInset(this);
707                                 }
708                                 break;
709                         default:
710                                 result = DispatchResult(DISPATCHED);
711                                 break;
712                         }
713                         the_locking_inset = 0;
714                         updateLocal(bv, false);
715                         // make sure status gets reset immediately
716                         bv->owner()->clearMessage();
717                         return result;
718                 }
719         }
720         bool updflag = false;
721
722         switch (cmd.action) {
723
724         // Normal chars
725         case LFUN_SELFINSERT:
726                 if (bv->buffer()->isReadonly()) {
727 //          setErrorMessage(N_("Document is read only"));
728                         break;
729                 }
730                 if (!cmd.argument.empty()) {
731                         /* Automatically delete the currently selected
732                          * text and replace it with what is being
733                          * typed in now. Depends on lyxrc settings
734                          * "auto_region_delete", which defaults to
735                          * true (on). */
736 #if 0
737                         // This should not be needed here and is also WRONG!
738                         recordUndo(bv, Undo::INSERT, text_.cursorPar());
739 #endif
740                         bv->switchKeyMap();
741
742                         if (lyxrc.auto_region_delete && text_.selection.set())
743                                 text_.cutSelection(false, false);
744                         text_.clearSelection();
745
746                         for (string::size_type i = 0; i < cmd.argument.length(); ++i)
747                                 bv->owner()->getIntl().getTransManager().
748                                         TranslateAndInsert(cmd.argument[i], &text_);
749                 }
750                 text_.selection.cursor = text_.cursor;
751                 updflag = true;
752                 result = DispatchResult(DISPATCHED_NOUPDATE);
753                 break;
754
755         // cursor movements that need special handling
756
757         case LFUN_RIGHT:
758                 result = moveRight(bv);
759                 finishUndo();
760                 break;
761         case LFUN_LEFT:
762                 finishUndo();
763                 result = moveLeft(bv);
764                 break;
765         case LFUN_DOWN:
766                 finishUndo();
767                 result = moveDown(bv);
768                 break;
769         case LFUN_UP:
770                 finishUndo();
771                 result = moveUp(bv);
772                 break;
773
774         case LFUN_PRIOR:
775                 if (crow() == text_.firstRow())
776                         result = DispatchResult(FINISHED_UP);
777                 else {
778                         text_.cursorPrevious();
779                         text_.clearSelection();
780                         result = DispatchResult(DISPATCHED_NOUPDATE);
781                 }
782                 break;
783
784         case LFUN_NEXT:
785                 if (crow() == text_.lastRow())
786                         result = DispatchResult(FINISHED_DOWN);
787                 else {
788                         text_.cursorNext();
789                         text_.clearSelection();
790                         result = DispatchResult(DISPATCHED_NOUPDATE);
791                 }
792                 break;
793
794         case LFUN_BACKSPACE:
795                 if (text_.selection.set())
796                         text_.cutSelection(true, false);
797                 else
798                         text_.backspace();
799                 updflag = true;
800                 break;
801
802         case LFUN_DELETE:
803                 if (text_.selection.set())
804                         text_.cutSelection(true, false);
805                 else
806                         text_.Delete();
807                 updflag = true;
808                 break;
809
810         case LFUN_PASTE:
811                 if (!autoBreakRows_) {
812                         if (CutAndPaste::nrOfParagraphs() > 1) {
813 #ifdef WITH_WARNINGS
814 #warning FIXME horrendously bad UI
815 #endif
816                                 Alert::error(_("Paste failed"), _("Cannot include more than one paragraph."));
817                         }
818                 } else {
819                         replaceSelection(bv->getLyXText());
820                         size_t sel_index = 0;
821                         string const & arg = cmd.argument;
822                         if (isStrUnsignedInt(arg)) {
823 #warning FIXME Check if the arg is in the domain of available selections.
824                                 sel_index = strToUnsignedInt(arg);
825                         }
826                         text_.pasteSelection(sel_index);
827                         // bug 393
828                         text_.clearSelection();
829                         updflag = true;
830                 }
831                 break;
832
833         case LFUN_BREAKPARAGRAPH:
834                 if (!autoBreakRows_) {
835                         result = DispatchResult(DISPATCHED);
836                 } else {
837                         replaceSelection(bv->getLyXText());
838                         text_.breakParagraph(paragraphs, 0);
839                         updflag = true;
840                 }
841                 break;
842
843         case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
844                 if (!autoBreakRows_) {
845                         result = DispatchResult(DISPATCHED);
846                 } else {
847                         replaceSelection(bv->getLyXText());
848                         text_.breakParagraph(paragraphs, 1);
849                         updflag = true;
850                 }
851                 break;
852
853         case LFUN_BREAKLINE: {
854                 if (!autoBreakRows_) {
855                         result = DispatchResult(DISPATCHED);
856                 } else {
857                         replaceSelection(bv->getLyXText());
858                         text_.insertInset(new InsetNewline);
859                         updflag = true;
860                 }
861                 break;
862         }
863
864         case LFUN_LAYOUT:
865                 // do not set layouts on non breakable textinsets
866                 if (autoBreakRows_) {
867                         string cur_layout = cpar()->layout()->name();
868
869                         // Derive layout number from given argument (string)
870                         // and current buffer's textclass (number).
871                         LyXTextClass const & tclass =
872                                 bv->buffer()->params().getLyXTextClass();
873                         string layout = cmd.argument;
874                         bool hasLayout = tclass.hasLayout(layout);
875
876                         // If the entry is obsolete, use the new one instead.
877                         if (hasLayout) {
878                                 string const & obs = tclass[layout]->obsoleted_by();
879                                 if (!obs.empty())
880                                         layout = obs;
881                         }
882
883                         // see if we found the layout number:
884                         if (!hasLayout) {
885                                 FuncRequest lf(LFUN_MESSAGE, N_("Layout ") + cmd.argument + N_(" not known"));
886                                 bv->owner()->dispatch(lf);
887                                 break;
888                         }
889
890                         if (cur_layout != layout) {
891                                 cur_layout = layout;
892                                 text_.setLayout(layout);
893                                 bv->owner()->setLayout(cpar()->layout()->name());
894                                 updflag = true;
895                         }
896                 } else {
897                         // reset the layout box
898                         bv->owner()->setLayout(cpar()->layout()->name());
899                 }
900                 break;
901
902         default:
903                 if (!bv->dispatch(cmd))
904                         result = DispatchResult(UNDISPATCHED);
905                 break;
906         }
907
908         updateLocal(bv, updflag);
909
910         /// If the action has deleted all text in the inset, we need to change the
911         // language to the language of the surronding text.
912         if (!was_empty && paragraphs.begin()->empty() &&
913             paragraphs.size() == 1) {
914                 LyXFont font(LyXFont::ALL_IGNORE);
915                 font.setLanguage(bv->getParentLanguage(this));
916                 setFont(bv, font, false);
917         }
918
919         if (result >= DispatchResult(FINISHED))
920                 bv->unlockInset(this);
921
922         if (result == DispatchResult(DISPATCHED_NOUPDATE))
923                 result = DispatchResult(DISPATCHED);
924         return result;
925 }
926
927
928 int InsetText::latex(Buffer const & buf, ostream & os,
929                      LatexRunParams const & runparams) const
930 {
931         TexRow texrow;
932         latexParagraphs(buf, paragraphs, os, texrow, runparams);
933         return texrow.rows();
934 }
935
936
937 int InsetText::ascii(Buffer const & buf, ostream & os,
938                      LatexRunParams const & runparams) const
939 {
940         ParagraphList::const_iterator beg = paragraphs.begin();
941         ParagraphList::const_iterator end = paragraphs.end();
942         ParagraphList::const_iterator it = beg;
943         for (; it != end; ++it)
944                 asciiParagraph(buf, *it, os, runparams, it == beg);
945
946         //FIXME: Give the total numbers of lines
947         return 0;
948 }
949
950
951 int InsetText::linuxdoc(Buffer const & buf, ostream & os,
952                         LatexRunParams const & runparams) const
953 {
954         linuxdocParagraphs(buf, paragraphs, os, runparams);
955         return 0;
956 }
957
958
959 int InsetText::docbook(Buffer const & buf, ostream & os,
960                        LatexRunParams const & runparams) const
961 {
962         docbookParagraphs(buf, paragraphs, os, runparams);
963         return 0;
964 }
965
966
967 void InsetText::validate(LaTeXFeatures & features) const
968 {
969         for_each(paragraphs.begin(), paragraphs.end(),
970                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
971 }
972
973
974 void InsetText::getCursor(BufferView & bv, int & x, int & y) const
975 {
976         if (the_locking_inset) {
977                 the_locking_inset->getCursor(bv, x, y);
978                 return;
979         }
980         x = cx();
981         y = cy() + InsetText::y();
982 }
983
984
985 void InsetText::getCursorPos(BufferView * bv, int & x, int & y) const
986 {
987         if (the_locking_inset) {
988                 the_locking_inset->getCursorPos(bv, x, y);
989                 return;
990         }
991         x = cx() - top_x - TEXT_TO_INSET_OFFSET;
992         y = cy() - TEXT_TO_INSET_OFFSET;
993 }
994
995
996 int InsetText::insetInInsetY() const
997 {
998         if (!the_locking_inset)
999                 return 0;
1000
1001         return inset_y + the_locking_inset->insetInInsetY();
1002 }
1003
1004
1005 void InsetText::fitInsetCursor(BufferView * bv) const
1006 {
1007         if (the_locking_inset) {
1008                 the_locking_inset->fitInsetCursor(bv);
1009                 return;
1010         }
1011
1012         LyXFont const font = text_.getFont(cpar(), cpos());
1013
1014         int const asc = font_metrics::maxAscent(font);
1015         int const desc = font_metrics::maxDescent(font);
1016
1017         bv->fitLockedInsetCursor(cx(), cy(), asc, desc);
1018 }
1019
1020
1021 DispatchResult InsetText::moveRight(BufferView * bv)
1022 {
1023         if (text_.cursorPar()->isRightToLeftPar(bv->buffer()->params()))
1024                 return moveLeftIntern(bv, false, true, false);
1025         else
1026                 return moveRightIntern(bv, true, true, false);
1027 }
1028
1029
1030 DispatchResult InsetText::moveLeft(BufferView * bv)
1031 {
1032         if (text_.cursorPar()->isRightToLeftPar(bv->buffer()->params()))
1033                 return moveRightIntern(bv, true, true, false);
1034         else
1035                 return moveLeftIntern(bv, false, true, false);
1036 }
1037
1038
1039 DispatchResult
1040 InsetText::moveRightIntern(BufferView * bv, bool front,
1041                            bool activate_inset, bool selecting)
1042 {
1043         ParagraphList::iterator c_par = cpar();
1044
1045         if (boost::next(c_par) == paragraphs.end() && cpos() >= c_par->size())
1046                 return DispatchResult(FINISHED_RIGHT);
1047         if (activate_inset && checkAndActivateInset(bv, front))
1048                 return DispatchResult(DISPATCHED);
1049         text_.cursorRight(bv);
1050         if (!selecting)
1051                 text_.clearSelection();
1052         return DispatchResult(DISPATCHED_NOUPDATE);
1053 }
1054
1055
1056 DispatchResult
1057 InsetText::moveLeftIntern(BufferView * bv, bool front,
1058                           bool activate_inset, bool selecting)
1059 {
1060         if (cpar() == paragraphs.begin() && cpos() <= 0)
1061                 return DispatchResult(FINISHED);
1062         text_.cursorLeft(bv);
1063         if (!selecting)
1064                 text_.clearSelection();
1065         if (activate_inset && checkAndActivateInset(bv, front))
1066                 return DispatchResult(DISPATCHED);
1067         return DispatchResult(DISPATCHED_NOUPDATE);
1068 }
1069
1070
1071 DispatchResult InsetText::moveUp(BufferView * bv)
1072 {
1073         if (crow() == text_.firstRow())
1074                 return DispatchResult(FINISHED_UP);
1075         text_.cursorUp(bv);
1076         text_.clearSelection();
1077         return DispatchResult(DISPATCHED_NOUPDATE);
1078 }
1079
1080
1081 DispatchResult InsetText::moveDown(BufferView * bv)
1082 {
1083         if (crow() == text_.lastRow())
1084                 return DispatchResult(FINISHED_DOWN);
1085         text_.cursorDown(bv);
1086         text_.clearSelection();
1087         return DispatchResult(DISPATCHED_NOUPDATE);
1088 }
1089
1090
1091 bool InsetText::insertInset(BufferView * bv, InsetOld * inset)
1092 {
1093         if (the_locking_inset) {
1094                 if (the_locking_inset->insetAllowed(inset))
1095                         return the_locking_inset->insertInset(bv, inset);
1096                 return false;
1097         }
1098         inset->setOwner(this);
1099         text_.insertInset(inset);
1100         bv->fitCursor();
1101         updateLocal(bv, true);
1102         return true;
1103 }
1104
1105
1106 bool InsetText::insetAllowed(InsetOld::Code code) const
1107 {
1108         // in_insetAllowed is a really gross hack,
1109         // to allow us to call the owner's insetAllowed
1110         // without stack overflow, which can happen
1111         // when the owner uses InsetCollapsable::insetAllowed()
1112         bool ret = true;
1113         if (in_insetAllowed)
1114                 return ret;
1115         in_insetAllowed = true;
1116         if (the_locking_inset)
1117                 ret = the_locking_inset->insetAllowed(code);
1118         else if (owner())
1119                 ret = owner()->insetAllowed(code);
1120         in_insetAllowed = false;
1121         return ret;
1122 }
1123
1124
1125 UpdatableInset * InsetText::getLockingInset() const
1126 {
1127         return the_locking_inset ? the_locking_inset->getLockingInset() :
1128                 const_cast<InsetText *>(this);
1129 }
1130
1131
1132 UpdatableInset * InsetText::getFirstLockingInsetOfType(InsetOld::Code c)
1133 {
1134         if (c == lyxCode())
1135                 return this;
1136         if (the_locking_inset)
1137                 return the_locking_inset->getFirstLockingInsetOfType(c);
1138         return 0;
1139 }
1140
1141
1142 bool InsetText::showInsetDialog(BufferView * bv) const
1143 {
1144         if (the_locking_inset)
1145                 return the_locking_inset->showInsetDialog(bv);
1146         return false;
1147 }
1148
1149
1150 void InsetText::getLabelList(Buffer const & buffer,
1151                              std::vector<string> & list) const
1152 {
1153         ParagraphList::const_iterator pit = paragraphs.begin();
1154         ParagraphList::const_iterator pend = paragraphs.end();
1155         for (; pit != pend; ++pit) {
1156                 InsetList::const_iterator beg = pit->insetlist.begin();
1157                 InsetList::const_iterator end = pit->insetlist.end();
1158                 for (; beg != end; ++beg)
1159                         beg->inset->getLabelList(buffer, list);
1160         }
1161 }
1162
1163
1164 void InsetText::setFont(BufferView * bv, LyXFont const & font, bool toggleall,
1165                         bool selectall)
1166 {
1167         if (the_locking_inset) {
1168                 the_locking_inset->setFont(bv, font, toggleall, selectall);
1169                 return;
1170         }
1171
1172         if ((paragraphs.size() == 1 && paragraphs.begin()->empty())
1173             || cpar()->empty()) {
1174                 text_.setFont(font, toggleall);
1175                 return;
1176         }
1177
1178
1179         if (text_.selection.set())
1180                 text_.recUndo(text_.cursor.par());
1181
1182         if (selectall) {
1183                 text_.cursorTop();
1184                 text_.selection.cursor = text_.cursor;
1185                 text_.cursorBottom();
1186                 text_.setSelection();
1187         }
1188
1189         text_.toggleFree(font, toggleall);
1190
1191         if (selectall)
1192                 text_.clearSelection();
1193
1194         bv->fitCursor();
1195         updateLocal(bv, true);
1196 }
1197
1198
1199 bool InsetText::checkAndActivateInset(BufferView * bv, bool front)
1200 {
1201         if (cpos() == cpar()->size())
1202                 return false;
1203         InsetOld * inset = cpar()->getInset(cpos());
1204         if (!isHighlyEditableInset(inset))
1205                 return false;
1206         FuncRequest cmd(bv, LFUN_INSET_EDIT, front ? "left" : "right");
1207         inset->dispatch(cmd);
1208         if (!the_locking_inset)
1209                 return false;
1210         updateLocal(bv, false);
1211         return true;
1212 }
1213
1214
1215 bool InsetText::checkAndActivateInset(BufferView * bv, int x, int y,
1216                                       mouse_button::state button)
1217 {
1218         int dummyx = x;
1219         int dummyy = y + dim_.asc;
1220         InsetOld * inset = getLyXText(bv)->checkInsetHit(dummyx, dummyy);
1221         // we only do the edit() call if the inset was hit by the mouse
1222         // or if it is a highly editable inset. So we should call this
1223         // function from our own edit with button < 0.
1224         // FIXME: GUII jbl. I've changed this to ::none for now which is probably
1225         // WRONG
1226         if (button == mouse_button::none && !isHighlyEditableInset(inset))
1227                 return false;
1228
1229         if (!inset)
1230                 return false;
1231         if (x < 0)
1232                 x = dim_.wid;
1233         if (y < 0)
1234                 y = dim_.des;
1235         inset_x = cx() - top_x;
1236         inset_y = cy();
1237         FuncRequest cmd(bv, LFUN_INSET_EDIT, x - inset_x, y - inset_y, button);
1238         inset->dispatch(cmd);
1239         if (!the_locking_inset)
1240                 return false;
1241         updateLocal(bv, false);
1242         return true;
1243 }
1244
1245
1246 void InsetText::markNew(bool track_changes)
1247 {
1248         ParagraphList::iterator pit = paragraphs.begin();
1249         ParagraphList::iterator end = paragraphs.end();
1250         for (; pit != end; ++pit) {
1251                 if (track_changes) {
1252                         pit->trackChanges();
1253                 } else {
1254                         // no-op when not tracking
1255                         pit->cleanChanges();
1256                 }
1257         }
1258 }
1259
1260
1261 void InsetText::setText(string const & data, LyXFont const & font)
1262 {
1263         clear(false);
1264         for (unsigned int i = 0; i < data.length(); ++i)
1265                 paragraphs.begin()->insertChar(i, data[i], font);
1266 }
1267
1268
1269 void InsetText::setAutoBreakRows(bool flag)
1270 {
1271         if (flag != autoBreakRows_) {
1272                 autoBreakRows_ = flag;
1273                 if (!flag)
1274                         removeNewlines();
1275         }
1276 }
1277
1278
1279 void InsetText::setDrawFrame(DrawFrame how)
1280 {
1281         drawFrame_ = how;
1282 }
1283
1284
1285 LColor_color InsetText::frameColor() const
1286 {
1287         return LColor::color(frame_color_);
1288 }
1289
1290
1291 void InsetText::setFrameColor(LColor_color col)
1292 {
1293         frame_color_ = col;
1294 }
1295
1296
1297 int InsetText::cx() const
1298 {
1299         int x = text_.cursor.x() + top_x + TEXT_TO_INSET_OFFSET;
1300         if (the_locking_inset) {
1301                 LyXFont font = text_.getFont(text_.cursorPar(), text_.cursor.pos());
1302                 if (font.isVisibleRightToLeft())
1303                         x -= the_locking_inset->width();
1304         }
1305         return x;
1306 }
1307
1308
1309 int InsetText::cy() const
1310 {
1311         return text_.cursor.y() - dim_.asc + TEXT_TO_INSET_OFFSET;
1312 }
1313
1314
1315 pos_type InsetText::cpos() const
1316 {
1317         return text_.cursor.pos();
1318 }
1319
1320
1321 ParagraphList::iterator InsetText::cpar() const
1322 {
1323         return text_.cursorPar();
1324 }
1325
1326
1327 bool InsetText::cboundary() const
1328 {
1329         return text_.cursor.boundary();
1330 }
1331
1332
1333 RowList::iterator InsetText::crow() const
1334 {
1335         return cpar()->getRow(cpos());
1336 }
1337
1338
1339 LyXText * InsetText::getLyXText(BufferView const * bv,
1340                                 bool const recursive) const
1341 {
1342         setViewCache(bv);
1343         if (recursive && the_locking_inset)
1344                 return the_locking_inset->getLyXText(bv, true);
1345         return &text_;
1346 }
1347
1348
1349 void InsetText::setViewCache(BufferView const * bv) const
1350 {
1351         if (bv) {
1352                 if (bv != text_.bv_owner) {
1353                         //lyxerr << "setting view cache from "
1354                         //      << text_.bv_owner << " to " << bv << "\n";
1355                         text_.init(const_cast<BufferView *>(bv));
1356                 }
1357                 text_.bv_owner = const_cast<BufferView *>(bv);
1358         }
1359 }
1360
1361
1362 void InsetText::deleteLyXText(BufferView * bv, bool recursive) const
1363 {
1364         if (recursive) {
1365                 /// then remove all LyXText in text-insets
1366                 for_each(const_cast<ParagraphList&>(paragraphs).begin(),
1367                          const_cast<ParagraphList&>(paragraphs).end(),
1368                          boost::bind(&Paragraph::deleteInsetsLyXText, _1, bv));
1369         }
1370 }
1371
1372
1373 void InsetText::removeNewlines()
1374 {
1375         ParagraphList::iterator it = paragraphs.begin();
1376         ParagraphList::iterator end = paragraphs.end();
1377         for (; it != end; ++it)
1378                 for (int i = 0; i < it->size(); ++i)
1379                         if (it->isNewline(i))
1380                                 it->erase(i);
1381 }
1382
1383
1384 int InsetText::scroll(bool recursive) const
1385 {
1386         int sx = UpdatableInset::scroll(false);
1387
1388         if (recursive && the_locking_inset)
1389                 sx += the_locking_inset->scroll(recursive);
1390
1391         return sx;
1392 }
1393
1394
1395 void InsetText::clearSelection(BufferView *)
1396 {
1397         text_.clearSelection();
1398 }
1399
1400
1401 void InsetText::clearInset(BufferView * bv, int start_x, int baseline) const
1402 {
1403         Painter & pain = bv->painter();
1404         int w = dim_.wid;
1405         int h = dim_.asc + dim_.des;
1406         int ty = baseline - dim_.asc;
1407
1408         if (ty < 0) {
1409                 h += ty;
1410                 ty = 0;
1411         }
1412         if (ty + h > pain.paperHeight())
1413                 h = pain.paperHeight();
1414         if (top_x + w > pain.paperWidth())
1415                 w = pain.paperWidth();
1416         pain.fillRectangle(start_x + 1, ty + 1, w - 3, h - 1, backgroundColor());
1417 }
1418
1419
1420 ParagraphList * InsetText::getParagraphs(int i) const
1421 {
1422         return (i == 0) ? const_cast<ParagraphList*>(&paragraphs) : 0;
1423 }
1424
1425
1426 LyXText * InsetText::getText(int i) const
1427 {
1428         return (i == 0) ? const_cast<LyXText*>(&text_) : 0;
1429 }
1430
1431
1432 LyXCursor const & InsetText::cursor(BufferView * bv) const
1433 {
1434         if (the_locking_inset)
1435                 return the_locking_inset->cursor(bv);
1436         return getLyXText(bv)->cursor;
1437 }
1438
1439
1440 InsetOld * InsetText::getInsetFromID(int id_arg) const
1441 {
1442         if (id_arg == id())
1443                 return const_cast<InsetText *>(this);
1444
1445         ParagraphList::const_iterator pit = paragraphs.begin();
1446         ParagraphList::const_iterator pend = paragraphs.end();
1447         for (; pit != pend; ++pit) {
1448                 InsetList::const_iterator it = pit->insetlist.begin();
1449                 InsetList::const_iterator end = pit->insetlist.end();
1450                 for (; it != end; ++it) {
1451                         if (it->inset->id() == id_arg)
1452                                 return it->inset;
1453                         InsetOld * in = it->inset->getInsetFromID(id_arg);
1454                         if (in)
1455                                 return in;
1456                 }
1457         }
1458         return 0;
1459 }
1460
1461
1462 WordLangTuple const
1463 InsetText::selectNextWordToSpellcheck(BufferView * bv, float & value) const
1464 {
1465         WordLangTuple word;
1466         if (the_locking_inset) {
1467                 word = the_locking_inset->selectNextWordToSpellcheck(bv, value);
1468                 if (!word.word().empty()) {
1469                         value += cy();
1470                         return word;
1471                 }
1472                 // we have to go on checking so move cursor to the next char
1473                 text_.cursor.pos(text_.cursor.pos() + 1);
1474         }
1475         word = text_.selectNextWordToSpellcheck(value);
1476         if (word.word().empty())
1477                 bv->unlockInset(const_cast<InsetText *>(this));
1478         else
1479                 value = cy();
1480         return word;
1481 }
1482
1483
1484 void InsetText::selectSelectedWord(BufferView * bv)
1485 {
1486         if (the_locking_inset) {
1487                 the_locking_inset->selectSelectedWord(bv);
1488                 return;
1489         }
1490         getLyXText(bv)->selectSelectedWord();
1491         updateLocal(bv, false);
1492 }
1493
1494
1495 bool InsetText::nextChange(BufferView * bv, lyx::pos_type & length)
1496 {
1497         if (the_locking_inset) {
1498                 if (the_locking_inset->nextChange(bv, length))
1499                         return true;
1500                 text_.cursorRight(true);
1501         }
1502         lyx::find::SearchResult result =
1503                 lyx::find::findNextChange(bv, &text_, length);
1504
1505         if (result == lyx::find::SR_FOUND) {
1506                 LyXCursor cur = text_.cursor;
1507                 bv->unlockInset(bv->theLockingInset());
1508                 if (bv->lockInset(this))
1509                         locked = true;
1510                 text_.cursor = cur;
1511                 text_.setSelectionRange(length);
1512                 updateLocal(bv, false);
1513         }
1514         return result != lyx::find::SR_NOT_FOUND;
1515 }
1516
1517
1518 bool InsetText::searchForward(BufferView * bv, string const & str,
1519                               bool cs, bool mw)
1520 {
1521         if (the_locking_inset) {
1522                 if (the_locking_inset->searchForward(bv, str, cs, mw))
1523                         return true;
1524                 text_.cursorRight(true);
1525         }
1526         lyx::find::SearchResult result =
1527                 lyx::find::find(bv, &text_, str, true, cs, mw);
1528
1529         if (result == lyx::find::SR_FOUND) {
1530                 LyXCursor cur = text_.cursor;
1531                 bv->unlockInset(bv->theLockingInset());
1532                 if (bv->lockInset(this))
1533                         locked = true;
1534                 text_.cursor = cur;
1535                 text_.setSelectionRange(str.length());
1536                 updateLocal(bv, false);
1537         }
1538         return result != lyx::find::SR_NOT_FOUND;
1539 }
1540
1541
1542 bool InsetText::searchBackward(BufferView * bv, string const & str,
1543                                bool cs, bool mw)
1544 {
1545         if (the_locking_inset) {
1546                 if (the_locking_inset->searchBackward(bv, str, cs, mw))
1547                         return true;
1548         }
1549         if (!locked) {
1550                 text_.setCursor(paragraphs.size() - 1, paragraphs.back().size());
1551         }
1552         lyx::find::SearchResult result =
1553                 lyx::find::find(bv, &text_, str, false, cs, mw);
1554
1555         if (result == lyx::find::SR_FOUND) {
1556                 LyXCursor cur = text_.cursor;
1557                 bv->unlockInset(bv->theLockingInset());
1558                 if (bv->lockInset(this))
1559                         locked = true;
1560                 text_.cursor = cur;
1561                 text_.setSelectionRange(str.length());
1562                 updateLocal(bv, false);
1563         }
1564         return result != lyx::find::SR_NOT_FOUND;
1565 }
1566
1567
1568 bool InsetText::checkInsertChar(LyXFont & font)
1569 {
1570         return owner() ? owner()->checkInsertChar(font) : true;
1571 }
1572
1573
1574 void InsetText::collapseParagraphs(BufferView * bv)
1575 {
1576         while (paragraphs.size() > 1) {
1577                 ParagraphList::iterator const first = paragraphs.begin();
1578                 ParagraphList::iterator second = first;
1579                 advance(second, 1);
1580                 size_t const first_par_size = first->size();
1581
1582                 if (!first->empty() &&
1583                     !second->empty() &&
1584                     !first->isSeparator(first_par_size - 1)) {
1585                         first->insertChar(first_par_size, ' ');
1586                 }
1587
1588 #warning probably broken
1589                 if (text_.selection.set()) {
1590                         if (text_.selection.start.par() == 1) {
1591                                 text_.selection.start.par(1);
1592                                 text_.selection.start.pos(text_.selection.start.pos() + first_par_size);
1593                         }
1594                         if (text_.selection.end.par() == 2) {
1595                                 text_.selection.end.par(1);
1596                                 text_.selection.end.pos(text_.selection.end.pos() + first_par_size);
1597                         }
1598                 }
1599
1600                 mergeParagraph(bv->buffer()->params(), paragraphs, first);
1601         }
1602 }
1603
1604
1605 void InsetText::getDrawFont(LyXFont & font) const
1606 {
1607         if (!owner())
1608                 return;
1609         owner()->getDrawFont(font);
1610 }
1611
1612
1613 void InsetText::appendParagraphs(Buffer * buffer, ParagraphList & plist)
1614 {
1615 #warning FIXME Check if Changes stuff needs changing here. (Lgb)
1616 // And it probably does. You have to take a look at this John. (Lgb)
1617 #warning John, have a look here. (Lgb)
1618         ParagraphList::iterator pit = plist.begin();
1619         ParagraphList::iterator ins = paragraphs.insert(paragraphs.end(), *pit);
1620         ++pit;
1621         mergeParagraph(buffer->params(), paragraphs, boost::prior(ins));
1622
1623         ParagraphList::iterator pend = plist.end();
1624         for (; pit != pend; ++pit)
1625                 paragraphs.push_back(*pit);
1626 }
1627
1628
1629 void InsetText::addPreview(PreviewLoader & loader) const
1630 {
1631         ParagraphList::const_iterator pit = paragraphs.begin();
1632         ParagraphList::const_iterator pend = paragraphs.end();
1633
1634         for (; pit != pend; ++pit) {
1635                 InsetList::const_iterator it  = pit->insetlist.begin();
1636                 InsetList::const_iterator end = pit->insetlist.end();
1637                 for (; it != end; ++it)
1638                         it->inset->addPreview(loader);
1639         }
1640 }