]> git.lyx.org Git - lyx.git/blob - src/BufferView.cpp
Problem: When canceling the preferences dialog after changing a color then the icon...
[lyx.git] / src / BufferView.cpp
1 /**
2  * \file BufferView.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  * \author Lars Gullik Bjønnes
8  * \author John Levon
9  * \author André Pönitz
10  * \author Jürgen Vigna
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "BufferView.h"
18
19 #include "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 "callback.h" // added for Dispatch functions
39 #include "LyX.h"
40 #include "lyxfind.h"
41 #include "LyXFunc.h"
42 #include "Layout.h"
43 #include "Text.h"
44 #include "TextClass.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(Cursor & cur, Inset::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 top_id or bottom_pit, bottom_pos has been changed, update bookmark
163                         // see http://bugzilla.lyx.org/show_bug.cgi?id=3092
164                         pit_type new_pit;
165                         pos_type new_pos;
166                         int new_id;
167                         boost::tie(new_pit, new_pos, new_id) = moveToPosition(bm.bottom_pit, bm.bottom_pos, bm.top_id, bm.top_pos);
168                         if (bm.bottom_pit != new_pit || bm.bottom_pos != new_pos || bm.top_id != new_id )
169                                 const_cast<BookmarksSection::Bookmark &>(bm).updatePos(new_pit, new_pos, new_id);
170                 }
171                 // current buffer is going to be switched-off, save cursor pos
172                 // Ideally, the whole cursor stack should be saved, but session
173                 // currently can only handle bottom (whole document) level pit and pos.
174                 // That is to say, if a cursor is in a nested inset, it will be
175                 // restore to the left of the top level inset.
176                 LyX::ref().session().lastFilePos().save(FileName(buffer_->fileName()),
177                         boost::tie(cursor_.bottom().pit(), cursor_.bottom().pos()) );
178         }
179
180         // If we're quitting lyx, don't bother updating stuff
181         if (quitting) {
182                 buffer_ = 0;
183                 return;
184         }
185
186         // If we are closing current buffer, switch to the first in
187         // buffer list.
188         if (!b) {
189                 LYXERR(Debug::INFO) << BOOST_CURRENT_FUNCTION
190                                     << " No Buffer!" << endl;
191                 // We are closing the buffer, use the first buffer as current
192                 buffer_ = theBufferList().first();
193         } else {
194                 // Set current buffer
195                 buffer_ = b;
196         }
197
198         // Reset old cursor
199         cursor_ = Cursor(*this);
200         anchor_ref_ = 0;
201         offset_ref_ = 0;
202
203         if (buffer_) {
204                 LYXERR(Debug::INFO) << BOOST_CURRENT_FUNCTION
205                                     << "Buffer addr: " << buffer_ << endl;
206                 cursor_.push(buffer_->inset());
207                 cursor_.resetAnchor();
208                 buffer_->text().setCurrentFont(cursor_);
209                 if (buffer_->getCursor().size() > 0 &&
210                     buffer_->getAnchor().size() > 0)
211                 {
212                         cursor_.setCursor(buffer_->getAnchor().asDocIterator(&(buffer_->inset())));
213                         cursor_.resetAnchor();
214                         cursor_.setCursor(buffer_->getCursor().asDocIterator(&(buffer_->inset())));
215                         cursor_.setSelection();
216                         // do not set selection to the new buffer because we
217                         // only paste recent selection.
218                 }
219         }
220
221         if (buffer_)
222                 updateMetrics(false);    
223
224         if (buffer_ && graphics::Previews::status() != LyXRC::PREVIEW_OFF)
225                 graphics::Previews::get().generateBufferPreviews(*buffer_);
226 }
227
228
229 bool BufferView::loadLyXFile(FileName const & filename, bool tolastfiles)
230 {
231         // File already open?
232         if (theBufferList().exists(filename.absFilename())) {
233                 docstring const file = makeDisplayPath(filename.absFilename(), 20);
234                 docstring text = bformat(_("The document %1$s is already "
235                                                      "loaded.\n\nDo you want to revert "
236                                                      "to the saved version?"), file);
237                 int const ret = Alert::prompt(_("Revert to saved document?"),
238                         text, 0, 1,  _("&Revert"), _("&Switch to document"));
239
240                 if (ret != 0) {
241                         setBuffer(theBufferList().getBuffer(filename.absFilename()));
242                         return true;
243                 }
244                 // FIXME: should be LFUN_REVERT
245                 if (!theBufferList().close(theBufferList().getBuffer(filename.absFilename()), false))
246                         return false;
247                 // Fall through to new load. (Asger)
248                 buffer_ = 0;
249         }
250
251         Buffer * b = 0;
252
253         if (isFileReadable(filename)) {
254                 b = theBufferList().newBuffer(filename.absFilename());
255                 if (!lyx::loadLyXFile(b, filename)) {
256                         theBufferList().release(b);
257                         return false;
258                 }
259         } else {
260                 docstring text = bformat(_("The document %1$s does not yet "
261                                                      "exist.\n\nDo you want to create "
262                                                      "a new document?"), from_utf8(filename.absFilename()));
263                 int const ret = Alert::prompt(_("Create new document?"),
264                          text, 0, 1, _("&Create"), _("Cancel"));
265
266                 if (ret == 0) {
267                         b = newFile(filename.absFilename(), string(), true);
268                         if (!b)
269                                 return false;
270                 } else
271                         return false;
272         }
273
274         setBuffer(b);
275         // Send the "errors" signal in case of parsing errors
276         b->errors("Parse");
277
278         // Update the labels and section numbering.
279         updateLabels(*buffer_);
280         // scroll to the position when the file was last closed
281         if (lyxrc.use_lastfilepos) {
282                 pit_type pit;
283                 pos_type pos;
284                 boost::tie(pit, pos) = LyX::ref().session().lastFilePos().load(filename);
285                 // if successfully move to pit (returned par_id is not zero), update metrics and reset font
286                 if (moveToPosition(pit, pos, 0, 0).get<1>()) {
287                         if (fitCursor())
288                                 updateMetrics(false);
289                         buffer_->text().setCurrentFont(cursor_);
290                 }
291         }
292
293         if (tolastfiles)
294                 LyX::ref().session().lastFiles().add(FileName(b->fileName()));
295
296         return true;
297 }
298
299
300 void BufferView::resize()
301 {
302         if (!buffer_)
303                 return;
304
305         LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION << endl;
306
307         updateMetrics(false);
308         switchKeyMap();
309 }
310
311
312 bool BufferView::fitCursor()
313 {
314         if (bv_funcs::status(this, cursor_) == bv_funcs::CUR_INSIDE) {
315                 frontend::FontMetrics const & fm =
316                         theFontMetrics(cursor_.getFont());
317                 int const asc = fm.maxAscent();
318                 int const des = fm.maxDescent();
319                 Point const p = bv_funcs::getPos(*this, cursor_, cursor_.boundary());
320                 if (p.y_ - asc >= 0 && p.y_ + des < height_)
321                         return false;
322         }
323         center();
324         return true;
325 }
326
327
328 bool BufferView::multiParSel()
329 {
330         if (!cursor_.selection())
331                 return false;
332         bool ret = multiparsel_cache_;
333         multiparsel_cache_ = cursor_.selBegin().pit() != cursor_.selEnd().pit();
334         // Either this, or previous selection spans paragraphs
335         return ret || multiparsel_cache_;
336 }
337
338
339 bool BufferView::update(Update::flags flags)
340 {
341         // last_inset_ points to the last visited inset. This pointer may become
342         // invalid because of keyboard editing. Since all such operations
343         // causes screen update(), I reset last_inset_ to avoid such a problem.
344         last_inset_ = 0;
345         // This is close to a hot-path.
346         LYXERR(Debug::DEBUG)
347                 << BOOST_CURRENT_FUNCTION
348                 << "[fitcursor = " << (flags & Update::FitCursor)
349                 << ", forceupdate = " << (flags & Update::Force)
350                 << ", singlepar = " << (flags & Update::SinglePar)
351                 << "]  buffer: " << buffer_ << endl;
352
353         // Check needed to survive LyX startup
354         if (!buffer_)
355                 return false;
356
357         LYXERR(Debug::WORKAREA) << "BufferView::update" << std::endl;
358
359         // Update macro store
360         if (!(cursor().inMathed() && cursor().inMacroMode()))
361                 buffer_->buildMacros();
362
363         // Now do the first drawing step if needed. This consists on updating
364         // the CoordCache in updateMetrics().
365         // The second drawing step is done in WorkArea::redraw() if needed.
366
367         // Case when no explicit update is requested.
368         if (!flags) {
369                 // no need to redraw anything.
370                 metrics_info_.update_strategy = NoScreenUpdate;
371                 return false;
372         }
373
374         if (flags == Update::Decoration) {
375                 metrics_info_.update_strategy = DecorationUpdate;
376                 return true;
377         }
378
379         if (flags == Update::FitCursor 
380                 || flags == (Update::Decoration | Update::FitCursor)) {
381                 bool const fit_cursor = fitCursor();
382                 // tell the frontend to update the screen if needed.
383                 if (fit_cursor) {
384                         updateMetrics(false);
385                         return true;
386                 }
387                 if (flags & Update::Decoration) {
388                         metrics_info_.update_strategy = DecorationUpdate;
389                         return true;
390                 }
391                 // no screen update is needed.
392                 metrics_info_.update_strategy = NoScreenUpdate;
393                 return false;
394         }
395
396         bool full_metrics = flags & Update::Force;
397         if (flags & Update::MultiParSel)
398                 full_metrics |= multiParSel();
399
400         bool const single_par = !full_metrics;
401         updateMetrics(single_par);
402
403         if (flags & Update::FitCursor && fitCursor())
404                 updateMetrics(false);
405
406         // tell the frontend to update the screen.
407         return true;
408 }
409
410
411 void BufferView::updateScrollbar()
412 {
413         if (!buffer_) {
414                 LYXERR(Debug::DEBUG) << BOOST_CURRENT_FUNCTION
415                                      << " no text in updateScrollbar" << endl;
416                 scrollbarParameters_.reset();
417                 return;
418         }
419
420         Text & t = buffer_->text();
421         TextMetrics & tm = text_metrics_[&t];
422
423         int const parsize = int(t.paragraphs().size() - 1);
424         if (anchor_ref_ >  parsize)  {
425                 anchor_ref_ = parsize;
426                 offset_ref_ = 0;
427         }
428
429         LYXERR(Debug::GUI)
430                 << BOOST_CURRENT_FUNCTION
431                 << " Updating scrollbar: height: " << t.paragraphs().size()
432                 << " curr par: " << cursor_.bottom().pit()
433                 << " default height " << defaultRowHeight() << endl;
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         Text & 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         Text & t = buffer_->text();
510
511         int const height = 2 * defaultRowHeight();
512         int const first = height;
513         int const last = height_ - height;
514         Cursor & 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         // tenatively save bookmark, id and pos will be used to
557         // acturately locate a bookmark in a 'live' lyx session.
558         // pit and pos will be updated with bottom level pit/pos 
559         // when lyx exits.
560         LyX::ref().session().bookmarks().save(
561                 FileName(buffer_->fileName()),
562                 cursor_.bottom().pit(),
563                 cursor_.bottom().pos(),
564                 cursor_.paragraph().id(),
565                 cursor_.pos(),
566                 idx
567         );
568         if (idx)
569                 // emit message signal.
570                 message(_("Save bookmark"));
571 }
572
573
574 boost::tuple<pit_type, pos_type, int> BufferView::moveToPosition(pit_type bottom_pit, pos_type bottom_pos,
575         int top_id, pos_type top_pos)
576 {
577         cursor_.clearSelection();
578
579         // if a valid par_id is given, try it first
580         // This is the case for a 'live' bookmark when unique paragraph ID
581         // is used to track bookmarks.
582         if (top_id > 0) {
583                 ParIterator par = buffer_->getParFromID(top_id);
584                 if (par != buffer_->par_iterator_end()) {
585                         DocIterator dit = makeDocIterator(par, min(par->size(), top_pos));
586                         // Some slices of the iterator may not be reachable (e.g. closed collapsable inset)
587                         // so the dociterator may need to be shortened. Otherwise, setCursor may
588                         // crash lyx when the cursor can not be set to these insets.
589                         size_t const n = dit.depth();
590                         for (size_t i = 0; i < n; ++i)
591                                 if (dit[i].inset().editable() != Inset::HIGHLY_EDITABLE) {
592                                         dit.resize(i);
593                                         break;
594                                 }
595                         setCursor(dit);
596                         // Note: return bottom (document) level pit.
597                         return boost::make_tuple(cursor_.bottom().pit(), cursor_.bottom().pos(), top_id);
598                 }
599         }
600         // if top_id == 0, or searching through top_id failed
601         // This is the case for a 'restored' bookmark when only bottom 
602         // (document level) pit was saved. Because of this, bookmark
603         // restoration is inaccurate. If a bookmark was within an inset,
604         // it will be restored to the left of the outmost inset that contains
605         // the bookmark.
606         if (static_cast<size_t>(bottom_pit) < buffer_->paragraphs().size()) {
607                 ParIterator it = buffer_->par_iterator_begin();
608                 ParIterator const end = buffer_->par_iterator_end();
609                 for (; it != end; ++it)
610                         if (it.pit() == bottom_pit) {
611                                 // restored pos may be bigger than it->size
612                                 setCursor(makeDocIterator(it, min(bottom_pos, it->size())));
613                                 return boost::make_tuple(bottom_pit, bottom_pos, it->id());
614                         }
615         }
616         // both methods fail
617         return boost::make_tuple(pit_type(0), pos_type(0), 0);
618 }
619
620
621 void BufferView::switchKeyMap()
622 {
623         if (!lyxrc.rtl_support)
624                 return;
625
626         if (cursor_.innerText()->real_current_font.isRightToLeft()) {
627                 if (intl_->keymap == Intl::PRIMARY)
628                         intl_->keyMapSec();
629         } else {
630                 if (intl_->keymap == Intl::SECONDARY)
631                         intl_->keyMapPrim();
632         }
633 }
634
635
636 int BufferView::workWidth() const
637 {
638         return width_;
639 }
640
641
642 void BufferView::center()
643 {
644         CursorSlice & bot = cursor_.bottom();
645         TextMetrics & tm = text_metrics_[bot.text()];
646         pit_type const pit = bot.pit();
647         tm.redoParagraph(pit);
648         ParagraphMetrics const & pm = tm.parMetrics(pit);
649         anchor_ref_ = pit;
650         offset_ref_ = bv_funcs::coordOffset(*this, cursor_, cursor_.boundary()).y_
651                 + pm.ascent() - height_ / 2;
652 }
653
654
655 FuncStatus BufferView::getStatus(FuncRequest const & cmd)
656 {
657         FuncStatus flag;
658
659         switch (cmd.action) {
660
661         case LFUN_UNDO:
662                 flag.enabled(!buffer_->undostack().empty());
663                 break;
664         case LFUN_REDO:
665                 flag.enabled(!buffer_->redostack().empty());
666                 break;
667         case LFUN_FILE_INSERT:
668         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
669         case LFUN_FILE_INSERT_PLAINTEXT:
670         case LFUN_BOOKMARK_SAVE:
671                 // FIXME: Actually, these LFUNS should be moved to Text
672                 flag.enabled(cursor_.inTexted());
673                 break;
674         case LFUN_FONT_STATE:
675         case LFUN_LABEL_INSERT:
676         case LFUN_PARAGRAPH_GOTO:
677         // FIXME handle non-trivially
678         case LFUN_OUTLINE_UP:
679         case LFUN_OUTLINE_DOWN:
680         case LFUN_OUTLINE_IN:
681         case LFUN_OUTLINE_OUT:
682         case LFUN_NOTE_NEXT:
683         case LFUN_REFERENCE_NEXT:
684         case LFUN_WORD_FIND:
685         case LFUN_WORD_REPLACE:
686         case LFUN_MARK_OFF:
687         case LFUN_MARK_ON:
688         case LFUN_MARK_TOGGLE:
689         case LFUN_SCREEN_RECENTER:
690         case LFUN_BIBTEX_DATABASE_ADD:
691         case LFUN_BIBTEX_DATABASE_DEL:
692         case LFUN_WORDS_COUNT:
693         case LFUN_NEXT_INSET_TOGGLE:
694                 flag.enabled(true);
695                 break;
696
697         case LFUN_LABEL_GOTO: {
698                 flag.enabled(!cmd.argument().empty()
699                     || getInsetByCode<InsetRef>(cursor_, Inset::REF_CODE));
700                 break;
701         }
702
703         case LFUN_CHANGES_TRACK:
704                 flag.enabled(true);
705                 flag.setOnOff(buffer_->params().trackChanges);
706                 break;
707
708         case LFUN_CHANGES_OUTPUT:
709                 flag.enabled(buffer_);
710                 flag.setOnOff(buffer_->params().outputChanges);
711                 break;
712
713         case LFUN_CHANGES_MERGE:
714         case LFUN_CHANGE_NEXT:
715         case LFUN_ALL_CHANGES_ACCEPT:
716         case LFUN_ALL_CHANGES_REJECT:
717                 // TODO: context-sensitive enabling of LFUNs
718                 // In principle, these command should only be enabled if there
719                 // is a change in the document. However, without proper
720                 // optimizations, this will inevitably result in poor performance.
721                 flag.enabled(buffer_);
722                 break;
723
724         case LFUN_BUFFER_TOGGLE_COMPRESSION: {
725                 flag.setOnOff(buffer_->params().compressed);
726                 break;
727         }
728
729         default:
730                 flag.enabled(false);
731         }
732
733         return flag;
734 }
735
736
737 Update::flags BufferView::dispatch(FuncRequest const & cmd)
738 {
739         //lyxerr << BOOST_CURRENT_FUNCTION
740         //       << [ cmd = " << cmd << "]" << endl;
741
742         // Make sure that the cached BufferView is correct.
743         LYXERR(Debug::ACTION) << BOOST_CURRENT_FUNCTION
744                 << " action[" << cmd.action << ']'
745                 << " arg[" << to_utf8(cmd.argument()) << ']'
746                 << " x[" << cmd.x << ']'
747                 << " y[" << cmd.y << ']'
748                 << " button[" << cmd.button() << ']'
749                 << endl;
750
751         // FIXME: this should not be possible.
752         if (!buffer_)
753                 return Update::None;
754
755         Cursor & cur = cursor_;
756         // Default Update flags.
757         Update::flags updateFlags = Update::Force | Update::FitCursor;
758
759         switch (cmd.action) {
760
761         case LFUN_UNDO:
762                 cur.message(_("Undo"));
763                 cur.clearSelection();
764                 if (!textUndo(*this)) {
765                         cur.message(_("No further undo information"));
766                         updateFlags = Update::None;
767                 }
768                 switchKeyMap();
769                 break;
770
771         case LFUN_REDO:
772                 cur.message(_("Redo"));
773                 cur.clearSelection();
774                 if (!textRedo(*this)) {
775                         cur.message(_("No further redo information"));
776                         updateFlags = Update::None;
777                 }
778                 switchKeyMap();
779                 break;
780
781         case LFUN_FILE_INSERT:
782                 // FIXME UNICODE
783                 menuInsertLyXFile(to_utf8(cmd.argument()));
784                 break;
785
786         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
787                 // FIXME UNICODE
788                 insertPlaintextFile(this, to_utf8(cmd.argument()), true);
789                 break;
790
791         case LFUN_FILE_INSERT_PLAINTEXT:
792                 // FIXME UNICODE
793                 insertPlaintextFile(this, to_utf8(cmd.argument()), false);
794                 break;
795
796         case LFUN_FONT_STATE:
797                 cur.message(cur.currentState());
798                 break;
799
800         case LFUN_BOOKMARK_SAVE:
801                 saveBookmark(convert<unsigned int>(to_utf8(cmd.argument())));
802                 break;
803
804         case LFUN_LABEL_GOTO: {
805                 docstring label = cmd.argument();
806                 if (label.empty()) {
807                         InsetRef * inset =
808                                 getInsetByCode<InsetRef>(cursor_,
809                                                          Inset::REF_CODE);
810                         if (inset) {
811                                 label = inset->getParam("reference");
812                                 // persistent=false: use temp_bookmark
813                                 saveBookmark(0);
814                         }
815                 }
816
817                 if (!label.empty())
818                         gotoLabel(label);
819                 break;
820         }
821
822         case LFUN_PARAGRAPH_GOTO: {
823                 int const id = convert<int>(to_utf8(cmd.argument()));
824                 int i = 0;
825                 for (Buffer * b = buffer_; i == 0 || b != buffer_; b = theBufferList().next(b)) {
826                         ParIterator par = b->getParFromID(id);
827                         if (par == b->par_iterator_end()) {
828                                 LYXERR(Debug::INFO)
829                                         << "No matching paragraph found! ["
830                                         << id << "]." << endl;
831                         } else {
832                                 LYXERR(Debug::INFO)
833                                         << "Paragraph " << par->id()
834                                         << " found in buffer `"
835                                         << b->fileName() << "'." << endl;
836
837                                 if (b == buffer_) {
838                                         // Set the cursor
839                                         setCursor(makeDocIterator(par, 0));
840                                         switchKeyMap();
841                                 } else {
842                                         // Switch to other buffer view and resend cmd
843                                         theLyXFunc().dispatch(FuncRequest(
844                                                 LFUN_BUFFER_SWITCH, b->fileName()));
845                                         theLyXFunc().dispatch(cmd);
846                                         updateFlags = Update::None;
847                                 }
848                                 break;
849                         }
850                         ++i;
851                 }
852                 break;
853         }
854
855         case LFUN_OUTLINE_UP:
856                 toc::outline(toc::Up, cursor_);
857                 cursor_.text()->setCursor(cursor_, cursor_.pit(), 0);
858                 updateLabels(*buffer_);
859                 break;
860         case LFUN_OUTLINE_DOWN:
861                 toc::outline(toc::Down, cursor_);
862                 cursor_.text()->setCursor(cursor_, cursor_.pit(), 0);
863                 updateLabels(*buffer_);
864                 break;
865         case LFUN_OUTLINE_IN:
866                 toc::outline(toc::In, cursor_);
867                 updateLabels(*buffer_);
868                 break;
869         case LFUN_OUTLINE_OUT:
870                 toc::outline(toc::Out, cursor_);
871                 updateLabels(*buffer_);
872                 break;
873
874         case LFUN_NOTE_NEXT:
875                 bv_funcs::gotoInset(this, Inset::NOTE_CODE, false);
876                 break;
877
878         case LFUN_REFERENCE_NEXT: {
879                 vector<Inset_code> tmp;
880                 tmp.push_back(Inset::LABEL_CODE);
881                 tmp.push_back(Inset::REF_CODE);
882                 bv_funcs::gotoInset(this, tmp, true);
883                 break;
884         }
885
886         case LFUN_CHANGES_TRACK:
887                 buffer_->params().trackChanges = !buffer_->params().trackChanges;
888                 break;
889
890         case LFUN_CHANGES_OUTPUT:
891                 buffer_->params().outputChanges = !buffer_->params().outputChanges;
892                 if (buffer_->params().outputChanges) {
893                         if (!LaTeXFeatures::isAvailable("dvipost")) {
894                                 Alert::warning(_("Changes not shown in LaTeX output"),
895                                                _("Changes will not be highlighted in LaTeX output, "
896                                                  "because dvipost is not installed.\n"
897                                                  "If you are familiar with TeX, consider redefining "
898                                                  "\\lyxinserted and \\lyxdeleted in the LaTeX preamble."));
899                         } else {
900                                 Alert::warning(_("Changes not shown in LaTeX output"),
901                                                _("Changes will not be highlighted in LaTeX output "
902                                                  "when using pdflatex.\n"
903                                                  "If you are familiar with TeX, consider redefining "
904                                                  "\\lyxinserted and \\lyxdeleted in the LaTeX preamble."));
905                         }
906                 }
907                 break;
908
909         case LFUN_CHANGE_NEXT:
910                 findNextChange(this);
911                 break;
912
913         case LFUN_CHANGES_MERGE:
914                 if (findNextChange(this))
915                         showDialog("changes");
916                 break;
917
918         case LFUN_ALL_CHANGES_ACCEPT:
919                 // select complete document
920                 cursor_.reset(buffer_->inset());
921                 cursor_.selHandle(true);
922                 buffer_->text().cursorBottom(cursor_);
923                 // accept everything in a single step to support atomic undo
924                 buffer_->text().acceptOrRejectChanges(cursor_, Text::ACCEPT);
925                 break;
926
927         case LFUN_ALL_CHANGES_REJECT:
928                 // select complete document
929                 cursor_.reset(buffer_->inset());
930                 cursor_.selHandle(true);
931                 buffer_->text().cursorBottom(cursor_);
932                 // reject everything in a single step to support atomic undo
933                 // Note: reject does not work recursively; the user may have to repeat the operation
934                 buffer_->text().acceptOrRejectChanges(cursor_, Text::REJECT);
935                 break;
936
937         case LFUN_WORD_FIND:
938                 find(this, cmd);
939                 break;
940
941         case LFUN_WORD_REPLACE:
942                 replace(this, cmd);
943                 break;
944
945         case LFUN_MARK_OFF:
946                 cur.clearSelection();
947                 cur.resetAnchor();
948                 cur.message(from_utf8(N_("Mark off")));
949                 break;
950
951         case LFUN_MARK_ON:
952                 cur.clearSelection();
953                 cur.mark() = true;
954                 cur.resetAnchor();
955                 cur.message(from_utf8(N_("Mark on")));
956                 break;
957
958         case LFUN_MARK_TOGGLE:
959                 cur.clearSelection();
960                 if (cur.mark()) {
961                         cur.mark() = false;
962                         cur.message(from_utf8(N_("Mark removed")));
963                 } else {
964                         cur.mark() = true;
965                         cur.message(from_utf8(N_("Mark set")));
966                 }
967                 cur.resetAnchor();
968                 break;
969
970         case LFUN_SCREEN_RECENTER:
971                 center();
972                 break;
973
974         case LFUN_BIBTEX_DATABASE_ADD: {
975                 Cursor tmpcur = cursor_;
976                 bv_funcs::findInset(tmpcur, Inset::BIBTEX_CODE, false);
977                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
978                                                 Inset::BIBTEX_CODE);
979                 if (inset) {
980                         if (inset->addDatabase(to_utf8(cmd.argument())))
981                                 buffer_->updateBibfilesCache();
982                 }
983                 break;
984         }
985
986         case LFUN_BIBTEX_DATABASE_DEL: {
987                 Cursor tmpcur = cursor_;
988                 bv_funcs::findInset(tmpcur, Inset::BIBTEX_CODE, false);
989                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
990                                                 Inset::BIBTEX_CODE);
991                 if (inset) {
992                         if (inset->delDatabase(to_utf8(cmd.argument())))
993                                 buffer_->updateBibfilesCache();
994                 }
995                 break;
996         }
997
998         case LFUN_WORDS_COUNT: {
999                 DocIterator from, to;
1000                 if (cur.selection()) {
1001                         from = cur.selectionBegin();
1002                         to = cur.selectionEnd();
1003                 } else {
1004                         from = doc_iterator_begin(buffer_->inset());
1005                         to = doc_iterator_end(buffer_->inset());
1006                 }
1007                 int const count = countWords(from, to);
1008                 docstring message;
1009                 if (count != 1) {
1010                         if (cur.selection())
1011                                 message = bformat(_("%1$d words in selection."),
1012                                           count);
1013                                 else
1014                                         message = bformat(_("%1$d words in document."),
1015                                                           count);
1016                 }
1017                 else {
1018                         if (cur.selection())
1019                                 message = _("One word in selection.");
1020                         else
1021                                 message = _("One word in document.");
1022                 }
1023
1024                 Alert::information(_("Count words"), message);
1025         }
1026                 break;
1027
1028         case LFUN_BUFFER_TOGGLE_COMPRESSION:
1029                 // turn compression on/off
1030                 buffer_->params().compressed = !buffer_->params().compressed;
1031                 break;
1032
1033         case LFUN_NEXT_INSET_TOGGLE: {
1034                 // this is the real function we want to invoke
1035                 FuncRequest tmpcmd = FuncRequest(LFUN_INSET_TOGGLE, cmd.origin);
1036                 // if there is an inset at cursor, see whether it
1037                 // wants to toggle.
1038                 Inset * inset = cur.nextInset();
1039                 if (inset && inset->isActive()) {
1040                         Cursor tmpcur = cur;
1041                         tmpcur.pushLeft(*inset);
1042                         inset->dispatch(tmpcur, tmpcmd);
1043                         if (tmpcur.result().dispatched()) {
1044                                 cur.dispatched();
1045                         }
1046                 }
1047                 // if it did not work, try the underlying inset.
1048                 if (!cur.result().dispatched())
1049                         cur.dispatch(tmpcmd);
1050
1051                 if (cur.result().dispatched())
1052                         cur.clearSelection();
1053
1054                 break;
1055         }
1056
1057         default:
1058                 updateFlags = Update::None;
1059         }
1060
1061         return updateFlags;
1062 }
1063
1064
1065 docstring const BufferView::requestSelection()
1066 {
1067         if (!buffer_)
1068                 return docstring();
1069
1070         Cursor & cur = cursor_;
1071
1072         if (!cur.selection()) {
1073                 xsel_cache_.set = false;
1074                 return docstring();
1075         }
1076
1077         if (!xsel_cache_.set ||
1078             cur.top() != xsel_cache_.cursor ||
1079             cur.anchor_.top() != xsel_cache_.anchor)
1080         {
1081                 xsel_cache_.cursor = cur.top();
1082                 xsel_cache_.anchor = cur.anchor_.top();
1083                 xsel_cache_.set = cur.selection();
1084                 return cur.selectionAsString(false);
1085         }
1086         return docstring();
1087 }
1088
1089
1090 void BufferView::clearSelection()
1091 {
1092         if (buffer_) {
1093                 cursor_.clearSelection();
1094                 // Clear the selection buffer. Otherwise a subsequent
1095                 // middle-mouse-button paste would use the selection buffer,
1096                 // not the more current external selection.
1097                 cap::clearSelection();
1098                 xsel_cache_.set = false;
1099                 // The buffer did not really change, but this causes the
1100                 // redraw we need because we cleared the selection above.
1101                 buffer_->changed();
1102         }
1103 }
1104
1105
1106 void BufferView::workAreaResize(int width, int height)
1107 {
1108         // Update from work area
1109         width_ = width;
1110         height_ = height;
1111
1112         // The complete text metrics will be redone.
1113         text_metrics_.clear();
1114
1115         if (buffer_)
1116                 resize();
1117 }
1118
1119
1120 Inset const * BufferView::getCoveringInset(Text const & text, int x, int y)
1121 {
1122         pit_type pit = text.getPitNearY(*this, y);
1123         BOOST_ASSERT(pit != -1);
1124         Paragraph const & par = text.getPar(pit);
1125
1126         LYXERR(Debug::DEBUG)
1127                 << BOOST_CURRENT_FUNCTION
1128                 << ": x: " << x
1129                 << " y: " << y
1130                 << "  pit: " << pit
1131                 << endl;
1132         InsetList::const_iterator iit = par.insetlist.begin();
1133         InsetList::const_iterator iend = par.insetlist.end();
1134         for (; iit != iend; ++iit) {
1135                 Inset * const inset = iit->inset;
1136                 if (inset->covers(*this, x, y)) {
1137                         if (!inset->descendable())
1138                                 // No need to go further down if the inset is not 
1139                                 // descendable.
1140                                 return inset;
1141
1142                         size_t cell_number = inset->nargs();
1143                         // Check all the inner cell.
1144                         for (size_t i = 0; i != cell_number; ++i) {
1145                                 Text const * inner_text = inset->getText(i);
1146                                 if (inner_text) {
1147                                         // Try deeper.
1148                                         Inset const * inset_deeper = 
1149                                                 getCoveringInset(*inner_text, x, y);
1150                                         if (inset_deeper)
1151                                                 return inset_deeper;
1152                                 }
1153                         }
1154
1155                         LYXERR(Debug::DEBUG)
1156                                 << BOOST_CURRENT_FUNCTION
1157                                 << ": Hit inset: " << inset << endl;
1158                         return inset;
1159                 }
1160         }
1161         LYXERR(Debug::DEBUG)
1162                 << BOOST_CURRENT_FUNCTION
1163                 << ": No inset hit. " << endl;
1164         return 0;
1165 }
1166
1167
1168 bool BufferView::workAreaDispatch(FuncRequest const & cmd0)
1169 {
1170         //lyxerr << BOOST_CURRENT_FUNCTION << "[ cmd0 " << cmd0 << "]" << endl;
1171
1172         // This is only called for mouse related events including
1173         // LFUN_FILE_OPEN generated by drag-and-drop.
1174         FuncRequest cmd = cmd0;
1175
1176         // E.g. Qt mouse press when no buffer
1177         if (!buffer_)
1178                 return false;
1179
1180         Cursor cur(*this);
1181         cur.push(buffer_->inset());
1182         cur.selection() = cursor_.selection();
1183
1184         // Either the inset under the cursor or the
1185         // surrounding Text will handle this event.
1186
1187         // make sure we stay within the screen...
1188         cmd.y = min(max(cmd.y, -1), height_);
1189         
1190         if (cmd.action == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
1191                 
1192                 // Get inset under mouse, if there is one.
1193                 Inset const * covering_inset = 
1194                         getCoveringInset(buffer_->text(), cmd.x, cmd.y);
1195                 if (covering_inset == last_inset_)
1196                         // Same inset, no need to do anything...
1197                         return false;
1198
1199                 bool need_redraw = false;
1200                 // const_cast because of setMouseHover().
1201                 Inset * inset = const_cast<Inset *>(covering_inset);
1202                 if (last_inset_)
1203                         // Remove the hint on the last hovered inset (if any).
1204                         need_redraw |= last_inset_->setMouseHover(false);
1205                 if (inset)
1206                         // Highlighted the newly hovered inset (if any).
1207                         need_redraw |= inset->setMouseHover(true);
1208                 last_inset_ = inset;
1209
1210                 // if last metrics update was in singlepar mode, WorkArea::redraw() will
1211                 // not expose the button for redraw. We adjust here the metrics dimension
1212                 // to enable a full redraw.
1213                 // FIXME: It is possible to redraw only the area around the button!
1214                 if (need_redraw 
1215                         && metrics_info_.update_strategy == SingleParUpdate) {
1216                         // FIXME: It should be possible to redraw only the area around 
1217                         // the button by doing this:
1218                         //
1219                         //metrics_info_.singlepar = false;
1220                         //metrics_info_.y1 = ymin of button;
1221                         //metrics_info_.y2 = ymax of button;
1222                         //
1223                         // Unfortunately, rowpainter.cpp:paintText() does not distinguish
1224                         // between background updates and text updates. So we use the hammer
1225                         // solution for now. We could also avoid the updateMetrics() below
1226                         // by using the first and last pit of the CoordCache. Have a look
1227                         // at Text::getPitNearY() to see what I mean.
1228                         //
1229                         //metrics_info_.pit1 = first pit of CoordCache;
1230                         //metrics_info_.pit2 = last pit of CoordCache;
1231                         //metrics_info_.singlepar = false;
1232                         //metrics_info_.y1 = 0;
1233                         //metrics_info_.y2 = height_;
1234                         //
1235                         updateMetrics(false);
1236                 }
1237
1238                 // This event (moving without mouse click) is not passed further.
1239                 // This should be changed if it is further utilized.
1240                 return need_redraw;
1241         }
1242         
1243         // Build temporary cursor.
1244         Inset * inset = buffer_->text().editXY(cur, cmd.x, cmd.y);
1245
1246         // Put anchor at the same position.
1247         cur.resetAnchor();
1248
1249         // Try to dispatch to an non-editable inset near this position
1250         // via the temp cursor. If the inset wishes to change the real
1251         // cursor it has to do so explicitly by using
1252         //  cur.bv().cursor() = cur;  (or similar)
1253         if (inset) {
1254                 inset->dispatch(cur, cmd);
1255         }
1256
1257         // Now dispatch to the temporary cursor. If the real cursor should
1258         // be modified, the inset's dispatch has to do so explicitly.
1259         if (!cur.result().dispatched())
1260                 cur.dispatch(cmd);
1261
1262         // Redraw if requested and necessary.
1263         if (cur.result().dispatched() && cur.result().update())
1264                 return update(cur.result().update());
1265
1266         return false;
1267 }
1268
1269
1270 void BufferView::scroll(int /*lines*/)
1271 {
1272 //      if (!buffer_)
1273 //              return;
1274 //
1275 //      Text const * t = &buffer_->text();
1276 //      int const line_height = defaultRowHeight();
1277 //
1278 //      // The new absolute coordinate
1279 //      int new_top_y = top_y() + lines * line_height;
1280 //
1281 //      // Restrict to a valid value
1282 //      new_top_y = std::min(t->height() - 4 * line_height, new_top_y);
1283 //      new_top_y = std::max(0, new_top_y);
1284 //
1285 //      scrollDocView(new_top_y);
1286 //
1287 }
1288
1289
1290 void BufferView::setCursorFromRow(int row)
1291 {
1292         int tmpid = -1;
1293         int tmppos = -1;
1294
1295         buffer_->texrow().getIdFromRow(row, tmpid, tmppos);
1296
1297         if (tmpid == -1)
1298                 buffer_->text().setCursor(cursor_, 0, 0);
1299         else
1300                 buffer_->text().setCursor(cursor_, buffer_->getParFromID(tmpid).pit(), tmppos);
1301 }
1302
1303
1304 void BufferView::gotoLabel(docstring const & label)
1305 {
1306         for (InsetIterator it = inset_iterator_begin(buffer_->inset()); it; ++it) {
1307                 vector<docstring> labels;
1308                 it->getLabelList(*buffer_, labels);
1309                 if (std::find(labels.begin(), labels.end(), label) != labels.end()) {
1310                         setCursor(it);
1311                         update();
1312                         return;
1313                 }
1314         }
1315 }
1316
1317
1318 TextMetrics const & BufferView::textMetrics(Text const * t) const
1319 {
1320         return const_cast<BufferView *>(this)->textMetrics(t);
1321 }
1322
1323
1324 TextMetrics & BufferView::textMetrics(Text const * t)
1325 {
1326         TextMetricsCache::iterator tmc_it  = text_metrics_.find(t);
1327         if (tmc_it == text_metrics_.end()) {
1328                 tmc_it = text_metrics_.insert(
1329                         make_pair(t, TextMetrics(this, const_cast<Text *>(t)))).first;
1330         }       
1331         return tmc_it->second;
1332 }
1333
1334
1335 ParagraphMetrics const & BufferView::parMetrics(Text const * t,
1336                 pit_type pit) const
1337 {
1338         return textMetrics(t).parMetrics(pit);
1339 }
1340
1341
1342 int BufferView::workHeight() const
1343 {
1344         return height_;
1345 }
1346
1347
1348 void BufferView::setCursor(DocIterator const & dit)
1349 {
1350         size_t const n = dit.depth();
1351         for (size_t i = 0; i < n; ++i)
1352                 dit[i].inset().edit(cursor_, true);
1353
1354         cursor_.setCursor(dit);
1355         cursor_.selection() = false;
1356 }
1357
1358
1359 bool BufferView::checkDepm(Cursor & cur, Cursor & old)
1360 {
1361         // Would be wrong to delete anything if we have a selection.
1362         if (cur.selection())
1363                 return false;
1364
1365         bool need_anchor_change = false;
1366         bool changed = cursor_.text()->deleteEmptyParagraphMechanism(cur, old,
1367                 need_anchor_change);
1368
1369         if (need_anchor_change)
1370                 cur.resetAnchor();
1371         
1372         if (!changed)
1373                 return false;
1374
1375         updateLabels(*buffer_);
1376
1377         updateMetrics(false);
1378         buffer_->changed();
1379         return true;
1380 }
1381
1382
1383 bool BufferView::mouseSetCursor(Cursor & cur)
1384 {
1385         BOOST_ASSERT(&cur.bv() == this);
1386
1387         // Has the cursor just left the inset?
1388         bool badcursor = false;
1389         bool leftinset = (&cursor_.inset() != &cur.inset());
1390         if (leftinset)
1391                 badcursor = cursor_.inset().notifyCursorLeaves(cursor_);
1392
1393         // do the dEPM magic if needed
1394         // FIXME: (1) move this to InsetText::notifyCursorLeaves?
1395         // FIXME: (2) if we had a working InsetText::notifyCursorLeaves,
1396         // the leftinset bool would not be necessary (badcursor instead).
1397         bool update = leftinset;
1398         if (!badcursor && cursor_.inTexted())
1399                 update |= checkDepm(cur, cursor_);
1400
1401         // if the cursor was in an empty script inset and the new
1402         // position is in the nucleus of the inset, notifyCursorLeaves
1403         // will kill the script inset itself. So we check all the
1404         // elements of the cursor to make sure that they are correct.
1405         // For an example, see bug 2933: 
1406         // http://bugzilla.lyx.org/show_bug.cgi?id=2933
1407         // The code below could maybe be moved to a DocIterator method.
1408         //lyxerr << "cur before " << cur <<std::endl;
1409         DocIterator dit(cur.inset());
1410         dit.push_back(cur.bottom());
1411         size_t i = 1;
1412         while (i < cur.depth() && dit.nextInset() == &cur[i].inset()) {
1413                 dit.push_back(cur[i]);
1414                 ++i;
1415         }
1416         //lyxerr << "5 cur after" << dit <<std::endl;
1417
1418         cursor_.setCursor(dit);
1419         cursor_.clearSelection();
1420         finishUndo();
1421         return update;
1422 }
1423
1424
1425 void BufferView::putSelectionAt(DocIterator const & cur,
1426                                 int length, bool backwards)
1427 {
1428         cursor_.clearSelection();
1429
1430         setCursor(cur);
1431
1432         if (length) {
1433                 if (backwards) {
1434                         cursor_.pos() += length;
1435                         cursor_.setSelection(cursor_, -length);
1436                 } else
1437                         cursor_.setSelection(cursor_, length);
1438                 cap::saveSelection(cursor_);
1439         }
1440 }
1441
1442
1443 Cursor & BufferView::cursor()
1444 {
1445         return cursor_;
1446 }
1447
1448
1449 Cursor const & BufferView::cursor() const
1450 {
1451         return cursor_;
1452 }
1453
1454
1455 pit_type BufferView::anchor_ref() const
1456 {
1457         return anchor_ref_;
1458 }
1459
1460
1461 ViewMetricsInfo const & BufferView::viewMetricsInfo()
1462 {
1463         return metrics_info_;
1464 }
1465
1466
1467 // FIXME: We should split-up updateMetrics() for the singlepar case.
1468 void BufferView::updateMetrics(bool singlepar)
1469 {
1470         Text & buftext = buffer_->text();
1471         TextMetrics & tm = textMetrics(&buftext);
1472         pit_type size = int(buftext.paragraphs().size());
1473
1474         if (anchor_ref_ > int(buftext.paragraphs().size() - 1)) {
1475                 anchor_ref_ = int(buftext.paragraphs().size() - 1);
1476                 offset_ref_ = 0;
1477         }
1478         
1479         // If the paragraph metrics has changed, we can not
1480         // use the singlepar optimisation.
1481         if (singlepar
1482                 // In Single Paragraph mode, rebreak only
1483                 // the (main text, not inset!) paragraph containing the cursor.
1484                 // (if this paragraph contains insets etc., rebreaking will
1485                 // recursively descend)
1486                 && tm.redoParagraph(cursor_.bottom().pit()))
1487                 singlepar = false;
1488
1489         pit_type const pit = anchor_ref_;
1490         int pit1 = pit;
1491         int pit2 = pit;
1492         size_t const npit = buftext.paragraphs().size();
1493
1494         // Rebreak anchor paragraph.
1495         if (!singlepar)
1496                 tm.redoParagraph(pit);
1497         
1498         // Clear out the position cache in case of full screen redraw.
1499         if (!singlepar)
1500                 coord_cache_.clear();
1501
1502         int y0 = tm.parMetrics(pit).ascent() - offset_ref_;
1503
1504         // Redo paragraphs above anchor if necessary.
1505         int y1 = y0;
1506         while (y1 > 0 && pit1 > 0) {
1507                 y1 -= tm.parMetrics(pit1).ascent();
1508                 --pit1;
1509                 if (!singlepar)
1510                         tm.redoParagraph(pit1);
1511                 y1 -= tm.parMetrics(pit1).descent();
1512         }
1513
1514
1515         // Take care of ascent of first line
1516         y1 -= tm.parMetrics(pit1).ascent();
1517
1518         // Normalize anchor for next time
1519         anchor_ref_ = pit1;
1520         offset_ref_ = -y1;
1521
1522         // Grey at the beginning is ugly
1523         if (pit1 == 0 && y1 > 0) {
1524                 y0 -= y1;
1525                 y1 = 0;
1526                 anchor_ref_ = 0;
1527         }
1528
1529         // Redo paragraphs below the anchor if necessary.
1530         int y2 = y0;
1531         while (y2 < height_ && pit2 < int(npit) - 1) {
1532                 y2 += tm.parMetrics(pit2).descent();
1533                 ++pit2;
1534                 if (!singlepar)
1535                         tm.redoParagraph(pit2);
1536                 y2 += tm.parMetrics(pit2).ascent();
1537         }
1538
1539         // Take care of descent of last line
1540         y2 += tm.parMetrics(pit2).descent();
1541
1542         // The coordinates of all these paragraphs are correct, cache them
1543         int y = y1;
1544         CoordCache::InnerParPosCache & parPos = coord_cache_.parPos()[&buftext];
1545         for (pit_type pit = pit1; pit <= pit2; ++pit) {
1546                 ParagraphMetrics const & pm = tm.parMetrics(pit);
1547                 y += pm.ascent();
1548                 parPos[pit] = Point(0, y);
1549                 if (singlepar && pit == cursor_.bottom().pit()) {
1550                         // In Single Paragraph mode, collect here the
1551                         // y1 and y2 of the (one) paragraph the cursor is in
1552                         y1 = y - pm.ascent();
1553                         y2 = y + pm.descent();
1554                 }
1555                 y += pm.descent();
1556         }
1557
1558         if (singlepar) {
1559                 // collect cursor paragraph iter bounds
1560                 pit1 = cursor_.bottom().pit();
1561                 pit2 = cursor_.bottom().pit();
1562         }
1563
1564         LYXERR(Debug::DEBUG)
1565                 << BOOST_CURRENT_FUNCTION
1566                 << " y1: " << y1
1567                 << " y2: " << y2
1568                 << " pit1: " << pit1
1569                 << " pit2: " << pit2
1570                 << " npit: " << npit
1571                 << " singlepar: " << singlepar
1572                 << "size: " << size
1573                 << endl;
1574
1575         metrics_info_ = ViewMetricsInfo(pit1, pit2, y1, y2, 
1576                 singlepar? SingleParUpdate: FullScreenUpdate, size);
1577
1578         if (lyxerr.debugging(Debug::WORKAREA)) {
1579                 LYXERR(Debug::WORKAREA) << "BufferView::updateMetrics" << endl;
1580                 coord_cache_.dump();
1581         }
1582 }
1583
1584
1585 void BufferView::menuInsertLyXFile(string const & filenm)
1586 {
1587         BOOST_ASSERT(cursor_.inTexted());
1588         string filename = filenm;
1589
1590         if (filename.empty()) {
1591                 // Launch a file browser
1592                 // FIXME UNICODE
1593                 string initpath = lyxrc.document_path;
1594
1595                 if (buffer_) {
1596                         string const trypath = buffer_->filePath();
1597                         // If directory is writeable, use this as default.
1598                         if (isDirWriteable(FileName(trypath)))
1599                                 initpath = trypath;
1600                 }
1601
1602                 // FIXME UNICODE
1603                 FileDialog fileDlg(_("Select LyX document to insert"),
1604                         LFUN_FILE_INSERT,
1605                         make_pair(_("Documents|#o#O"), from_utf8(lyxrc.document_path)),
1606                         make_pair(_("Examples|#E#e"), from_utf8(addPath(package().system_support().absFilename(), "examples"))));
1607
1608                 FileDialog::Result result =
1609                         fileDlg.open(from_utf8(initpath),
1610                                      FileFilterList(_("LyX Documents (*.lyx)")),
1611                                      docstring());
1612
1613                 if (result.first == FileDialog::Later)
1614                         return;
1615
1616                 // FIXME UNICODE
1617                 filename = to_utf8(result.second);
1618
1619                 // check selected filename
1620                 if (filename.empty()) {
1621                         // emit message signal.
1622                         message(_("Canceled."));
1623                         return;
1624                 }
1625         }
1626
1627         // Get absolute path of file and add ".lyx"
1628         // to the filename if necessary
1629         filename = fileSearch(string(), filename, "lyx").absFilename();
1630
1631         docstring const disp_fn = makeDisplayPath(filename);
1632         // emit message signal.
1633         message(bformat(_("Inserting document %1$s..."), disp_fn));
1634
1635         docstring res;
1636         Buffer buf("", false);
1637         if (lyx::loadLyXFile(&buf, FileName(filename))) {
1638                 ErrorList & el = buffer_->errorList("Parse");
1639                 // Copy the inserted document error list into the current buffer one.
1640                 el = buf.errorList("Parse");
1641                 recordUndo(cursor_);
1642                 cap::pasteParagraphList(cursor_, buf.paragraphs(),
1643                                              buf.params().textclass, el);
1644                 res = _("Document %1$s inserted.");
1645         } else
1646                 res = _("Could not insert document %1$s");
1647
1648         // emit message signal.
1649         message(bformat(res, disp_fn));
1650         buffer_->errors("Parse");
1651         resize();
1652 }
1653
1654 } // namespace lyx