]> git.lyx.org Git - lyx.git/blob - src/BufferView.C
* src/BufferView.C: call LaTeXFeatures::isAvailable() without an object
[lyx.git] / src / BufferView.C
1 /**
2  * \file BufferView.C
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 "bufferview_funcs.h"
24 #include "coordcache.h"
25 #include "CutAndPaste.h"
26 #include "debug.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 "gettext.h"
34 #include "intl.h"
35 #include "insetiterator.h"
36 #include "language.h"
37 #include "LaTeXFeatures.h"
38 #include "lyx_cb.h" // added for Dispatch functions
39 #include "lyx_main.h"
40 #include "lyxfind.h"
41 #include "lyxfunc.h"
42 #include "lyxlayout.h"
43 #include "lyxtext.h"
44 #include "lyxtextclass.h"
45 #include "lyxrc.h"
46 #include "session.h"
47 #include "paragraph.h"
48 #include "paragraph_funcs.h"
49 #include "ParagraphParameters.h"
50 #include "pariterator.h"
51 #include "texrow.h"
52 #include "toc.h"
53 #include "undo.h"
54 #include "vspace.h"
55 #include "WordLangTuple.h"
56 #include "metricsinfo.h"
57
58 #include "insets/insetbibtex.h"
59 #include "insets/insetcommand.h" // ChangeRefs
60 #include "insets/insetref.h"
61 #include "insets/insettext.h"
62
63 #include "frontends/Alert.h"
64 #include "frontends/FileDialog.h"
65 #include "frontends/FontMetrics.h"
66
67 #include "graphics/Previews.h"
68
69 #include "support/convert.h"
70 #include "support/filefilterlist.h"
71 #include "support/filetools.h"
72 #include "support/package.h"
73 #include "support/types.h"
74
75 #include <boost/bind.hpp>
76 #include <boost/current_function.hpp>
77
78 #include <functional>
79 #include <vector>
80
81
82 namespace lyx {
83
84 using support::addPath;
85 using support::bformat;
86 using support::FileFilterList;
87 using support::FileName;
88 using support::fileSearch;
89 using support::isDirWriteable;
90 using support::isFileReadable;
91 using support::makeDisplayPath;
92 using support::package;
93
94 using std::distance;
95 using std::endl;
96 using std::istringstream;
97 using std::make_pair;
98 using std::min;
99 using std::max;
100 using std::mem_fun_ref;
101 using std::string;
102 using std::vector;
103
104 namespace Alert = frontend::Alert;
105
106 namespace {
107
108 /// Return an inset of this class if it exists at the current cursor position
109 template <class T>
110 T * getInsetByCode(LCursor & cur, InsetBase::Code code)
111 {
112         T * inset = 0;
113         DocIterator it = cur;
114         if (it.nextInset() &&
115             it.nextInset()->lyxCode() == code) {
116                 inset = static_cast<T*>(it.nextInset());
117         }
118         return inset;
119 }
120
121 } // anon namespace
122
123
124 BufferView::BufferView()
125         : width_(0), height_(0), buffer_(0), wh_(0),
126           cursor_(*this),
127           multiparsel_cache_(false), anchor_ref_(0), offset_ref_(0),
128           intl_(new Intl), last_inset_(0)
129 {
130         xsel_cache_.set = false;
131         intl_->initKeyMapper(lyxrc.use_kbmap);
132 }
133
134
135 BufferView::~BufferView()
136 {
137 }
138
139
140 Buffer * BufferView::buffer() const
141 {
142         return buffer_;
143 }
144
145
146 void BufferView::setBuffer(Buffer * b)
147 {
148         lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
149                             << "[ b = " << b << "]" << endl;
150
151         if (buffer_) {
152                 // Save the actual cursor position and anchor inside the
153                 // buffer so that it can be restored in case we rechange
154                 // to this buffer later on.
155                 buffer_->saveCursor(cursor_.selectionBegin(),
156                                     cursor_.selectionEnd());
157                 // update bookmark pit of the current buffer before switch
158                 for (size_t i = 0; i < LyX::ref().session().bookmarks().size(); ++i) {
159                         BookmarksSection::Bookmark const & bm = LyX::ref().session().bookmarks().bookmark(i);
160                         if (buffer()->fileName() != bm.filename.absFilename())
161                                 continue;
162                         // if par_id or pit has been changed, reset par_pit and par_id
163                         // see http://bugzilla.lyx.org/show_bug.cgi?id=3092
164                         pit_type new_pit;
165                         int new_id;
166                         boost::tie(new_pit, new_id) = moveToPosition(bm.par_pit, bm.par_id, bm.par_pos);
167                         if (bm.par_pit != new_pit || bm.par_id != new_id)
168                                 const_cast<BookmarksSection::Bookmark &>(bm).setPos(new_pit, new_id);
169                 }
170                 // current buffer is going to be switched-off, save cursor pos
171                 LyX::ref().session().lastFilePos().save(FileName(buffer_->fileName()),
172                         boost::tie(cursor_.pit(), cursor_.pos()) );
173         }
174
175         // If we're quitting lyx, don't bother updating stuff
176         if (quitting) {
177                 buffer_ = 0;
178                 return;
179         }
180
181         // If we are closing current buffer, switch to the first in
182         // buffer list.
183         if (!b) {
184                 lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
185                                     << " No Buffer!" << endl;
186                 // We are closing the buffer, use the first buffer as current
187                 buffer_ = theBufferList().first();
188         } else {
189                 // Set current buffer
190                 buffer_ = b;
191         }
192
193         // Reset old cursor
194         cursor_ = LCursor(*this);
195         anchor_ref_ = 0;
196         offset_ref_ = 0;
197
198         if (buffer_) {
199                 lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
200                                     << "Buffer addr: " << buffer_ << endl;
201                 cursor_.push(buffer_->inset());
202                 cursor_.resetAnchor();
203                 buffer_->text().setCurrentFont(cursor_);
204                 if (buffer_->getCursor().size() > 0 &&
205                     buffer_->getAnchor().size() > 0)
206                 {
207                         cursor_.setCursor(buffer_->getAnchor().asDocIterator(&(buffer_->inset())));
208                         cursor_.resetAnchor();
209                         cursor_.setCursor(buffer_->getCursor().asDocIterator(&(buffer_->inset())));
210                         cursor_.setSelection();
211                         // do not set selection to the new buffer because we
212                         // only paste recent selection.
213                 }
214         }
215
216         if (buffer_)
217                 updateMetrics(false);    
218
219         if (buffer_ && graphics::Previews::status() != LyXRC::PREVIEW_OFF)
220                 graphics::Previews::get().generateBufferPreviews(*buffer_);
221 }
222
223
224 bool BufferView::loadLyXFile(FileName const & filename, bool tolastfiles)
225 {
226         // File already open?
227         if (theBufferList().exists(filename.absFilename())) {
228                 docstring const file = makeDisplayPath(filename.absFilename(), 20);
229                 docstring text = bformat(_("The document %1$s is already "
230                                                      "loaded.\n\nDo you want to revert "
231                                                      "to the saved version?"), file);
232                 int const ret = Alert::prompt(_("Revert to saved document?"),
233                         text, 0, 1,  _("&Revert"), _("&Switch to document"));
234
235                 if (ret != 0) {
236                         setBuffer(theBufferList().getBuffer(filename.absFilename()));
237                         return true;
238                 }
239                 // FIXME: should be LFUN_REVERT
240                 if (!theBufferList().close(theBufferList().getBuffer(filename.absFilename()), false))
241                         return false;
242                 // Fall through to new load. (Asger)
243                 buffer_ = 0;
244         }
245
246         Buffer * b = 0;
247
248         if (isFileReadable(filename)) {
249                 b = theBufferList().newBuffer(filename.absFilename());
250                 if (!lyx::loadLyXFile(b, filename)) {
251                         theBufferList().release(b);
252                         return false;
253                 }
254         } else {
255                 docstring text = bformat(_("The document %1$s does not yet "
256                                                      "exist.\n\nDo you want to create "
257                                                      "a new document?"), from_utf8(filename.absFilename()));
258                 int const ret = Alert::prompt(_("Create new document?"),
259                          text, 0, 1, _("&Create"), _("Cancel"));
260
261                 if (ret == 0) {
262                         b = newFile(filename.absFilename(), string(), true);
263                         if (!b)
264                                 return false;
265                 } else
266                         return false;
267         }
268
269         setBuffer(b);
270         // Send the "errors" signal in case of parsing errors
271         b->errors("Parse");
272
273         // Update the labels and section numbering.
274         updateLabels(*buffer_);
275         // scroll to the position when the file was last closed
276         if (lyxrc.use_lastfilepos) {
277                 pit_type pit;
278                 pos_type pos;
279                 boost::tie(pit, pos) = LyX::ref().session().lastFilePos().load(filename);
280                 // if successfully move to pit (returned par_id is not zero), update metrics
281                 if (moveToPosition(pit, 0, pos).get<1>()) {
282                         if (fitCursor())
283                                 updateMetrics(false);
284                 }
285         }
286
287         if (tolastfiles)
288                 LyX::ref().session().lastFiles().add(FileName(b->fileName()));
289
290         return true;
291 }
292
293
294 void BufferView::resize()
295 {
296         if (!buffer_)
297                 return;
298
299         lyxerr[Debug::DEBUG] << BOOST_CURRENT_FUNCTION << endl;
300
301         updateMetrics(false);
302         switchKeyMap();
303 }
304
305
306 bool BufferView::fitCursor()
307 {
308         if (bv_funcs::status(this, cursor_) == bv_funcs::CUR_INSIDE) {
309                 frontend::FontMetrics const & fm =
310                         theFontMetrics(cursor_.getFont());
311                 int const asc = fm.maxAscent();
312                 int const des = fm.maxDescent();
313                 Point const p = bv_funcs::getPos(*this, cursor_, cursor_.boundary());
314                 if (p.y_ - asc >= 0 && p.y_ + des < height_)
315                         return false;
316         }
317         center();
318         return true;
319 }
320
321
322 bool BufferView::multiParSel()
323 {
324         if (!cursor_.selection())
325                 return false;
326         bool ret = multiparsel_cache_;
327         multiparsel_cache_ = cursor_.selBegin().pit() != cursor_.selEnd().pit();
328         // Either this, or previous selection spans paragraphs
329         return ret || multiparsel_cache_;
330 }
331
332
333 bool BufferView::update(Update::flags flags)
334 {
335         // last_inset_ points to the last visited inset. This pointer may become
336         // invalid because of keyboard editing. Since all such operations
337         // causes screen update(), I reset last_inset_ to avoid such a problem.
338         last_inset_ = 0;
339         // This is close to a hot-path.
340         if (lyxerr.debugging(Debug::DEBUG)) {
341                 lyxerr[Debug::DEBUG]
342                         << BOOST_CURRENT_FUNCTION
343                         << "[fitcursor = " << (flags & Update::FitCursor)
344                         << ", forceupdate = " << (flags & Update::Force)
345                         << ", singlepar = " << (flags & Update::SinglePar)
346                         << "]  buffer: " << buffer_ << endl;
347         }
348
349         // Check needed to survive LyX startup
350         if (!buffer_)
351                 return false;
352
353         if (lyxerr.debugging(Debug::WORKAREA)) {
354                 lyxerr[Debug::WORKAREA] << "BufferView::update" << std::endl;
355         }
356
357         // Update macro store
358         buffer_->buildMacros();
359
360         // Now do the first drawing step if needed. This consists on updating
361         // the CoordCache in updateMetrics().
362         // The second drawing step is done in WorkArea::redraw() if needed.
363
364         // Case when no explicit update is requested.
365         if (!flags) {
366                 // no need to redraw anything.
367                 metrics_info_.update_strategy = NoScreenUpdate;
368                 return false;
369         }
370
371         if (flags == Update::Decoration) {
372                 metrics_info_.update_strategy = DecorationUpdate;
373                 return true;
374         }
375
376         if (flags == Update::FitCursor 
377                 || flags == (Update::Decoration | Update::FitCursor)) {
378                 bool const fit_cursor = fitCursor();
379                 // tell the frontend to update the screen if needed.
380                 if (fit_cursor) {
381                         updateMetrics(false);
382                         return true;
383                 }
384                 if (flags & Update::Decoration) {
385                         metrics_info_.update_strategy = DecorationUpdate;
386                         return true;
387                 }
388                 // no screen update is needed.
389                 metrics_info_.update_strategy = NoScreenUpdate;
390                 return false;
391         }
392
393         bool full_metrics = flags & Update::Force;
394         if (flags & Update::MultiParSel)
395                 full_metrics |= multiParSel();
396
397         bool const single_par = !full_metrics;
398         updateMetrics(single_par);
399
400         if (flags & Update::FitCursor && fitCursor())
401                 updateMetrics(false);
402
403         // tell the frontend to update the screen.
404         return true;
405 }
406
407
408 void BufferView::updateScrollbar()
409 {
410         if (!buffer_) {
411                 lyxerr[Debug::DEBUG] << BOOST_CURRENT_FUNCTION
412                                      << " no text in updateScrollbar" << endl;
413                 scrollbarParameters_.reset();
414                 return;
415         }
416
417         LyXText & t = buffer_->text();
418         TextMetrics & tm = text_metrics_[&t];
419
420         int const parsize = int(t.paragraphs().size() - 1);
421         if (anchor_ref_ >  parsize)  {
422                 anchor_ref_ = parsize;
423                 offset_ref_ = 0;
424         }
425
426         if (lyxerr.debugging(Debug::GUI)) {
427                 lyxerr[Debug::GUI]
428                         << BOOST_CURRENT_FUNCTION
429                         << " Updating scrollbar: height: " << t.paragraphs().size()
430                         << " curr par: " << cursor_.bottom().pit()
431                         << " default height " << defaultRowHeight() << endl;
432         }
433
434         // It would be better to fix the scrollbar to understand
435         // values in [0..1] and divide everything by wh
436
437         // estimated average paragraph height:
438         if (wh_ == 0)
439                 wh_ = height_ / 4;
440
441         int h = tm.parMetrics(anchor_ref_).height();
442
443         // Normalize anchor/offset (MV):
444         while (offset_ref_ > h && anchor_ref_ < parsize) {
445                 anchor_ref_++;
446                 offset_ref_ -= h;
447                 h = tm.parMetrics(anchor_ref_).height();
448         }
449         // Look at paragraph heights on-screen
450         int sumh = 0;
451         int nh = 0;
452         for (pit_type pit = anchor_ref_; pit <= parsize; ++pit) {
453                 if (sumh > height_)
454                         break;
455                 int const h2 = tm.parMetrics(pit).height();
456                 sumh += h2;
457                 nh++;
458         }
459
460         BOOST_ASSERT(nh);
461         int const hav = sumh / nh;
462         // More realistic average paragraph height
463         if (hav > wh_)
464                 wh_ = hav;
465
466         BOOST_ASSERT(h);
467         scrollbarParameters_.height = (parsize + 1) * wh_;
468         scrollbarParameters_.position = anchor_ref_ * wh_ + int(offset_ref_ * wh_ / float(h));
469         scrollbarParameters_.lineScrollHeight = int(wh_ * defaultRowHeight() / float(h));
470 }
471
472
473 ScrollbarParameters const & BufferView::scrollbarParameters() const
474 {
475         return scrollbarParameters_;
476 }
477
478
479 void BufferView::scrollDocView(int value)
480 {
481         lyxerr[Debug::GUI] << BOOST_CURRENT_FUNCTION
482                            << "[ value = " << value << "]" << endl;
483
484         if (!buffer_)
485                 return;
486
487         LyXText & t = buffer_->text();
488         TextMetrics & tm = text_metrics_[&t];
489
490         float const bar = value / float(wh_ * t.paragraphs().size());
491
492         anchor_ref_ = int(bar * t.paragraphs().size());
493         if (anchor_ref_ >  int(t.paragraphs().size()) - 1)
494                 anchor_ref_ = int(t.paragraphs().size()) - 1;
495
496         tm.redoParagraph(anchor_ref_);
497         int const h = tm.parMetrics(anchor_ref_).height();
498         offset_ref_ = int((bar * t.paragraphs().size() - anchor_ref_) * h);
499         updateMetrics(false);
500 }
501
502
503 void BufferView::setCursorFromScrollbar()
504 {
505         if (!buffer_)
506                 return;
507
508         LyXText & t = buffer_->text();
509
510         int const height = 2 * defaultRowHeight();
511         int const first = height;
512         int const last = height_ - height;
513         LCursor & cur = cursor_;
514
515         bv_funcs::CurStatus st = bv_funcs::status(this, cur);
516
517         switch (st) {
518         case bv_funcs::CUR_ABOVE:
519                 // We reset the cursor because bv_funcs::status() does not
520                 // work when the cursor is within mathed.
521                 cur.reset(buffer_->inset());
522                 t.setCursorFromCoordinates(cur, 0, first);
523                 cur.clearSelection();
524                 break;
525         case bv_funcs::CUR_BELOW:
526                 // We reset the cursor because bv_funcs::status() does not
527                 // work when the cursor is within mathed.
528                 cur.reset(buffer_->inset());
529                 t.setCursorFromCoordinates(cur, 0, last);
530                 cur.clearSelection();
531                 break;
532         case bv_funcs::CUR_INSIDE:
533                 int const y = bv_funcs::getPos(*this, cur, cur.boundary()).y_;
534                 int const newy = min(last, max(y, first));
535                 if (y != newy) {
536                         cur.reset(buffer_->inset());
537                         t.setCursorFromCoordinates(cur, 0, newy);
538                 }
539         }
540 }
541
542
543 Change const BufferView::getCurrentChange() const
544 {
545         if (!cursor_.selection())
546                 return Change(Change::UNCHANGED);
547
548         DocIterator dit = cursor_.selectionBegin();
549         return dit.paragraph().lookupChange(dit.pos());
550 }
551
552
553 void BufferView::saveBookmark(bool persistent)
554 {
555         LyX::ref().session().bookmarks().save(
556                 FileName(buffer_->fileName()),
557                 cursor_.pit(),
558                 cursor_.paragraph().id(),
559                 cursor_.pos(),
560                 persistent
561         );
562         if (persistent)
563                 // emit message signal.
564                 message(_("Save bookmark"));
565 }
566
567
568 boost::tuple<pit_type, int> BufferView::moveToPosition(pit_type par_pit, int par_id, pos_type par_pos)
569 {
570         cursor_.clearSelection();
571
572         // if a valid par_id is given, try it first
573         if (par_id > 0) {
574                 ParIterator par = buffer_->getParFromID(par_id);
575                 if (par != buffer_->par_iterator_end()) {
576                         setCursor(makeDocIterator(par, min(par->size(), par_pos)));
577                         return boost::make_tuple(cursor_.pit(), par_id);
578                 }
579         }
580         // if par_id == 0, or searching through par_id failed
581         if (static_cast<size_t>(par_pit) < buffer_->paragraphs().size()) {
582                 ParIterator it = buffer_->par_iterator_begin();
583                 ParIterator const end = buffer_->par_iterator_end();
584                 for (; it != end; ++it)
585                         if (it.pit() == par_pit) {
586                                 // restored pos may be bigger than it->size
587                                 setCursor(makeDocIterator(it, min(par_pos, it->size())));
588                                 return boost::make_tuple(par_pit, it->id());
589                         }
590         }
591         // both methods fail
592         return boost::make_tuple(pit_type(0), 0);
593 }
594
595
596 void BufferView::switchKeyMap()
597 {
598         if (!lyxrc.rtl_support)
599                 return;
600
601         if (cursor_.innerText()->real_current_font.isRightToLeft()) {
602                 if (intl_->keymap == Intl::PRIMARY)
603                         intl_->keyMapSec();
604         } else {
605                 if (intl_->keymap == Intl::SECONDARY)
606                         intl_->keyMapPrim();
607         }
608 }
609
610
611 int BufferView::workWidth() const
612 {
613         return width_;
614 }
615
616
617 void BufferView::center()
618 {
619         CursorSlice & bot = cursor_.bottom();
620         TextMetrics & tm = text_metrics_[bot.text()];
621         pit_type const pit = bot.pit();
622         tm.redoParagraph(pit);
623         ParagraphMetrics const & pm = tm.parMetrics(pit);
624         anchor_ref_ = pit;
625         offset_ref_ = bv_funcs::coordOffset(*this, cursor_, cursor_.boundary()).y_
626                 + pm.ascent() - height_ / 2;
627 }
628
629
630 FuncStatus BufferView::getStatus(FuncRequest const & cmd)
631 {
632         FuncStatus flag;
633
634         switch (cmd.action) {
635
636         case LFUN_UNDO:
637                 flag.enabled(!buffer_->undostack().empty());
638                 break;
639         case LFUN_REDO:
640                 flag.enabled(!buffer_->redostack().empty());
641                 break;
642         case LFUN_FILE_INSERT:
643         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
644         case LFUN_FILE_INSERT_PLAINTEXT:
645         case LFUN_BOOKMARK_SAVE:
646                 // FIXME: Actually, these LFUNS should be moved to LyXText
647                 flag.enabled(cursor_.inTexted());
648                 break;
649         case LFUN_FONT_STATE:
650         case LFUN_LABEL_INSERT:
651         case LFUN_PARAGRAPH_GOTO:
652         // FIXME handle non-trivially
653         case LFUN_OUTLINE_UP:
654         case LFUN_OUTLINE_DOWN:
655         case LFUN_OUTLINE_IN:
656         case LFUN_OUTLINE_OUT:
657         case LFUN_NOTE_NEXT:
658         case LFUN_REFERENCE_NEXT:
659         case LFUN_WORD_FIND:
660         case LFUN_WORD_REPLACE:
661         case LFUN_MARK_OFF:
662         case LFUN_MARK_ON:
663         case LFUN_MARK_TOGGLE:
664         case LFUN_SCREEN_RECENTER:
665         case LFUN_BIBTEX_DATABASE_ADD:
666         case LFUN_BIBTEX_DATABASE_DEL:
667         case LFUN_WORDS_COUNT:
668         case LFUN_NEXT_INSET_TOGGLE:
669                 flag.enabled(true);
670                 break;
671
672         case LFUN_LABEL_GOTO: {
673                 flag.enabled(!cmd.argument().empty()
674                     || getInsetByCode<InsetRef>(cursor_, InsetBase::REF_CODE));
675                 break;
676         }
677
678         case LFUN_CHANGES_TRACK:
679                 flag.enabled(true);
680                 flag.setOnOff(buffer_->params().trackChanges);
681                 break;
682
683         case LFUN_CHANGES_OUTPUT: {
684                 OutputParams runparams;
685                 flag.enabled(buffer_ && LaTeXFeatures::isAvailable("dvipost"));
686                 flag.setOnOff(buffer_->params().outputChanges);
687                 break;
688         }
689
690         case LFUN_CHANGES_MERGE:
691         case LFUN_CHANGE_NEXT:
692         case LFUN_ALL_CHANGES_ACCEPT:
693         case LFUN_ALL_CHANGES_REJECT:
694                 // TODO: context-sensitive enabling of LFUNs
695                 // In principle, these command should only be enabled if there
696                 // is a change in the document. However, without proper
697                 // optimizations, this will inevitably result in poor performance.
698                 flag.enabled(buffer_);
699                 break;
700
701         case LFUN_BUFFER_TOGGLE_COMPRESSION: {
702                 flag.setOnOff(buffer_->params().compressed);
703                 break;
704         }
705
706         default:
707                 flag.enabled(false);
708         }
709
710         return flag;
711 }
712
713
714 Update::flags BufferView::dispatch(FuncRequest const & cmd)
715 {
716         //lyxerr << BOOST_CURRENT_FUNCTION
717         //       << [ cmd = " << cmd << "]" << endl;
718
719         // Make sure that the cached BufferView is correct.
720         lyxerr[Debug::ACTION] << BOOST_CURRENT_FUNCTION
721                 << " action[" << cmd.action << ']'
722                 << " arg[" << to_utf8(cmd.argument()) << ']'
723                 << " x[" << cmd.x << ']'
724                 << " y[" << cmd.y << ']'
725                 << " button[" << cmd.button() << ']'
726                 << endl;
727
728         // FIXME: this should not be possible.
729         if (!buffer_)
730                 return Update::None;
731
732         LCursor & cur = cursor_;
733         // Default Update flags.
734         Update::flags updateFlags = Update::Force | Update::FitCursor;
735
736         switch (cmd.action) {
737
738         case LFUN_UNDO:
739                 cur.message(_("Undo"));
740                 cur.clearSelection();
741                 if (!textUndo(*this)) {
742                         cur.message(_("No further undo information"));
743                         updateFlags = Update::None;
744                 }
745                 switchKeyMap();
746                 break;
747
748         case LFUN_REDO:
749                 cur.message(_("Redo"));
750                 cur.clearSelection();
751                 if (!textRedo(*this)) {
752                         cur.message(_("No further redo information"));
753                         updateFlags = Update::None;
754                 }
755                 switchKeyMap();
756                 break;
757
758         case LFUN_FILE_INSERT:
759                 // FIXME UNICODE
760                 menuInsertLyXFile(to_utf8(cmd.argument()));
761                 break;
762
763         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
764                 // FIXME UNICODE
765                 insertPlaintextFile(this, to_utf8(cmd.argument()), true);
766                 break;
767
768         case LFUN_FILE_INSERT_PLAINTEXT:
769                 // FIXME UNICODE
770                 insertPlaintextFile(this, to_utf8(cmd.argument()), false);
771                 break;
772
773         case LFUN_FONT_STATE:
774                 cur.message(cur.currentState());
775                 break;
776
777         case LFUN_BOOKMARK_SAVE:
778                 saveBookmark(convert<unsigned int>(to_utf8(cmd.argument())));
779                 break;
780
781         case LFUN_LABEL_GOTO: {
782                 docstring label = cmd.argument();
783                 if (label.empty()) {
784                         InsetRef * inset =
785                                 getInsetByCode<InsetRef>(cursor_,
786                                                          InsetBase::REF_CODE);
787                         if (inset) {
788                                 label = inset->getParam("reference");
789                                 // persistent=false: use temp_bookmark
790                                 saveBookmark(false);
791                         }
792                 }
793
794                 if (!label.empty())
795                         gotoLabel(label);
796                 break;
797         }
798
799         case LFUN_PARAGRAPH_GOTO: {
800                 int const id = convert<int>(to_utf8(cmd.argument()));
801                 int i = 0;
802                 for (Buffer * b = buffer_; i == 0 || b != buffer_; b = theBufferList().next(b)) {
803                         ParIterator par = b->getParFromID(id);
804                         if (par == b->par_iterator_end()) {
805                                 lyxerr[Debug::INFO]
806                                         << "No matching paragraph found! ["
807                                         << id << "]." << endl;
808                         } else {
809                                 lyxerr[Debug::INFO]
810                                         << "Paragraph " << par->id()
811                                         << " found in buffer `"
812                                         << b->fileName() << "'." << endl;
813
814                                 if (b == buffer_) {
815                                         // Set the cursor
816                                         setCursor(makeDocIterator(par, 0));
817                                         switchKeyMap();
818                                 } else {
819                                         // Switch to other buffer view and resend cmd
820                                         theLyXFunc().dispatch(FuncRequest(
821                                                 LFUN_BUFFER_SWITCH, b->fileName()));
822                                         theLyXFunc().dispatch(cmd);
823                                         updateFlags = Update::None;
824                                 }
825                                 break;
826                         }
827                         ++i;
828                 }
829                 break;
830         }
831
832         case LFUN_OUTLINE_UP:
833                 toc::outline(toc::Up, cursor_);
834                 cursor_.text()->setCursor(cursor_, cursor_.pit(), 0);
835                 updateLabels(*buffer_);
836                 break;
837         case LFUN_OUTLINE_DOWN:
838                 toc::outline(toc::Down, cursor_);
839                 cursor_.text()->setCursor(cursor_, cursor_.pit(), 0);
840                 updateLabels(*buffer_);
841                 break;
842         case LFUN_OUTLINE_IN:
843                 toc::outline(toc::In, cursor_);
844                 updateLabels(*buffer_);
845                 break;
846         case LFUN_OUTLINE_OUT:
847                 toc::outline(toc::Out, cursor_);
848                 updateLabels(*buffer_);
849                 break;
850
851         case LFUN_NOTE_NEXT:
852                 bv_funcs::gotoInset(this, InsetBase::NOTE_CODE, false);
853                 break;
854
855         case LFUN_REFERENCE_NEXT: {
856                 vector<InsetBase_code> tmp;
857                 tmp.push_back(InsetBase::LABEL_CODE);
858                 tmp.push_back(InsetBase::REF_CODE);
859                 bv_funcs::gotoInset(this, tmp, true);
860                 break;
861         }
862
863         case LFUN_CHANGES_TRACK:
864                 buffer_->params().trackChanges = !buffer_->params().trackChanges;
865                 break;
866
867         case LFUN_CHANGES_OUTPUT:
868                 buffer_->params().outputChanges = !buffer_->params().outputChanges;
869                 break;
870
871         case LFUN_CHANGE_NEXT:
872                 findNextChange(this);
873                 break;
874
875         case LFUN_CHANGES_MERGE:
876                 if (findNextChange(this))
877                         showDialog("changes");
878                 break;
879
880         case LFUN_ALL_CHANGES_ACCEPT:
881                 // select complete document
882                 cursor_.reset(buffer_->inset());
883                 cursor_.selHandle(true);
884                 buffer_->text().cursorBottom(cursor_);
885                 // accept everything in a single step to support atomic undo
886                 buffer_->text().acceptOrRejectChanges(cursor_, LyXText::ACCEPT);
887                 break;
888
889         case LFUN_ALL_CHANGES_REJECT:
890                 // select complete document
891                 cursor_.reset(buffer_->inset());
892                 cursor_.selHandle(true);
893                 buffer_->text().cursorBottom(cursor_);
894                 // reject everything in a single step to support atomic undo
895                 // Note: reject does not work recursively; the user may have to repeat the operation
896                 buffer_->text().acceptOrRejectChanges(cursor_, LyXText::REJECT);
897                 break;
898
899         case LFUN_WORD_FIND:
900                 find(this, cmd);
901                 break;
902
903         case LFUN_WORD_REPLACE:
904                 replace(this, cmd);
905                 break;
906
907         case LFUN_MARK_OFF:
908                 cur.clearSelection();
909                 cur.resetAnchor();
910                 cur.message(from_utf8(N_("Mark off")));
911                 break;
912
913         case LFUN_MARK_ON:
914                 cur.clearSelection();
915                 cur.mark() = true;
916                 cur.resetAnchor();
917                 cur.message(from_utf8(N_("Mark on")));
918                 break;
919
920         case LFUN_MARK_TOGGLE:
921                 cur.clearSelection();
922                 if (cur.mark()) {
923                         cur.mark() = false;
924                         cur.message(from_utf8(N_("Mark removed")));
925                 } else {
926                         cur.mark() = true;
927                         cur.message(from_utf8(N_("Mark set")));
928                 }
929                 cur.resetAnchor();
930                 break;
931
932         case LFUN_SCREEN_RECENTER:
933                 center();
934                 break;
935
936         case LFUN_BIBTEX_DATABASE_ADD: {
937                 LCursor tmpcur = cursor_;
938                 bv_funcs::findInset(tmpcur, InsetBase::BIBTEX_CODE, false);
939                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
940                                                 InsetBase::BIBTEX_CODE);
941                 if (inset) {
942                         if (inset->addDatabase(to_utf8(cmd.argument())))
943                                 buffer_->updateBibfilesCache();
944                 }
945                 break;
946         }
947
948         case LFUN_BIBTEX_DATABASE_DEL: {
949                 LCursor tmpcur = cursor_;
950                 bv_funcs::findInset(tmpcur, InsetBase::BIBTEX_CODE, false);
951                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
952                                                 InsetBase::BIBTEX_CODE);
953                 if (inset) {
954                         if (inset->delDatabase(to_utf8(cmd.argument())))
955                                 buffer_->updateBibfilesCache();
956                 }
957                 break;
958         }
959
960         case LFUN_WORDS_COUNT: {
961                 DocIterator from, to;
962                 if (cur.selection()) {
963                         from = cur.selectionBegin();
964                         to = cur.selectionEnd();
965                 } else {
966                         from = doc_iterator_begin(buffer_->inset());
967                         to = doc_iterator_end(buffer_->inset());
968                 }
969                 int const count = countWords(from, to);
970                 docstring message;
971                 if (count != 1) {
972                         if (cur.selection())
973                                 message = bformat(_("%1$d words in selection."),
974                                           count);
975                                 else
976                                         message = bformat(_("%1$d words in document."),
977                                                           count);
978                 }
979                 else {
980                         if (cur.selection())
981                                 message = _("One word in selection.");
982                         else
983                                 message = _("One word in document.");
984                 }
985
986                 Alert::information(_("Count words"), message);
987         }
988                 break;
989
990         case LFUN_BUFFER_TOGGLE_COMPRESSION:
991                 // turn compression on/off
992                 buffer_->params().compressed = !buffer_->params().compressed;
993                 break;
994
995         case LFUN_NEXT_INSET_TOGGLE: {
996                 // this is the real function we want to invoke
997                 FuncRequest tmpcmd = FuncRequest(LFUN_INSET_TOGGLE, cmd.origin);
998                 // if there is an inset at cursor, see whether it
999                 // wants to toggle.
1000                 InsetBase * inset = cur.nextInset();
1001                 if (inset && inset->isActive()) {
1002                         LCursor tmpcur = cur;
1003                         tmpcur.pushLeft(*inset);
1004                         inset->dispatch(tmpcur, tmpcmd);
1005                         if (tmpcur.result().dispatched()) {
1006                                 cur.dispatched();
1007                         }
1008                 }
1009                 // if it did not work, try the underlying inset.
1010                 if (!cur.result().dispatched())
1011                         cur.dispatch(tmpcmd);
1012
1013                 if (cur.result().dispatched())
1014                         cur.clearSelection();
1015
1016                 break;
1017         }
1018
1019         default:
1020                 updateFlags = Update::None;
1021         }
1022
1023         return updateFlags;
1024 }
1025
1026
1027 docstring const BufferView::requestSelection()
1028 {
1029         if (!buffer_)
1030                 return docstring();
1031
1032         LCursor & cur = cursor_;
1033
1034         if (!cur.selection()) {
1035                 xsel_cache_.set = false;
1036                 return docstring();
1037         }
1038
1039         if (!xsel_cache_.set ||
1040             cur.top() != xsel_cache_.cursor ||
1041             cur.anchor_.top() != xsel_cache_.anchor)
1042         {
1043                 xsel_cache_.cursor = cur.top();
1044                 xsel_cache_.anchor = cur.anchor_.top();
1045                 xsel_cache_.set = cur.selection();
1046                 return cur.selectionAsString(false);
1047         }
1048         return docstring();
1049 }
1050
1051
1052 void BufferView::clearSelection()
1053 {
1054         if (buffer_) {
1055                 cursor_.clearSelection();
1056                 // Clear the selection buffer. Otherwise a subsequent
1057                 // middle-mouse-button paste would use the selection buffer,
1058                 // not the more current external selection.
1059                 cap::clearSelection();
1060                 xsel_cache_.set = false;
1061                 // The buffer did not really change, but this causes the
1062                 // redraw we need because we cleared the selection above.
1063                 buffer_->changed();
1064         }
1065 }
1066
1067
1068 void BufferView::workAreaResize(int width, int height)
1069 {
1070         // Update from work area
1071         width_ = width;
1072         height_ = height;
1073
1074         // The complete text metrics will be redone.
1075         text_metrics_.clear();
1076
1077         if (buffer_)
1078                 resize();
1079 }
1080
1081
1082 bool BufferView::workAreaDispatch(FuncRequest const & cmd0)
1083 {
1084         //lyxerr << BOOST_CURRENT_FUNCTION << "[ cmd0 " << cmd0 << "]" << endl;
1085
1086         // This is only called for mouse related events including
1087         // LFUN_FILE_OPEN generated by drag-and-drop.
1088         FuncRequest cmd = cmd0;
1089
1090         // E.g. Qt mouse press when no buffer
1091         if (!buffer_)
1092                 return false;
1093
1094         LCursor cur(*this);
1095         cur.push(buffer_->inset());
1096         cur.selection() = cursor_.selection();
1097
1098         // Either the inset under the cursor or the
1099         // surrounding LyXText will handle this event.
1100
1101         // Build temporary cursor.
1102         cmd.y = min(max(cmd.y, -1), height_);
1103         InsetBase * inset = buffer_->text().editXY(cur, cmd.x, cmd.y);
1104
1105         //lyxerr << BOOST_CURRENT_FUNCTION
1106         //       << " * hit inset at tip: " << inset << endl;
1107         //lyxerr << BOOST_CURRENT_FUNCTION
1108         //       << " * created temp cursor:" << cur << endl;
1109
1110         // NOTE: editXY returns the top level inset of nested insets. If you happen
1111         // to move from a text (inset=0) to a text inside an inset (e.g. an opened
1112         // footnote inset, again inset=0), that inset will not be redrawn.
1113         if (cmd.action == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
1114                 bool need_redraw = false;
1115                 
1116                 if (inset != last_inset_) {
1117                         if (last_inset_)
1118                                 need_redraw |= last_inset_->setMouseHover(false);
1119                         if (inset)
1120                                 need_redraw |= inset->setMouseHover(true);
1121                         last_inset_ = inset;
1122                 }
1123
1124                 // if last metrics update was in singlepar mode, WorkArea::redraw() will
1125                 // not expose the button for redraw. We adjust here the metrics dimension
1126                 // to enable a full redraw.
1127                 // FIXME: It is possible to redraw only the area around the button!
1128                 if (need_redraw 
1129                         && metrics_info_.update_strategy == SingleParUpdate) {
1130                         // FIXME: It should be possible to redraw only the area around 
1131                         // the button by doing this:
1132                         //
1133                         //metrics_info_.singlepar = false;
1134                         //metrics_info_.y1 = ymin of button;
1135                         //metrics_info_.y2 = ymax of button;
1136                         //
1137                         // Unfortunately, rowpainter.C:paintText() does not distinguish
1138                         // between background updates and text updates. So we use the hammer
1139                         // solution for now. We could also avoid the updateMetrics() below
1140                         // by using the first and last pit of the CoordCache. Have a look
1141                         // at LyXText::getPitNearY() to see what I mean.
1142                         //
1143                         //metrics_info_.pit1 = first pit of CoordCache;
1144                         //metrics_info_.pit2 = last pit of CoordCache;
1145                         //metrics_info_.singlepar = false;
1146                         //metrics_info_.y1 = 0;
1147                         //metrics_info_.y2 = height_;
1148                         //
1149                         updateMetrics(false);
1150                 }
1151
1152                 // This event (moving without mouse click) is not passed further.
1153                 // This should be changed if it is further utilized.
1154                 return need_redraw;
1155         }
1156
1157         // Put anchor at the same position.
1158         cur.resetAnchor();
1159
1160         // Try to dispatch to an non-editable inset near this position
1161         // via the temp cursor. If the inset wishes to change the real
1162         // cursor it has to do so explicitly by using
1163         //  cur.bv().cursor() = cur;  (or similar)
1164         if (inset) {
1165                 inset->dispatch(cur, cmd);
1166         }
1167
1168         // Now dispatch to the temporary cursor. If the real cursor should
1169         // be modified, the inset's dispatch has to do so explicitly.
1170         if (!cur.result().dispatched())
1171                 cur.dispatch(cmd);
1172
1173         // Redraw if requested and necessary.
1174         if (cur.result().dispatched() && cur.result().update())
1175                 return update(cur.result().update());
1176
1177         return false;
1178 }
1179
1180
1181 void BufferView::scroll(int /*lines*/)
1182 {
1183 //      if (!buffer_)
1184 //              return;
1185 //
1186 //      LyXText const * t = &buffer_->text();
1187 //      int const line_height = defaultRowHeight();
1188 //
1189 //      // The new absolute coordinate
1190 //      int new_top_y = top_y() + lines * line_height;
1191 //
1192 //      // Restrict to a valid value
1193 //      new_top_y = std::min(t->height() - 4 * line_height, new_top_y);
1194 //      new_top_y = std::max(0, new_top_y);
1195 //
1196 //      scrollDocView(new_top_y);
1197 //
1198 }
1199
1200
1201 void BufferView::setCursorFromRow(int row)
1202 {
1203         int tmpid = -1;
1204         int tmppos = -1;
1205
1206         buffer_->texrow().getIdFromRow(row, tmpid, tmppos);
1207
1208         if (tmpid == -1)
1209                 buffer_->text().setCursor(cursor_, 0, 0);
1210         else
1211                 buffer_->text().setCursor(cursor_, buffer_->getParFromID(tmpid).pit(), tmppos);
1212 }
1213
1214
1215 void BufferView::gotoLabel(docstring const & label)
1216 {
1217         for (InsetIterator it = inset_iterator_begin(buffer_->inset()); it; ++it) {
1218                 vector<docstring> labels;
1219                 it->getLabelList(*buffer_, labels);
1220                 if (std::find(labels.begin(), labels.end(), label) != labels.end()) {
1221                         setCursor(it);
1222                         update();
1223                         return;
1224                 }
1225         }
1226 }
1227
1228
1229 TextMetrics const & BufferView::textMetrics(LyXText const * t) const
1230 {
1231         return const_cast<BufferView *>(this)->textMetrics(t);
1232 }
1233
1234
1235 TextMetrics & BufferView::textMetrics(LyXText const * t)
1236 {
1237         TextMetricsCache::iterator tmc_it  = text_metrics_.find(t);
1238         if (tmc_it == text_metrics_.end()) {
1239                 tmc_it = text_metrics_.insert(
1240                         make_pair(t, TextMetrics(this, const_cast<LyXText *>(t)))).first;
1241         }       
1242         return tmc_it->second;
1243 }
1244
1245
1246 ParagraphMetrics const & BufferView::parMetrics(LyXText const * t,
1247                 pit_type pit) const
1248 {
1249         return textMetrics(t).parMetrics(pit);
1250 }
1251
1252
1253 int BufferView::workHeight() const
1254 {
1255         return height_;
1256 }
1257
1258
1259 void BufferView::setCursor(DocIterator const & dit)
1260 {
1261         size_t const n = dit.depth();
1262         for (size_t i = 0; i < n; ++i)
1263                 dit[i].inset().edit(cursor_, true);
1264
1265         cursor_.setCursor(dit);
1266         cursor_.selection() = false;
1267 }
1268
1269
1270 bool BufferView::checkDepm(LCursor & cur, LCursor & old)
1271 {
1272         // Would be wrong to delete anything if we have a selection.
1273         if (cur.selection())
1274                 return false;
1275
1276         bool need_anchor_change = false;
1277         bool changed = cursor_.text()->deleteEmptyParagraphMechanism(cur, old,
1278                 need_anchor_change);
1279
1280         if (need_anchor_change)
1281                 cur.resetAnchor();
1282         
1283         if (!changed)
1284                 return false;
1285
1286         updateLabels(*buffer_);
1287
1288         updateMetrics(false);
1289         buffer_->changed();
1290         return true;
1291 }
1292
1293
1294 bool BufferView::mouseSetCursor(LCursor & cur)
1295 {
1296         BOOST_ASSERT(&cur.bv() == this);
1297
1298         // Has the cursor just left the inset?
1299         bool badcursor = false;
1300         if (&cursor_.inset() != &cur.inset())
1301                 badcursor = cursor_.inset().notifyCursorLeaves(cursor_);
1302
1303         // do the dEPM magic if needed
1304         // FIXME: move this to InsetText::notifyCursorLeaves?
1305         bool update = false;
1306         if (!badcursor && cursor_.inTexted())
1307                 checkDepm(cur, cursor_);
1308
1309         // if the cursor was in an empty script inset and the new
1310         // position is in the nucleus of the inset, notifyCursorLeaves
1311         // will kill the script inset itself. So we check all the
1312         // elements of the cursor to make sure that they are correct.
1313         // For an example, see bug 2933: 
1314         // http://bugzilla.lyx.org/show_bug.cgi?id=2933
1315         // The code below could maybe be moved to a DocIterator method.
1316         //lyxerr << "cur before " << cur <<std::endl;
1317         DocIterator dit(cur.inset());
1318         dit.push_back(cur.bottom());
1319         size_t i = 1;
1320         while (i < cur.depth() && dit.nextInset() == &cur[i].inset()) {
1321                 dit.push_back(cur[i]);
1322                 ++i;
1323         }
1324         //lyxerr << "5 cur after" << dit <<std::endl;
1325
1326         cursor_.setCursor(dit);
1327         cursor_.clearSelection();
1328         finishUndo();
1329         return update;
1330 }
1331
1332
1333 void BufferView::putSelectionAt(DocIterator const & cur,
1334                                 int length, bool backwards)
1335 {
1336         cursor_.clearSelection();
1337
1338         setCursor(cur);
1339
1340         if (length) {
1341                 if (backwards) {
1342                         cursor_.pos() += length;
1343                         cursor_.setSelection(cursor_, -length);
1344                 } else
1345                         cursor_.setSelection(cursor_, length);
1346                 cap::saveSelection(cursor_);
1347         }
1348 }
1349
1350
1351 LCursor & BufferView::cursor()
1352 {
1353         return cursor_;
1354 }
1355
1356
1357 LCursor const & BufferView::cursor() const
1358 {
1359         return cursor_;
1360 }
1361
1362
1363 pit_type BufferView::anchor_ref() const
1364 {
1365         return anchor_ref_;
1366 }
1367
1368
1369 ViewMetricsInfo const & BufferView::viewMetricsInfo()
1370 {
1371         return metrics_info_;
1372 }
1373
1374
1375 // FIXME: We should split-up updateMetrics() for the singlepar case.
1376 void BufferView::updateMetrics(bool singlepar)
1377 {
1378         LyXText & buftext = buffer_->text();
1379         TextMetrics & tm = textMetrics(&buftext);
1380         pit_type size = int(buftext.paragraphs().size());
1381
1382         if (anchor_ref_ > int(buftext.paragraphs().size() - 1)) {
1383                 anchor_ref_ = int(buftext.paragraphs().size() - 1);
1384                 offset_ref_ = 0;
1385         }
1386         
1387         // If the paragraph metrics has changed, we can not
1388         // use the singlepar optimisation.
1389         if (singlepar
1390                 // In Single Paragraph mode, rebreak only
1391                 // the (main text, not inset!) paragraph containing the cursor.
1392                 // (if this paragraph contains insets etc., rebreaking will
1393                 // recursively descend)
1394                 && tm.redoParagraph(cursor_.bottom().pit()))
1395                 singlepar = false;
1396
1397         pit_type const pit = anchor_ref_;
1398         int pit1 = pit;
1399         int pit2 = pit;
1400         size_t const npit = buftext.paragraphs().size();
1401
1402         // Rebreak anchor paragraph.
1403         if (!singlepar)
1404                 tm.redoParagraph(pit);
1405         
1406         // Clear out the position cache in case of full screen redraw.
1407         if (!singlepar)
1408                 coord_cache_.clear();
1409
1410         int y0 = tm.parMetrics(pit).ascent() - offset_ref_;
1411
1412         // Redo paragraphs above anchor if necessary.
1413         int y1 = y0;
1414         while (y1 > 0 && pit1 > 0) {
1415                 y1 -= tm.parMetrics(pit1).ascent();
1416                 --pit1;
1417                 if (!singlepar)
1418                         tm.redoParagraph(pit1);
1419                 y1 -= tm.parMetrics(pit1).descent();
1420         }
1421
1422
1423         // Take care of ascent of first line
1424         y1 -= tm.parMetrics(pit1).ascent();
1425
1426         // Normalize anchor for next time
1427         anchor_ref_ = pit1;
1428         offset_ref_ = -y1;
1429
1430         // Grey at the beginning is ugly
1431         if (pit1 == 0 && y1 > 0) {
1432                 y0 -= y1;
1433                 y1 = 0;
1434                 anchor_ref_ = 0;
1435         }
1436
1437         // Redo paragraphs below the anchor if necessary.
1438         int y2 = y0;
1439         while (y2 < height_ && pit2 < int(npit) - 1) {
1440                 y2 += tm.parMetrics(pit2).descent();
1441                 ++pit2;
1442                 if (!singlepar)
1443                         tm.redoParagraph(pit2);
1444                 y2 += tm.parMetrics(pit2).ascent();
1445         }
1446
1447         // Take care of descent of last line
1448         y2 += tm.parMetrics(pit2).descent();
1449
1450         // The coordinates of all these paragraphs are correct, cache them
1451         int y = y1;
1452         CoordCache::InnerParPosCache & parPos = coord_cache_.parPos()[&buftext];
1453         for (pit_type pit = pit1; pit <= pit2; ++pit) {
1454                 ParagraphMetrics const & pm = tm.parMetrics(pit);
1455                 y += pm.ascent();
1456                 parPos[pit] = Point(0, y);
1457                 if (singlepar && pit == cursor_.bottom().pit()) {
1458                         // In Single Paragraph mode, collect here the
1459                         // y1 and y2 of the (one) paragraph the cursor is in
1460                         y1 = y - pm.ascent();
1461                         y2 = y + pm.descent();
1462                 }
1463                 y += pm.descent();
1464         }
1465
1466         if (singlepar) {
1467                 // collect cursor paragraph iter bounds
1468                 pit1 = cursor_.bottom().pit();
1469                 pit2 = cursor_.bottom().pit();
1470         }
1471
1472         lyxerr[Debug::DEBUG]
1473                 << BOOST_CURRENT_FUNCTION
1474                 << " y1: " << y1
1475                 << " y2: " << y2
1476                 << " pit1: " << pit1
1477                 << " pit2: " << pit2
1478                 << " npit: " << npit
1479                 << " singlepar: " << singlepar
1480                 << "size: " << size
1481                 << endl;
1482
1483         metrics_info_ = ViewMetricsInfo(pit1, pit2, y1, y2, 
1484                 singlepar? SingleParUpdate: FullScreenUpdate, size);
1485
1486         if (lyxerr.debugging(Debug::WORKAREA)) {
1487                 lyxerr[Debug::WORKAREA] << "BufferView::updateMetrics" << endl;
1488                 coord_cache_.dump();
1489         }
1490 }
1491
1492
1493 void BufferView::menuInsertLyXFile(string const & filenm)
1494 {
1495         BOOST_ASSERT(cursor_.inTexted());
1496         string filename = filenm;
1497
1498         if (filename.empty()) {
1499                 // Launch a file browser
1500                 // FIXME UNICODE
1501                 string initpath = lyxrc.document_path;
1502
1503                 if (buffer_) {
1504                         string const trypath = buffer_->filePath();
1505                         // If directory is writeable, use this as default.
1506                         if (isDirWriteable(FileName(trypath)))
1507                                 initpath = trypath;
1508                 }
1509
1510                 // FIXME UNICODE
1511                 FileDialog fileDlg(_("Select LyX document to insert"),
1512                         LFUN_FILE_INSERT,
1513                         make_pair(_("Documents|#o#O"), from_utf8(lyxrc.document_path)),
1514                         make_pair(_("Examples|#E#e"), from_utf8(addPath(package().system_support(), "examples"))));
1515
1516                 FileDialog::Result result =
1517                         fileDlg.open(from_utf8(initpath),
1518                                      FileFilterList(_("LyX Documents (*.lyx)")),
1519                                      docstring());
1520
1521                 if (result.first == FileDialog::Later)
1522                         return;
1523
1524                 // FIXME UNICODE
1525                 filename = to_utf8(result.second);
1526
1527                 // check selected filename
1528                 if (filename.empty()) {
1529                         // emit message signal.
1530                         message(_("Canceled."));
1531                         return;
1532                 }
1533         }
1534
1535         // Get absolute path of file and add ".lyx"
1536         // to the filename if necessary
1537         filename = fileSearch(string(), filename, "lyx").absFilename();
1538
1539         docstring const disp_fn = makeDisplayPath(filename);
1540         // emit message signal.
1541         message(bformat(_("Inserting document %1$s..."), disp_fn));
1542
1543         docstring res;
1544         Buffer buf("", false);
1545         if (lyx::loadLyXFile(&buf, FileName(filename))) {
1546                 ErrorList & el = buffer_->errorList("Parse");
1547                 // Copy the inserted document error list into the current buffer one.
1548                 el = buf.errorList("Parse");
1549                 recordUndo(cursor_);
1550                 cap::pasteParagraphList(cursor_, buf.paragraphs(),
1551                                              buf.params().textclass, el);
1552                 res = _("Document %1$s inserted.");
1553         } else
1554                 res = _("Could not insert document %1$s");
1555
1556         // emit message signal.
1557         message(bformat(res, disp_fn));
1558         buffer_->errors("Parse");
1559         resize();
1560 }
1561
1562 } // namespace lyx