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