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