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