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