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