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