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