]> git.lyx.org Git - lyx.git/blob - src/BufferView.cpp
c8b376385d2689c318bb018d8be97a3af5890ef0
[lyx.git] / src / BufferView.cpp
1 /**
2  * \file BufferView.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  * \author Lars Gullik Bjønnes
8  * \author John Levon
9  * \author André Pönitz
10  * \author Jürgen Vigna
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "BufferView.h"
18
19 #include "BranchList.h"
20 #include "Buffer.h"
21 #include "buffer_funcs.h"
22 #include "BufferList.h"
23 #include "BufferParams.h"
24 #include "CoordCache.h"
25 #include "Cursor.h"
26 #include "CutAndPaste.h"
27 #include "DispatchResult.h"
28 #include "ErrorList.h"
29 #include "factory.h"
30 #include "FloatList.h"
31 #include "FuncRequest.h"
32 #include "FuncStatus.h"
33 #include "Intl.h"
34 #include "InsetIterator.h"
35 #include "Language.h"
36 #include "LaTeXFeatures.h"
37 #include "LayoutFile.h"
38 #include "Length.h"
39 #include "Lexer.h"
40 #include "LyX.h"
41 #include "LyXAction.h"
42 #include "lyxfind.h"
43 #include "Layout.h"
44 #include "LyXRC.h"
45 #include "MetricsInfo.h"
46 #include "Paragraph.h"
47 #include "ParagraphParameters.h"
48 #include "ParIterator.h"
49 #include "RowPainter.h"
50 #include "Session.h"
51 #include "Text.h"
52 #include "TextClass.h"
53 #include "TextMetrics.h"
54 #include "TexRow.h"
55 #include "TocBackend.h"
56 #include "WordLangTuple.h"
57
58 #include "insets/InsetBibtex.h"
59 #include "insets/InsetCitation.h"
60 #include "insets/InsetCommand.h" // ChangeRefs
61 #include "insets/InsetExternal.h"
62 #include "insets/InsetGraphics.h"
63 #include "insets/InsetNote.h"
64 #include "insets/InsetRef.h"
65 #include "insets/InsetText.h"
66
67 #include "mathed/MathData.h"
68
69 #include "frontends/alert.h"
70 #include "frontends/Application.h"
71 #include "frontends/Delegates.h"
72 #include "frontends/FontMetrics.h"
73 #include "frontends/Painter.h"
74 #include "frontends/Selection.h"
75
76 #include "support/convert.h"
77 #include "support/debug.h"
78 #include "support/ExceptionMessage.h"
79 #include "support/filetools.h"
80 #include "support/gettext.h"
81 #include "support/lassert.h"
82 #include "support/lstrings.h"
83 #include "support/Package.h"
84 #include "support/types.h"
85
86 #include <cerrno>
87 #include <fstream>
88 #include <functional>
89 #include <iterator>
90 #include <sstream>
91 #include <vector>
92
93 using namespace std;
94 using namespace lyx::support;
95
96 namespace lyx {
97
98 namespace Alert = frontend::Alert;
99
100 namespace {
101
102 /// Return an inset of this class if it exists at the current cursor position
103 template <class T>
104 T * getInsetByCode(Cursor const & cur, InsetCode code)
105 {
106         DocIterator it = cur;
107         Inset * inset = it.nextInset();
108         if (inset && inset->lyxCode() == code)
109                 return static_cast<T*>(inset);
110         return 0;
111 }
112
113
114 /// Note that comparing contents can only be used for InsetCommand
115 bool findNextInset(DocIterator & dit, vector<InsetCode> const & codes,
116         docstring const & contents)
117 {
118         DocIterator tmpdit = dit;
119
120         while (tmpdit) {
121                 Inset const * inset = tmpdit.nextInset();
122                 if (inset) {
123                         bool const valid_code = std::find(codes.begin(), codes.end(),
124                                 inset->lyxCode()) != codes.end();
125                         InsetCommand const * ic = inset->asInsetCommand();
126                         bool const same_or_no_contents =  contents.empty()
127                                 || (ic && (ic->getFirstNonOptParam() == contents));
128
129                         if (valid_code && same_or_no_contents) {
130                                 dit = tmpdit;
131                                 return true;
132                         }
133                 }
134                 tmpdit.forwardInset();
135         }
136
137         return false;
138 }
139
140
141 /// Looks for next inset with one of the given codes.
142 /// Note that same_content can only be used for InsetCommand
143 bool findInset(DocIterator & dit, vector<InsetCode> const & codes,
144         bool same_content)
145 {
146         docstring contents;
147         DocIterator tmpdit = dit;
148         tmpdit.forwardInset();
149         if (!tmpdit)
150                 return false;
151
152         Inset const * inset = tmpdit.nextInset();
153         if (same_content && inset) {
154                 InsetCommand const * ic = inset->asInsetCommand();
155                 if (ic) {
156                         bool const valid_code = std::find(codes.begin(), codes.end(),
157                                 ic->lyxCode()) != codes.end();
158                         if (valid_code)
159                                 contents = ic->getFirstNonOptParam();
160                 }
161         }
162
163         if (!findNextInset(tmpdit, codes, contents)) {
164                 if (dit.depth() != 1 || dit.pit() != 0 || dit.pos() != 0) {
165                         Inset * inset = &tmpdit.bottom().inset();
166                         tmpdit = doc_iterator_begin(&inset->buffer(), inset);
167                         if (!findNextInset(tmpdit, codes, contents))
168                                 return false;
169                 } else {
170                         return false;
171                 }
172         }
173
174         dit = tmpdit;
175         return true;
176 }
177
178
179 /// Looks for next inset with the given code
180 void findInset(DocIterator & dit, InsetCode code, bool same_content)
181 {
182         findInset(dit, vector<InsetCode>(1, code), same_content);
183 }
184
185
186 /// Moves cursor to the next inset with one of the given codes.
187 void gotoInset(BufferView * bv, vector<InsetCode> const & codes,
188                bool same_content)
189 {
190         Cursor tmpcur = bv->cursor();
191         if (!findInset(tmpcur, codes, same_content)) {
192                 bv->cursor().message(_("No more insets"));
193                 return;
194         }
195
196         tmpcur.clearSelection();
197         bv->setCursor(tmpcur);
198         bv->showCursor();
199 }
200
201
202 /// Moves cursor to the next inset with given code.
203 void gotoInset(BufferView * bv, InsetCode code, bool same_content)
204 {
205         gotoInset(bv, vector<InsetCode>(1, code), same_content);
206 }
207
208
209 /// A map from a Text to the associated text metrics
210 typedef map<Text const *, TextMetrics> TextMetricsCache;
211
212 enum ScreenUpdateStrategy {
213         NoScreenUpdate,
214         SingleParUpdate,
215         FullScreenUpdate,
216         DecorationUpdate
217 };
218
219 } // anon namespace
220
221
222 /////////////////////////////////////////////////////////////////////
223 //
224 // BufferView
225 //
226 /////////////////////////////////////////////////////////////////////
227
228 struct BufferView::Private
229 {
230         Private(BufferView & bv) : update_strategy_(NoScreenUpdate),
231                 wh_(0), cursor_(bv),
232                 anchor_pit_(0), anchor_ypos_(0),
233                 inlineCompletionUniqueChars_(0),
234                 last_inset_(0), clickable_inset_(false),
235                 mouse_position_cache_(),
236                 bookmark_edit_position_(-1), gui_(0),
237                 horiz_scroll_offset_(0)
238         {}
239
240         ///
241         ScrollbarParameters scrollbarParameters_;
242         ///
243         ScreenUpdateStrategy update_strategy_;
244         ///
245         CoordCache coord_cache_;
246
247         /// Estimated average par height for scrollbar.
248         int wh_;
249         /// this is used to handle XSelection events in the right manner.
250         struct {
251                 CursorSlice cursor;
252                 CursorSlice anchor;
253                 bool set;
254         } xsel_cache_;
255         ///
256         Cursor cursor_;
257         ///
258         pit_type anchor_pit_;
259         ///
260         int anchor_ypos_;
261         ///
262         vector<int> par_height_;
263
264         ///
265         DocIterator inlineCompletionPos_;
266         ///
267         docstring inlineCompletion_;
268         ///
269         size_t inlineCompletionUniqueChars_;
270
271         /// keyboard mapping object.
272         Intl intl_;
273
274         /// last visited inset.
275         /** kept to send setMouseHover(false).
276           * Not owned, so don't delete.
277           */
278         Inset const * last_inset_;
279         /// are we hovering something that we can click
280         bool clickable_inset_;
281
282         /// position of the mouse at the time of the last mouse move
283         /// This is used to update the hovering status of inset in
284         /// cases where the buffer is scrolled, but the mouse didn't move.
285         Point mouse_position_cache_;
286
287         // cache for id of the paragraph which was edited the last time
288         int bookmark_edit_position_;
289
290         mutable TextMetricsCache text_metrics_;
291
292         /// Whom to notify.
293         /** Not owned, so don't delete.
294           */
295         frontend::GuiBufferViewDelegate * gui_;
296
297         /// Cache for Find Next
298         FuncRequest search_request_cache_;
299
300         ///
301         map<string, Inset *> edited_insets_;
302
303         /// When the row where the cursor lies is scrolled, this
304         /// contains the scroll offset
305         int horiz_scroll_offset_;
306         /// a slice pointing to the start of the row where the cursor
307         /// is (at last draw time)
308         CursorSlice current_row_slice_;
309         /// a slice pointing to the start of the row where cursor was
310         /// at previous draw event
311         CursorSlice last_row_slice_;
312 };
313
314
315 BufferView::BufferView(Buffer & buf)
316         : width_(0), height_(0), full_screen_(false), buffer_(buf),
317       d(new Private(*this))
318 {
319         d->xsel_cache_.set = false;
320         d->intl_.initKeyMapper(lyxrc.use_kbmap);
321
322         d->cursor_.setBuffer(&buf);
323         d->cursor_.push(buffer_.inset());
324         d->cursor_.resetAnchor();
325         d->cursor_.setCurrentFont();
326
327         buffer_.updatePreviews();
328 }
329
330
331 BufferView::~BufferView()
332 {
333         // current buffer is going to be switched-off, save cursor pos
334         // Ideally, the whole cursor stack should be saved, but session
335         // currently can only handle bottom (whole document) level pit and pos.
336         // That is to say, if a cursor is in a nested inset, it will be
337         // restore to the left of the top level inset.
338         LastFilePosSection::FilePos fp;
339         fp.pit = d->cursor_.bottom().pit();
340         fp.pos = d->cursor_.bottom().pos();
341         theSession().lastFilePos().save(buffer_.fileName(), fp);
342
343         if (d->last_inset_)
344                 d->last_inset_->setMouseHover(this, false);
345
346         delete d;
347 }
348
349
350 int BufferView::rightMargin() const
351 {
352         // The additional test for the case the outliner is opened.
353         if (!full_screen_ ||
354                 !lyxrc.full_screen_limit ||
355                 width_ < lyxrc.full_screen_width + 20)
356                         return 10;
357
358         return (width_ - lyxrc.full_screen_width) / 2;
359 }
360
361
362 int BufferView::leftMargin() const
363 {
364         return rightMargin();
365 }
366
367
368 bool BufferView::isTopScreen() const
369 {
370         return d->scrollbarParameters_.position == d->scrollbarParameters_.min;
371 }
372
373
374 bool BufferView::isBottomScreen() const
375 {
376         return d->scrollbarParameters_.position == d->scrollbarParameters_.max;
377 }
378
379
380 Intl & BufferView::getIntl()
381 {
382         return d->intl_;
383 }
384
385
386 Intl const & BufferView::getIntl() const
387 {
388         return d->intl_;
389 }
390
391
392 CoordCache & BufferView::coordCache()
393 {
394         return d->coord_cache_;
395 }
396
397
398 CoordCache const & BufferView::coordCache() const
399 {
400         return d->coord_cache_;
401 }
402
403
404 Buffer & BufferView::buffer()
405 {
406         return buffer_;
407 }
408
409
410 Buffer const & BufferView::buffer() const
411 {
412         return buffer_;
413 }
414
415
416 bool BufferView::fitCursor()
417 {
418         if (cursorStatus(d->cursor_) == CUR_INSIDE) {
419                 frontend::FontMetrics const & fm =
420                         theFontMetrics(d->cursor_.getFont().fontInfo());
421                 int const asc = fm.maxAscent();
422                 int const des = fm.maxDescent();
423                 Point const p = getPos(d->cursor_);
424                 if (p.y_ - asc >= 0 && p.y_ + des < height_)
425                         return false;
426         }
427         return true;
428 }
429
430
431 void BufferView::processUpdateFlags(Update::flags flags)
432 {
433         // This is close to a hot-path.
434         LYXERR(Debug::DEBUG, "BufferView::processUpdateFlags()"
435                 << "[fitcursor = " << (flags & Update::FitCursor)
436                 << ", forceupdate = " << (flags & Update::Force)
437                 << ", singlepar = " << (flags & Update::SinglePar)
438                 << "]  buffer: " << &buffer_);
439
440         // FIXME Does this really need doing here? It's done in updateBuffer, and
441         // if the Buffer doesn't need updating, then do the macros?
442         buffer_.updateMacros();
443
444         // Now do the first drawing step if needed. This consists on updating
445         // the CoordCache in updateMetrics().
446         // The second drawing step is done in WorkArea::redraw() if needed.
447
448         // Case when no explicit update is requested.
449         if (!flags) {
450                 // no need to redraw anything.
451                 d->update_strategy_ = NoScreenUpdate;
452                 return;
453         }
454
455         if (flags == Update::Decoration) {
456                 d->update_strategy_ = DecorationUpdate;
457                 buffer_.changed(false);
458                 return;
459         }
460
461         if (flags == Update::FitCursor
462                 || flags == (Update::Decoration | Update::FitCursor)) {
463                 // tell the frontend to update the screen if needed.
464                 if (fitCursor()) {
465                         showCursor();
466                         return;
467                 }
468                 if (flags & Update::Decoration) {
469                         d->update_strategy_ = DecorationUpdate;
470                         buffer_.changed(false);
471                         return;
472                 }
473                 // no screen update is needed in principle, but this
474                 // could change if cursor row needs scrolling.
475                 d->update_strategy_ = NoScreenUpdate;
476                 buffer_.changed(false);
477                 return;
478         }
479
480         bool const full_metrics = flags & Update::Force || !singleParUpdate();
481
482         if (full_metrics)
483                 // We have to update the full screen metrics.
484                 updateMetrics();
485
486         if (!(flags & Update::FitCursor)) {
487                 // Nothing to do anymore. Trigger a redraw and return
488                 buffer_.changed(false);
489                 return;
490         }
491
492         // updateMetrics() does not update paragraph position
493         // This is done at draw() time. So we need a redraw!
494         buffer_.changed(false);
495
496         if (fitCursor()) {
497                 // The cursor is off screen so ensure it is visible.
498                 // refresh it:
499                 showCursor();
500         }
501
502         updateHoveredInset();
503 }
504
505
506 void BufferView::updateScrollbar()
507 {
508         if (height_ == 0 && width_ == 0)
509                 return;
510
511         // We prefer fixed size line scrolling.
512         d->scrollbarParameters_.single_step = defaultRowHeight();
513         // We prefer full screen page scrolling.
514         d->scrollbarParameters_.page_step = height_;
515
516         Text & t = buffer_.text();
517         TextMetrics & tm = d->text_metrics_[&t];
518
519         LYXERR(Debug::GUI, " Updating scrollbar: height: "
520                 << t.paragraphs().size()
521                 << " curr par: " << d->cursor_.bottom().pit()
522                 << " default height " << defaultRowHeight());
523
524         size_t const parsize = t.paragraphs().size();
525         if (d->par_height_.size() != parsize) {
526                 d->par_height_.clear();
527                 // FIXME: We assume a default paragraph height of 2 rows. This
528                 // should probably be pondered with the screen width.
529                 d->par_height_.resize(parsize, defaultRowHeight() * 2);
530         }
531
532         // Look at paragraph heights on-screen
533         pair<pit_type, ParagraphMetrics const *> first = tm.first();
534         pair<pit_type, ParagraphMetrics const *> last = tm.last();
535         for (pit_type pit = first.first; pit <= last.first; ++pit) {
536                 d->par_height_[pit] = tm.parMetrics(pit).height();
537                 LYXERR(Debug::SCROLLING, "storing height for pit " << pit << " : "
538                         << d->par_height_[pit]);
539         }
540
541         int top_pos = first.second->position() - first.second->ascent();
542         int bottom_pos = last.second->position() + last.second->descent();
543         bool first_visible = first.first == 0 && top_pos >= 0;
544         bool last_visible = last.first + 1 == int(parsize) && bottom_pos <= height_;
545         if (first_visible && last_visible) {
546                 d->scrollbarParameters_.min = 0;
547                 d->scrollbarParameters_.max = 0;
548                 return;
549         }
550
551         d->scrollbarParameters_.min = top_pos;
552         for (size_t i = 0; i != size_t(first.first); ++i)
553                 d->scrollbarParameters_.min -= d->par_height_[i];
554         d->scrollbarParameters_.max = bottom_pos;
555         for (size_t i = last.first + 1; i != parsize; ++i)
556                 d->scrollbarParameters_.max += d->par_height_[i];
557
558         d->scrollbarParameters_.position = 0;
559         // The reference is the top position so we remove one page.
560         if (lyxrc.scroll_below_document)
561                 d->scrollbarParameters_.max -= minVisiblePart();
562         else
563                 d->scrollbarParameters_.max -= d->scrollbarParameters_.page_step;
564 }
565
566
567 ScrollbarParameters const & BufferView::scrollbarParameters() const
568 {
569         return d->scrollbarParameters_;
570 }
571
572
573 docstring BufferView::toolTip(int x, int y) const
574 {
575         // Get inset under mouse, if there is one.
576         Inset const * covering_inset = getCoveringInset(buffer_.text(), x, y);
577         if (!covering_inset)
578                 // No inset, no tooltip...
579                 return docstring();
580         return covering_inset->toolTip(*this, x, y);
581 }
582
583
584 string BufferView::contextMenu(int x, int y) const
585 {
586         //If there is a selection, return the containing inset menu
587         if (d->cursor_.selection())
588                 return d->cursor_.inset().contextMenu(*this, x, y);
589
590         // Get inset under mouse, if there is one.
591         Inset const * covering_inset = getCoveringInset(buffer_.text(), x, y);
592         if (covering_inset)
593                 return covering_inset->contextMenu(*this, x, y);
594
595         return buffer_.inset().contextMenu(*this, x, y);
596 }
597
598
599 void BufferView::scrollDocView(int value, bool update)
600 {
601         int const offset = value - d->scrollbarParameters_.position;
602
603         // No scrolling at all? No need to redraw anything
604         if (offset == 0)
605                 return;
606
607         // If the offset is less than 2 screen height, prefer to scroll instead.
608         if (abs(offset) <= 2 * height_) {
609                 d->anchor_ypos_ -= offset;
610                 buffer_.changed(true);
611                 updateHoveredInset();
612                 return;
613         }
614
615         // cut off at the top
616         if (value <= d->scrollbarParameters_.min) {
617                 DocIterator dit = doc_iterator_begin(&buffer_);
618                 showCursor(dit, false, update);
619                 LYXERR(Debug::SCROLLING, "scroll to top");
620                 return;
621         }
622
623         // cut off at the bottom
624         if (value >= d->scrollbarParameters_.max) {
625                 DocIterator dit = doc_iterator_end(&buffer_);
626                 dit.backwardPos();
627                 showCursor(dit, false, update);
628                 LYXERR(Debug::SCROLLING, "scroll to bottom");
629                 return;
630         }
631
632         // find paragraph at target position
633         int par_pos = d->scrollbarParameters_.min;
634         pit_type i = 0;
635         for (; i != int(d->par_height_.size()); ++i) {
636                 par_pos += d->par_height_[i];
637                 if (par_pos >= value)
638                         break;
639         }
640
641         if (par_pos < value) {
642                 // It seems we didn't find the correct pit so stay on the safe side and
643                 // scroll to bottom.
644                 LYXERR0("scrolling position not found!");
645                 scrollDocView(d->scrollbarParameters_.max, update);
646                 return;
647         }
648
649         DocIterator dit = doc_iterator_begin(&buffer_);
650         dit.pit() = i;
651         LYXERR(Debug::SCROLLING, "value = " << value << " -> scroll to pit " << i);
652         showCursor(dit, false, update);
653 }
654
655
656 // FIXME: this method is not working well.
657 void BufferView::setCursorFromScrollbar()
658 {
659         TextMetrics & tm = d->text_metrics_[&buffer_.text()];
660
661         int const height = 2 * defaultRowHeight();
662         int const first = height;
663         int const last = height_ - height;
664         int newy = 0;
665         Cursor const & oldcur = d->cursor_;
666
667         switch (cursorStatus(oldcur)) {
668         case CUR_ABOVE:
669                 newy = first;
670                 break;
671         case CUR_BELOW:
672                 newy = last;
673                 break;
674         case CUR_INSIDE:
675                 int const y = getPos(oldcur).y_;
676                 newy = min(last, max(y, first));
677                 if (y == newy)
678                         return;
679         }
680         // We reset the cursor because cursorStatus() does not
681         // work when the cursor is within mathed.
682         Cursor cur(*this);
683         cur.reset();
684         tm.setCursorFromCoordinates(cur, 0, newy);
685
686         // update the bufferview cursor and notify insets
687         // FIXME: Care about the d->cursor_ flags to redraw if needed
688         Cursor old = d->cursor_;
689         mouseSetCursor(cur);
690         // the DEPM call in mouseSetCursor() might have destroyed the
691         // paragraph the cursor is in.
692         bool badcursor = old.fixIfBroken();
693         badcursor |= notifyCursorLeavesOrEnters(old, d->cursor_);
694         if (badcursor)
695                 d->cursor_.fixIfBroken();
696 }
697
698
699 Change const BufferView::getCurrentChange() const
700 {
701         if (!d->cursor_.selection())
702                 return Change(Change::UNCHANGED);
703
704         DocIterator dit = d->cursor_.selectionBegin();
705         // The selected content might have been changed (see #7685)
706         while (dit.inMathed())
707                 // Find enclosing text cursor
708                 dit.pop_back();
709         return dit.paragraph().lookupChange(dit.pos());
710 }
711
712
713 // this could be used elsewhere as well?
714 // FIXME: This does not work within mathed!
715 CursorStatus BufferView::cursorStatus(DocIterator const & dit) const
716 {
717         Point const p = getPos(dit);
718         if (p.y_ < 0)
719                 return CUR_ABOVE;
720         if (p.y_ > workHeight())
721                 return CUR_BELOW;
722         return CUR_INSIDE;
723 }
724
725
726 void BufferView::bookmarkEditPosition()
727 {
728         // Don't eat cpu time for each keystroke
729         if (d->cursor_.paragraph().id() == d->bookmark_edit_position_)
730                 return;
731         saveBookmark(0);
732         d->bookmark_edit_position_ = d->cursor_.paragraph().id();
733 }
734
735
736 void BufferView::saveBookmark(unsigned int idx)
737 {
738         // tentatively save bookmark, id and pos will be used to
739         // acturately locate a bookmark in a 'live' lyx session.
740         // pit and pos will be updated with bottom level pit/pos
741         // when lyx exits.
742         if (!buffer_.isInternal()) {
743                 theSession().bookmarks().save(
744                         buffer_.fileName(),
745                         d->cursor_.bottom().pit(),
746                         d->cursor_.bottom().pos(),
747                         d->cursor_.paragraph().id(),
748                         d->cursor_.pos(),
749                         idx
750                         );
751                 if (idx)
752                         // emit message signal.
753                         message(_("Save bookmark"));
754         }
755 }
756
757
758 bool BufferView::moveToPosition(pit_type bottom_pit, pos_type bottom_pos,
759         int top_id, pos_type top_pos)
760 {
761         bool success = false;
762         DocIterator dit;
763
764         d->cursor_.clearSelection();
765
766         // if a valid par_id is given, try it first
767         // This is the case for a 'live' bookmark when unique paragraph ID
768         // is used to track bookmarks.
769         if (top_id > 0) {
770                 dit = buffer_.getParFromID(top_id);
771                 if (!dit.atEnd()) {
772                         dit.pos() = min(dit.paragraph().size(), top_pos);
773                         // Some slices of the iterator may not be
774                         // reachable (e.g. closed collapsable inset)
775                         // so the dociterator may need to be
776                         // shortened. Otherwise, setCursor may crash
777                         // lyx when the cursor can not be set to these
778                         // insets.
779                         size_t const n = dit.depth();
780                         for (size_t i = 0; i < n; ++i)
781                                 if (!dit[i].inset().editable()) {
782                                         dit.resize(i);
783                                         break;
784                                 }
785                         success = true;
786                 }
787         }
788
789         // if top_id == 0, or searching through top_id failed
790         // This is the case for a 'restored' bookmark when only bottom
791         // (document level) pit was saved. Because of this, bookmark
792         // restoration is inaccurate. If a bookmark was within an inset,
793         // it will be restored to the left of the outmost inset that contains
794         // the bookmark.
795         if (bottom_pit < int(buffer_.paragraphs().size())) {
796                 dit = doc_iterator_begin(&buffer_);
797
798                 dit.pit() = bottom_pit;
799                 dit.pos() = min(bottom_pos, dit.paragraph().size());
800                 success = true;
801         }
802
803         if (success) {
804                 // Note: only bottom (document) level pit is set.
805                 setCursor(dit);
806                 // set the current font.
807                 d->cursor_.setCurrentFont();
808                 // To center the screen on this new position we need the
809                 // paragraph position which is computed at draw() time.
810                 // So we need a redraw!
811                 buffer_.changed(false);
812                 if (fitCursor())
813                         showCursor();
814         }
815
816         return success;
817 }
818
819
820 void BufferView::translateAndInsert(char_type c, Text * t, Cursor & cur)
821 {
822         if (d->cursor_.real_current_font.isRightToLeft()) {
823                 if (d->intl_.keymap == Intl::PRIMARY)
824                         d->intl_.keyMapSec();
825         } else {
826                 if (d->intl_.keymap == Intl::SECONDARY)
827                         d->intl_.keyMapPrim();
828         }
829
830         d->intl_.getTransManager().translateAndInsert(c, t, cur);
831 }
832
833
834 int BufferView::workWidth() const
835 {
836         return width_;
837 }
838
839
840 void BufferView::recenter()
841 {
842         showCursor(d->cursor_, true, true);
843 }
844
845
846 void BufferView::showCursor()
847 {
848         showCursor(d->cursor_, false, true);
849 }
850
851
852 void BufferView::showCursor(DocIterator const & dit,
853         bool recenter, bool update)
854 {
855         if (scrollToCursor(dit, recenter) && update) {
856                 buffer_.changed(true);
857                 updateHoveredInset();
858         }
859 }
860
861
862 void BufferView::scrollToCursor()
863 {
864         if (scrollToCursor(d->cursor_, false)) {
865                 buffer_.changed(true);
866                 updateHoveredInset();
867         }
868 }
869
870
871 bool BufferView::scrollToCursor(DocIterator const & dit, bool recenter)
872 {
873         // We are not properly started yet, delay until resizing is
874         // done.
875         if (height_ == 0)
876                 return false;
877
878         LYXERR(Debug::SCROLLING, "recentering!");
879
880         CursorSlice const & bot = dit.bottom();
881         TextMetrics & tm = d->text_metrics_[bot.text()];
882
883         pos_type const max_pit = pos_type(bot.text()->paragraphs().size() - 1);
884         int bot_pit = bot.pit();
885         if (bot_pit > max_pit) {
886                 // FIXME: Why does this happen?
887                 LYXERR0("bottom pit is greater that max pit: "
888                         << bot_pit << " > " << max_pit);
889                 bot_pit = max_pit;
890         }
891
892         if (bot_pit == tm.first().first - 1)
893                 tm.newParMetricsUp();
894         else if (bot_pit == tm.last().first + 1)
895                 tm.newParMetricsDown();
896
897         if (tm.contains(bot_pit)) {
898                 ParagraphMetrics const & pm = tm.parMetrics(bot_pit);
899                 LBUFERR(!pm.rows().empty());
900                 // FIXME: smooth scrolling doesn't work in mathed.
901                 CursorSlice const & cs = dit.innerTextSlice();
902                 int offset = coordOffset(dit).y_;
903                 int ypos = pm.position() + offset;
904                 Dimension const & row_dim =
905                         pm.getRow(cs.pos(), dit.boundary()).dimension();
906                 int scrolled = 0;
907                 if (recenter)
908                         scrolled = scroll(ypos - height_/2);
909
910                 // We try to visualize the whole row, if the row height is larger than
911                 // the screen height, we scroll to a heuristic value of height_ / 4.
912                 // FIXME: This heuristic value should be replaced by a recursive search
913                 // for a row in the inset that can be visualized completely.
914                 else if (row_dim.height() > height_) {
915                         if (ypos < defaultRowHeight())
916                                 scrolled = scroll(ypos - height_ / 4);
917                         else if (ypos > height_ - defaultRowHeight())
918                                 scrolled = scroll(ypos - 3 * height_ / 4);
919                 }
920
921                 // If the top part of the row falls of the screen, we scroll
922                 // up to align the top of the row with the top of the screen.
923                 else if (ypos - row_dim.ascent() < 0 && ypos < height_) {
924                         int ynew = row_dim.ascent();
925                         scrolled = scrollUp(ynew - ypos);
926                 }
927
928                 // If the bottom of the row falls of the screen, we scroll down.
929                 else if (ypos + row_dim.descent() > height_ && ypos > 0) {
930                         int ynew = height_ - row_dim.descent();
931                         scrolled = scrollDown(ypos - ynew);
932                 }
933
934                 // else, nothing to do, the cursor is already visible so we just return.
935                 return scrolled != 0;
936         }
937
938         // fix inline completion position
939         if (d->inlineCompletionPos_.fixIfBroken())
940                 d->inlineCompletionPos_ = DocIterator();
941
942         tm.redoParagraph(bot_pit);
943         ParagraphMetrics const & pm = tm.parMetrics(bot_pit);
944         int offset = coordOffset(dit).y_;
945
946         d->anchor_pit_ = bot_pit;
947         CursorSlice const & cs = dit.innerTextSlice();
948         Dimension const & row_dim =
949                 pm.getRow(cs.pos(), dit.boundary()).dimension();
950
951         if (recenter)
952                 d->anchor_ypos_ = height_/2;
953         else if (d->anchor_pit_ == 0)
954                 d->anchor_ypos_ = offset + pm.ascent();
955         else if (d->anchor_pit_ == max_pit)
956                 d->anchor_ypos_ = height_ - offset - row_dim.descent();
957         else if (offset > height_)
958                 d->anchor_ypos_ = height_ - offset - defaultRowHeight();
959         else
960                 d->anchor_ypos_ = defaultRowHeight() * 2;
961
962         return true;
963 }
964
965
966 void BufferView::makeDocumentClass()
967 {
968         DocumentClassConstPtr olddc = buffer_.params().documentClassPtr();
969         buffer_.params().makeDocumentClass();
970         updateDocumentClass(olddc);
971 }
972
973
974 void BufferView::updateDocumentClass(DocumentClassConstPtr olddc)
975 {
976         message(_("Converting document to new document class..."));
977
978         StableDocIterator backcur(d->cursor_);
979         ErrorList & el = buffer_.errorList("Class Switch");
980         cap::switchBetweenClasses(
981                         olddc, buffer_.params().documentClassPtr(),
982                         static_cast<InsetText &>(buffer_.inset()), el);
983
984         setCursor(backcur.asDocIterator(&buffer_));
985
986         buffer_.errors("Class Switch");
987 }
988
989
990 /** Return the change status at cursor position, taking in account the
991  * status at each level of the document iterator (a table in a deleted
992  * footnote is deleted).
993  * When \param outer is true, the top slice is not looked at.
994  */
995 static Change::Type lookupChangeType(DocIterator const & dit, bool outer = false)
996 {
997         size_t const depth = dit.depth() - (outer ? 1 : 0);
998
999         for (size_t i = 0 ; i < depth ; ++i) {
1000                 CursorSlice const & slice = dit[i];
1001                 if (!slice.inset().inMathed()
1002                     && slice.pos() < slice.paragraph().size()) {
1003                         Change::Type const ch = slice.paragraph().lookupChange(slice.pos()).type;
1004                         if (ch != Change::UNCHANGED)
1005                                 return ch;
1006                 }
1007         }
1008         return Change::UNCHANGED;
1009 }
1010
1011
1012 bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
1013 {
1014         FuncCode const act = cmd.action();
1015
1016         // Can we use a readonly buffer?
1017         if (buffer_.isReadonly()
1018             && !lyxaction.funcHasFlag(act, LyXAction::ReadOnly)
1019             && !lyxaction.funcHasFlag(act, LyXAction::NoBuffer)) {
1020                 flag.message(from_utf8(N_("Document is read-only")));
1021                 flag.setEnabled(false);
1022                 return true;
1023         }
1024
1025         // Are we in a DELETED change-tracking region?
1026         if (lookupChangeType(d->cursor_, true) == Change::DELETED
1027             && !lyxaction.funcHasFlag(act, LyXAction::ReadOnly)
1028             && !lyxaction.funcHasFlag(act, LyXAction::NoBuffer)) {
1029                 flag.message(from_utf8(N_("This portion of the document is deleted.")));
1030                 flag.setEnabled(false);
1031                 return true;
1032         }
1033
1034         Cursor & cur = d->cursor_;
1035
1036         if (cur.getStatus(cmd, flag))
1037                 return true;
1038
1039         switch (act) {
1040
1041         // FIXME: This is a bit problematic because we don't check if this is
1042         // a document BufferView or not for these LFUNs. We probably have to
1043         // dispatch both to currentBufferView() and, if that fails,
1044         // to documentBufferView(); same as we do now for current Buffer and
1045         // document Buffer. Ideally those LFUN should go to Buffer as they
1046         // operate on the full Buffer and the cursor is only needed either for
1047         // an Undo record or to restore a cursor position. But we don't know
1048         // how to do that inside Buffer of course.
1049         case LFUN_BUFFER_PARAMS_APPLY:
1050         case LFUN_LAYOUT_MODULES_CLEAR:
1051         case LFUN_LAYOUT_MODULE_ADD:
1052         case LFUN_LAYOUT_RELOAD:
1053         case LFUN_TEXTCLASS_APPLY:
1054         case LFUN_TEXTCLASS_LOAD:
1055                 flag.setEnabled(!buffer_.isReadonly());
1056                 break;
1057
1058         case LFUN_UNDO:
1059                 // We do not use the LyXAction flag for readonly because Undo sets the
1060                 // buffer clean/dirty status by itself.
1061                 flag.setEnabled(!buffer_.isReadonly() && buffer_.undo().hasUndoStack());
1062                 break;
1063         case LFUN_REDO:
1064                 // We do not use the LyXAction flag for readonly because Redo sets the
1065                 // buffer clean/dirty status by itself.
1066                 flag.setEnabled(!buffer_.isReadonly() && buffer_.undo().hasRedoStack());
1067                 break;
1068         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
1069         case LFUN_FILE_INSERT_PLAINTEXT: {
1070                 docstring const fname = cmd.argument();
1071                 if (!FileName::isAbsolute(to_utf8(fname))) {
1072                         flag.message(_("Absolute filename expected."));
1073                         return false;
1074                 }
1075                 flag.setEnabled(cur.inTexted());
1076                 break;
1077         }
1078         case LFUN_FILE_INSERT:
1079         case LFUN_BOOKMARK_SAVE:
1080                 // FIXME: Actually, these LFUNS should be moved to Text
1081                 flag.setEnabled(cur.inTexted());
1082                 break;
1083
1084         case LFUN_FONT_STATE:
1085         case LFUN_LABEL_INSERT:
1086         case LFUN_INFO_INSERT:
1087         case LFUN_PARAGRAPH_GOTO:
1088         case LFUN_NOTE_NEXT:
1089         case LFUN_REFERENCE_NEXT:
1090         case LFUN_WORD_FIND:
1091         case LFUN_WORD_FIND_FORWARD:
1092         case LFUN_WORD_FIND_BACKWARD:
1093         case LFUN_WORD_REPLACE:
1094         case LFUN_MARK_OFF:
1095         case LFUN_MARK_ON:
1096         case LFUN_MARK_TOGGLE:
1097         case LFUN_SCREEN_RECENTER:
1098         case LFUN_SCREEN_SHOW_CURSOR:
1099         case LFUN_BIBTEX_DATABASE_ADD:
1100         case LFUN_BIBTEX_DATABASE_DEL:
1101         case LFUN_STATISTICS:
1102         case LFUN_KEYMAP_OFF:
1103         case LFUN_KEYMAP_PRIMARY:
1104         case LFUN_KEYMAP_SECONDARY:
1105         case LFUN_KEYMAP_TOGGLE:
1106         case LFUN_INSET_SELECT_ALL:
1107                 flag.setEnabled(true);
1108                 break;
1109
1110         case LFUN_WORD_FINDADV: {
1111                 FindAndReplaceOptions opt;
1112                 istringstream iss(to_utf8(cmd.argument()));
1113                 iss >> opt;
1114                 flag.setEnabled(opt.repl_buf_name.empty()
1115                                 || !buffer_.isReadonly());
1116                 break;
1117         }
1118
1119         case LFUN_LABEL_GOTO:
1120                 flag.setEnabled(!cmd.argument().empty()
1121                     || getInsetByCode<InsetRef>(cur, REF_CODE));
1122                 break;
1123
1124         case LFUN_CHANGES_TRACK:
1125                 flag.setEnabled(true);
1126                 flag.setOnOff(buffer_.params().track_changes);
1127                 break;
1128
1129         case LFUN_CHANGES_OUTPUT:
1130                 flag.setEnabled(true);
1131                 flag.setOnOff(buffer_.params().output_changes);
1132                 break;
1133
1134         case LFUN_CHANGES_MERGE:
1135         case LFUN_CHANGE_NEXT:
1136         case LFUN_CHANGE_PREVIOUS:
1137         case LFUN_ALL_CHANGES_ACCEPT:
1138         case LFUN_ALL_CHANGES_REJECT:
1139                 // TODO: context-sensitive enabling of LFUNs
1140                 // In principle, these command should only be enabled if there
1141                 // is a change in the document. However, without proper
1142                 // optimizations, this will inevitably result in poor performance.
1143                 flag.setEnabled(true);
1144                 break;
1145
1146         case LFUN_BUFFER_TOGGLE_COMPRESSION: {
1147                 flag.setOnOff(buffer_.params().compressed);
1148                 break;
1149         }
1150
1151         case LFUN_BUFFER_TOGGLE_OUTPUT_SYNC: {
1152                 flag.setOnOff(buffer_.params().output_sync);
1153                 break;
1154         }
1155
1156         case LFUN_SCREEN_UP:
1157         case LFUN_SCREEN_DOWN:
1158         case LFUN_SCROLL:
1159         case LFUN_SCREEN_UP_SELECT:
1160         case LFUN_SCREEN_DOWN_SELECT:
1161         case LFUN_INSET_FORALL:
1162                 flag.setEnabled(true);
1163                 break;
1164
1165         case LFUN_LAYOUT_TABULAR:
1166                 flag.setEnabled(cur.innerInsetOfType(TABULAR_CODE));
1167                 break;
1168
1169         case LFUN_LAYOUT:
1170                 flag.setEnabled(!cur.inset().forcePlainLayout(cur.idx()));
1171                 break;
1172
1173         case LFUN_LAYOUT_PARAGRAPH:
1174                 flag.setEnabled(cur.inset().allowParagraphCustomization(cur.idx()));
1175                 break;
1176
1177         case LFUN_BRANCH_ADD_INSERT:
1178                 flag.setEnabled(!(cur.inTexted() && cur.paragraph().isPassThru()));
1179                 break;
1180
1181         case LFUN_DIALOG_SHOW_NEW_INSET:
1182                 // FIXME: this is wrong, but I do not understand the
1183                 // intent (JMarc)
1184                 if (cur.inset().lyxCode() == CAPTION_CODE)
1185                         return cur.inset().getStatus(cur, cmd, flag);
1186                 // FIXME we should consider passthru paragraphs too.
1187                 flag.setEnabled(!(cur.inTexted() && cur.paragraph().isPassThru()));
1188                 break;
1189
1190         case LFUN_CITATION_INSERT: {
1191                 FuncRequest fr(LFUN_INSET_INSERT, "citation");
1192                 // FIXME: This could turn in a recursive hell.
1193                 // Shouldn't we use Buffer::getStatus() instead?
1194                 flag.setEnabled(lyx::getStatus(fr).enabled());
1195                 break;
1196         }
1197         case LFUN_INSET_APPLY: {
1198                 string const name = cmd.getArg(0);
1199                 Inset * inset = editedInset(name);
1200                 if (inset) {
1201                         FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
1202                         if (!inset->getStatus(cur, fr, flag)) {
1203                                 // Every inset is supposed to handle this
1204                                 LASSERT(false, break);
1205                         }
1206                 } else {
1207                         FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
1208                         flag = lyx::getStatus(fr);
1209                 }
1210                 break;
1211         }
1212
1213         default:
1214                 return false;
1215         }
1216
1217         return true;
1218 }
1219
1220
1221 Inset * BufferView::editedInset(string const & name) const
1222 {
1223         map<string, Inset *>::const_iterator it = d->edited_insets_.find(name);
1224         return it == d->edited_insets_.end() ? 0 : it->second;
1225 }
1226
1227
1228 void BufferView::editInset(string const & name, Inset * inset)
1229 {
1230         d->edited_insets_[name] = inset;
1231 }
1232
1233
1234 void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
1235 {
1236         LYXERR(Debug::ACTION, "BufferView::dispatch: cmd: " << cmd);
1237
1238         string const argument = to_utf8(cmd.argument());
1239         Cursor & cur = d->cursor_;
1240
1241         // Don't dispatch function that does not apply to internal buffers.
1242         if (buffer_.isInternal()
1243             && lyxaction.funcHasFlag(cmd.action(), LyXAction::NoInternal))
1244                 return;
1245
1246         // We'll set this back to false if need be.
1247         bool dispatched = true;
1248         buffer_.undo().beginUndoGroup();
1249
1250         FuncCode const act = cmd.action();
1251         switch (act) {
1252
1253         case LFUN_BUFFER_PARAMS_APPLY: {
1254                 DocumentClassConstPtr olddc = buffer_.params().documentClassPtr();
1255                 cur.recordUndoBufferParams();
1256                 istringstream ss(to_utf8(cmd.argument()));
1257                 Lexer lex;
1258                 lex.setStream(ss);
1259                 int const unknown_tokens = buffer_.readHeader(lex);
1260                 if (unknown_tokens != 0) {
1261                         LYXERR0("Warning in LFUN_BUFFER_PARAMS_APPLY!\n"
1262                                                 << unknown_tokens << " unknown token"
1263                                                 << (unknown_tokens == 1 ? "" : "s"));
1264                 }
1265                 updateDocumentClass(olddc);
1266
1267                 // We are most certainly here because of a change in the document
1268                 // It is then better to make sure that all dialogs are in sync with
1269                 // current document settings.
1270                 dr.screenUpdate(Update::Force | Update::FitCursor);
1271                 dr.forceBufferUpdate();
1272                 break;
1273         }
1274
1275         case LFUN_LAYOUT_MODULES_CLEAR: {
1276                 // FIXME: this modifies the document in cap::switchBetweenClasses
1277                 //  without calling recordUndo. Fix this before using
1278                 //  recordUndoBufferParams().
1279                 cur.recordUndoFullBuffer();
1280                 buffer_.params().clearLayoutModules();
1281                 makeDocumentClass();
1282                 dr.screenUpdate(Update::Force);
1283                 dr.forceBufferUpdate();
1284                 break;
1285         }
1286
1287         case LFUN_LAYOUT_MODULE_ADD: {
1288                 BufferParams const & params = buffer_.params();
1289                 if (!params.layoutModuleCanBeAdded(argument)) {
1290                         LYXERR0("Module `" << argument <<
1291                                 "' cannot be added due to failed requirements or "
1292                                 "conflicts with installed modules.");
1293                         break;
1294                 }
1295                 // FIXME: this modifies the document in cap::switchBetweenClasses
1296                 //  without calling recordUndo. Fix this before using
1297                 //  recordUndoBufferParams().
1298                 cur.recordUndoFullBuffer();
1299                 buffer_.params().addLayoutModule(argument);
1300                 makeDocumentClass();
1301                 dr.screenUpdate(Update::Force);
1302                 dr.forceBufferUpdate();
1303                 break;
1304         }
1305
1306         case LFUN_TEXTCLASS_APPLY: {
1307                 // since this shortcircuits, the second call is made only if
1308                 // the first fails
1309                 bool const success =
1310                         LayoutFileList::get().load(argument, buffer_.temppath()) ||
1311                         LayoutFileList::get().load(argument, buffer_.filePath());
1312                 if (!success) {
1313                         docstring s = bformat(_("The document class `%1$s' "
1314                                                  "could not be loaded."), from_utf8(argument));
1315                         frontend::Alert::error(_("Could not load class"), s);
1316                         break;
1317                 }
1318
1319                 LayoutFile const * old_layout = buffer_.params().baseClass();
1320                 LayoutFile const * new_layout = &(LayoutFileList::get()[argument]);
1321
1322                 if (old_layout == new_layout)
1323                         // nothing to do
1324                         break;
1325
1326                 // Save the old, possibly modular, layout for use in conversion.
1327                 // FIXME: this modifies the document in cap::switchBetweenClasses
1328                 //  without calling recordUndo. Fix this before using
1329                 //  recordUndoBufferParams().
1330                 cur.recordUndoFullBuffer();
1331                 buffer_.params().setBaseClass(argument);
1332                 makeDocumentClass();
1333                 dr.screenUpdate(Update::Force);
1334                 dr.forceBufferUpdate();
1335                 break;
1336         }
1337
1338         case LFUN_TEXTCLASS_LOAD: {
1339                 // since this shortcircuits, the second call is made only if
1340                 // the first fails
1341                 bool const success =
1342                         LayoutFileList::get().load(argument, buffer_.temppath()) ||
1343                         LayoutFileList::get().load(argument, buffer_.filePath());
1344                 if (!success) {
1345                         docstring s = bformat(_("The document class `%1$s' "
1346                                                  "could not be loaded."), from_utf8(argument));
1347                         frontend::Alert::error(_("Could not load class"), s);
1348                 }
1349                 break;
1350         }
1351
1352         case LFUN_LAYOUT_RELOAD: {
1353                 LayoutFileIndex bc = buffer_.params().baseClassID();
1354                 LayoutFileList::get().reset(bc);
1355                 buffer_.params().setBaseClass(bc);
1356                 makeDocumentClass();
1357                 dr.screenUpdate(Update::Force);
1358                 dr.forceBufferUpdate();
1359                 break;
1360         }
1361
1362         case LFUN_UNDO:
1363                 dr.setMessage(_("Undo"));
1364                 cur.clearSelection();
1365                 if (!cur.textUndo())
1366                         dr.setMessage(_("No further undo information"));
1367                 else
1368                         dr.screenUpdate(Update::Force | Update::FitCursor);
1369                 dr.forceBufferUpdate();
1370                 break;
1371
1372         case LFUN_REDO:
1373                 dr.setMessage(_("Redo"));
1374                 cur.clearSelection();
1375                 if (!cur.textRedo())
1376                         dr.setMessage(_("No further redo information"));
1377                 else
1378                         dr.screenUpdate(Update::Force | Update::FitCursor);
1379                 dr.forceBufferUpdate();
1380                 break;
1381
1382         case LFUN_FONT_STATE:
1383                 dr.setMessage(cur.currentState());
1384                 break;
1385
1386         case LFUN_BOOKMARK_SAVE:
1387                 saveBookmark(convert<unsigned int>(to_utf8(cmd.argument())));
1388                 break;
1389
1390         case LFUN_LABEL_GOTO: {
1391                 docstring label = cmd.argument();
1392                 if (label.empty()) {
1393                         InsetRef * inset =
1394                                 getInsetByCode<InsetRef>(cur, REF_CODE);
1395                         if (inset) {
1396                                 label = inset->getParam("reference");
1397                                 // persistent=false: use temp_bookmark
1398                                 saveBookmark(0);
1399                         }
1400                 }
1401                 if (!label.empty()) {
1402                         gotoLabel(label);
1403                         // at the moment, this is redundant, since gotoLabel will
1404                         // eventually call LFUN_PARAGRAPH_GOTO, but it seems best
1405                         // to have it here.
1406                         dr.screenUpdate(Update::Force | Update::FitCursor);
1407                 }
1408                 break;
1409         }
1410
1411         case LFUN_PARAGRAPH_GOTO: {
1412                 int const id = convert<int>(cmd.getArg(0));
1413                 int const pos = convert<int>(cmd.getArg(1));
1414                 int i = 0;
1415                 for (Buffer * b = &buffer_; i == 0 || b != &buffer_;
1416                         b = theBufferList().next(b)) {
1417
1418                         DocIterator dit = b->getParFromID(id);
1419                         if (dit.atEnd()) {
1420                                 LYXERR(Debug::INFO, "No matching paragraph found! [" << id << "].");
1421                                 ++i;
1422                                 continue;
1423                         }
1424                         LYXERR(Debug::INFO, "Paragraph " << dit.paragraph().id()
1425                                 << " found in buffer `"
1426                                 << b->absFileName() << "'.");
1427
1428                         if (b == &buffer_) {
1429                                 // Set the cursor
1430                                 dit.pos() = pos;
1431                                 setCursor(dit);
1432                                 dr.screenUpdate(Update::Force | Update::FitCursor);
1433                         } else {
1434                                 // Switch to other buffer view and resend cmd
1435                                 lyx::dispatch(FuncRequest(
1436                                         LFUN_BUFFER_SWITCH, b->absFileName()));
1437                                 lyx::dispatch(cmd);
1438                         }
1439                         break;
1440                 }
1441                 break;
1442         }
1443
1444         case LFUN_NOTE_NEXT:
1445                 gotoInset(this, NOTE_CODE, false);
1446                 break;
1447
1448         case LFUN_REFERENCE_NEXT: {
1449                 vector<InsetCode> tmp;
1450                 tmp.push_back(LABEL_CODE);
1451                 tmp.push_back(REF_CODE);
1452                 gotoInset(this, tmp, true);
1453                 break;
1454         }
1455
1456         case LFUN_CHANGES_TRACK:
1457                 buffer_.params().track_changes = !buffer_.params().track_changes;
1458                 break;
1459
1460         case LFUN_CHANGES_OUTPUT:
1461                 buffer_.params().output_changes = !buffer_.params().output_changes;
1462                 if (buffer_.params().output_changes) {
1463                         bool dvipost    = LaTeXFeatures::isAvailable("dvipost");
1464                         bool xcolorulem = LaTeXFeatures::isAvailable("ulem") &&
1465                                           LaTeXFeatures::isAvailable("xcolor");
1466
1467                         if (!dvipost && !xcolorulem) {
1468                                 Alert::warning(_("Changes not shown in LaTeX output"),
1469                                                _("Changes will not be highlighted in LaTeX output, "
1470                                                  "because neither dvipost nor xcolor/ulem are installed.\n"
1471                                                  "Please install these packages or redefine "
1472                                                  "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
1473                         } else if (!xcolorulem) {
1474                                 Alert::warning(_("Changes not shown in LaTeX output"),
1475                                                _("Changes will not be highlighted in LaTeX output "
1476                                                  "when using pdflatex, because xcolor and ulem are not installed.\n"
1477                                                  "Please install both packages or redefine "
1478                                                  "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
1479                         }
1480                 }
1481                 break;
1482
1483         case LFUN_CHANGE_NEXT:
1484                 findNextChange(this);
1485                 // FIXME: Move this LFUN to Buffer so that we don't have to do this:
1486                 dr.screenUpdate(Update::Force | Update::FitCursor);
1487                 break;
1488
1489         case LFUN_CHANGE_PREVIOUS:
1490                 findPreviousChange(this);
1491                 // FIXME: Move this LFUN to Buffer so that we don't have to do this:
1492                 dr.screenUpdate(Update::Force | Update::FitCursor);
1493                 break;
1494
1495         case LFUN_CHANGES_MERGE:
1496                 if (findNextChange(this) || findPreviousChange(this)) {
1497                         dr.screenUpdate(Update::Force | Update::FitCursor);
1498                         dr.forceBufferUpdate();
1499                         showDialog("changes");
1500                 }
1501                 break;
1502
1503         case LFUN_ALL_CHANGES_ACCEPT:
1504                 // select complete document
1505                 cur.reset();
1506                 cur.selHandle(true);
1507                 buffer_.text().cursorBottom(cur);
1508                 // accept everything in a single step to support atomic undo
1509                 buffer_.text().acceptOrRejectChanges(cur, Text::ACCEPT);
1510                 cur.resetAnchor();
1511                 // FIXME: Move this LFUN to Buffer so that we don't have to do this:
1512                 dr.screenUpdate(Update::Force | Update::FitCursor);
1513                 dr.forceBufferUpdate();
1514                 break;
1515
1516         case LFUN_ALL_CHANGES_REJECT:
1517                 // select complete document
1518                 cur.reset();
1519                 cur.selHandle(true);
1520                 buffer_.text().cursorBottom(cur);
1521                 // reject everything in a single step to support atomic undo
1522                 // Note: reject does not work recursively; the user may have to repeat the operation
1523                 buffer_.text().acceptOrRejectChanges(cur, Text::REJECT);
1524                 cur.resetAnchor();
1525                 // FIXME: Move this LFUN to Buffer so that we don't have to do this:
1526                 dr.screenUpdate(Update::Force | Update::FitCursor);
1527                 dr.forceBufferUpdate();
1528                 break;
1529
1530         case LFUN_WORD_FIND_FORWARD:
1531         case LFUN_WORD_FIND_BACKWARD: {
1532                 // FIXME THREAD
1533                 // Would it maybe be better if this variable were view specific anyway?
1534                 static docstring last_search;
1535                 docstring searched_string;
1536
1537                 if (!cmd.argument().empty()) {
1538                         last_search = cmd.argument();
1539                         searched_string = cmd.argument();
1540                 } else {
1541                         searched_string = last_search;
1542                 }
1543
1544                 if (searched_string.empty())
1545                         break;
1546
1547                 bool const fw = act == LFUN_WORD_FIND_FORWARD;
1548                 docstring const data =
1549                         find2string(searched_string, true, false, fw);
1550                 bool found = lyxfind(this, FuncRequest(LFUN_WORD_FIND, data));
1551                 if (found) {
1552                         dr.screenUpdate(Update::Force | Update::FitCursor);
1553                         cur.dispatched();
1554                         dispatched = true;
1555                 } else {
1556                         cur.undispatched();
1557                         dispatched = false;
1558                 }
1559                 break;
1560         }
1561
1562         case LFUN_WORD_FIND: {
1563                 FuncRequest req = cmd;
1564                 if (cmd.argument().empty() && !d->search_request_cache_.argument().empty())
1565                         req = d->search_request_cache_;
1566                 if (req.argument().empty()) {
1567                         lyx::dispatch(FuncRequest(LFUN_DIALOG_SHOW, "findreplace"));
1568                         break;
1569                 }
1570                 if (lyxfind(this, req)) {
1571                         dr.screenUpdate(Update::Force | Update::FitCursor);
1572                         cur.dispatched();
1573                         dispatched = true;
1574                 } else {
1575                         cur.undispatched();
1576                         dispatched = false;
1577                 }
1578                 d->search_request_cache_ = req;
1579                 break;
1580         }
1581
1582         case LFUN_WORD_REPLACE: {
1583                 bool has_deleted = false;
1584                 if (cur.selection()) {
1585                         DocIterator beg = cur.selectionBegin();
1586                         DocIterator end = cur.selectionEnd();
1587                         if (beg.pit() == end.pit()) {
1588                                 for (pos_type p = beg.pos() ; p < end.pos() ; ++p) {
1589                                         if (!cur.inMathed() && cur.paragraph().isDeleted(p)) {
1590                                                 has_deleted = true;
1591                                                 break;
1592                                         }
1593                                 }
1594                         }
1595                 }
1596                 if (lyxreplace(this, cmd, has_deleted)) {
1597                         dr.forceBufferUpdate();
1598                         dr.screenUpdate(Update::Force | Update::FitCursor);
1599                         cur.dispatched();
1600                         dispatched = true;
1601                 } else {
1602                         cur.undispatched();
1603                         dispatched = false;
1604                 }
1605                 break;
1606         }
1607
1608         case LFUN_WORD_FINDADV: {
1609                 FindAndReplaceOptions opt;
1610                 istringstream iss(to_utf8(cmd.argument()));
1611                 iss >> opt;
1612                 if (findAdv(this, opt)) {
1613                         dr.screenUpdate(Update::Force | Update::FitCursor);
1614                         cur.dispatched();
1615                         dispatched = true;
1616                 } else {
1617                         cur.undispatched();
1618                         dispatched = false;
1619                 }
1620                 break;
1621         }
1622
1623         case LFUN_MARK_OFF:
1624                 cur.clearSelection();
1625                 dr.setMessage(from_utf8(N_("Mark off")));
1626                 break;
1627
1628         case LFUN_MARK_ON:
1629                 cur.clearSelection();
1630                 cur.setMark(true);
1631                 dr.setMessage(from_utf8(N_("Mark on")));
1632                 break;
1633
1634         case LFUN_MARK_TOGGLE:
1635                 cur.setSelection(false);
1636                 if (cur.mark()) {
1637                         cur.setMark(false);
1638                         dr.setMessage(from_utf8(N_("Mark removed")));
1639                 } else {
1640                         cur.setMark(true);
1641                         dr.setMessage(from_utf8(N_("Mark set")));
1642                 }
1643                 cur.resetAnchor();
1644                 break;
1645
1646         case LFUN_SCREEN_SHOW_CURSOR:
1647                 showCursor();
1648                 break;
1649
1650         case LFUN_SCREEN_RECENTER:
1651                 recenter();
1652                 break;
1653
1654         case LFUN_BIBTEX_DATABASE_ADD: {
1655                 Cursor tmpcur = cur;
1656                 findInset(tmpcur, BIBTEX_CODE, false);
1657                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
1658                                                 BIBTEX_CODE);
1659                 if (inset) {
1660                         if (inset->addDatabase(cmd.argument())) {
1661                                 buffer_.invalidateBibfileCache();
1662                                 dr.forceBufferUpdate();
1663                         }
1664                 }
1665                 break;
1666         }
1667
1668         case LFUN_BIBTEX_DATABASE_DEL: {
1669                 Cursor tmpcur = cur;
1670                 findInset(tmpcur, BIBTEX_CODE, false);
1671                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
1672                                                 BIBTEX_CODE);
1673                 if (inset) {
1674                         if (inset->delDatabase(cmd.argument())) {
1675                                 buffer_.invalidateBibfileCache();
1676                                 dr.forceBufferUpdate();
1677                         }
1678                 }
1679                 break;
1680         }
1681
1682         case LFUN_STATISTICS: {
1683                 DocIterator from, to;
1684                 if (cur.selection()) {
1685                         from = cur.selectionBegin();
1686                         to = cur.selectionEnd();
1687                 } else {
1688                         from = doc_iterator_begin(&buffer_);
1689                         to = doc_iterator_end(&buffer_);
1690                 }
1691                 buffer_.updateStatistics(from, to);
1692                 int const words = buffer_.wordCount();
1693                 int const chars = buffer_.charCount(false);
1694                 int const chars_blanks = buffer_.charCount(true);
1695                 docstring message;
1696                 if (cur.selection())
1697                         message = _("Statistics for the selection:");
1698                 else
1699                         message = _("Statistics for the document:");
1700                 message += "\n\n";
1701                 if (words != 1)
1702                         message += bformat(_("%1$d words"), words);
1703                 else
1704                         message += _("One word");
1705                 message += "\n";
1706                 if (chars_blanks != 1)
1707                         message += bformat(_("%1$d characters (including blanks)"),
1708                                           chars_blanks);
1709                 else
1710                         message += _("One character (including blanks)");
1711                 message += "\n";
1712                 if (chars != 1)
1713                         message += bformat(_("%1$d characters (excluding blanks)"),
1714                                           chars);
1715                 else
1716                         message += _("One character (excluding blanks)");
1717
1718                 Alert::information(_("Statistics"), message);
1719         }
1720                 break;
1721
1722         case LFUN_BUFFER_TOGGLE_COMPRESSION:
1723                 // turn compression on/off
1724                 buffer_.params().compressed = !buffer_.params().compressed;
1725                 break;
1726
1727         case LFUN_BUFFER_TOGGLE_OUTPUT_SYNC:
1728                 buffer_.params().output_sync = !buffer_.params().output_sync;
1729                 break;
1730
1731         case LFUN_SCREEN_UP:
1732         case LFUN_SCREEN_DOWN: {
1733                 Point p = getPos(cur);
1734                 // This code has been commented out to enable to scroll down a
1735                 // document, even if there are large insets in it (see bug #5465).
1736                 /*if (p.y_ < 0 || p.y_ > height_) {
1737                         // The cursor is off-screen so recenter before proceeding.
1738                         showCursor();
1739                         p = getPos(cur);
1740                 }*/
1741                 int const scrolled = scroll(act == LFUN_SCREEN_UP
1742                         ? -height_ : height_);
1743                 if (act == LFUN_SCREEN_UP && scrolled > -height_)
1744                         p = Point(0, 0);
1745                 if (act == LFUN_SCREEN_DOWN && scrolled < height_)
1746                         p = Point(width_, height_);
1747                 Cursor old = cur;
1748                 bool const in_texted = cur.inTexted();
1749                 cur.setCursor(doc_iterator_begin(cur.buffer()));
1750                 cur.selHandle(false);
1751                 buffer_.changed(true);
1752                 updateHoveredInset();
1753
1754                 d->text_metrics_[&buffer_.text()].editXY(cur, p.x_, p.y_,
1755                         true, act == LFUN_SCREEN_UP);
1756                 //FIXME: what to do with cur.x_target()?
1757                 bool update = in_texted && cur.bv().checkDepm(cur, old);
1758                 cur.finishUndo();
1759
1760                 if (update || cur.mark())
1761                         dr.screenUpdate(Update::Force | Update::FitCursor);
1762                 if (update)
1763                         dr.forceBufferUpdate();
1764                 break;
1765         }
1766
1767         case LFUN_SCROLL: {
1768                 string const scroll_type = cmd.getArg(0);
1769                 int scroll_step = 0;
1770                 if (scroll_type == "line")
1771                         scroll_step = d->scrollbarParameters_.single_step;
1772                 else if (scroll_type == "page")
1773                         scroll_step = d->scrollbarParameters_.page_step;
1774                 else
1775                         return;
1776                 string const scroll_quantity = cmd.getArg(1);
1777                 if (scroll_quantity == "up")
1778                         scrollUp(scroll_step);
1779                 else if (scroll_quantity == "down")
1780                         scrollDown(scroll_step);
1781                 else {
1782                         int const scroll_value = convert<int>(scroll_quantity);
1783                         if (scroll_value)
1784                                 scroll(scroll_step * scroll_value);
1785                 }
1786                 buffer_.changed(true);
1787                 updateHoveredInset();
1788                 dr.forceBufferUpdate();
1789                 break;
1790         }
1791
1792         case LFUN_SCREEN_UP_SELECT: {
1793                 // FIXME: why is the algorithm different from LFUN_SCREEN_UP?
1794                 cur.selHandle(true);
1795                 if (isTopScreen()) {
1796                         lyx::dispatch(FuncRequest(LFUN_BUFFER_BEGIN_SELECT));
1797                         cur.finishUndo();
1798                         break;
1799                 }
1800                 int y = getPos(cur).y_;
1801                 int const ymin = y - height_ + defaultRowHeight();
1802                 while (y > ymin && cur.up())
1803                         y = getPos(cur).y_;
1804
1805                 cur.finishUndo();
1806                 dr.screenUpdate(Update::SinglePar | Update::FitCursor);
1807                 break;
1808         }
1809
1810         case LFUN_SCREEN_DOWN_SELECT: {
1811                 // FIXME: why is the algorithm different from LFUN_SCREEN_DOWN?
1812                 cur.selHandle(true);
1813                 if (isBottomScreen()) {
1814                         lyx::dispatch(FuncRequest(LFUN_BUFFER_END_SELECT));
1815                         cur.finishUndo();
1816                         break;
1817                 }
1818                 int y = getPos(cur).y_;
1819                 int const ymax = y + height_ - defaultRowHeight();
1820                 while (y < ymax && cur.down())
1821                         y = getPos(cur).y_;
1822
1823                 cur.finishUndo();
1824                 dr.screenUpdate(Update::SinglePar | Update::FitCursor);
1825                 break;
1826         }
1827
1828
1829         case LFUN_INSET_SELECT_ALL:
1830                 if (cur.depth() > 1
1831                     && cur.selBegin().at_begin()
1832                     && cur.selEnd().at_end()) {
1833                         // All the contents of the inset if selected.
1834                         // Select the inset from outside.
1835                         cur.pop();
1836                         cur.resetAnchor();
1837                         cur.setSelection(true);
1838                         cur.posForward();
1839                 } else if (cur.selBegin().idx() != cur.selEnd().idx()
1840                            || (cur.depth() > 1
1841                                    && cur.selBegin().at_cell_begin()
1842                                && cur.selEnd().at_cell_end())) {
1843                         // At least one complete cell is selected.
1844                         // Select all cells
1845                         cur.idx() = 0;
1846                         cur.pos() = 0;
1847                         cur.resetAnchor();
1848                         cur.setSelection(true);
1849                         cur.idx() = cur.lastidx();
1850                         cur.pos() = cur.lastpos();
1851                 } else {
1852                         // select current cell
1853                         cur.pit() = 0;
1854                         cur.pos() = 0;
1855                         cur.resetAnchor();
1856                         cur.setSelection(true);
1857                         cur.pit() = cur.lastpit();
1858                         cur.pos() = cur.lastpos();
1859                 }
1860                 dr.screenUpdate(Update::Force);
1861                 break;
1862
1863
1864         // This would be in Buffer class if only Cursor did not
1865         // require a bufferview
1866         case LFUN_INSET_FORALL: {
1867                 docstring const name = from_utf8(cmd.getArg(0));
1868                 string const commandstr = cmd.getLongArg(1);
1869                 FuncRequest const fr = lyxaction.lookupFunc(commandstr);
1870
1871                 // an arbitrary number to limit number of iterations
1872                 const int max_iter = 100000;
1873                 int iterations = 0;
1874                 Cursor & cur = d->cursor_;
1875                 Cursor const savecur = cur;
1876                 cur.reset();
1877                 if (!cur.nextInset())
1878                         cur.forwardInset();
1879                 cur.beginUndoGroup();
1880                 while(cur && iterations < max_iter) {
1881                         Inset * const ins = cur.nextInset();
1882                         if (!ins)
1883                                 break;
1884                         docstring insname = ins->layoutName();
1885                         while (!insname.empty()) {
1886                                 if (insname == name || name == from_utf8("*")) {
1887                                         cur.recordUndo();
1888                                         lyx::dispatch(fr, dr);
1889                                         ++iterations;
1890                                         break;
1891                                 }
1892                                 size_t const i = insname.rfind(':');
1893                                 if (i == string::npos)
1894                                         break;
1895                                 insname = insname.substr(0, i);
1896                         }
1897                         // if we did not delete the inset, skip it
1898                         if (!cur.nextInset() || cur.nextInset() == ins)
1899                                 cur.forwardInset();
1900                 }
1901                 cur.endUndoGroup();
1902                 cur = savecur;
1903                 cur.fixIfBroken();
1904                 dr.screenUpdate(Update::Force);
1905                 dr.forceBufferUpdate();
1906
1907                 if (iterations >= max_iter) {
1908                         dr.setError(true);
1909                         dr.setMessage(bformat(_("`inset-forall' interrupted because number of actions is larger than %1$d"), max_iter));
1910                 } else
1911                         dr.setMessage(bformat(_("Applied \"%1$s\" to %2$d insets"), from_utf8(commandstr), iterations));
1912                 break;
1913         }
1914
1915
1916         case LFUN_BRANCH_ADD_INSERT: {
1917                 docstring branch_name = from_utf8(cmd.getArg(0));
1918                 if (branch_name.empty())
1919                         if (!Alert::askForText(branch_name, _("Branch name")) ||
1920                                                 branch_name.empty())
1921                                 break;
1922
1923                 DispatchResult drtmp;
1924                 buffer_.dispatch(FuncRequest(LFUN_BRANCH_ADD, branch_name), drtmp);
1925                 if (drtmp.error()) {
1926                         Alert::warning(_("Branch already exists"), drtmp.message());
1927                         break;
1928                 }
1929                 BranchList & branch_list = buffer_.params().branchlist();
1930                 vector<docstring> const branches =
1931                         getVectorFromString(branch_name, branch_list.separator());
1932                 for (vector<docstring>::const_iterator it = branches.begin();
1933                      it != branches.end(); ++it) {
1934                         branch_name = *it;
1935                         lyx::dispatch(FuncRequest(LFUN_BRANCH_INSERT, branch_name));
1936                 }
1937                 break;
1938         }
1939
1940         case LFUN_KEYMAP_OFF:
1941                 getIntl().keyMapOn(false);
1942                 break;
1943
1944         case LFUN_KEYMAP_PRIMARY:
1945                 getIntl().keyMapPrim();
1946                 break;
1947
1948         case LFUN_KEYMAP_SECONDARY:
1949                 getIntl().keyMapSec();
1950                 break;
1951
1952         case LFUN_KEYMAP_TOGGLE:
1953                 getIntl().toggleKeyMap();
1954                 break;
1955
1956         case LFUN_DIALOG_SHOW_NEW_INSET: {
1957                 string const name = cmd.getArg(0);
1958                 string data = trim(to_utf8(cmd.argument()).substr(name.size()));
1959                 if (decodeInsetParam(name, data, buffer_))
1960                         lyx::dispatch(FuncRequest(LFUN_DIALOG_SHOW, name + " " + data));
1961                 else
1962                         lyxerr << "Inset type '" << name <<
1963                         "' not recognized in LFUN_DIALOG_SHOW_NEW_INSET" <<  endl;
1964                 break;
1965         }
1966
1967         case LFUN_CITATION_INSERT: {
1968                 if (argument.empty()) {
1969                         lyx::dispatch(FuncRequest(LFUN_DIALOG_SHOW_NEW_INSET, "citation"));
1970                         break;
1971                 }
1972                 // we can have one optional argument, delimited by '|'
1973                 // citation-insert <key>|<text_before>
1974                 // this should be enhanced to also support text_after
1975                 // and citation style
1976                 string arg = argument;
1977                 string opt1;
1978                 if (contains(argument, "|")) {
1979                         arg = token(argument, '|', 0);
1980                         opt1 = token(argument, '|', 1);
1981                 }
1982
1983                 // if our cursor is directly in front of or behind a citation inset,
1984                 // we will instead add the new key to it.
1985                 Inset * inset = cur.nextInset();
1986                 if (!inset || inset->lyxCode() != CITE_CODE)
1987                         inset = cur.prevInset();
1988                 if (inset && inset->lyxCode() == CITE_CODE) {
1989                         InsetCitation * icite = static_cast<InsetCitation *>(inset);
1990                         if (icite->addKey(arg)) {
1991                                 dr.forceBufferUpdate();
1992                                 dr.screenUpdate(Update::FitCursor | Update::SinglePar);
1993                                 if (!opt1.empty())
1994                                         LYXERR0("Discarding optional argument to citation-insert.");
1995                         }
1996                         dispatched = true;
1997                         break;
1998                 }
1999                 InsetCommandParams icp(CITE_CODE);
2000                 icp["key"] = from_utf8(arg);
2001                 if (!opt1.empty())
2002                         icp["before"] = from_utf8(opt1);
2003                 string icstr = InsetCommand::params2string(icp);
2004                 FuncRequest fr(LFUN_INSET_INSERT, icstr);
2005                 lyx::dispatch(fr);
2006                 break;
2007         }
2008
2009         case LFUN_INSET_APPLY: {
2010                 string const name = cmd.getArg(0);
2011                 Inset * inset = editedInset(name);
2012                 if (!inset) {
2013                         FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
2014                         lyx::dispatch(fr);
2015                         break;
2016                 }
2017                 // put cursor in front of inset.
2018                 if (!setCursorFromInset(inset)) {
2019                         LASSERT(false, break);
2020                 }
2021                 cur.recordUndo();
2022                 FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
2023                 inset->dispatch(cur, fr);
2024                 dr.screenUpdate(cur.result().screenUpdate());
2025                 if (cur.result().needBufferUpdate())
2026                         dr.forceBufferUpdate();
2027                 break;
2028         }
2029
2030         // FIXME:
2031         // The change of language of buffer belongs to the Buffer class.
2032         // We have to do it here because we need a cursor for Undo.
2033         // When Undo::recordUndoBufferParams() is implemented someday
2034         // LFUN_BUFFER_LANGUAGE should be handled by the Buffer class.
2035         case LFUN_BUFFER_LANGUAGE: {
2036                 Language const * oldL = buffer_.params().language;
2037                 Language const * newL = languages.getLanguage(argument);
2038                 if (!newL || oldL == newL)
2039                         break;
2040                 if (oldL->rightToLeft() == newL->rightToLeft()) {
2041                         cur.recordUndoFullBuffer();
2042                         buffer_.changeLanguage(oldL, newL);
2043                         cur.setCurrentFont();
2044                         dr.forceBufferUpdate();
2045                 }
2046                 break;
2047         }
2048
2049         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
2050         case LFUN_FILE_INSERT_PLAINTEXT: {
2051                 bool const as_paragraph = (act == LFUN_FILE_INSERT_PLAINTEXT_PARA);
2052                 string const fname = to_utf8(cmd.argument());
2053                 if (!FileName::isAbsolute(fname))
2054                         dr.setMessage(_("Absolute filename expected."));
2055                 else
2056                         insertPlaintextFile(FileName(fname), as_paragraph);
2057                 break;
2058         }
2059
2060         default:
2061                 // OK, so try the Buffer itself...
2062                 buffer_.dispatch(cmd, dr);
2063                 dispatched = dr.dispatched();
2064                 break;
2065         }
2066
2067         buffer_.undo().endUndoGroup();
2068         dr.dispatched(dispatched);
2069 }
2070
2071
2072 docstring const BufferView::requestSelection()
2073 {
2074         Cursor & cur = d->cursor_;
2075
2076         LYXERR(Debug::SELECTION, "requestSelection: cur.selection: " << cur.selection());
2077         if (!cur.selection()) {
2078                 d->xsel_cache_.set = false;
2079                 return docstring();
2080         }
2081
2082         LYXERR(Debug::SELECTION, "requestSelection: xsel_cache.set: " << d->xsel_cache_.set);
2083         if (!d->xsel_cache_.set ||
2084             cur.top() != d->xsel_cache_.cursor ||
2085             cur.realAnchor().top() != d->xsel_cache_.anchor)
2086         {
2087                 d->xsel_cache_.cursor = cur.top();
2088                 d->xsel_cache_.anchor = cur.realAnchor().top();
2089                 d->xsel_cache_.set = cur.selection();
2090                 return cur.selectionAsString(false);
2091         }
2092         return docstring();
2093 }
2094
2095
2096 void BufferView::clearSelection()
2097 {
2098         d->cursor_.clearSelection();
2099         // Clear the selection buffer. Otherwise a subsequent
2100         // middle-mouse-button paste would use the selection buffer,
2101         // not the more current external selection.
2102         cap::clearSelection();
2103         d->xsel_cache_.set = false;
2104         // The buffer did not really change, but this causes the
2105         // redraw we need because we cleared the selection above.
2106         buffer_.changed(false);
2107 }
2108
2109
2110 void BufferView::resize(int width, int height)
2111 {
2112         // Update from work area
2113         width_ = width;
2114         height_ = height;
2115
2116         // Clear the paragraph height cache.
2117         d->par_height_.clear();
2118         // Redo the metrics.
2119         updateMetrics();
2120 }
2121
2122
2123 Inset const * BufferView::getCoveringInset(Text const & text,
2124                 int x, int y) const
2125 {
2126         TextMetrics & tm = d->text_metrics_[&text];
2127         Inset * inset = tm.checkInsetHit(x, y);
2128         if (!inset)
2129                 return 0;
2130
2131         if (!inset->descendable(*this))
2132                 // No need to go further down if the inset is not
2133                 // descendable.
2134                 return inset;
2135
2136         size_t cell_number = inset->nargs();
2137         // Check all the inner cell.
2138         for (size_t i = 0; i != cell_number; ++i) {
2139                 Text const * inner_text = inset->getText(i);
2140                 if (inner_text) {
2141                         // Try deeper.
2142                         Inset const * inset_deeper =
2143                                 getCoveringInset(*inner_text, x, y);
2144                         if (inset_deeper)
2145                                 return inset_deeper;
2146                 }
2147         }
2148
2149         return inset;
2150 }
2151
2152
2153 void BufferView::updateHoveredInset() const
2154 {
2155         // Get inset under mouse, if there is one.
2156         int const x = d->mouse_position_cache_.x_;
2157         int const y = d->mouse_position_cache_.y_;
2158         Inset const * covering_inset = getCoveringInset(buffer_.text(), x, y);
2159
2160         d->clickable_inset_ = covering_inset && covering_inset->clickable(x, y);
2161
2162         if (covering_inset == d->last_inset_)
2163                 // Same inset, no need to do anything...
2164                 return;
2165
2166         bool need_redraw = false;
2167         if (d->last_inset_) {
2168                 // Remove the hint on the last hovered inset (if any).
2169                 need_redraw |= d->last_inset_->setMouseHover(this, false);
2170                 d->last_inset_ = 0;
2171         }
2172
2173         if (covering_inset && covering_inset->setMouseHover(this, true)) {
2174                 need_redraw = true;
2175                 // Only the insets that accept the hover state, do
2176                 // clear the last_inset_, so only set the last_inset_
2177                 // member if the hovered setting is accepted.
2178                 d->last_inset_ = covering_inset;
2179         }
2180
2181         if (need_redraw) {
2182                 LYXERR(Debug::PAINTING, "Mouse hover detected at: ("
2183                                 << d->mouse_position_cache_.x_ << ", "
2184                                 << d->mouse_position_cache_.y_ << ")");
2185
2186                 d->update_strategy_ = DecorationUpdate;
2187
2188                 // This event (moving without mouse click) is not passed further.
2189                 // This should be changed if it is further utilized.
2190                 buffer_.changed(false);
2191         }
2192 }
2193
2194
2195 void BufferView::clearLastInset(Inset * inset) const
2196 {
2197         if (d->last_inset_ != inset) {
2198                 LYXERR0("Wrong last_inset!");
2199                 LATTEST(false);
2200         }
2201         d->last_inset_ = 0;
2202 }
2203
2204
2205 void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
2206 {
2207         //lyxerr << "[ cmd0 " << cmd0 << "]" << endl;
2208
2209         // This is only called for mouse related events including
2210         // LFUN_FILE_OPEN generated by drag-and-drop.
2211         FuncRequest cmd = cmd0;
2212
2213         Cursor old = cursor();
2214         Cursor cur(*this);
2215         cur.push(buffer_.inset());
2216         cur.setSelection(d->cursor_.selection());
2217
2218         // Either the inset under the cursor or the
2219         // surrounding Text will handle this event.
2220
2221         // make sure we stay within the screen...
2222         cmd.set_y(min(max(cmd.y(), -1), height_));
2223
2224         d->mouse_position_cache_.x_ = cmd.x();
2225         d->mouse_position_cache_.y_ = cmd.y();
2226
2227         if (cmd.action() == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
2228                 updateHoveredInset();
2229                 return;
2230         }
2231
2232         // Build temporary cursor.
2233         Inset * inset = d->text_metrics_[&buffer_.text()].editXY(cur, cmd.x(), cmd.y());
2234
2235         // Put anchor at the same position.
2236         cur.resetAnchor();
2237
2238         cur.beginUndoGroup();
2239
2240         // Try to dispatch to an non-editable inset near this position
2241         // via the temp cursor. If the inset wishes to change the real
2242         // cursor it has to do so explicitly by using
2243         //  cur.bv().cursor() = cur;  (or similar)
2244         if (inset)
2245                 inset->dispatch(cur, cmd);
2246
2247         // Now dispatch to the temporary cursor. If the real cursor should
2248         // be modified, the inset's dispatch has to do so explicitly.
2249         if (!inset || !cur.result().dispatched())
2250                 cur.dispatch(cmd);
2251
2252         cur.endUndoGroup();
2253
2254         // Notify left insets
2255         if (cur != old) {
2256                 bool badcursor = old.fixIfBroken() | cur.fixIfBroken();
2257                 badcursor |= notifyCursorLeavesOrEnters(old, cur);
2258                 if (badcursor)
2259                         cursor().fixIfBroken();
2260         }
2261
2262         // Do we have a selection?
2263         theSelection().haveSelection(cursor().selection());
2264
2265         if (cur.needBufferUpdate()) {
2266                 cur.clearBufferUpdate();
2267                 buffer().updateBuffer();
2268         }
2269
2270         // If the command has been dispatched,
2271         if (cur.result().dispatched() || cur.result().screenUpdate())
2272                 processUpdateFlags(cur.result().screenUpdate());
2273 }
2274
2275
2276 int BufferView::minVisiblePart()
2277 {
2278         return 2 * defaultRowHeight();
2279 }
2280
2281
2282 int BufferView::scroll(int y)
2283 {
2284         if (y > 0)
2285                 return scrollDown(y);
2286         if (y < 0)
2287                 return scrollUp(-y);
2288         return 0;
2289 }
2290
2291
2292 int BufferView::scrollDown(int offset)
2293 {
2294         Text * text = &buffer_.text();
2295         TextMetrics & tm = d->text_metrics_[text];
2296         int const ymax = height_ + offset;
2297         while (true) {
2298                 pair<pit_type, ParagraphMetrics const *> last = tm.last();
2299                 int bottom_pos = last.second->position() + last.second->descent();
2300                 if (lyxrc.scroll_below_document)
2301                         bottom_pos += height_ - minVisiblePart();
2302                 if (last.first + 1 == int(text->paragraphs().size())) {
2303                         if (bottom_pos <= height_)
2304                                 return 0;
2305                         offset = min(offset, bottom_pos - height_);
2306                         break;
2307                 }
2308                 if (bottom_pos > ymax)
2309                         break;
2310                 tm.newParMetricsDown();
2311         }
2312         d->anchor_ypos_ -= offset;
2313         return -offset;
2314 }
2315
2316
2317 int BufferView::scrollUp(int offset)
2318 {
2319         Text * text = &buffer_.text();
2320         TextMetrics & tm = d->text_metrics_[text];
2321         int ymin = - offset;
2322         while (true) {
2323                 pair<pit_type, ParagraphMetrics const *> first = tm.first();
2324                 int top_pos = first.second->position() - first.second->ascent();
2325                 if (first.first == 0) {
2326                         if (top_pos >= 0)
2327                                 return 0;
2328                         offset = min(offset, - top_pos);
2329                         break;
2330                 }
2331                 if (top_pos < ymin)
2332                         break;
2333                 tm.newParMetricsUp();
2334         }
2335         d->anchor_ypos_ += offset;
2336         return offset;
2337 }
2338
2339
2340 void BufferView::setCursorFromRow(int row)
2341 {
2342         int tmpid;
2343         int tmppos;
2344         pit_type newpit = 0;
2345         pos_type newpos = 0;
2346
2347         buffer_.texrow().getIdFromRow(row, tmpid, tmppos);
2348
2349         bool posvalid = (tmpid != -1);
2350         if (posvalid) {
2351                 // we need to make sure that the row and position
2352                 // we got back are valid, because the buffer may well
2353                 // have changed since we last generated the LaTeX.
2354                 DocIterator dit = buffer_.getParFromID(tmpid);
2355                 if (dit == doc_iterator_end(&buffer_))
2356                         posvalid = false;
2357                 else if (dit.depth() > 1) {
2358                         // We are in an inset.
2359                         pos_type lastpos = dit.lastpos();
2360                         dit.pos() = tmppos > lastpos ? lastpos : tmppos;
2361                         setCursor(dit);
2362                         recenter();
2363                         return;
2364                 } else {
2365                         newpit = dit.pit();
2366                         // now have to check pos.
2367                         newpos = tmppos;
2368                         Paragraph const & par = buffer_.text().getPar(newpit);
2369                         if (newpos > par.size()) {
2370                                 LYXERR0("Requested position no longer valid.");
2371                                 newpos = par.size() - 1;
2372                         }
2373                 }
2374         }
2375         if (!posvalid) {
2376                 frontend::Alert::error(_("Inverse Search Failed"),
2377                         _("Invalid position requested by inverse search.\n"
2378                     "You need to update the viewed document."));
2379                 return;
2380         }
2381         d->cursor_.reset();
2382         buffer_.text().setCursor(d->cursor_, newpit, newpos);
2383         d->cursor_.setSelection(false);
2384         d->cursor_.resetAnchor();
2385         recenter();
2386 }
2387
2388
2389 bool BufferView::setCursorFromInset(Inset const * inset)
2390 {
2391         // are we already there?
2392         if (cursor().nextInset() == inset)
2393                 return true;
2394
2395         // Inset is not at cursor position. Find it in the document.
2396         Cursor cur(*this);
2397         cur.reset();
2398         while (cur && cur.nextInset() != inset)
2399                 cur.forwardInset();
2400
2401         if (cur) {
2402                 setCursor(cur);
2403                 return true;
2404         }
2405         return false;
2406 }
2407
2408
2409 void BufferView::gotoLabel(docstring const & label)
2410 {
2411         ListOfBuffers bufs = buffer().allRelatives();
2412         ListOfBuffers::iterator it = bufs.begin();
2413         for (; it != bufs.end(); ++it) {
2414                 Buffer const * buf = *it;
2415
2416                 // find label
2417                 Toc & toc = buf->tocBackend().toc("label");
2418                 TocIterator toc_it = toc.begin();
2419                 TocIterator end = toc.end();
2420                 for (; toc_it != end; ++toc_it) {
2421                         if (label == toc_it->str()) {
2422                                 lyx::dispatch(toc_it->action());
2423                                 return;
2424                         }
2425                 }
2426         }
2427 }
2428
2429
2430 TextMetrics const & BufferView::textMetrics(Text const * t) const
2431 {
2432         return const_cast<BufferView *>(this)->textMetrics(t);
2433 }
2434
2435
2436 TextMetrics & BufferView::textMetrics(Text const * t)
2437 {
2438         LBUFERR(t);
2439         TextMetricsCache::iterator tmc_it  = d->text_metrics_.find(t);
2440         if (tmc_it == d->text_metrics_.end()) {
2441                 tmc_it = d->text_metrics_.insert(
2442                         make_pair(t, TextMetrics(this, const_cast<Text *>(t)))).first;
2443         }
2444         return tmc_it->second;
2445 }
2446
2447
2448 ParagraphMetrics const & BufferView::parMetrics(Text const * t,
2449                 pit_type pit) const
2450 {
2451         return textMetrics(t).parMetrics(pit);
2452 }
2453
2454
2455 int BufferView::workHeight() const
2456 {
2457         return height_;
2458 }
2459
2460
2461 void BufferView::setCursor(DocIterator const & dit)
2462 {
2463         d->cursor_.reset();
2464         size_t const n = dit.depth();
2465         for (size_t i = 0; i < n; ++i)
2466                 dit[i].inset().edit(d->cursor_, true);
2467
2468         d->cursor_.setCursor(dit);
2469         d->cursor_.setSelection(false);
2470         // FIXME
2471         // It seems on general grounds as if this is probably needed, but
2472         // it is not yet clear.
2473         // See bug #7394 and r38388.
2474         // d->cursor.resetAnchor();
2475 }
2476
2477
2478 bool BufferView::checkDepm(Cursor & cur, Cursor & old)
2479 {
2480         // Would be wrong to delete anything if we have a selection.
2481         if (cur.selection())
2482                 return false;
2483
2484         bool need_anchor_change = false;
2485         bool changed = d->cursor_.text()->deleteEmptyParagraphMechanism(cur, old,
2486                 need_anchor_change);
2487
2488         if (need_anchor_change)
2489                 cur.resetAnchor();
2490
2491         if (!changed)
2492                 return false;
2493
2494         d->cursor_ = cur;
2495
2496         // we would rather not do this here, but it needs to be done before
2497         // the changed() signal is sent.
2498         buffer_.updateBuffer();
2499
2500         buffer_.changed(true);
2501         return true;
2502 }
2503
2504
2505 bool BufferView::mouseSetCursor(Cursor & cur, bool select)
2506 {
2507         LASSERT(&cur.bv() == this, return false);
2508
2509         if (!select)
2510                 // this event will clear selection so we save selection for
2511                 // persistent selection
2512                 cap::saveSelection(cursor());
2513
2514         d->cursor_.macroModeClose();
2515         // If a macro has been finalized, the cursor might have been broken
2516         cur.fixIfBroken();
2517
2518         // Has the cursor just left the inset?
2519         bool const leftinset = (&d->cursor_.inset() != &cur.inset());
2520         if (leftinset)
2521                 d->cursor_.fixIfBroken();
2522
2523         // FIXME: shift-mouse selection doesn't work well across insets.
2524         bool const do_selection =
2525                         select && &d->cursor_.normalAnchor().inset() == &cur.inset();
2526
2527         // do the dEPM magic if needed
2528         // FIXME: (1) move this to InsetText::notifyCursorLeaves?
2529         // FIXME: (2) if we had a working InsetText::notifyCursorLeaves,
2530         // the leftinset bool would not be necessary (badcursor instead).
2531         bool update = leftinset;
2532         if (!do_selection && d->cursor_.inTexted())
2533                 update |= checkDepm(cur, d->cursor_);
2534
2535         if (!do_selection)
2536                 d->cursor_.resetAnchor();
2537         d->cursor_.setCursor(cur);
2538         d->cursor_.boundary(cur.boundary());
2539         if (do_selection)
2540                 d->cursor_.setSelection();
2541         else
2542                 d->cursor_.clearSelection();
2543
2544         d->cursor_.finishUndo();
2545         d->cursor_.setCurrentFont();
2546         if (update)
2547                 cur.forceBufferUpdate();
2548         return update;
2549 }
2550
2551
2552 void BufferView::putSelectionAt(DocIterator const & cur,
2553                                 int length, bool backwards)
2554 {
2555         d->cursor_.clearSelection();
2556
2557         setCursor(cur);
2558
2559         if (length) {
2560                 if (backwards) {
2561                         d->cursor_.pos() += length;
2562                         d->cursor_.setSelection(d->cursor_, -length);
2563                 } else
2564                         d->cursor_.setSelection(d->cursor_, length);
2565         }
2566 }
2567
2568
2569 bool BufferView::selectIfEmpty(DocIterator & cur)
2570 {
2571         if ((cur.inTexted() && !cur.paragraph().empty())
2572             || (cur.inMathed() && !cur.cell().empty()))
2573                 return false;
2574
2575         pit_type const beg_pit = cur.pit();
2576         if (beg_pit > 0) {
2577                 // The paragraph associated to this item isn't
2578                 // the first one, so it can be selected
2579                 cur.backwardPos();
2580         } else {
2581                 // We have to resort to select the space between the
2582                 // end of this item and the begin of the next one
2583                 cur.forwardPos();
2584         }
2585         if (cur.empty()) {
2586                 // If it is the only item in the document,
2587                 // nothing can be selected
2588                 return false;
2589         }
2590         pit_type const end_pit = cur.pit();
2591         pos_type const end_pos = cur.pos();
2592         d->cursor_.clearSelection();
2593         d->cursor_.reset();
2594         d->cursor_.setCursor(cur);
2595         d->cursor_.pit() = beg_pit;
2596         d->cursor_.pos() = 0;
2597         d->cursor_.setSelection(false);
2598         d->cursor_.resetAnchor();
2599         d->cursor_.pit() = end_pit;
2600         d->cursor_.pos() = end_pos;
2601         d->cursor_.setSelection();
2602         return true;
2603 }
2604
2605
2606 Cursor & BufferView::cursor()
2607 {
2608         return d->cursor_;
2609 }
2610
2611
2612 Cursor const & BufferView::cursor() const
2613 {
2614         return d->cursor_;
2615 }
2616
2617
2618 pit_type BufferView::anchor_ref() const
2619 {
2620         return d->anchor_pit_;
2621 }
2622
2623
2624 bool BufferView::singleParUpdate()
2625 {
2626         Text & buftext = buffer_.text();
2627         pit_type const bottom_pit = d->cursor_.bottom().pit();
2628         TextMetrics & tm = textMetrics(&buftext);
2629         int old_height = tm.parMetrics(bottom_pit).height();
2630
2631         // make sure inline completion pointer is ok
2632         if (d->inlineCompletionPos_.fixIfBroken())
2633                 d->inlineCompletionPos_ = DocIterator();
2634
2635         // In Single Paragraph mode, rebreak only
2636         // the (main text, not inset!) paragraph containing the cursor.
2637         // (if this paragraph contains insets etc., rebreaking will
2638         // recursively descend)
2639         tm.redoParagraph(bottom_pit);
2640         ParagraphMetrics const & pm = tm.parMetrics(bottom_pit);
2641         if (pm.height() != old_height)
2642                 // Paragraph height has changed so we cannot proceed to
2643                 // the singlePar optimisation.
2644                 return false;
2645
2646         d->update_strategy_ = SingleParUpdate;
2647
2648         LYXERR(Debug::PAINTING, "\ny1: " << pm.position() - pm.ascent()
2649                 << " y2: " << pm.position() + pm.descent()
2650                 << " pit: " << bottom_pit
2651                 << " singlepar: 1");
2652         return true;
2653 }
2654
2655
2656 void BufferView::updateMetrics()
2657 {
2658         if (height_ == 0 || width_ == 0)
2659                 return;
2660
2661         Text & buftext = buffer_.text();
2662         pit_type const npit = int(buftext.paragraphs().size());
2663
2664         // Clear out the position cache in case of full screen redraw,
2665         d->coord_cache_.clear();
2666
2667         // Clear out paragraph metrics to avoid having invalid metrics
2668         // in the cache from paragraphs not relayouted below
2669         // The complete text metrics will be redone.
2670         d->text_metrics_.clear();
2671
2672         TextMetrics & tm = textMetrics(&buftext);
2673
2674         // make sure inline completion pointer is ok
2675         if (d->inlineCompletionPos_.fixIfBroken())
2676                 d->inlineCompletionPos_ = DocIterator();
2677
2678         if (d->anchor_pit_ >= npit)
2679                 // The anchor pit must have been deleted...
2680                 d->anchor_pit_ = npit - 1;
2681
2682         // Rebreak anchor paragraph.
2683         tm.redoParagraph(d->anchor_pit_);
2684         ParagraphMetrics & anchor_pm = tm.par_metrics_[d->anchor_pit_];
2685
2686         // position anchor
2687         if (d->anchor_pit_ == 0) {
2688                 int scrollRange = d->scrollbarParameters_.max - d->scrollbarParameters_.min;
2689
2690                 // Complete buffer visible? Then it's easy.
2691                 if (scrollRange == 0)
2692                         d->anchor_ypos_ = anchor_pm.ascent();
2693
2694                 // FIXME: Some clever handling needed to show
2695                 // the _first_ paragraph up to the top if the cursor is
2696                 // in the first line.
2697         }
2698         anchor_pm.setPosition(d->anchor_ypos_);
2699
2700         LYXERR(Debug::PAINTING, "metrics: "
2701                 << " anchor pit = " << d->anchor_pit_
2702                 << " anchor ypos = " << d->anchor_ypos_);
2703
2704         // Redo paragraphs above anchor if necessary.
2705         int y1 = d->anchor_ypos_ - anchor_pm.ascent();
2706         // We are now just above the anchor paragraph.
2707         pit_type pit1 = d->anchor_pit_ - 1;
2708         for (; pit1 >= 0 && y1 >= 0; --pit1) {
2709                 tm.redoParagraph(pit1);
2710                 ParagraphMetrics & pm = tm.par_metrics_[pit1];
2711                 y1 -= pm.descent();
2712                 // Save the paragraph position in the cache.
2713                 pm.setPosition(y1);
2714                 y1 -= pm.ascent();
2715         }
2716
2717         // Redo paragraphs below the anchor if necessary.
2718         int y2 = d->anchor_ypos_ + anchor_pm.descent();
2719         // We are now just below the anchor paragraph.
2720         pit_type pit2 = d->anchor_pit_ + 1;
2721         for (; pit2 < npit && y2 <= height_; ++pit2) {
2722                 tm.redoParagraph(pit2);
2723                 ParagraphMetrics & pm = tm.par_metrics_[pit2];
2724                 y2 += pm.ascent();
2725                 // Save the paragraph position in the cache.
2726                 pm.setPosition(y2);
2727                 y2 += pm.descent();
2728         }
2729
2730         LYXERR(Debug::PAINTING, "Metrics: "
2731                 << " anchor pit = " << d->anchor_pit_
2732                 << " anchor ypos = " << d->anchor_ypos_
2733                 << " y1 = " << y1
2734                 << " y2 = " << y2
2735                 << " pit1 = " << pit1
2736                 << " pit2 = " << pit2);
2737
2738         d->update_strategy_ = FullScreenUpdate;
2739
2740         if (lyxerr.debugging(Debug::WORKAREA)) {
2741                 LYXERR(Debug::WORKAREA, "BufferView::updateMetrics");
2742                 d->coord_cache_.dump();
2743         }
2744 }
2745
2746
2747 void BufferView::insertLyXFile(FileName const & fname)
2748 {
2749         LASSERT(d->cursor_.inTexted(), return);
2750
2751         // Get absolute path of file and add ".lyx"
2752         // to the filename if necessary
2753         FileName filename = fileSearch(string(), fname.absFileName(), "lyx");
2754
2755         docstring const disp_fn = makeDisplayPath(filename.absFileName());
2756         // emit message signal.
2757         message(bformat(_("Inserting document %1$s..."), disp_fn));
2758
2759         docstring res;
2760         Buffer buf(filename.absFileName(), false);
2761         if (buf.loadLyXFile() == Buffer::ReadSuccess) {
2762                 ErrorList & el = buffer_.errorList("Parse");
2763                 // Copy the inserted document error list into the current buffer one.
2764                 el = buf.errorList("Parse");
2765                 buffer_.undo().recordUndo(d->cursor_);
2766                 cap::pasteParagraphList(d->cursor_, buf.paragraphs(),
2767                                              buf.params().documentClassPtr(), el);
2768                 res = _("Document %1$s inserted.");
2769         } else {
2770                 res = _("Could not insert document %1$s");
2771         }
2772
2773         buffer_.changed(true);
2774         // emit message signal.
2775         message(bformat(res, disp_fn));
2776 }
2777
2778
2779 Point BufferView::coordOffset(DocIterator const & dit) const
2780 {
2781         int x = 0;
2782         int y = 0;
2783         int lastw = 0;
2784
2785         // Addup contribution of nested insets, from inside to outside,
2786         // keeping the outer paragraph for a special handling below
2787         for (size_t i = dit.depth() - 1; i >= 1; --i) {
2788                 CursorSlice const & sl = dit[i];
2789                 int xx = 0;
2790                 int yy = 0;
2791
2792                 // get relative position inside sl.inset()
2793                 sl.inset().cursorPos(*this, sl, dit.boundary() && (i + 1 == dit.depth()), xx, yy);
2794
2795                 // Make relative position inside of the edited inset relative to sl.inset()
2796                 x += xx;
2797                 y += yy;
2798
2799                 // In case of an RTL inset, the edited inset will be positioned to the left
2800                 // of xx:yy
2801                 if (sl.text()) {
2802                         bool boundary_i = dit.boundary() && i + 1 == dit.depth();
2803                         bool rtl = textMetrics(sl.text()).isRTL(sl, boundary_i);
2804                         if (rtl)
2805                                 x -= lastw;
2806                 }
2807
2808                 // remember width for the case that sl.inset() is positioned in an RTL inset
2809                 if (i && dit[i - 1].text()) {
2810                         // If this Inset is inside a Text Inset, retrieve the Dimension
2811                         // from the containing text instead of using Inset::dimension() which
2812                         // might not be implemented.
2813                         // FIXME (Abdel 23/09/2007): this is a bit messy because of the
2814                         // elimination of Inset::dim_ cache. This coordOffset() method needs
2815                         // to be rewritten in light of the new design.
2816                         Dimension const & dim = parMetrics(dit[i - 1].text(),
2817                                 dit[i - 1].pit()).insetDimension(&sl.inset());
2818                         lastw = dim.wid;
2819                 } else {
2820                         Dimension const dim = sl.inset().dimension(*this);
2821                         lastw = dim.wid;
2822                 }
2823
2824                 //lyxerr << "Cursor::getPos, i: "
2825                 // << i << " x: " << xx << " y: " << y << endl;
2826         }
2827
2828         // Add contribution of initial rows of outermost paragraph
2829         CursorSlice const & sl = dit[0];
2830         TextMetrics const & tm = textMetrics(sl.text());
2831         ParagraphMetrics const & pm = tm.parMetrics(sl.pit());
2832
2833         LBUFERR(!pm.rows().empty());
2834         y -= pm.rows()[0].ascent();
2835 #if 1
2836         // FIXME: document this mess
2837         size_t rend;
2838         if (sl.pos() > 0 && dit.depth() == 1) {
2839                 int pos = sl.pos();
2840                 if (pos && dit.boundary())
2841                         --pos;
2842 //              lyxerr << "coordOffset: boundary:" << dit.boundary() << " depth:" << dit.depth() << " pos:" << pos << " sl.pos:" << sl.pos() << endl;
2843                 rend = pm.pos2row(pos);
2844         } else
2845                 rend = pm.pos2row(sl.pos());
2846 #else
2847         size_t rend = pm.pos2row(sl.pos());
2848 #endif
2849         for (size_t rit = 0; rit != rend; ++rit)
2850                 y += pm.rows()[rit].height();
2851         y += pm.rows()[rend].ascent();
2852
2853         TextMetrics const & bottom_tm = textMetrics(dit.bottom().text());
2854
2855         // Make relative position from the nested inset now bufferview absolute.
2856         int xx = bottom_tm.cursorX(dit.bottom(), dit.boundary() && dit.depth() == 1);
2857         x += xx;
2858
2859         // In the RTL case place the nested inset at the left of the cursor in
2860         // the outer paragraph
2861         bool boundary_1 = dit.boundary() && 1 == dit.depth();
2862         bool rtl = bottom_tm.isRTL(dit.bottom(), boundary_1);
2863         if (rtl)
2864                 x -= lastw;
2865
2866         return Point(x, y);
2867 }
2868
2869
2870 Point BufferView::getPos(DocIterator const & dit) const
2871 {
2872         if (!paragraphVisible(dit))
2873                 return Point(-1, -1);
2874
2875         CursorSlice const & bot = dit.bottom();
2876         TextMetrics const & tm = textMetrics(bot.text());
2877
2878         // offset from outer paragraph
2879         Point p = coordOffset(dit);
2880         p.y_ += tm.parMetrics(bot.pit()).position();
2881         return p;
2882 }
2883
2884
2885 bool BufferView::paragraphVisible(DocIterator const & dit) const
2886 {
2887         CursorSlice const & bot = dit.bottom();
2888         TextMetrics const & tm = textMetrics(bot.text());
2889
2890         return tm.contains(bot.pit());
2891 }
2892
2893
2894 void BufferView::cursorPosAndHeight(Point & p, int & h) const
2895 {
2896         Cursor const & cur = cursor();
2897         Font const font = cur.getFont();
2898         frontend::FontMetrics const & fm = theFontMetrics(font);
2899         int const asc = fm.maxAscent();
2900         int const des = fm.maxDescent();
2901         h = asc + des;
2902         p = getPos(cur);
2903         p.y_ -= asc;
2904 }
2905
2906
2907 bool BufferView::cursorInView(Point const & p, int h) const
2908 {
2909         Cursor const & cur = cursor();
2910         // does the cursor touch the screen ?
2911         if (p.y_ + h < 0 || p.y_ >= workHeight() || !paragraphVisible(cur))
2912                 return false;
2913         return true;
2914 }
2915
2916
2917 int BufferView::horizScrollOffset() const
2918 {
2919         return d->horiz_scroll_offset_;
2920 }
2921
2922
2923 CursorSlice const & BufferView::currentRowSlice() const
2924 {
2925         return d->current_row_slice_;
2926 }
2927
2928
2929 CursorSlice const & BufferView::lastRowSlice() const
2930 {
2931         return d->last_row_slice_;
2932 }
2933
2934
2935 void BufferView::setCurrentRowSlice(CursorSlice const & rowSlice)
2936 {
2937         // nothing to do if the cursor was already on this row
2938         if (d->current_row_slice_ == rowSlice) {
2939                 d->last_row_slice_ = CursorSlice();
2940                 return;
2941         }
2942
2943         // if the (previous) current row was scrolled, we have to
2944         // remember it in order to repaint it next time.
2945         if (d->horiz_scroll_offset_ != 0)
2946                 d->last_row_slice_ = d->current_row_slice_;
2947         else
2948                 d->last_row_slice_ = CursorSlice();
2949
2950         // Since we changed row, the scroll offset is not valid anymore
2951         d->horiz_scroll_offset_ = 0;
2952         d->current_row_slice_ = rowSlice;
2953 }
2954
2955
2956 void BufferView::checkCursorScrollOffset(PainterInfo & pi)
2957 {
2958         CursorSlice rowSlice = d->cursor_.bottom();
2959         TextMetrics const & tm = textMetrics(rowSlice.text());
2960
2961         // Stop if metrics have not been computed yet, since it means
2962         // that there is nothing to do.
2963         if (!tm.contains(rowSlice.pit()))
2964                 return;
2965         ParagraphMetrics const & pm = tm.parMetrics(rowSlice.pit());
2966         Row const & row = pm.getRow(rowSlice.pos(),
2967                                     d->cursor_.boundary()
2968                                     && rowSlice == d->cursor_.top());
2969         rowSlice.pos() = row.pos();
2970
2971         // Set the row on which the cursor lives.
2972         setCurrentRowSlice(rowSlice);
2973
2974         /** FIXME: the code below adds an extraneous computation of inset
2975          * positions, and can therefore be bad for performance (think for
2976          * example about a very large tabular inset. Redawing the row
2977          * where it is means redrawing the whole screen).
2978          *
2979          * The bug that this fixes is the following: assume that there is
2980          * a very large math inset. Upon entering the inset, when pressing
2981          * `End', the row is not scrolled and the cursor is not visible. I
2982          * am not sure why the extra row computation fixes the problem,
2983          * actually.
2984          *
2985          * A proper fix should be found and this code should be removed.
2986          */
2987         // Force the recomputation of inset positions
2988         bool const drawing = pi.pain.isDrawingEnabled();
2989         pi.pain.setDrawingEnabled(false);
2990         // No need to care about vertical position.
2991         RowPainter rp(pi, buffer().text(), d->cursor_.bottom().pit(), row,
2992                       -d->horiz_scroll_offset_, 0);
2993         rp.paintText();
2994         pi.pain.setDrawingEnabled(drawing);
2995         /** END of bad code */
2996
2997         // Current x position of the cursor in pixels
2998         int const cur_x = getPos(d->cursor_).x_;
2999
3000         // Horizontal scroll offset of the cursor row in pixels
3001         int offset = d->horiz_scroll_offset_;
3002         int const MARGIN = Length(2, Length::EM).inPixels(workWidth());
3003         if (cur_x < offset + MARGIN) {
3004                 // scroll right
3005                 offset = cur_x - MARGIN;
3006         } else if (cur_x > offset + workWidth() - MARGIN) {
3007                 // scroll left
3008                 offset = cur_x - workWidth() + MARGIN;
3009         }
3010
3011         if (offset < row.left_margin || row.width() <= workWidth())
3012                 offset = 0;
3013
3014         if (offset != d->horiz_scroll_offset_)
3015                 LYXERR(Debug::PAINTING, "Horiz. scroll offset changed from "
3016                        << d->horiz_scroll_offset_ << " to " << offset);
3017
3018         if (d->update_strategy_ == NoScreenUpdate
3019             && (offset != d->horiz_scroll_offset_
3020                 || !d->last_row_slice_.empty())) {
3021                 // FIXME: if one uses SingleParUpdate, then home/end
3022                 // will not work on long rows. Why?
3023                 d->update_strategy_ = FullScreenUpdate;
3024         }
3025
3026         d->horiz_scroll_offset_ = offset;
3027 }
3028
3029
3030 void BufferView::draw(frontend::Painter & pain)
3031 {
3032         if (height_ == 0 || width_ == 0)
3033                 return;
3034         LYXERR(Debug::PAINTING, "\t\t*** START DRAWING ***");
3035
3036         Text & text = buffer_.text();
3037         TextMetrics const & tm = d->text_metrics_[&text];
3038         int const y = tm.first().second->position();
3039         PainterInfo pi(this, pain);
3040
3041         // Check whether the row where the cursor lives needs to be scrolled.
3042         // Update the drawing strategy if needed.
3043         checkCursorScrollOffset(pi);
3044
3045         switch (d->update_strategy_) {
3046
3047         case NoScreenUpdate:
3048                 // If no screen painting is actually needed, only some the different
3049                 // coordinates of insets and paragraphs needs to be updated.
3050                 LYXERR(Debug::PAINTING, "Strategy: NoScreenUpdate");
3051                 pi.full_repaint = true;
3052                 pi.pain.setDrawingEnabled(false);
3053                 tm.draw(pi, 0, y);
3054                 break;
3055
3056         case SingleParUpdate:
3057                 pi.full_repaint = false;
3058                 LYXERR(Debug::PAINTING, "Strategy: SingleParUpdate");
3059                 // In general, only the current row of the outermost paragraph
3060                 // will be redrawn. Particular cases where selection spans
3061                 // multiple paragraph are correctly detected in TextMetrics.
3062                 tm.draw(pi, 0, y);
3063                 break;
3064
3065         case DecorationUpdate:
3066                 // FIXME: We should also distinguish DecorationUpdate to avoid text
3067                 // drawing if possible. This is not possible to do easily right now
3068                 // because of the single backing pixmap.
3069
3070         case FullScreenUpdate:
3071
3072                 LYXERR(Debug::PAINTING,
3073                        ((d->update_strategy_ == FullScreenUpdate)
3074                         ? "Strategy: FullScreenUpdate"
3075                         : "Strategy: DecorationUpdate"));
3076
3077                 // The whole screen, including insets, will be refreshed.
3078                 pi.full_repaint = true;
3079
3080                 // Clear background.
3081                 pain.fillRectangle(0, 0, width_, height_,
3082                         pi.backgroundColor(&buffer_.inset()));
3083
3084                 // Draw everything.
3085                 tm.draw(pi, 0, y);
3086
3087                 // and possibly grey out below
3088                 pair<pit_type, ParagraphMetrics const *> lastpm = tm.last();
3089                 int const y2 = lastpm.second->position() + lastpm.second->descent();
3090
3091                 if (y2 < height_) {
3092                         Color color = buffer().isInternal()
3093                                 ? Color_background : Color_bottomarea;
3094                         pain.fillRectangle(0, y2, width_, height_ - y2, color);
3095                 }
3096                 break;
3097         }
3098         LYXERR(Debug::PAINTING, "\n\t\t*** END DRAWING  ***");
3099
3100         // The scrollbar needs an update.
3101         updateScrollbar();
3102
3103         // Normalize anchor for next time
3104         pair<pit_type, ParagraphMetrics const *> firstpm = tm.first();
3105         pair<pit_type, ParagraphMetrics const *> lastpm = tm.last();
3106         for (pit_type pit = firstpm.first; pit <= lastpm.first; ++pit) {
3107                 ParagraphMetrics const & pm = tm.parMetrics(pit);
3108                 if (pm.position() + pm.descent() > 0) {
3109                         d->anchor_pit_ = pit;
3110                         d->anchor_ypos_ = pm.position();
3111                         break;
3112                 }
3113         }
3114         LYXERR(Debug::PAINTING, "Found new anchor pit = " << d->anchor_pit_
3115                 << "  anchor ypos = " << d->anchor_ypos_);
3116 }
3117
3118
3119 void BufferView::message(docstring const & msg)
3120 {
3121         if (d->gui_)
3122                 d->gui_->message(msg);
3123 }
3124
3125
3126 void BufferView::showDialog(string const & name)
3127 {
3128         if (d->gui_)
3129                 d->gui_->showDialog(name, string());
3130 }
3131
3132
3133 void BufferView::showDialog(string const & name,
3134         string const & data, Inset * inset)
3135 {
3136         if (d->gui_)
3137                 d->gui_->showDialog(name, data, inset);
3138 }
3139
3140
3141 void BufferView::updateDialog(string const & name, string const & data)
3142 {
3143         if (d->gui_)
3144                 d->gui_->updateDialog(name, data);
3145 }
3146
3147
3148 void BufferView::setGuiDelegate(frontend::GuiBufferViewDelegate * gui)
3149 {
3150         d->gui_ = gui;
3151 }
3152
3153
3154 // FIXME: Move this out of BufferView again
3155 docstring BufferView::contentsOfPlaintextFile(FileName const & fname)
3156 {
3157         if (!fname.isReadableFile()) {
3158                 docstring const error = from_ascii(strerror(errno));
3159                 docstring const file = makeDisplayPath(fname.absFileName(), 50);
3160                 docstring const text =
3161                   bformat(_("Could not read the specified document\n"
3162                             "%1$s\ndue to the error: %2$s"), file, error);
3163                 Alert::error(_("Could not read file"), text);
3164                 return docstring();
3165         }
3166
3167         if (!fname.isReadableFile()) {
3168                 docstring const file = makeDisplayPath(fname.absFileName(), 50);
3169                 docstring const text =
3170                   bformat(_("%1$s\n is not readable."), file);
3171                 Alert::error(_("Could not open file"), text);
3172                 return docstring();
3173         }
3174
3175         // FIXME UNICODE: We don't know the encoding of the file
3176         docstring file_content = fname.fileContents("UTF-8");
3177         if (file_content.empty()) {
3178                 Alert::error(_("Reading not UTF-8 encoded file"),
3179                              _("The file is not UTF-8 encoded.\n"
3180                                "It will be read as local 8Bit-encoded.\n"
3181                                "If this does not give the correct result\n"
3182                                "then please change the encoding of the file\n"
3183                                "to UTF-8 with a program other than LyX.\n"));
3184                 file_content = fname.fileContents("local8bit");
3185         }
3186
3187         return normalize_c(file_content);
3188 }
3189
3190
3191 void BufferView::insertPlaintextFile(FileName const & f, bool asParagraph)
3192 {
3193         docstring const tmpstr = contentsOfPlaintextFile(f);
3194
3195         if (tmpstr.empty())
3196                 return;
3197
3198         Cursor & cur = cursor();
3199         cap::replaceSelection(cur);
3200         buffer_.undo().recordUndo(cur);
3201         if (asParagraph)
3202                 cur.innerText()->insertStringAsParagraphs(cur, tmpstr, cur.current_font);
3203         else
3204                 cur.innerText()->insertStringAsLines(cur, tmpstr, cur.current_font);
3205
3206         buffer_.changed(true);
3207 }
3208
3209
3210 docstring const & BufferView::inlineCompletion() const
3211 {
3212         return d->inlineCompletion_;
3213 }
3214
3215
3216 size_t const & BufferView::inlineCompletionUniqueChars() const
3217 {
3218         return d->inlineCompletionUniqueChars_;
3219 }
3220
3221
3222 DocIterator const & BufferView::inlineCompletionPos() const
3223 {
3224         return d->inlineCompletionPos_;
3225 }
3226
3227
3228 void BufferView::resetInlineCompletionPos()
3229 {
3230         d->inlineCompletionPos_ = DocIterator();
3231 }
3232
3233
3234 bool samePar(DocIterator const & a, DocIterator const & b)
3235 {
3236         if (a.empty() && b.empty())
3237                 return true;
3238         if (a.empty() || b.empty())
3239                 return false;
3240         if (a.depth() != b.depth())
3241                 return false;
3242         return &a.innerParagraph() == &b.innerParagraph();
3243 }
3244
3245
3246 void BufferView::setInlineCompletion(Cursor const & cur, DocIterator const & pos,
3247         docstring const & completion, size_t uniqueChars)
3248 {
3249         uniqueChars = min(completion.size(), uniqueChars);
3250         bool changed = d->inlineCompletion_ != completion
3251                 || d->inlineCompletionUniqueChars_ != uniqueChars;
3252         bool singlePar = true;
3253         d->inlineCompletion_ = completion;
3254         d->inlineCompletionUniqueChars_ = min(completion.size(), uniqueChars);
3255
3256         //lyxerr << "setInlineCompletion pos=" << pos << " completion=" << completion << " uniqueChars=" << uniqueChars << std::endl;
3257
3258         // at new position?
3259         DocIterator const & old = d->inlineCompletionPos_;
3260         if (old != pos) {
3261                 //lyxerr << "inlineCompletionPos changed" << std::endl;
3262                 // old or pos are in another paragraph?
3263                 if ((!samePar(cur, pos) && !pos.empty())
3264                     || (!samePar(cur, old) && !old.empty())) {
3265                         singlePar = false;
3266                         //lyxerr << "different paragraph" << std::endl;
3267                 }
3268                 d->inlineCompletionPos_ = pos;
3269         }
3270
3271         // set update flags
3272         if (changed) {
3273                 if (singlePar && !(cur.result().screenUpdate() & Update::Force))
3274                         cur.screenUpdateFlags(cur.result().screenUpdate() | Update::SinglePar);
3275                 else
3276                         cur.screenUpdateFlags(cur.result().screenUpdate() | Update::Force);
3277         }
3278 }
3279
3280
3281 bool BufferView::clickableInset() const
3282 {
3283         return d->clickable_inset_;
3284 }
3285
3286 } // namespace lyx