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