]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.C
Split clipboard and X selection
[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 /// Return an inset of this class if it exists at the current cursor position
112 template <class T>
113 T * getInsetByCode(LCursor & cur, InsetBase::Code code)
114 {
115         T * inset = 0;
116         DocIterator it = cur;
117         if (it.nextInset() &&
118             it.nextInset()->lyxCode() == code) {
119                 inset = static_cast<T*>(it.nextInset());
120         }
121         return inset;
122 }
123
124 } // anon namespace
125
126
127 BufferView::Pimpl::Pimpl(BufferView & bv, LyXView * owner)
128         : bv_(&bv), owner_(owner), buffer_(0), wh_(0),
129           cursor_(bv),
130           multiparsel_cache_(false), anchor_ref_(0), offset_ref_(0), needs_redraw_(false)
131 {
132         xsel_cache_.set = false;
133
134         saved_positions.resize(saved_positions_num);
135         // load saved bookmarks
136         lyx::Session::BookmarkList & bmList = LyX::ref().session().loadBookmarks();
137         for (lyx::Session::BookmarkList::iterator bm = bmList.begin();
138                 bm != bmList.end(); ++bm)
139                 if (bm->get<0>() < saved_positions_num)
140                         saved_positions[bm->get<0>()] = Position( bm->get<1>(), bm->get<2>(), bm->get<3>() );
141         // and then clear them
142         bmList.clear();
143 }
144
145
146 void BufferView::Pimpl::addError(ErrorItem const & ei)
147 {
148         errorlist_.push_back(ei);
149 }
150
151
152 void BufferView::Pimpl::showReadonly(bool)
153 {
154         owner_->updateWindowTitle();
155         owner_->getDialogs().updateBufferDependent(false);
156 }
157
158
159 void BufferView::Pimpl::connectBuffer(Buffer & buf)
160 {
161         if (errorConnection_.connected())
162                 disconnectBuffer();
163
164         errorConnection_ =
165                 buf.error.connect(
166                         boost::bind(&BufferView::Pimpl::addError, this, _1));
167
168         messageConnection_ =
169                 buf.message.connect(
170                         boost::bind(&LyXView::message, owner_, _1));
171
172         busyConnection_ =
173                 buf.busy.connect(
174                         boost::bind(&LyXView::busy, owner_, _1));
175
176         titleConnection_ =
177                 buf.updateTitles.connect(
178                         boost::bind(&LyXView::updateWindowTitle, owner_));
179
180         timerConnection_ =
181                 buf.resetAutosaveTimers.connect(
182                         boost::bind(&LyXView::resetAutosaveTimer, owner_));
183
184         readonlyConnection_ =
185                 buf.readonly.connect(
186                         boost::bind(&BufferView::Pimpl::showReadonly, this, _1));
187
188         closingConnection_ =
189                 buf.closing.connect(
190                         boost::bind(&BufferView::Pimpl::setBuffer, this, (Buffer *)0));
191 }
192
193
194 void BufferView::Pimpl::disconnectBuffer()
195 {
196         errorConnection_.disconnect();
197         messageConnection_.disconnect();
198         busyConnection_.disconnect();
199         titleConnection_.disconnect();
200         timerConnection_.disconnect();
201         readonlyConnection_.disconnect();
202         closingConnection_.disconnect();
203 }
204
205
206 void BufferView::Pimpl::newFile(string const & filename, string const & tname,
207         bool isNamed)
208 {
209         setBuffer(::newFile(filename, tname, isNamed));
210 }
211
212
213 bool BufferView::Pimpl::loadLyXFile(string const & filename, bool tolastfiles)
214 {
215         // Get absolute path of file and add ".lyx"
216         // to the filename if necessary
217         string s = fileSearch(string(), filename, "lyx");
218
219         bool const found = !s.empty();
220
221         if (!found)
222                 s = filename;
223
224         // File already open?
225         if (bufferlist.exists(s)) {
226                 string const file = makeDisplayPath(s, 20);
227                 string text = bformat(_("The document %1$s is already "
228                                         "loaded.\n\nDo you want to revert "
229                                         "to the saved version?"), file);
230                 int const ret = Alert::prompt(_("Revert to saved document?"),
231                         text, 0, 1,  _("&Revert"), _("&Switch to document"));
232
233                 if (ret != 0) {
234                         setBuffer(bufferlist.getBuffer(s));
235                         return true;
236                 }
237                 // FIXME: should be LFUN_REVERT
238                 if (!bufferlist.close(bufferlist.getBuffer(s), false))
239                         return false;
240                 // Fall through to new load. (Asger)
241         }
242
243         Buffer * b = 0;
244
245         if (found) {
246                 b = bufferlist.newBuffer(s);
247                 connectBuffer(*b);
248                 if (!::loadLyXFile(b, s)) {
249                         bufferlist.release(b);
250                         return false;
251                 }
252         } else {
253                 string text = bformat(_("The document %1$s does not yet "
254                                         "exist.\n\nDo you want to create "
255                                         "a new document?"), s);
256                 int const ret = Alert::prompt(_("Create new document?"),
257                          text, 0, 1, _("&Create"), _("Cancel"));
258
259                 if (ret == 0)
260                         b = ::newFile(s, string(), true);
261                 else
262                         return false;
263         }
264
265         setBuffer(b);
266         bv_->showErrorList(_("Parse"));
267
268         // scroll to the position when the file was last closed
269         if (lyxrc.use_lastfilepos) {
270                 lyx::pit_type pit;
271                 lyx::pos_type pos;
272                 boost::tie(pit, pos) = LyX::ref().session().loadFilePosition(s);
273                 // I am not sure how to separate the following part to a function
274                 // so I will leave this to Lars.
275                 //
276                 // check pit since the document may be externally changed.
277                 if ( static_cast<size_t>(pit) < b->paragraphs().size() ) {
278                         ParIterator it = b->par_iterator_begin();
279                         ParIterator const end = b->par_iterator_end();
280                         for (; it != end; ++it)
281                                 if (it.pit() == pit) {
282                                         // restored pos may be bigger than it->size
283                                         bv_->setCursor(makeDocIterator(it, min(pos, it->size())));
284                                         bv_->update(Update::FitCursor);
285                                         break;
286                                 }
287                 }
288         }
289
290         if (tolastfiles)
291                 LyX::ref().session().addLastFile(b->fileName());
292
293         return true;
294 }
295
296
297 lyx::frontend::Gui & BufferView::Pimpl::gui() const
298 {
299         return owner_->gui();
300 }
301
302
303 int BufferView::Pimpl::width() const
304 {
305         return width_;
306 }
307
308
309 int BufferView::Pimpl::height() const
310 {
311         return height_;
312 }
313
314
315 void BufferView::Pimpl::setBuffer(Buffer * b)
316 {
317         lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
318                             << "[ b = " << b << "]" << endl;
319
320         if (buffer_) {
321                 disconnectBuffer();
322                 // Save the actual cursor position and anchor inside the
323                 // buffer so that it can be restored in case we rechange
324                 // to this buffer later on.
325                 buffer_->saveCursor(cursor_.selectionBegin(),
326                                     cursor_.selectionEnd());
327                 // current buffer is going to be switched-off, save cursor pos
328                 LyX::ref().session().saveFilePosition(buffer_->fileName(),
329                         boost::tie(cursor_.pit(), cursor_.pos()) );
330         }
331
332         // If we are closing current buffer, switch to the first in
333         // buffer list.
334         if (!b) {
335                 lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
336                                     << " No Buffer!" << endl;
337                 // We are closing the buffer, use the first buffer as current
338                 buffer_ = bufferlist.first();
339                 owner_->getDialogs().hideBufferDependent();
340         } else {
341                 // Set current buffer
342                 buffer_ = b;
343         }
344
345         // Reset old cursor
346         cursor_ = LCursor(*bv_);
347         anchor_ref_ = 0;
348         offset_ref_ = 0;
349
350
351         // If we're quitting lyx, don't bother updating stuff
352         if (quitting)
353                 return;
354
355         if (buffer_) {
356                 lyxerr[Debug::INFO] << BOOST_CURRENT_FUNCTION
357                                     << "Buffer addr: " << buffer_ << endl;
358                 connectBuffer(*buffer_);
359                 cursor_.push(buffer_->inset());
360                 cursor_.resetAnchor();
361                 buffer_->text().init(bv_);
362                 buffer_->text().setCurrentFont(cursor_);
363                 if (buffer_->getCursor().size() > 0 &&
364                     buffer_->getAnchor().size() > 0)
365                 {
366                         cursor_.setCursor(buffer_->getAnchor().asDocIterator(&(buffer_->inset())));
367                         cursor_.resetAnchor();
368                         cursor_.setCursor(buffer_->getCursor().asDocIterator(&(buffer_->inset())));
369                         cursor_.setSelection();
370                 }
371
372                 // Buffer-dependent dialogs should be updated or
373                 // hidden. This should go here because some dialogs (eg ToC)
374                 // require bv_->text.
375                 owner_->getDialogs().updateBufferDependent(true);
376         }
377
378         update();
379         owner_->updateMenubar();
380         owner_->updateToolbars();
381         owner_->updateLayoutChoice();
382         owner_->updateWindowTitle();
383
384         // This is done after the layout combox has been populated
385         if (buffer_) {
386                 size_t i = cursor_.depth() - 1;
387                 // we know we'll eventually find a paragraph
388                 while (true) {
389                         CursorSlice const & slice = cursor_[i];
390                         if (!slice.inset().inMathed()) {
391                                 LyXLayout_ptr const layout = slice.paragraph().layout();
392                                 owner_->setLayout(layout->name());
393                                 break;
394                         }
395                         BOOST_ASSERT(i>0);
396                         --i;
397                 }
398         }
399
400         if (buffer_ && lyx::graphics::Previews::status() != LyXRC::PREVIEW_OFF)
401                 lyx::graphics::Previews::get().generateBufferPreviews(*buffer_);
402 }
403
404
405 void BufferView::Pimpl::resizeCurrentBuffer()
406 {
407         lyxerr[Debug::DEBUG] << BOOST_CURRENT_FUNCTION << endl;
408         owner_->busy(true);
409         owner_->message(_("Formatting document..."));
410
411         LyXText * text = bv_->text();
412         if (!text)
413                 return;
414
415         text->init(bv_);
416         update();
417
418         switchKeyMap();
419         owner_->busy(false);
420
421         // Reset the "Formatting..." message
422         owner_->clearMessage();
423 }
424
425
426 void BufferView::Pimpl::updateScrollbar()
427 {
428         if (!bv_->text()) {
429                 lyxerr[Debug::DEBUG] << BOOST_CURRENT_FUNCTION
430                                      << " no text in updateScrollbar" << endl;
431                 scrollbarParameters_.reset();
432                 return;
433         }
434
435         LyXText & t = *bv_->text();
436         int const parsize = int(t.paragraphs().size() - 1);
437         if (anchor_ref_ >  parsize)  {
438                 anchor_ref_ = parsize;
439                 offset_ref_ = 0;
440         }
441
442         lyxerr[Debug::GUI]
443                 << BOOST_CURRENT_FUNCTION
444                 << " Updating scrollbar: height: " << t.paragraphs().size()
445                 << " curr par: " << cursor_.bottom().pit()
446                 << " default height " << defaultRowHeight() << endl;
447
448         // It would be better to fix the scrollbar to understand
449         // values in [0..1] and divide everything by wh
450
451         // estimated average paragraph height:
452         if (wh_ == 0)
453                 wh_ = height_ / 4;
454         int h = t.getPar(anchor_ref_).height();
455
456         // Normalize anchor/offset (MV):
457         while (offset_ref_ > h && anchor_ref_ < parsize) {
458                 anchor_ref_++;
459                 offset_ref_ -= h;
460                 h = t.getPar(anchor_ref_).height();
461         }
462         // Look at paragraph heights on-screen
463         int sumh = 0;
464         int nh = 0;
465         for (lyx::pit_type pit = anchor_ref_; pit <= parsize; ++pit) {
466                 if (sumh > height_)
467                         break;
468                 int const h2 = t.getPar(pit).height();
469                 sumh += h2;
470                 nh++;
471         }
472         int const hav = sumh / nh;
473         // More realistic average paragraph height
474         if (hav > wh_)
475                 wh_ = hav;
476
477         scrollbarParameters_.height = (parsize + 1) * wh_;
478         scrollbarParameters_.position = anchor_ref_ * wh_ + int(offset_ref_ * wh_ / float(h));
479         scrollbarParameters_.lineScrollHeight = int(wh_ * defaultRowHeight() / float(h));
480 }
481
482
483 ScrollbarParameters const & BufferView::Pimpl::scrollbarParameters() const
484 {
485         return scrollbarParameters_;
486 }
487
488
489 void BufferView::Pimpl::scrollDocView(int value)
490 {
491         lyxerr[Debug::GUI] << BOOST_CURRENT_FUNCTION
492                            << "[ value = " << value << "]" << endl;
493
494         if (!buffer_)
495                 return;
496
497         LyXText & t = *bv_->text();
498
499         float const bar = value / float(wh_ * t.paragraphs().size());
500
501         anchor_ref_ = int(bar * t.paragraphs().size());
502         if (anchor_ref_ >  int(t.paragraphs().size()) - 1)
503                 anchor_ref_ = int(t.paragraphs().size()) - 1;
504         t.redoParagraph(anchor_ref_);
505         int const h = t.getPar(anchor_ref_).height();
506         offset_ref_ = int((bar * t.paragraphs().size() - anchor_ref_) * h);
507         update();
508
509         if (!lyxrc.cursor_follows_scrollbar)
510                 return;
511
512         int const height = 2 * defaultRowHeight();
513         int const first = height;
514         int const last = height_ - height;
515         LCursor & cur = cursor_;
516
517         bv_funcs::CurStatus st = bv_funcs::status(bv_, cur);
518
519         switch (st) {
520         case bv_funcs::CUR_ABOVE:
521                 t.setCursorFromCoordinates(cur, 0, first);
522                 cur.clearSelection();
523                 break;
524         case bv_funcs::CUR_BELOW:
525                 t.setCursorFromCoordinates(cur, 0, last);
526                 cur.clearSelection();
527                 break;
528         case bv_funcs::CUR_INSIDE:
529                 int const y = bv_funcs::getPos(cur, cur.boundary()).y_;
530                 int const newy = min(last, max(y, first));
531                 if (y != newy) {
532                         cur.reset(buffer_->inset());
533                         t.setCursorFromCoordinates(cur, 0, newy);
534                 }
535         }
536         owner_->updateLayoutChoice();
537 }
538
539
540 void BufferView::Pimpl::scroll(int /*lines*/)
541 {
542 //      if (!buffer_)
543 //              return;
544 //
545 //      LyXText const * t = bv_->text();
546 //      int const line_height = defaultRowHeight();
547 //
548 //      // The new absolute coordinate
549 //      int new_top_y = top_y() + lines * line_height;
550 //
551 //      // Restrict to a valid value
552 //      new_top_y = std::min(t->height() - 4 * line_height, new_top_y);
553 //      new_top_y = std::max(0, new_top_y);
554 //
555 //      scrollDocView(new_top_y);
556 //
557 //      // Update the scrollbar.
558 //      workArea_->setScrollbarParams(t->height(), top_y(), defaultRowHeight());
559 }
560
561
562 void BufferView::Pimpl::workAreaKeyPress(LyXKeySymPtr key,
563                                          key_modifier::state state)
564 {
565         owner_->getLyXFunc().processKeySym(key, state);
566 }
567
568
569 void BufferView::Pimpl::selectionRequested()
570 {
571         static string sel;
572
573         if (!available())
574                 return;
575
576         LCursor & cur = cursor_;
577
578         if (!cur.selection()) {
579                 xsel_cache_.set = false;
580                 return;
581         }
582
583         if (!xsel_cache_.set ||
584             cur.top() != xsel_cache_.cursor ||
585             cur.anchor_.top() != xsel_cache_.anchor)
586         {
587                 xsel_cache_.cursor = cur.top();
588                 xsel_cache_.anchor = cur.anchor_.top();
589                 xsel_cache_.set = cur.selection();
590                 sel = cur.selectionAsString(false);
591                 if (!sel.empty())
592                         owner_->gui().selection().put(sel);
593         }
594 }
595
596
597 void BufferView::Pimpl::selectionLost()
598 {
599         if (available()) {
600                 cursor_.clearSelection();
601                 xsel_cache_.set = false;
602         }
603 }
604
605
606 void BufferView::Pimpl::workAreaResize(int width, int height)
607 {
608         bool const widthChange = width != width_;
609         bool const heightChange = height != height_;
610
611         // Update from work area
612         width_ = width;
613         height_ = height;
614
615         if (buffer_ && widthChange) {
616                 // The visible LyXView need a resize
617                 resizeCurrentBuffer();
618         }
619
620         if (widthChange || heightChange)
621                 update();
622
623         owner_->updateLayoutChoice();
624 }
625
626
627 bool BufferView::Pimpl::fitCursor()
628 {
629         if (bv_funcs::status(bv_, cursor_) == bv_funcs::CUR_INSIDE) {
630                 LyXFont const font = cursor_.getFont();
631                 int const asc = font_metrics::maxAscent(font);
632                 int const des = font_metrics::maxDescent(font);
633                 Point const p = bv_funcs::getPos(cursor_, cursor_.boundary());
634                 if (p.y_ - asc >= 0 && p.y_ + des < height_)
635                         return false;
636         }
637         center();
638         return true;
639 }
640
641
642 bool BufferView::Pimpl::multiParSel()
643 {
644         if (!cursor_.selection())
645                 return false;
646         bool ret = multiparsel_cache_;
647         multiparsel_cache_ = cursor_.selBegin().pit() != cursor_.selEnd().pit();
648         // Either this, or previous selection spans paragraphs
649         return ret || multiparsel_cache_;
650 }
651
652
653 ViewMetricsInfo const & BufferView::Pimpl::viewMetricsInfo()
654 {
655         return metrics_info_;
656 }
657
658
659 void BufferView::Pimpl::update(Update::flags flags)
660 {
661         // This is close to a hot-path.
662         if (lyxerr.debugging(Debug::DEBUG)) {
663                 lyxerr[Debug::DEBUG]
664                         << BOOST_CURRENT_FUNCTION
665                         << "[fitcursor = " << (flags & Update::FitCursor)
666                         << ", forceupdate = " << (flags & Update::Force)
667                         << ", singlepar = " << (flags & Update::SinglePar)
668                         << "]  buffer: " << buffer_ << endl;
669         }
670
671         // Check needed to survive LyX startup
672         if (buffer_) {
673                 // Update macro store
674                 buffer_->buildMacros();
675
676                 // First drawing step
677                 bool singlePar = flags & Update::SinglePar;
678                 needs_redraw_ = flags & (Update::Force | Update::SinglePar);
679
680                 if ((flags & (Update::FitCursor | Update::MultiParSel))
681                     && (fitCursor() || multiParSel())) {
682                         needs_redraw_ = true;
683                         singlePar = false;
684                 }
685
686                 if (needs_redraw_) {
687                         // Second drawing step
688                         updateMetrics(singlePar);
689                 }
690         }
691
692         owner_->redrawWorkArea();
693         owner_->view_state_changed();
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 = owner_->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         for (lyx::pit_type pit = pit1; pit <= pit2; ++pit) {
1417                 y += text->getPar(pit).ascent();
1418                 theCoords.parPos()[text][pit] = Point(0, y);
1419                 if (singlepar && pit == cursor_.bottom().pit()) {
1420                         // In Single Paragraph mode, collect here the
1421                         // y1 and y2 of the (one) paragraph the cursor is in
1422                         y1 = y - text->getPar(pit).ascent();
1423                         y2 = y + text->getPar(pit).descent();
1424                 }
1425                 y += text->getPar(pit).descent();
1426         }
1427
1428         if (singlepar) {
1429                 // collect cursor paragraph iter bounds
1430                 pit1 = cursor_.bottom().pit();
1431                 pit2 = cursor_.bottom().pit();
1432         }
1433
1434         lyxerr[Debug::DEBUG]
1435                 << BOOST_CURRENT_FUNCTION
1436                 << " y1: " << y1
1437                 << " y2: " << y2
1438                 << " pit1: " << pit1
1439                 << " pit2: " << pit2
1440                 << " npit: " << npit
1441                 << " singlepar: " << singlepar
1442                 << "size: " << size
1443                 << endl;
1444
1445         metrics_info_ = ViewMetricsInfo(pit1, pit2, y1, y2, singlepar, size);
1446 }