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