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