]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.C
GUI API Cleanup step 3: merge with "younes" branch.
[lyx.git] / src / BufferView_pimpl.C
1 /**
2  * \file BufferView_pimpl.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Alfredo Braunstein
8  * \author Lars Gullik Bjønnes
9  * \author Jean-Marc Lasgouttes
10  * \author Angus Leeming
11  * \author John Levon
12  * \author André Pönitz
13  * \author Dekel Tsur
14  * \author Jürgen Vigna
15  *
16  * Full author contact details are available in file CREDITS.
17  */
18
19 #include <config.h>
20
21 #include "BufferView_pimpl.h"
22 #include "buffer.h"
23 #include "buffer_funcs.h"
24 #include "bufferlist.h"
25 #include "bufferparams.h"
26 #include "coordcache.h"
27 #include "cursor.h"
28 #include "CutAndPaste.h"
29 #include "debug.h"
30 #include "dispatchresult.h"
31 #include "factory.h"
32 #include "FloatList.h"
33 #include "funcrequest.h"
34 #include "FuncStatus.h"
35 #include "gettext.h"
36 #include "intl.h"
37 #include "insetiterator.h"
38 #include "LaTeXFeatures.h"
39 #include "lyx_cb.h" // added for Dispatch functions
40 #include "lyx_main.h"
41 #include "lyxfind.h"
42 #include "lyxfunc.h"
43 #include "lyxtext.h"
44 #include "lyxrc.h"
45 #include "session.h"
46 #include "metricsinfo.h"
47 #include "paragraph.h"
48 #include "paragraph_funcs.h"
49 #include "ParagraphParameters.h"
50 #include "pariterator.h"
51 #include "toc.h"
52 #include "undo.h"
53 #include "vspace.h"
54
55 #include "insets/insetbibtex.h"
56 #include "insets/insetref.h"
57 #include "insets/insettext.h"
58
59 #include "frontends/Alert.h"
60 #include "frontends/Dialogs.h"
61 #include "frontends/FileDialog.h"
62 #include "frontends/font_metrics.h"
63 #include "frontends/Gui.h"
64 #include "frontends/LyXView.h"
65 #include "frontends/Selection.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 using lyx::frontend::Clipboard;
82 using lyx::frontend::Gui;
83
84 using lyx::pos_type;
85
86 using lyx::support::addPath;
87 using lyx::support::bformat;
88 using lyx::support::FileFilterList;
89 using lyx::support::fileSearch;
90 using lyx::support::isDirWriteable;
91 using lyx::support::makeDisplayPath;
92 using lyx::support::makeAbsPath;
93 using lyx::support::package;
94
95 using std::endl;
96 using std::istringstream;
97 using std::make_pair;
98 using std::min;
99 using std::max;
100 using std::string;
101 using std::mem_fun_ref;
102 using std::vector;
103
104 extern BufferList bufferlist;
105
106
107 namespace {
108
109 unsigned int const saved_positions_num = 20;
110
111
112 /// Return an inset of this class if it exists at the current cursor position
113 template <class T>
114 T * getInsetByCode(LCursor & cur, InsetBase::Code code)
115 {
116         T * inset = 0;
117         DocIterator it = cur;
118         if (it.nextInset() &&
119             it.nextInset()->lyxCode() == code) {
120                 inset = static_cast<T*>(it.nextInset());
121         }
122         return inset;
123 }
124
125 } // anon namespace
126
127
128 BufferView::Pimpl::Pimpl(BufferView & bv, LyXView * owner)
129         : bv_(&bv), owner_(owner), buffer_(0), wh_(0),
130           cursor_(bv),
131           multiparsel_cache_(false), anchor_ref_(0), offset_ref_(0), needs_redraw_(false)
132 {
133         xsel_cache_.set = false;
134
135         saved_positions.resize(saved_positions_num);
136         // load saved bookmarks
137         lyx::Session::BookmarkList & bmList = LyX::ref().session().loadBookmarks();
138         for (lyx::Session::BookmarkList::iterator bm = bmList.begin();
139                 bm != bmList.end(); ++bm)
140                 if (bm->get<0>() < saved_positions_num)
141                         saved_positions[bm->get<0>()] = Position( bm->get<1>(), bm->get<2>(), bm->get<3>() );
142         // and then clear them
143         bmList.clear();
144 }
145
146
147 void BufferView::Pimpl::addError(ErrorItem const & ei)
148 {
149         errorlist_.push_back(ei);
150 }
151
152
153 void BufferView::Pimpl::showReadonly(bool)
154 {
155         owner_->updateWindowTitle();
156         owner_->getDialogs().updateBufferDependent(false);
157 }
158
159
160 void BufferView::Pimpl::connectBuffer(Buffer & buf)
161 {
162         if (errorConnection_.connected())
163                 disconnectBuffer();
164
165         errorConnection_ =
166                 buf.error.connect(
167                         boost::bind(&BufferView::Pimpl::addError, this, _1));
168
169         messageConnection_ =
170                 buf.message.connect(
171                         boost::bind(&LyXView::message, owner_, _1));
172
173         busyConnection_ =
174                 buf.busy.connect(
175                         boost::bind(&LyXView::busy, owner_, _1));
176
177         titleConnection_ =
178                 buf.updateTitles.connect(
179                         boost::bind(&LyXView::updateWindowTitle, owner_));
180
181         timerConnection_ =
182                 buf.resetAutosaveTimers.connect(
183                         boost::bind(&LyXView::resetAutosaveTimer, owner_));
184
185         readonlyConnection_ =
186                 buf.readonly.connect(
187                         boost::bind(&BufferView::Pimpl::showReadonly, this, _1));
188
189         closingConnection_ =
190                 buf.closing.connect(
191                         boost::bind(&LyXView::setBuffer, owner_, (Buffer *)0));
192 }
193
194
195 void BufferView::Pimpl::disconnectBuffer()
196 {
197         errorConnection_.disconnect();
198         messageConnection_.disconnect();
199         busyConnection_.disconnect();
200         titleConnection_.disconnect();
201         timerConnection_.disconnect();
202         readonlyConnection_.disconnect();
203         closingConnection_.disconnect();
204 }
205
206
207 bool BufferView::Pimpl::loadLyXFile(string const & filename, bool tolastfiles)
208 {
209         // Get absolute path of file and add ".lyx"
210         // to the filename if necessary
211         string s = fileSearch(string(), filename, "lyx");
212
213         bool const found = !s.empty();
214
215         if (!found)
216                 s = filename;
217
218         // File already open?
219         if (bufferlist.exists(s)) {
220                 string const file = makeDisplayPath(s, 20);
221                 string text = bformat(_("The document %1$s is already "
222                                         "loaded.\n\nDo you want to revert "
223                                         "to the saved version?"), file);
224                 int const ret = Alert::prompt(_("Revert to saved document?"),
225                         text, 0, 1,  _("&Revert"), _("&Switch to document"));
226
227                 if (ret != 0) {
228                         setBuffer(bufferlist.getBuffer(s));
229                         return true;
230                 }
231                 // FIXME: should be LFUN_REVERT
232                 if (!bufferlist.close(bufferlist.getBuffer(s), false))
233                         return false;
234                 // Fall through to new load. (Asger)
235         }
236
237         Buffer * b = 0;
238
239         if (found) {
240                 b = bufferlist.newBuffer(s);
241                 connectBuffer(*b);
242                 if (!::loadLyXFile(b, s)) {
243                         bufferlist.release(b);
244                         return false;
245                 }
246         } else {
247                 string text = bformat(_("The document %1$s does not yet "
248                                         "exist.\n\nDo you want to create "
249                                         "a new document?"), s);
250                 int const ret = Alert::prompt(_("Create new document?"),
251                          text, 0, 1, _("&Create"), _("Cancel"));
252
253                 if (ret == 0)
254                         b = newFile(s, string(), true);
255                 else
256                         return false;
257         }
258
259         setBuffer(b);
260         bv_->showErrorList(_("Parse"));
261
262         // scroll to the position when the file was last closed
263         if (lyxrc.use_lastfilepos) {
264                 lyx::pit_type pit;
265                 lyx::pos_type pos;
266                 boost::tie(pit, pos) = LyX::ref().session().loadFilePosition(s);
267                 // I am not sure how to separate the following part to a function
268                 // so I will leave this to Lars.
269                 //
270                 // check pit since the document may be externally changed.
271                 if ( static_cast<size_t>(pit) < b->paragraphs().size() ) {
272                         ParIterator it = b->par_iterator_begin();
273                         ParIterator const end = b->par_iterator_end();
274                         for (; it != end; ++it)
275                                 if (it.pit() == pit) {
276                                         // restored pos may be bigger than it->size
277                                         bv_->setCursor(makeDocIterator(it, min(pos, it->size())));
278                                         bv_->update(Update::FitCursor);
279                                         break;
280                                 }
281                 }
282         }
283
284         if (tolastfiles)
285                 LyX::ref().session().addLastFile(b->fileName());
286
287         return true;
288 }
289
290
291 lyx::frontend::Gui & BufferView::Pimpl::gui() const
292 {
293         return owner_->gui();
294 }
295
296
297 int BufferView::Pimpl::width() const
298 {
299         return width_;
300 }
301
302
303 int BufferView::Pimpl::height() const
304 {
305         return height_;
306 }
307
308
309 void BufferView::Pimpl::setBuffer(Buffer * b)
310 {
311         lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
312                             << "[ b = " << b << "]" << endl;
313
314         if (buffer_) {
315                 disconnectBuffer();
316                 // Save the actual cursor position and anchor inside the
317                 // buffer so that it can be restored in case we rechange
318                 // to this buffer later on.
319                 buffer_->saveCursor(cursor_.selectionBegin(),
320                                     cursor_.selectionEnd());
321                 // current buffer is going to be switched-off, save cursor pos
322                 LyX::ref().session().saveFilePosition(buffer_->fileName(),
323                         boost::tie(cursor_.pit(), cursor_.pos()) );
324         }
325
326         // If we are closing current buffer, switch to the first in
327         // buffer list.
328         if (!b) {
329                 lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
330                                     << " No Buffer!" << endl;
331                 // We are closing the buffer, use the first buffer as current
332                 buffer_ = bufferlist.first();
333                 owner_->getDialogs().hideBufferDependent();
334         } else {
335                 // Set current buffer
336                 buffer_ = b;
337         }
338
339         // Reset old cursor
340         cursor_ = LCursor(*bv_);
341         anchor_ref_ = 0;
342         offset_ref_ = 0;
343
344
345         // If we're quitting lyx, don't bother updating stuff
346         if (quitting)
347                 return;
348
349         if (buffer_) {
350                 lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
351                                     << "Buffer addr: " << buffer_ << endl;
352                 connectBuffer(*buffer_);
353                 cursor_.push(buffer_->inset());
354                 cursor_.resetAnchor();
355                 buffer_->text().init(bv_);
356                 buffer_->text().setCurrentFont(cursor_);
357                 if (buffer_->getCursor().size() > 0 &&
358                     buffer_->getAnchor().size() > 0)
359                 {
360                         cursor_.setCursor(buffer_->getAnchor().asDocIterator(&(buffer_->inset())));
361                         cursor_.resetAnchor();
362                         cursor_.setCursor(buffer_->getCursor().asDocIterator(&(buffer_->inset())));
363                         cursor_.setSelection();
364                 }
365
366                 // Buffer-dependent dialogs should be updated or
367                 // hidden. This should go here because some dialogs (eg ToC)
368                 // require bv_->text.
369                 owner_->getDialogs().updateBufferDependent(true);
370         }
371
372         update();
373
374         if (buffer_ && lyx::graphics::Previews::status() != LyXRC::PREVIEW_OFF)
375                 lyx::graphics::Previews::get().generateBufferPreviews(*buffer_);
376 }
377
378 string BufferView::Pimpl::firstLayout()
379 {
380         string firstlayout;
381
382         // This is done after the layout combox has been populated
383         if (buffer_) {
384                 size_t i = cursor_.depth() - 1;
385                 // we know we'll eventually find a paragraph
386                 while (true) {
387                         CursorSlice const & slice = cursor_[i];
388                         if (!slice.inset().inMathed()) {
389                                 LyXLayout_ptr const layout = slice.paragraph().layout();
390                                 firstlayout = layout->name();
391                                 break;
392                         }
393                         BOOST_ASSERT(i>0);
394                         --i;
395                 }
396         }
397         return firstlayout;
398 }
399
400
401 void BufferView::Pimpl::resizeCurrentBuffer()
402 {
403         lyxerr[Debug::DEBUG] << BOOST_CURRENT_FUNCTION << endl;
404         owner_->busy(true);
405         owner_->message(_("Formatting document..."));
406
407         LyXText * text = bv_->text();
408         if (!text)
409                 return;
410
411         text->init(bv_);
412         update();
413
414         switchKeyMap();
415         owner_->busy(false);
416
417         // Reset the "Formatting..." message
418         owner_->clearMessage();
419 }
420
421
422 void BufferView::Pimpl::updateScrollbar()
423 {
424         if (!bv_->text()) {
425                 lyxerr[Debug::DEBUG] << BOOST_CURRENT_FUNCTION
426                                      << " no text in updateScrollbar" << endl;
427                 scrollbarParameters_.reset();
428                 return;
429         }
430
431         LyXText & t = *bv_->text();
432         int const parsize = int(t.paragraphs().size() - 1);
433         if (anchor_ref_ >  parsize)  {
434                 anchor_ref_ = parsize;
435                 offset_ref_ = 0;
436         }
437
438         lyxerr[Debug::GUI]
439                 << BOOST_CURRENT_FUNCTION
440                 << " Updating scrollbar: height: " << t.paragraphs().size()
441                 << " curr par: " << cursor_.bottom().pit()
442                 << " default height " << defaultRowHeight() << endl;
443
444         // It would be better to fix the scrollbar to understand
445         // values in [0..1] and divide everything by wh
446
447         // estimated average paragraph height:
448         if (wh_ == 0)
449                 wh_ = height_ / 4;
450         int h = t.getPar(anchor_ref_).height();
451
452         // Normalize anchor/offset (MV):
453         while (offset_ref_ > h && anchor_ref_ < parsize) {
454                 anchor_ref_++;
455                 offset_ref_ -= h;
456                 h = t.getPar(anchor_ref_).height();
457         }
458         // Look at paragraph heights on-screen
459         int sumh = 0;
460         int nh = 0;
461         for (lyx::pit_type pit = anchor_ref_; pit <= parsize; ++pit) {
462                 if (sumh > height_)
463                         break;
464                 int const h2 = t.getPar(pit).height();
465                 sumh += h2;
466                 nh++;
467         }
468         int const hav = sumh / nh;
469         // More realistic average paragraph height
470         if (hav > wh_)
471                 wh_ = hav;
472
473         scrollbarParameters_.height = (parsize + 1) * wh_;
474         scrollbarParameters_.position = anchor_ref_ * wh_ + int(offset_ref_ * wh_ / float(h));
475         scrollbarParameters_.lineScrollHeight = int(wh_ * defaultRowHeight() / float(h));
476 }
477
478
479 ScrollbarParameters const & BufferView::Pimpl::scrollbarParameters() const
480 {
481         return scrollbarParameters_;
482 }
483
484
485 void BufferView::Pimpl::scrollDocView(int value)
486 {
487         lyxerr[Debug::GUI] << BOOST_CURRENT_FUNCTION
488                            << "[ value = " << value << "]" << endl;
489
490         if (!buffer_)
491                 return;
492
493         LyXText & t = *bv_->text();
494
495         float const bar = value / float(wh_ * t.paragraphs().size());
496
497         anchor_ref_ = int(bar * t.paragraphs().size());
498         if (anchor_ref_ >  int(t.paragraphs().size()) - 1)
499                 anchor_ref_ = int(t.paragraphs().size()) - 1;
500         t.redoParagraph(anchor_ref_);
501         int const h = t.getPar(anchor_ref_).height();
502         offset_ref_ = int((bar * t.paragraphs().size() - anchor_ref_) * h);
503         update();
504
505         if (!lyxrc.cursor_follows_scrollbar)
506                 return;
507
508         int const height = 2 * defaultRowHeight();
509         int const first = height;
510         int const last = height_ - height;
511         LCursor & cur = cursor_;
512
513         bv_funcs::CurStatus st = bv_funcs::status(bv_, cur);
514
515         switch (st) {
516         case bv_funcs::CUR_ABOVE:
517                 t.setCursorFromCoordinates(cur, 0, first);
518                 cur.clearSelection();
519                 break;
520         case bv_funcs::CUR_BELOW:
521                 t.setCursorFromCoordinates(cur, 0, last);
522                 cur.clearSelection();
523                 break;
524         case bv_funcs::CUR_INSIDE:
525                 int const y = bv_funcs::getPos(cur, cur.boundary()).y_;
526                 int const newy = min(last, max(y, first));
527                 if (y != newy) {
528                         cur.reset(buffer_->inset());
529                         t.setCursorFromCoordinates(cur, 0, newy);
530                 }
531         }
532         owner_->updateLayoutChoice();
533 }
534
535
536 void BufferView::Pimpl::scroll(int /*lines*/)
537 {
538 //      if (!buffer_)
539 //              return;
540 //
541 //      LyXText const * t = bv_->text();
542 //      int const line_height = defaultRowHeight();
543 //
544 //      // The new absolute coordinate
545 //      int new_top_y = top_y() + lines * line_height;
546 //
547 //      // Restrict to a valid value
548 //      new_top_y = std::min(t->height() - 4 * line_height, new_top_y);
549 //      new_top_y = std::max(0, new_top_y);
550 //
551 //      scrollDocView(new_top_y);
552 //
553 //      // Update the scrollbar.
554 //      workArea_->setScrollbarParams(t->height(), top_y(), defaultRowHeight());}
555 }
556
557
558 void BufferView::Pimpl::workAreaKeyPress(LyXKeySymPtr key,
559                                          key_modifier::state state)
560 {
561         owner_->getLyXFunc().processKeySym(key, state);
562 }
563
564
565 void BufferView::Pimpl::selectionRequested()
566 {
567         static string sel;
568
569         if (!available())
570                 return;
571
572         LCursor & cur = cursor_;
573
574         if (!cur.selection()) {
575                 xsel_cache_.set = false;
576                 return;
577         }
578
579         if (!xsel_cache_.set ||
580             cur.top() != xsel_cache_.cursor ||
581             cur.anchor_.top() != xsel_cache_.anchor)
582         {
583                 xsel_cache_.cursor = cur.top();
584                 xsel_cache_.anchor = cur.anchor_.top();
585                 xsel_cache_.set = cur.selection();
586                 sel = cur.selectionAsString(false);
587                 if (!sel.empty())
588                         owner_->gui().selection().put(sel);
589         }
590 }
591
592
593 void BufferView::Pimpl::selectionLost()
594 {
595         if (available()) {
596                 cursor_.clearSelection();
597                 xsel_cache_.set = false;
598         }
599 }
600
601
602 void BufferView::Pimpl::workAreaResize(int width, int height)
603 {
604         bool const widthChange = width != width_;
605         bool const heightChange = height != height_;
606
607         // Update from work area
608         width_ = width;
609         height_ = height;
610
611         if (buffer_ && widthChange) {
612                 // The visible LyXView need a resize
613                 resizeCurrentBuffer();
614         }
615
616         if (widthChange || heightChange)
617                 update();
618
619         owner_->updateLayoutChoice();
620 }
621
622
623 bool BufferView::Pimpl::fitCursor()
624 {
625         if (bv_funcs::status(bv_, cursor_) == bv_funcs::CUR_INSIDE) {
626                 LyXFont const font = cursor_.getFont();
627                 int const asc = font_metrics::maxAscent(font);
628                 int const des = font_metrics::maxDescent(font);
629                 Point const p = bv_funcs::getPos(cursor_, cursor_.boundary());
630                 if (p.y_ - asc >= 0 && p.y_ + des < height_)
631                         return false;
632         }
633         center();
634         return true;
635 }
636
637
638 bool BufferView::Pimpl::multiParSel()
639 {
640         if (!cursor_.selection())
641                 return false;
642         bool ret = multiparsel_cache_;
643         multiparsel_cache_ = cursor_.selBegin().pit() != cursor_.selEnd().pit();
644         // Either this, or previous selection spans paragraphs
645         return ret || multiparsel_cache_;
646 }
647
648
649 ViewMetricsInfo const & BufferView::Pimpl::viewMetricsInfo()
650 {
651         return metrics_info_;
652 }
653
654
655 void BufferView::Pimpl::update(Update::flags flags)
656 {
657         // This is close to a hot-path.
658         if (lyxerr.debugging(Debug::DEBUG)) {
659                 lyxerr[Debug::DEBUG]
660                         << BOOST_CURRENT_FUNCTION
661                         << "[fitcursor = " << (flags & Update::FitCursor)
662                         << ", forceupdate = " << (flags & Update::Force)
663                         << ", singlepar = " << (flags & Update::SinglePar)
664                         << "]  buffer: " << buffer_ << endl;
665         }
666
667         // Check needed to survive LyX startup
668         if (!buffer_)
669                 return;
670         
671         // Check if there is already a redraw waiting in the queue.
672         if (needs_redraw_)
673                 return;
674
675         // Update macro store
676         buffer_->buildMacros();
677
678         // First drawing step
679         bool singlePar = flags & Update::SinglePar;
680         needs_redraw_ = (flags & (Update::Force | Update::SinglePar));
681
682         updateMetrics(singlePar);
683
684         if ((flags & (Update::FitCursor | Update::MultiParSel))
685                 && (fitCursor() || multiParSel())) {
686                         needs_redraw_ = true;
687                         singlePar = false;
688         }
689
690         if (needs_redraw_) {
691                 // Second drawing step
692                 updateMetrics(singlePar);
693         }
694 }
695
696
697 bool BufferView::Pimpl::available() const
698 {
699         return buffer_ && bv_->text();
700 }
701
702
703 Change const BufferView::Pimpl::getCurrentChange()
704 {
705         if (!buffer_->params().tracking_changes)
706                 return Change(Change::UNCHANGED);
707
708         LyXText * text = bv_->getLyXText();
709         LCursor & cur = cursor_;
710
711         if (!cur.selection())
712                 return Change(Change::UNCHANGED);
713
714         return text->getPar(cur.selBegin().pit()).
715                         lookupChange(cur.selBegin().pos());
716 }
717
718
719 void BufferView::Pimpl::savePosition(unsigned int i)
720 {
721         if (i >= saved_positions_num)
722                 return;
723         BOOST_ASSERT(cursor_.inTexted());
724         saved_positions[i] = Position(buffer_->fileName(),
725                                       cursor_.paragraph().id(),
726                                       cursor_.pos());
727         if (i > 0)
728                 owner_->message(bformat(_("Saved bookmark %1$d"), i));
729 }
730
731
732 void BufferView::Pimpl::restorePosition(unsigned int i)
733 {
734         if (i >= saved_positions_num)
735                 return;
736
737         string const fname = saved_positions[i].filename;
738
739         cursor_.clearSelection();
740
741         if (fname != buffer_->fileName()) {
742                 Buffer * b = 0;
743                 if (bufferlist.exists(fname))
744                         b = bufferlist.getBuffer(fname);
745                 else {
746                         b = bufferlist.newBuffer(fname);
747                         // Don't ask, just load it
748                         ::loadLyXFile(b, fname);
749                 }
750                 if (b)
751                         setBuffer(b);
752         }
753
754         ParIterator par = buffer_->getParFromID(saved_positions[i].par_id);
755         if (par == buffer_->par_iterator_end())
756                 return;
757
758         bv_->setCursor(makeDocIterator(par, min(par->size(), saved_positions[i].par_pos)));
759
760         if (i > 0)
761                 owner_->message(bformat(_("Moved to bookmark %1$d"), i));
762 }
763
764
765 bool BufferView::Pimpl::isSavedPosition(unsigned int i)
766 {
767         return i < saved_positions_num && !saved_positions[i].filename.empty();
768 }
769
770
771 void BufferView::Pimpl::saveSavedPositions()
772 {
773         // save bookmarks. It is better to use the pit interface
774         // but I do not know how to effectively convert between
775         // par_id and pit.
776         for (unsigned int i=1; i < saved_positions_num; ++i) {
777                 if ( isSavedPosition(i) )
778                         LyX::ref().session().saveBookmark( boost::tie(
779                                 i,
780                                 saved_positions[i].filename,
781                                 saved_positions[i].par_id,
782                                 saved_positions[i].par_pos) );
783         }
784 }
785
786
787 void BufferView::Pimpl::switchKeyMap()
788 {
789         if (!lyxrc.rtl_support)
790                 return;
791
792         Intl & intl = owner_->getIntl();
793         if (bv_->getLyXText()->real_current_font.isRightToLeft()) {
794                 if (intl.keymap == Intl::PRIMARY)
795                         intl.keyMapSec();
796         } else {
797                 if (intl.keymap == Intl::SECONDARY)
798                         intl.keyMapPrim();
799         }
800 }
801
802
803 void BufferView::Pimpl::center()
804 {
805         CursorSlice & bot = cursor_.bottom();
806         lyx::pit_type const pit = bot.pit();
807         bot.text()->redoParagraph(pit);
808         Paragraph const & par = bot.text()->paragraphs()[pit];
809         anchor_ref_ = pit;
810         offset_ref_ = bv_funcs::coordOffset(cursor_, cursor_.boundary()).y_
811                 + par.ascent() - height_ / 2;
812 }
813
814
815
816 void BufferView::Pimpl::menuInsertLyXFile(string const & filenm)
817 {
818         BOOST_ASSERT(cursor_.inTexted());
819         string filename = filenm;
820
821         if (filename.empty()) {
822                 // Launch a file browser
823                 string initpath = lyxrc.document_path;
824
825                 if (available()) {
826                         string const trypath = buffer_->filePath();
827                         // If directory is writeable, use this as default.
828                         if (isDirWriteable(trypath))
829                                 initpath = trypath;
830                 }
831
832                 FileDialog fileDlg(_("Select LyX document to insert"),
833                         LFUN_FILE_INSERT,
834                         make_pair(string(_("Documents|#o#O")),
835                                   string(lyxrc.document_path)),
836                         make_pair(string(_("Examples|#E#e")),
837                                   string(addPath(package().system_support(), "examples"))));
838
839                 FileDialog::Result result =
840                         fileDlg.open(initpath,
841                                      FileFilterList(_("LyX Documents (*.lyx)")),
842                                      string());
843
844                 if (result.first == FileDialog::Later)
845                         return;
846
847                 filename = result.second;
848
849                 // check selected filename
850                 if (filename.empty()) {
851                         owner_->message(_("Canceled."));
852                         return;
853                 }
854         }
855
856         // Get absolute path of file and add ".lyx"
857         // to the filename if necessary
858         filename = fileSearch(string(), filename, "lyx");
859
860         string const disp_fn = makeDisplayPath(filename);
861         owner_->message(bformat(_("Inserting document %1$s..."), disp_fn));
862
863         string res;
864         Buffer buf("", false);
865         buf.error.connect(boost::bind(&BufferView::Pimpl::addError, this, _1));
866         if (::loadLyXFile(&buf, makeAbsPath(filename))) {
867                 lyx::cap::pasteParagraphList(cursor_, buf.paragraphs(),
868                                              buf.params().textclass);
869                 res = _("Document %1$s inserted.");
870         } else
871                 res = _("Could not insert document %1$s");
872
873         owner_->message(bformat(res, disp_fn));
874         bv_->showErrorList(_("Document insertion"));
875         resizeCurrentBuffer();
876 }
877
878
879 void BufferView::Pimpl::trackChanges()
880 {
881         bool const tracking = buffer_->params().tracking_changes;
882
883         if (!tracking) {
884                 for_each(buffer_->par_iterator_begin(),
885                          buffer_->par_iterator_end(),
886                          bind(&Paragraph::trackChanges, _1, Change::UNCHANGED));
887                 buffer_->params().tracking_changes = true;
888
889                 // We cannot allow undos beyond the freeze point
890                 buffer_->undostack().clear();
891         } else {
892                 cursor_.setCursor(doc_iterator_begin(buffer_->inset()));
893                 if (lyx::find::findNextChange(bv_)) {
894                         owner_->getDialogs().show("changes");
895                         return;
896                 }
897
898                 for_each(buffer_->par_iterator_begin(),
899                          buffer_->par_iterator_end(),
900                          mem_fun_ref(&Paragraph::untrackChanges));
901
902                 buffer_->params().tracking_changes = false;
903         }
904
905         buffer_->redostack().clear();
906 }
907
908
909 bool BufferView::Pimpl::workAreaDispatch(FuncRequest const & cmd0)
910 {
911         //lyxerr << BOOST_CURRENT_FUNCTION << "[ cmd0 " << cmd0 << "]" << endl;
912
913         // This is only called for mouse related events including
914         // LFUN_FILE_OPEN generated by drag-and-drop.
915         FuncRequest cmd = cmd0;
916
917         // Handle drag&drop
918         if (cmd.action == LFUN_FILE_OPEN) {
919                 owner_->dispatch(cmd);
920                 return true;
921         }
922
923         if (!buffer_)
924                 return false;
925
926         LCursor cur(*bv_);
927         cur.push(buffer_->inset());
928         cur.selection() = cursor_.selection();
929
930         // Doesn't go through lyxfunc, so we need to update
931         // the layout choice etc. ourselves
932
933         // E.g. Qt mouse press when no buffer
934         if (!available())
935                 return false;
936
937         // Either the inset under the cursor or the
938         // surrounding LyXText will handle this event.
939
940         // Build temporary cursor.
941         cmd.y = min(max(cmd.y, -1), height_);
942         InsetBase * inset = bv_->text()->editXY(cur, cmd.x, cmd.y);
943         //lyxerr << BOOST_CURRENT_FUNCTION
944         //       << " * hit inset at tip: " << inset << endl;
945         //lyxerr << BOOST_CURRENT_FUNCTION
946         //       << " * created temp cursor:" << cur << endl;
947
948         // Put anchor at the same position.
949         cur.resetAnchor();
950
951         // Try to dispatch to an non-editable inset near this position
952         // via the temp cursor. If the inset wishes to change the real
953         // cursor it has to do so explicitly by using
954         //  cur.bv().cursor() = cur;  (or similar)
955         if (inset)
956                 inset->dispatch(cur, cmd);
957
958         // Now dispatch to the temporary cursor. If the real cursor should
959         // be modified, the inset's dispatch has to do so explicitly.
960         if (!cur.result().dispatched())
961                 cur.dispatch(cmd);
962
963         if (cur.result().dispatched()) {
964                 // Redraw if requested or necessary.
965                 if (cur.result().update())
966                         update(Update::FitCursor | Update::Force);
967                 else
968                         update(Update::FitCursor | Update::MultiParSel);
969         }
970
971         // Skip these when selecting
972         if (cmd.action != LFUN_MOUSE_MOTION) {
973                 owner_->updateLayoutChoice();
974                 owner_->updateToolbars();
975         }
976
977         // Slight hack: this is only called currently when we
978         // clicked somewhere, so we force through the display
979         // of the new status here.
980         owner_->clearMessage();
981         return true;
982 }
983
984
985 FuncStatus BufferView::Pimpl::getStatus(FuncRequest const & cmd)
986 {
987         FuncStatus flag;
988
989         switch (cmd.action) {
990
991         case LFUN_UNDO:
992                 flag.enabled(!buffer_->undostack().empty());
993                 break;
994         case LFUN_REDO:
995                 flag.enabled(!buffer_->redostack().empty());
996                 break;
997         case LFUN_FILE_INSERT:
998         case LFUN_FILE_INSERT_ASCII_PARA:
999         case LFUN_FILE_INSERT_ASCII:
1000         case LFUN_BOOKMARK_SAVE:
1001                 // FIXME: Actually, these LFUNS should be moved to LyXText
1002                 flag.enabled(cursor_.inTexted());
1003                 break;
1004         case LFUN_FONT_STATE:
1005         case LFUN_LABEL_INSERT:
1006         case LFUN_PARAGRAPH_GOTO:
1007         // FIXME handle non-trivially
1008         case LFUN_OUTLINE_UP:
1009         case LFUN_OUTLINE_DOWN:
1010         case LFUN_OUTLINE_IN:
1011         case LFUN_OUTLINE_OUT:
1012         case LFUN_ERROR_NEXT:
1013         case LFUN_NOTE_NEXT:
1014         case LFUN_REFERENCE_NEXT:
1015         case LFUN_WORD_FIND:
1016         case LFUN_WORD_REPLACE:
1017         case LFUN_MARK_OFF:
1018         case LFUN_MARK_ON:
1019         case LFUN_MARK_TOGGLE:
1020         case LFUN_SCREEN_RECENTER:
1021         case LFUN_BIBTEX_DATABASE_ADD:
1022         case LFUN_BIBTEX_DATABASE_DEL:
1023         case LFUN_WORDS_COUNT:
1024                 flag.enabled(true);
1025                 break;
1026
1027         case LFUN_LABEL_GOTO: {
1028                 flag.enabled(!cmd.argument.empty()
1029                     || getInsetByCode<InsetRef>(cursor_, InsetBase::REF_CODE));
1030                 break;
1031         }
1032
1033         case LFUN_BOOKMARK_GOTO:
1034                 flag.enabled(isSavedPosition(convert<unsigned int>(cmd.argument)));
1035                 break;
1036         case LFUN_CHANGES_TRACK:
1037                 flag.enabled(true);
1038                 flag.setOnOff(buffer_->params().tracking_changes);
1039                 break;
1040
1041         case LFUN_CHANGES_OUTPUT: {
1042                 OutputParams runparams;
1043                 LaTeXFeatures features(*buffer_, buffer_->params(), runparams);
1044                 flag.enabled(buffer_ && buffer_->params().tracking_changes
1045                         && features.isAvailable("dvipost"));
1046                 flag.setOnOff(buffer_->params().output_changes);
1047                 break;
1048         }
1049
1050         case LFUN_CHANGES_MERGE:
1051         case LFUN_CHANGE_ACCEPT: // what about these two
1052         case LFUN_CHANGE_REJECT: // what about these two
1053         case LFUN_ALL_CHANGES_ACCEPT:
1054         case LFUN_ALL_CHANGES_REJECT:
1055                 flag.enabled(buffer_ && buffer_->params().tracking_changes);
1056                 break;
1057
1058         case LFUN_BUFFER_TOGGLE_COMPRESSION: {
1059                 flag.setOnOff(buffer_->params().compressed);
1060                 break;
1061         }
1062
1063         default:
1064                 flag.enabled(false);
1065         }
1066
1067         return flag;
1068 }
1069
1070
1071
1072 bool BufferView::Pimpl::dispatch(FuncRequest const & cmd)
1073 {
1074         //lyxerr << BOOST_CURRENT_FUNCTION
1075         //       << [ cmd = " << cmd << "]" << endl;
1076
1077         // Make sure that the cached BufferView is correct.
1078         lyxerr[Debug::ACTION] << BOOST_CURRENT_FUNCTION
1079                 << " action[" << cmd.action << ']'
1080                 << " arg[" << cmd.argument << ']'
1081                 << " x[" << cmd.x << ']'
1082                 << " y[" << cmd.y << ']'
1083                 << " button[" << cmd.button() << ']'
1084                 << endl;
1085
1086         LCursor & cur = cursor_;
1087
1088         switch (cmd.action) {
1089
1090         case LFUN_UNDO:
1091                 if (available()) {
1092                         cur.message(_("Undo"));
1093                         cur.clearSelection();
1094                         if (!textUndo(*bv_))
1095                                 cur.message(_("No further undo information"));
1096                         update();
1097                         switchKeyMap();
1098                 }
1099                 break;
1100
1101         case LFUN_REDO:
1102                 if (available()) {
1103                         cur.message(_("Redo"));
1104                         cur.clearSelection();
1105                         if (!textRedo(*bv_))
1106                                 cur.message(_("No further redo information"));
1107                         update();
1108                         switchKeyMap();
1109                 }
1110                 break;
1111
1112         case LFUN_FILE_INSERT:
1113                 menuInsertLyXFile(cmd.argument);
1114                 break;
1115
1116         case LFUN_FILE_INSERT_ASCII_PARA:
1117                 insertAsciiFile(bv_, cmd.argument, true);
1118                 break;
1119
1120         case LFUN_FILE_INSERT_ASCII:
1121                 insertAsciiFile(bv_, cmd.argument, false);
1122                 break;
1123
1124         case LFUN_FONT_STATE:
1125                 cur.message(cur.currentState());
1126                 break;
1127
1128         case LFUN_BOOKMARK_SAVE:
1129                 savePosition(convert<unsigned int>(cmd.argument));
1130                 break;
1131
1132         case LFUN_BOOKMARK_GOTO:
1133                 restorePosition(convert<unsigned int>(cmd.argument));
1134                 break;
1135
1136         case LFUN_LABEL_GOTO: {
1137                 string label = cmd.argument;
1138                 if (label.empty()) {
1139                         InsetRef * inset =
1140                                 getInsetByCode<InsetRef>(cursor_,
1141                                                          InsetBase::REF_CODE);
1142                         if (inset) {
1143                                 label = inset->getContents();
1144                                 savePosition(0);
1145                         }
1146                 }
1147
1148                 if (!label.empty())
1149                         bv_->gotoLabel(label);
1150                 break;
1151         }
1152
1153         case LFUN_PARAGRAPH_GOTO: {
1154                 int const id = convert<int>(cmd.argument);
1155                 ParIterator par = buffer_->getParFromID(id);
1156                 if (par == buffer_->par_iterator_end()) {
1157                         lyxerr[Debug::INFO] << "No matching paragraph found! ["
1158                                             << id << ']' << endl;
1159                         break;
1160                 } else {
1161                         lyxerr[Debug::INFO] << "Paragraph " << par->id()
1162                                             << " found." << endl;
1163                 }
1164
1165                 // Set the cursor
1166                 bv_->setCursor(makeDocIterator(par, 0));
1167
1168                 update();
1169                 switchKeyMap();
1170                 break;
1171         }
1172
1173         case LFUN_OUTLINE_UP:
1174                 lyx::toc::outline(lyx::toc::Up, cursor_);
1175                 cursor_.text()->setCursor(cursor_, cursor_.pit(), 0);
1176                 updateLabels(*buffer_);
1177                 break;
1178         case LFUN_OUTLINE_DOWN:
1179                 lyx::toc::outline(lyx::toc::Down, cursor_);
1180                 cursor_.text()->setCursor(cursor_, cursor_.pit(), 0);
1181                 updateLabels(*buffer_);
1182                 break;
1183         case LFUN_OUTLINE_IN:
1184                 lyx::toc::outline(lyx::toc::In, cursor_);
1185                 updateLabels(*buffer_);
1186                 break;
1187         case LFUN_OUTLINE_OUT:
1188                 lyx::toc::outline(lyx::toc::Out, cursor_);
1189                 updateLabels(*buffer_);
1190                 break;
1191
1192         case LFUN_ERROR_NEXT:
1193                 bv_funcs::gotoInset(bv_, InsetBase::ERROR_CODE, false);
1194                 break;
1195
1196         case LFUN_NOTE_NEXT:
1197                 bv_funcs::gotoInset(bv_, InsetBase::NOTE_CODE, false);
1198                 break;
1199
1200         case LFUN_REFERENCE_NEXT: {
1201                 vector<InsetBase_code> tmp;
1202                 tmp.push_back(InsetBase::LABEL_CODE);
1203                 tmp.push_back(InsetBase::REF_CODE);
1204                 bv_funcs::gotoInset(bv_, tmp, true);
1205                 break;
1206         }
1207
1208         case LFUN_CHANGES_TRACK:
1209                 trackChanges();
1210                 break;
1211
1212         case LFUN_CHANGES_OUTPUT: {
1213                 bool const state = buffer_->params().output_changes;
1214                 buffer_->params().output_changes = !state;
1215                 break;
1216         }
1217
1218         case LFUN_CHANGES_MERGE:
1219                 if (lyx::find::findNextChange(bv_))
1220                         owner_->getDialogs().show("changes");
1221                 break;
1222
1223         case LFUN_ALL_CHANGES_ACCEPT: {
1224                 cursor_.reset(buffer_->inset());
1225 #ifdef WITH_WARNINGS
1226 #warning FIXME changes
1227 #endif
1228                 while (lyx::find::findNextChange(bv_))
1229                         bv_->getLyXText()->acceptChange(cursor_);
1230                 update();
1231                 break;
1232         }
1233
1234         case LFUN_ALL_CHANGES_REJECT: {
1235                 cursor_.reset(buffer_->inset());
1236 #ifdef WITH_WARNINGS
1237 #warning FIXME changes
1238 #endif
1239                 while (lyx::find::findNextChange(bv_))
1240                         bv_->getLyXText()->rejectChange(cursor_);
1241                 break;
1242         }
1243
1244         case LFUN_WORD_FIND:
1245                 lyx::find::find(bv_, cmd);
1246                 break;
1247
1248         case LFUN_WORD_REPLACE:
1249                 lyx::find::replace(bv_, cmd);
1250                 break;
1251
1252         case LFUN_MARK_OFF:
1253                 cur.clearSelection();
1254                 cur.resetAnchor();
1255                 cur.message(N_("Mark off"));
1256                 break;
1257
1258         case LFUN_MARK_ON:
1259                 cur.clearSelection();
1260                 cur.mark() = true;
1261                 cur.resetAnchor();
1262                 cur.message(N_("Mark on"));
1263                 break;
1264
1265         case LFUN_MARK_TOGGLE:
1266                 cur.clearSelection();
1267                 if (cur.mark()) {
1268                         cur.mark() = false;
1269                         cur.message(N_("Mark removed"));
1270                 } else {
1271                         cur.mark() = true;
1272                         cur.message(N_("Mark set"));
1273                 }
1274                 cur.resetAnchor();
1275                 break;
1276
1277         case LFUN_SCREEN_RECENTER:
1278                 center();
1279                 break;
1280
1281         case LFUN_BIBTEX_DATABASE_ADD: {
1282                 LCursor tmpcur = cursor_;
1283                 bv_funcs::findInset(tmpcur, InsetBase::BIBTEX_CODE, false);
1284                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
1285                                                 InsetBase::BIBTEX_CODE);
1286                 if (inset) {
1287                         if (inset->addDatabase(cmd.argument))
1288                                 buffer_->updateBibfilesCache();
1289                 }
1290                 break;
1291         }
1292
1293         case LFUN_BIBTEX_DATABASE_DEL: {
1294                 LCursor tmpcur = cursor_;
1295                 bv_funcs::findInset(tmpcur, InsetBase::BIBTEX_CODE, false);
1296                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
1297                                                 InsetBase::BIBTEX_CODE);
1298                 if (inset) {
1299                         if (inset->delDatabase(cmd.argument))
1300                                 buffer_->updateBibfilesCache();
1301                 }
1302                 break;
1303         }
1304
1305         case LFUN_WORDS_COUNT: {
1306                 DocIterator from, to;
1307                 if (cur.selection()) {
1308                         from = cur.selectionBegin();
1309                         to = cur.selectionEnd();
1310                 } else {
1311                         from = doc_iterator_begin(buffer_->inset());
1312                         to = doc_iterator_end(buffer_->inset());
1313                 }
1314                 int const count = countWords(from, to);
1315                 string message;
1316                 if (count != 1) {
1317                         if (cur.selection())
1318                                 message = bformat(_("%1$d words in selection."),
1319                                           count);
1320                                 else
1321                                         message = bformat(_("%1$d words in document."),
1322                                                           count);
1323                 }
1324                 else {
1325                         if (cur.selection())
1326                                 message = _("One word in selection.");
1327                         else
1328                                 message = _("One word in document.");
1329                 }
1330
1331                 Alert::information(_("Count words"), message);
1332         }
1333                 break;
1334
1335         case LFUN_BUFFER_TOGGLE_COMPRESSION:
1336                 // turn compression on/off
1337                 buffer_->params().compressed = !buffer_->params().compressed;
1338                 break;
1339
1340         default:
1341                 return false;
1342         }
1343
1344         return true;
1345 }
1346
1347
1348 void BufferView::Pimpl::updateMetrics(bool singlepar)
1349 {
1350         // Remove old position cache
1351         theCoords.clear();
1352         BufferView & bv = *bv_;
1353         LyXText * const text = bv.text();
1354         lyx::pit_type size = int(text->paragraphs().size());
1355
1356         if (anchor_ref_ > int(text->paragraphs().size() - 1)) {
1357                 anchor_ref_ = int(text->paragraphs().size() - 1);
1358                 offset_ref_ = 0;
1359         }
1360
1361         lyx::pit_type const pit = anchor_ref_;
1362         int pit1 = pit;
1363         int pit2 = pit;
1364         size_t const npit = text->paragraphs().size();
1365
1366         // Rebreak anchor paragraph. In Single Paragraph mode, rebreak only
1367         // the (main text, not inset!) paragraph containing the cursor.
1368         // (if this paragraph contains insets etc., rebreaking will
1369         // recursively descend)
1370         if (!singlepar || pit == cursor_.bottom().pit())
1371                 text->redoParagraph(pit);
1372         int y0 = text->getPar(pit).ascent() - offset_ref_;
1373
1374         // Redo paragraphs above anchor if necessary; again, in Single Par
1375         // mode, only if we encounter the (main text) one having the cursor.
1376         int y1 = y0;
1377         while (y1 > 0 && pit1 > 0) {
1378                 y1 -= text->getPar(pit1).ascent();
1379                 --pit1;
1380                 if (!singlepar || pit1 == cursor_.bottom().pit())
1381                         text->redoParagraph(pit1);
1382                 y1 -= text->getPar(pit1).descent();
1383         }
1384
1385
1386         // Take care of ascent of first line
1387         y1 -= text->getPar(pit1).ascent();
1388
1389         // Normalize anchor for next time
1390         anchor_ref_ = pit1;
1391         offset_ref_ = -y1;
1392
1393         // Grey at the beginning is ugly
1394         if (pit1 == 0 && y1 > 0) {
1395                 y0 -= y1;
1396                 y1 = 0;
1397                 anchor_ref_ = 0;
1398         }
1399
1400         // Redo paragraphs below the anchor if necessary. Single par mode:
1401         // only the one containing the cursor if encountered.
1402         int y2 = y0;
1403         while (y2 < bv.workHeight() && pit2 < int(npit) - 1) {
1404                 y2 += text->getPar(pit2).descent();
1405                 ++pit2;
1406                 if (!singlepar || pit2 == cursor_.bottom().pit())
1407                         text->redoParagraph(pit2);
1408                 y2 += text->getPar(pit2).ascent();
1409         }
1410
1411         // Take care of descent of last line
1412         y2 += text->getPar(pit2).descent();
1413
1414         // The coordinates of all these paragraphs are correct, cache them
1415         int y = y1;
1416         CoordCache::InnerParPosCache & parPos = theCoords.parPos()[text];
1417         for (lyx::pit_type pit = pit1; pit <= pit2; ++pit) {
1418                 Paragraph const & par = text->getPar(pit);
1419                 y += par.ascent();
1420                 parPos[pit] = Point(0, y);
1421                 if (singlepar && pit == cursor_.bottom().pit()) {
1422                         // In Single Paragraph mode, collect here the
1423                         // y1 and y2 of the (one) paragraph the cursor is in
1424                         y1 = y - par.ascent();
1425                         y2 = y + par.descent();
1426                 }
1427                 y += par.descent();
1428         }
1429
1430         if (singlepar) {
1431                 // collect cursor paragraph iter bounds
1432                 pit1 = cursor_.bottom().pit();
1433                 pit2 = cursor_.bottom().pit();
1434         }
1435
1436         lyxerr[Debug::DEBUG]
1437                 << BOOST_CURRENT_FUNCTION
1438                 << " y1: " << y1
1439                 << " y2: " << y2
1440                 << " pit1: " << pit1
1441                 << " pit2: " << pit2
1442                 << " npit: " << npit
1443                 << " singlepar: " << singlepar
1444                 << "size: " << size
1445                 << endl;
1446
1447         metrics_info_ = ViewMetricsInfo(pit1, pit2, y1, y2, singlepar, size);
1448 }