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