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