]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.C
Fix to Bug 1287 and Bug 1297
[lyx.git] / src / BufferView_pimpl.C
1 /**
2  * \file BufferView_pimpl.C
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Lars Gullik Bjønnes
7  * \author various
8  */
9
10 #include <config.h>
11
12 #include "BufferView_pimpl.h"
13 #include "bufferlist.h"
14 #include "buffer.h"
15 #include "buffer_funcs.h"
16 #include "bufferview_funcs.h"
17 #include "lfuns.h"
18 #include "debug.h"
19 #include "factory.h"
20 #include "FloatList.h"
21 #include "funcrequest.h"
22 #include "gettext.h"
23 #include "intl.h"
24 #include "iterators.h"
25 #include "Lsstream.h"
26 #include "lyx_cb.h" // added for Dispatch functions
27 #include "lyx_main.h"
28 #include "lyxfind.h"
29 #include "lyxfunc.h"
30 #include "lyxtext.h"
31 #include "lyxrc.h"
32 #include "lyxrow.h"
33 #include "lastfiles.h"
34 #include "paragraph.h"
35 #include "ParagraphParameters.h"
36 #include "TextCache.h"
37 #include "undo_funcs.h"
38
39 #include "insets/insetfloatlist.h"
40 #include "insets/insetgraphics.h"
41 #include "insets/insetinclude.h"
42 #include "insets/insetref.h"
43 #include "insets/insettext.h"
44
45 #include "frontends/Alert.h"
46 #include "frontends/Dialogs.h"
47 #include "frontends/FileDialog.h"
48 #include "frontends/LyXView.h"
49 #include "frontends/LyXScreenFactory.h"
50 #include "frontends/mouse_state.h"
51 #include "frontends/screen.h"
52 #include "frontends/WorkArea.h"
53 #include "frontends/WorkAreaFactory.h"
54
55 #include "mathed/formulabase.h"
56
57 #include "graphics/Previews.h"
58
59 #include "support/LAssert.h"
60 #include "support/tostr.h"
61 #include "support/filetools.h"
62 #include "support/path_defines.h"
63
64 #include <boost/bind.hpp>
65 #include <boost/signals/connection.hpp>
66
67 #include <unistd.h>
68 #include <sys/wait.h>
69
70
71 using std::vector;
72 using std::find_if;
73 using std::find;
74 using std::pair;
75 using std::endl;
76 using std::make_pair;
77 using std::min;
78
79 using lyx::pos_type;
80 using namespace lyx::support;
81 using namespace bv_funcs;
82
83 extern BufferList bufferlist;
84
85
86 namespace {
87
88 unsigned int const saved_positions_num = 20;
89
90 // All the below connection objects are needed because of a bug in some
91 // versions of GCC (<=2.96 are on the suspects list.) By having and assigning
92 // to these connections we avoid a segfault upon startup, and also at exit.
93 // (Lgb)
94
95 boost::signals::connection dispatchcon;
96 boost::signals::connection timecon;
97 boost::signals::connection doccon;
98 boost::signals::connection resizecon;
99 boost::signals::connection kpresscon;
100 boost::signals::connection selectioncon;
101 boost::signals::connection lostcon;
102
103
104 } // anon namespace
105
106
107 BufferView::Pimpl::Pimpl(BufferView * bv, LyXView * owner,
108              int xpos, int ypos, int width, int height)
109         : bv_(bv), owner_(owner), buffer_(0), cursor_timeout(400),
110           using_xterm_cursor(false)
111 {
112         workarea_.reset(WorkAreaFactory::create(xpos, ypos, width, height));
113         screen_.reset(LyXScreenFactory::create(workarea()));
114
115         // Setup the signals
116         doccon = workarea().scrollDocView
117                 .connect(boost::bind(&BufferView::Pimpl::scrollDocView, this, _1));
118         resizecon = workarea().workAreaResize
119                 .connect(boost::bind(&BufferView::Pimpl::workAreaResize, this));
120         dispatchcon = workarea().dispatch
121                 .connect(boost::bind(&BufferView::Pimpl::workAreaDispatch, this, _1));
122         kpresscon = workarea().workAreaKeyPress
123                 .connect(boost::bind(&BufferView::Pimpl::workAreaKeyPress, this, _1, _2));
124         selectioncon = workarea().selectionRequested
125                 .connect(boost::bind(&BufferView::Pimpl::selectionRequested, this));
126         lostcon = workarea().selectionLost
127                 .connect(boost::bind(&BufferView::Pimpl::selectionLost, this));
128
129         timecon = cursor_timeout.timeout
130                 .connect(boost::bind(&BufferView::Pimpl::cursorToggle, this));
131         cursor_timeout.start();
132         saved_positions.resize(saved_positions_num);
133 }
134
135
136 void BufferView::Pimpl::addError(ErrorItem const & ei)
137 {
138         errorlist_.push_back(ei);
139 }
140
141
142 void BufferView::Pimpl::showReadonly(bool)
143 {
144         owner_->updateWindowTitle();
145         owner_->getDialogs().updateBufferDependent(false);
146 }
147
148
149 void BufferView::Pimpl::connectBuffer(Buffer & buf)
150 {
151         if (errorConnection_.connected())
152                 disconnectBuffer();
153
154         errorConnection_ = buf.error.connect(boost::bind(&BufferView::Pimpl::addError, this, _1));
155         messageConnection_ = buf.message.connect(boost::bind(&LyXView::message, owner_, _1));
156         busyConnection_ = buf.busy.connect(boost::bind(&LyXView::busy, owner_, _1));
157         titleConnection_ = buf.updateTitles.connect(boost::bind(&LyXView::updateWindowTitle, owner_));
158         timerConnection_ = buf.resetAutosaveTimers.connect(boost::bind(&LyXView::resetAutosaveTimer, owner_));
159         readonlyConnection_ = buf.readonly.connect(boost::bind(&BufferView::Pimpl::showReadonly, this, _1));
160         closingConnection_ = buf.closing.connect(boost::bind(&BufferView::Pimpl::buffer, this, (Buffer *)0));
161 }
162
163
164 void BufferView::Pimpl::disconnectBuffer()
165 {
166         errorConnection_.disconnect();
167         messageConnection_.disconnect();
168         busyConnection_.disconnect();
169         titleConnection_.disconnect();
170         timerConnection_.disconnect();
171         readonlyConnection_.disconnect();
172         closingConnection_.disconnect();
173 }
174
175
176 bool BufferView::Pimpl::newFile(string const & filename,
177                                 string const & tname,
178                                 bool isNamed)
179 {
180         Buffer * b = ::newFile(filename, tname, isNamed);
181         buffer(b);
182         return true;
183 }
184
185
186 bool BufferView::Pimpl::loadLyXFile(string const & filename, bool tolastfiles)
187 {
188         // get absolute path of file and add ".lyx" to the filename if
189         // necessary
190         string s = FileSearch(string(), filename, "lyx");
191         
192         bool const found = !s.empty();
193
194         if (!found) 
195                 s = filename;
196
197         // file already open?
198         if (bufferlist.exists(s)) {
199                 string const file = MakeDisplayPath(s, 20);
200                 string text = bformat(_("The document %1$s is already "
201                                         "loaded.\n\nDo you want to revert "
202                                         "to the saved version?"), file);
203                 int const ret = Alert::prompt(_("Revert to saved document?"),
204                         text, 0, 1,  _("&Revert"), _("&Switch to document"));
205
206                 if (ret != 0) {
207                         buffer(bufferlist.getBuffer(s));
208                         return true;
209                 } else {
210                         // FIXME: should be LFUN_REVERT
211                         if (!bufferlist.close(bufferlist.getBuffer(s), false))
212                                 return false;
213                         // Fall through to new load. (Asger)
214                 }
215         }
216
217         Buffer * b;
218
219         if (found) {
220                 b = bufferlist.newBuffer(s);
221                 connectBuffer(*b);
222                 if (!::loadLyXFile(b, s)) {
223                         bufferlist.release(b);
224                         return false;
225                 }
226         } else {
227                 string text = bformat(_("The document %1$s does not yet "
228                                         "exist.\n\nDo you want to create "
229                                         "a new document?"), s);
230                 int const ret = Alert::prompt(_("Create new document?"),
231                          text, 0, 1, _("&Create"), _("Cancel"));
232
233                 if (ret == 0)
234                         b = ::newFile(s, string(), true);
235                 else
236                         return false;
237         }
238
239         buffer(b);
240         bv_->showErrorList(_("Parse"));
241
242         if (tolastfiles)
243                 lastfiles->newFile(b->fileName());
244
245         return true;
246 }
247
248
249 WorkArea & BufferView::Pimpl::workarea() const
250 {
251         return *workarea_.get();
252 }
253
254
255 LyXScreen & BufferView::Pimpl::screen() const
256 {
257         return *screen_.get();
258 }
259
260
261 Painter & BufferView::Pimpl::painter() const
262 {
263         return workarea().getPainter();
264 }
265
266
267 void BufferView::Pimpl::buffer(Buffer * b)
268 {
269         lyxerr[Debug::INFO] << "Setting buffer in BufferView ("
270                             << b << ')' << endl;
271         if (buffer_) {
272                 disconnectBuffer();
273                 // Put the old text into the TextCache, but
274                 // only if the buffer is still loaded.
275                 // Also set the owner of the test to 0
276                 //              bv_->text->owner(0);
277                 textcache.add(buffer_, workarea().workWidth(), bv_->text);
278                 if (lyxerr.debugging())
279                         textcache.show(lyxerr, "BufferView::buffer");
280
281                 bv_->text = 0;
282         }
283
284         // set current buffer
285         buffer_ = b;
286
287         // if we're quitting lyx, don't bother updating stuff
288         if (quitting)
289                 return;
290
291         // if we are closing the buffer, use the first buffer as current
292         if (!buffer_)
293                 buffer_ = bufferlist.first();
294
295         if (buffer_) {
296                 lyxerr[Debug::INFO] << "Buffer addr: " << buffer_ << endl;
297                 connectBuffer(*buffer_);
298
299                 // If we don't have a text object for this, we make one
300                 if (bv_->text == 0)
301                         resizeCurrentBuffer();
302
303                 // FIXME: needed when ?
304                 bv_->text->top_y(screen().topCursorVisible(bv_->text));
305
306                 // Buffer-dependent dialogs should be updated or
307                 // hidden. This should go here because some dialogs (eg ToC)
308                 // require bv_->text.
309                 owner_->getDialogs().updateBufferDependent(true);
310         } else {
311                 lyxerr[Debug::INFO] << "  No Buffer!" << endl;
312                 owner_->getDialogs().hideBufferDependent();
313
314                 // Also remove all remaining text's from the testcache.
315                 // (there should not be any!) (if there is any it is a
316                 // bug!)
317                 if (lyxerr.debugging())
318                         textcache.show(lyxerr, "buffer delete all");
319                 textcache.clear();
320         }
321
322         repaint();
323         updateScrollbar();
324         owner_->updateMenubar();
325         owner_->updateToolbar();
326         owner_->updateLayoutChoice();
327         owner_->updateWindowTitle();
328
329         if (buffer_) {
330                 // Don't forget to update the Layout
331                 string const layoutname =
332                         bv_->text->cursor.par()->layout()->name();
333                 owner_->setLayout(layoutname);
334         }
335
336         if (lyx::graphics::Previews::activated() && buffer_)
337                 lyx::graphics::Previews::get().generateBufferPreviews(*buffer_);
338 }
339
340
341 bool BufferView::Pimpl::fitCursor()
342 {
343         bool ret;
344
345         if (bv_->theLockingInset()) {
346                 bv_->theLockingInset()->fitInsetCursor(bv_);
347                 ret = true;
348         } else {
349                 ret = screen().fitCursor(bv_->text, bv_);
350         }
351
352         dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
353
354         // We need to always update, in case we did a
355         // paste and we stayed anchored to a row, but
356         // the actual height of the doc changed ...
357         updateScrollbar();
358         return ret;
359 }
360
361
362 void BufferView::Pimpl::redoCurrentBuffer()
363 {
364         lyxerr[Debug::INFO] << "BufferView::redoCurrentBuffer" << endl;
365         if (buffer_ && bv_->text) {
366                 resizeCurrentBuffer();
367                 updateScrollbar();
368                 owner_->updateLayoutChoice();
369                 repaint();
370         }
371 }
372
373
374 int BufferView::Pimpl::resizeCurrentBuffer()
375 {
376         lyxerr[Debug::INFO] << "resizeCurrentBuffer" << endl;
377
378         ParagraphList::iterator par;
379         ParagraphList::iterator selstartpar;
380         ParagraphList::iterator selendpar;
381         UpdatableInset * the_locking_inset = 0;
382
383         pos_type pos = 0;
384         pos_type selstartpos = 0;
385         pos_type selendpos = 0;
386         bool selection = false;
387         bool mark_set  = false;
388
389         owner_->busy(true);
390
391         owner_->message(_("Formatting document..."));
392
393         if (bv_->text) {
394                 par = bv_->text->cursor.par();
395                 pos = bv_->text->cursor.pos();
396                 selstartpar = bv_->text->selection.start.par();
397                 selstartpos = bv_->text->selection.start.pos();
398                 selendpar = bv_->text->selection.end.par();
399                 selendpos = bv_->text->selection.end.pos();
400                 selection = bv_->text->selection.set();
401                 mark_set = bv_->text->selection.mark();
402                 the_locking_inset = bv_->theLockingInset();
403                 resizeInsets(bv_);
404                 bv_->text->fullRebreak();
405                 update();
406         } else {
407                 lyxerr << "text not available!\n";
408                 // See if we have a text in TextCache that fits
409                 // the new buffer_ with the correct width.
410                 bv_->text = textcache.findFit(buffer_, workarea().workWidth());
411                 if (bv_->text) {
412                         lyxerr << "text in cache!\n";
413                         if (lyxerr.debugging()) {
414                                 lyxerr << "Found a LyXText that fits:\n";
415                                 textcache.show(lyxerr, make_pair(buffer_, make_pair(workarea().workWidth(), bv_->text)));
416                         }
417                         // Set the owner of the newly found text
418                         //      bv_->text->owner(bv_);
419                         if (lyxerr.debugging())
420                                 textcache.show(lyxerr, "resizeCurrentBuffer");
421
422                         resizeInsets(bv_);
423                 } else {
424                         lyxerr << "no text in cache!\n";
425                         bv_->text = new LyXText(bv_);
426                         resizeInsets(bv_);
427                         bv_->text->init(bv_);
428                 }
429
430                 par = bv_->text->ownerParagraphs().end();
431                 selstartpar = bv_->text->ownerParagraphs().end();
432                 selendpar = bv_->text->ownerParagraphs().end();
433         }
434
435         if (par != bv_->text->ownerParagraphs().end()) {
436                 bv_->text->selection.set(true);
437                 // At this point just to avoid the Delete-Empty-Paragraph-
438                 // Mechanism when setting the cursor.
439                 bv_->text->selection.mark(mark_set);
440                 if (selection) {
441                         bv_->text->setCursor(selstartpar, selstartpos);
442                         bv_->text->selection.cursor = bv_->text->cursor;
443                         bv_->text->setCursor(selendpar, selendpos);
444                         bv_->text->setSelection();
445                         bv_->text->setCursor(par, pos);
446                 } else {
447                         bv_->text->setCursor(par, pos);
448                         bv_->text->selection.cursor = bv_->text->cursor;
449                         bv_->text->selection.set(false);
450                 }
451                 // remake the inset locking
452                 bv_->theLockingInset(the_locking_inset);
453         }
454
455         bv_->text->top_y(screen().topCursorVisible(bv_->text));
456
457         switchKeyMap();
458         owner_->busy(false);
459
460         // reset the "Formatting..." message
461         owner_->clearMessage();
462
463         updateScrollbar();
464
465         return 0;
466 }
467
468
469 void BufferView::Pimpl::repaint()
470 {
471         // Regenerate the screen.
472         screen().redraw(bv_, bv_->text);
473 }
474
475
476 void BufferView::Pimpl::updateScrollbar()
477 {
478         if (!bv_->text) {
479                 lyxerr[Debug::GUI] << "no text in updateScrollbar" << endl;
480                 workarea().setScrollbarParams(0, 0, 0);
481                 return;
482         }
483
484         LyXText const & t = *bv_->text;
485
486         lyxerr[Debug::GUI] << "Updating scrollbar: h " << t.height << ", top_y() "
487                 << t.top_y() << ", default height " << defaultRowHeight() << endl;
488
489         workarea().setScrollbarParams(t.height, t.top_y(), defaultRowHeight());
490 }
491
492
493 void BufferView::Pimpl::scrollDocView(int value)
494 {
495         lyxerr[Debug::GUI] << "scrollDocView of " << value << endl;
496
497         if (!buffer_)
498                 return;
499
500         screen().hideCursor();
501
502         screen().draw(bv_->text, bv_, value);
503
504         if (!lyxrc.cursor_follows_scrollbar)
505                 return;
506
507         LyXText * vbt = bv_->text;
508
509         int const height = defaultRowHeight();
510         int const first = static_cast<int>((bv_->text->top_y() + height));
511         int const last = static_cast<int>((bv_->text->top_y() + workarea().workHeight() - height));
512
513         if (vbt->cursor.y() < first)
514                 vbt->setCursorFromCoordinates(0, first);
515         else if (vbt->cursor.y() > last)
516                 vbt->setCursorFromCoordinates(0, last);
517
518         owner_->updateLayoutChoice();
519 }
520
521
522 void BufferView::Pimpl::scroll(int lines)
523 {
524         if (!buffer_) {
525                 return;
526         }
527
528         LyXText const * t = bv_->text;
529         int const line_height = defaultRowHeight();
530
531         // The new absolute coordinate
532         int new_top_y = t->top_y() + lines * line_height;
533
534         // Restrict to a valid value
535         new_top_y = std::min(t->height - 4 * line_height, new_top_y);
536         new_top_y = std::max(0, new_top_y);
537
538         scrollDocView(new_top_y);
539
540         // Update the scrollbar.
541         workarea().setScrollbarParams(t->height, t->top_y(), defaultRowHeight());
542 }
543
544
545 void BufferView::Pimpl::workAreaKeyPress(LyXKeySymPtr key,
546                                          key_modifier::state state)
547 {
548         bv_->owner()->getLyXFunc().processKeySym(key, state);
549
550         /* This is perhaps a bit of a hack. When we move
551          * around, or type, it's nice to be able to see
552          * the cursor immediately after the keypress. So
553          * we reset the toggle timeout and force the visibility
554          * of the cursor. Note we cannot do this inside
555          * dispatch() itself, because that's called recursively.
556          */
557         if (available()) {
558                 cursor_timeout.restart();
559                 screen().showCursor(*bv_);
560         }
561 }
562
563
564 void BufferView::Pimpl::selectionRequested()
565 {
566         static string sel;
567
568         if (!available())
569                 return;
570
571         LyXText * text = bv_->getLyXText();
572
573         if (text->selection.set() &&
574                 (!bv_->text->xsel_cache.set() ||
575                  text->selection.start != bv_->text->xsel_cache.start ||
576                  text->selection.end != bv_->text->xsel_cache.end))
577         {
578                 bv_->text->xsel_cache = text->selection;
579                 sel = text->selectionAsString(bv_->buffer(), false);
580         } else if (!text->selection.set()) {
581                 sel = string();
582                 bv_->text->xsel_cache.set(false);
583         }
584         if (!sel.empty()) {
585                 workarea().putClipboard(sel);
586         }
587 }
588
589
590 void BufferView::Pimpl::selectionLost()
591 {
592         if (available()) {
593                 screen().hideCursor();
594                 toggleSelection();
595                 bv_->getLyXText()->clearSelection();
596                 bv_->text->xsel_cache.set(false);
597         }
598 }
599
600
601 void BufferView::Pimpl::workAreaResize()
602 {
603         static int work_area_width;
604         static int work_area_height;
605
606         bool const widthChange = workarea().workWidth() != work_area_width;
607         bool const heightChange = workarea().workHeight() != work_area_height;
608
609         // update from work area
610         work_area_width = workarea().workWidth();
611         work_area_height = workarea().workHeight();
612
613         if (buffer_ != 0) {
614                 if (widthChange) {
615                         // The visible LyXView need a resize
616                         resizeCurrentBuffer();
617
618                         // Remove all texts from the textcache
619                         // This is not _really_ what we want to do. What
620                         // we really want to do is to delete in textcache
621                         // that does not have a BufferView with matching
622                         // width, but as long as we have only one BufferView
623                         // deleting all gives the same result.
624                         if (lyxerr.debugging())
625                                 textcache.show(lyxerr, "Expose delete all");
626                         textcache.clear();
627                         // FIXME: this is already done in resizeCurrentBuffer() ??
628                         resizeInsets(bv_);
629                 } else if (heightChange) {
630                         // fitCursor() ensures we don't jump back
631                         // to the start of the document on vertical
632                         // resize
633                         fitCursor();
634                 }
635         }
636
637         if (widthChange || heightChange) {
638                 repaint();
639         }
640
641         // always make sure that the scrollbar is sane.
642         updateScrollbar();
643         owner_->updateLayoutChoice();
644         return;
645 }
646
647
648 void BufferView::Pimpl::update()
649 {
650         if (!bv_->theLockingInset() || !bv_->theLockingInset()->nodraw()) {
651                 screen().update(*bv_);
652                 bv_->text->clearPaint();
653         }
654 }
655
656
657 void BufferView::Pimpl::update(LyXText * text, BufferView::UpdateCodes f)
658 {
659         if (!text->selection.set() && (f & SELECT)) {
660                 text->selection.cursor = text->cursor;
661         }
662
663         text->partialRebreak();
664
665         if (text->inset_owner) {
666                 text->inset_owner->setUpdateStatus(InsetText::NONE);
667                 updateInset(text->inset_owner);
668         } else {
669                 update();
670         }
671 }
672
673
674 void BufferView::Pimpl::update(BufferView::UpdateCodes f)
675 {
676         LyXText * text = bv_->text;
677
678         if (!text->selection.set() && (f & SELECT)) {
679                 text->selection.cursor = text->cursor;
680         }
681
682         text->partialRebreak();
683
684         if (text->inset_owner) {
685                 text->inset_owner->setUpdateStatus(InsetText::NONE);
686                 updateInset(text->inset_owner);
687         } else {
688                 update();
689         }
690 }
691
692
693 // Callback for cursor timer
694 void BufferView::Pimpl::cursorToggle()
695 {
696         if (!buffer_) {
697                 cursor_timeout.restart();
698                 return;
699         }
700
701         screen().toggleCursor(*bv_);
702
703         cursor_timeout.restart();
704 }
705
706
707 bool BufferView::Pimpl::available() const
708 {
709         if (buffer_ && bv_->text)
710                 return true;
711         return false;
712 }
713
714
715 Change const BufferView::Pimpl::getCurrentChange()
716 {
717         if (!bv_->buffer()->params.tracking_changes)
718                 return Change(Change::UNCHANGED);
719
720         LyXText * t(bv_->getLyXText());
721
722         if (!t->selection.set())
723                 return Change(Change::UNCHANGED);
724
725         LyXCursor const & cur(t->selection.start);
726         return cur.par()->lookupChangeFull(cur.pos());
727 }
728
729
730 void BufferView::Pimpl::beforeChange(LyXText * text)
731 {
732         toggleSelection();
733         text->clearSelection();
734 }
735
736
737 void BufferView::Pimpl::savePosition(unsigned int i)
738 {
739         if (i >= saved_positions_num)
740                 return;
741         saved_positions[i] = Position(buffer_->fileName(),
742                                       bv_->text->cursor.par()->id(),
743                                       bv_->text->cursor.pos());
744         if (i > 0)
745                 owner_->message(bformat(_("Saved bookmark %1$s"), tostr(i)));
746 }
747
748
749 void BufferView::Pimpl::restorePosition(unsigned int i)
750 {
751         if (i >= saved_positions_num)
752                 return;
753
754         string const fname = saved_positions[i].filename;
755
756         beforeChange(bv_->text);
757
758         if (fname != buffer_->fileName()) {
759                 Buffer * b;
760                 if (bufferlist.exists(fname))
761                         b = bufferlist.getBuffer(fname);
762                 else {
763                         b = bufferlist.newBuffer(fname);
764                         ::loadLyXFile(b, fname); // don't ask, just load it
765                 }
766                 if (b != 0)
767                         buffer(b);
768         }
769
770         ParIterator par = buffer_->getParFromID(saved_positions[i].par_id);
771         if (par == buffer_->par_iterator_end())
772                 return;
773
774         bv_->text->setCursor(par.pit(),
775                              min(par->size(), saved_positions[i].par_pos));
776
777         update(BufferView::SELECT);
778         if (i > 0)
779                 owner_->message(bformat(_("Moved to bookmark %1$s"), tostr(i)));
780 }
781
782
783 bool BufferView::Pimpl::isSavedPosition(unsigned int i)
784 {
785         if (i >= saved_positions_num)
786                 return false;
787
788         return !saved_positions[i].filename.empty();
789 }
790
791
792 void BufferView::Pimpl::switchKeyMap()
793 {
794         if (!lyxrc.rtl_support)
795                 return;
796
797         LyXText * text = bv_->getLyXText();
798         if (text->real_current_font.isRightToLeft()
799             && !(bv_->theLockingInset()
800                  && bv_->theLockingInset()->lyxCode() == InsetOld::ERT_CODE))
801         {
802                 if (owner_->getIntl().keymap == Intl::PRIMARY)
803                         owner_->getIntl().KeyMapSec();
804         } else {
805                 if (owner_->getIntl().keymap == Intl::SECONDARY)
806                         owner_->getIntl().KeyMapPrim();
807         }
808 }
809
810
811 void BufferView::Pimpl::insetUnlock()
812 {
813         if (bv_->theLockingInset()) {
814                 bv_->theLockingInset()->insetUnlock(bv_);
815                 bv_->theLockingInset(0);
816                 finishUndo();
817         }
818 }
819
820
821 void BufferView::Pimpl::toggleSelection(bool b)
822 {
823         if (bv_->theLockingInset())
824                 bv_->theLockingInset()->toggleSelection(bv_, b);
825         screen().toggleSelection(bv_->text, bv_, b);
826 }
827
828
829 void BufferView::Pimpl::center()
830 {
831         LyXText * t = bv_->text;
832
833         beforeChange(t);
834         int const half_height = workarea().workHeight() / 2;
835         int new_y = 0;
836
837         if (t->cursor.y() > half_height) {
838                 new_y = t->cursor.y() - half_height;
839         }
840
841         // FIXME: look at this comment again ...
842
843         // FIXME: can we do this w/o calling screen directly ?
844         // This updates top_y() but means the fitCursor() call
845         // from the update(FITCUR) doesn't realise that we might
846         // have moved (e.g. from GOTOPARAGRAPH), so doesn't cause
847         // the scrollbar to be updated as it should, so we have
848         // to do it manually. Any operation that does a center()
849         // and also might have moved top_y() must make sure to call
850         // updateScrollbar() currently. Never mind that this is a
851         // pretty obfuscated way of updating t->top_y()
852         screen().draw(t, bv_, new_y);
853
854         update(BufferView::SELECT);
855 }
856
857
858 void BufferView::Pimpl::stuffClipboard(string const & stuff) const
859 {
860         workarea().putClipboard(stuff);
861 }
862
863
864 /*
865  * Dispatch functions for actions which can be valid for BufferView->text
866  * and/or InsetText->text!!!
867  */
868
869
870 InsetOld * BufferView::Pimpl::getInsetByCode(InsetOld::Code code)
871 {
872 #if 0
873         LyXCursor cursor = bv_->getLyXText()->cursor;
874         Buffer::inset_iterator it =
875                 find_if(Buffer::inset_iterator(
876                         cursor.par(), cursor.pos()),
877                         buffer_->inset_iterator_end(),
878                         lyx::compare_memfun(&Inset::lyxCode, code));
879         return it != buffer_->inset_iterator_end() ? (*it) : 0;
880 #else
881         // Ok, this is a little bit too brute force but it
882         // should work for now. Better infrastructure is comming. (Lgb)
883
884         Buffer * b = bv_->buffer();
885         LyXCursor cursor = bv_->getLyXText()->cursor;
886
887         Buffer::inset_iterator beg = b->inset_iterator_begin();
888         Buffer::inset_iterator end = b->inset_iterator_end();
889
890         bool cursor_par_seen = false;
891
892         for (; beg != end; ++beg) {
893                 if (beg.getPar() == cursor.par()) {
894                         cursor_par_seen = true;
895                 }
896                 if (cursor_par_seen) {
897                         if (beg.getPar() == cursor.par()
898                             && beg.getPos() >= cursor.pos()) {
899                                 break;
900                         } else if (beg.getPar() != cursor.par()) {
901                                 break;
902                         }
903                 }
904
905         }
906         if (beg != end) {
907                 // Now find the first inset that matches code.
908                 for (; beg != end; ++beg) {
909                         if (beg->lyxCode() == code) {
910                                 return &(*beg);
911                         }
912                 }
913         }
914         return 0;
915 #endif
916 }
917
918
919 void BufferView::Pimpl::MenuInsertLyXFile(string const & filen)
920 {
921         string filename = filen;
922
923         if (filename.empty()) {
924                 // Launch a file browser
925                 string initpath = lyxrc.document_path;
926
927                 if (available()) {
928                         string const trypath = owner_->buffer()->filePath();
929                         // If directory is writeable, use this as default.
930                         if (IsDirWriteable(trypath))
931                                 initpath = trypath;
932                 }
933
934                 FileDialog fileDlg(_("Select LyX document to insert"),
935                         LFUN_FILE_INSERT,
936                         make_pair(string(_("Documents|#o#O")),
937                                   string(lyxrc.document_path)),
938                         make_pair(string(_("Examples|#E#e")),
939                                   string(AddPath(system_lyxdir(), "examples"))));
940
941                 FileDialog::Result result =
942                         fileDlg.open(initpath,
943                                        _("*.lyx| LyX Documents (*.lyx)"));
944
945                 if (result.first == FileDialog::Later)
946                         return;
947
948                 filename = result.second;
949
950                 // check selected filename
951                 if (filename.empty()) {
952                         owner_->message(_("Canceled."));
953                         return;
954                 }
955         }
956
957         // get absolute path of file and add ".lyx" to the filename if
958         // necessary
959         filename = FileSearch(string(), filename, "lyx");
960
961         string const disp_fn = MakeDisplayPath(filename);
962         owner_->message(bformat(_("Inserting document %1$s..."), disp_fn));
963         if (bv_->insertLyXFile(filename))
964                 owner_->message(bformat(_("Document %1$s inserted."),
965                                         disp_fn));
966         else
967                 owner_->message(bformat(_("Could not insert document %1$s"),
968                                         disp_fn));
969 }
970
971
972 void BufferView::Pimpl::trackChanges()
973 {
974         Buffer * buf(bv_->buffer());
975         bool const tracking(buf->params.tracking_changes);
976
977         if (!tracking) {
978                 ParIterator const end = buf->par_iterator_end();
979                 for (ParIterator it = buf->par_iterator_begin(); it != end; ++it)
980                         it->trackChanges();
981                 buf->params.tracking_changes = true;
982
983                 // we cannot allow undos beyond the freeze point
984                 buf->undostack.clear();
985         } else {
986                 update(BufferView::SELECT);
987                 bv_->text->setCursor(buf->paragraphs.begin(), 0);
988 #warning changes FIXME
989                 //moveCursorUpdate(false);
990
991                 bool found = lyx::find::findNextChange(bv_);
992                 if (found) {
993                         owner_->getDialogs().show("changes");
994                         return;
995                 }
996
997                 ParIterator const end = buf->par_iterator_end();
998                 for (ParIterator it = buf->par_iterator_begin(); it != end; ++it)
999                         it->untrackChanges();
1000                 buf->params.tracking_changes = false;
1001         }
1002
1003         buf->redostack.clear();
1004 }
1005
1006
1007 // Doesn't go through lyxfunc, so we need to update the
1008 // layout choice etc. ourselves
1009 bool BufferView::Pimpl::workAreaDispatch(FuncRequest const & ev_in)
1010 {
1011         // e.g. Qt mouse press when no buffer
1012         if (!available())
1013                 return false;
1014
1015         screen().hideCursor();
1016
1017         // Make sure that the cached BufferView is correct.
1018         FuncRequest ev = ev_in;
1019         ev.setView(bv_);
1020
1021         bool const res = dispatch(ev);
1022
1023         // see workAreaKeyPress
1024         cursor_timeout.restart();
1025         screen().showCursor(*bv_);
1026
1027         // FIXME: we should skip these when selecting
1028         bv_->owner()->updateLayoutChoice();
1029         bv_->owner()->updateToolbar();
1030         bv_->fitCursor();
1031
1032         // slight hack: this is only called currently when
1033         // we clicked somewhere, so we force through the display
1034         // of the new status here.
1035         bv_->owner()->clearMessage();
1036
1037         return res;
1038 }
1039
1040
1041 bool BufferView::Pimpl::dispatch(FuncRequest const & ev_in)
1042 {
1043         // Make sure that the cached BufferView is correct.
1044         FuncRequest ev = ev_in;
1045         ev.setView(bv_);
1046
1047         lyxerr[Debug::ACTION] << "BufferView::Pimpl::Dispatch:"
1048                 << " action[" << ev.action << ']'
1049                 << " arg[" << ev.argument << ']'
1050                 << " x[" << ev.x << ']'
1051                 << " y[" << ev.y << ']'
1052                 << " button[" << ev.button() << ']'
1053                 << endl;
1054
1055         LyXTextClass const & tclass = buffer_->params.getLyXTextClass();
1056
1057         switch (ev.action) {
1058
1059         case LFUN_SCROLL_INSET:
1060                 // this is not handled here as this function is only active
1061                 // if we have a locking_inset and that one is (or contains)
1062                 // a tabular-inset
1063                 break;
1064
1065         case LFUN_FILE_INSERT:
1066                 MenuInsertLyXFile(ev.argument);
1067                 break;
1068
1069         case LFUN_FILE_INSERT_ASCII_PARA:
1070                 InsertAsciiFile(bv_, ev.argument, true);
1071                 break;
1072
1073         case LFUN_FILE_INSERT_ASCII:
1074                 InsertAsciiFile(bv_, ev.argument, false);
1075                 break;
1076
1077         case LFUN_LANGUAGE:
1078                 lang(bv_, ev.argument);
1079                 switchKeyMap();
1080                 owner_->view_state_changed();
1081                 break;
1082
1083         case LFUN_EMPH:
1084                 emph(bv_);
1085                 owner_->view_state_changed();
1086                 break;
1087
1088         case LFUN_BOLD:
1089                 bold(bv_);
1090                 owner_->view_state_changed();
1091                 break;
1092
1093         case LFUN_NOUN:
1094                 noun(bv_);
1095                 owner_->view_state_changed();
1096                 break;
1097
1098         case LFUN_CODE:
1099                 code(bv_);
1100                 owner_->view_state_changed();
1101                 break;
1102
1103         case LFUN_SANS:
1104                 sans(bv_);
1105                 owner_->view_state_changed();
1106                 break;
1107
1108         case LFUN_ROMAN:
1109                 roman(bv_);
1110                 owner_->view_state_changed();
1111                 break;
1112
1113         case LFUN_DEFAULT:
1114                 styleReset(bv_);
1115                 owner_->view_state_changed();
1116                 break;
1117
1118         case LFUN_UNDERLINE:
1119                 underline(bv_);
1120                 owner_->view_state_changed();
1121                 break;
1122
1123         case LFUN_FONT_SIZE:
1124                 fontSize(bv_, ev.argument);
1125                 owner_->view_state_changed();
1126                 break;
1127
1128         case LFUN_FONT_STATE:
1129                 owner_->getLyXFunc().setMessage(currentState(bv_));
1130                 break;
1131
1132         case LFUN_INSERT_LABEL: {
1133                 // Try and generate a valid label
1134                 string const contents = ev.argument.empty() ?
1135                         getPossibleLabel(*bv_) : ev.argument;
1136                 InsetCommandParams icp("label", contents);
1137                 string data = InsetCommandMailer::params2string("label", icp);
1138                 owner_->getDialogs().show("label", data, 0);
1139         }
1140         break;
1141
1142         case LFUN_BOOKMARK_SAVE:
1143                 savePosition(strToUnsignedInt(ev.argument));
1144                 break;
1145
1146         case LFUN_BOOKMARK_GOTO:
1147                 restorePosition(strToUnsignedInt(ev.argument));
1148                 break;
1149
1150         case LFUN_REF_GOTO: {
1151                 string label = ev.argument;
1152                 if (label.empty()) {
1153                         InsetRef * inset =
1154                                 static_cast<InsetRef*>(getInsetByCode(InsetOld::REF_CODE));
1155                         if (inset) {
1156                                 label = inset->getContents();
1157                                 savePosition(0);
1158                         }
1159                 }
1160
1161                 if (!label.empty())
1162                         bv_->gotoLabel(label);
1163         }
1164         break;
1165
1166         // --- accented characters ---------------------------
1167
1168         case LFUN_UMLAUT:
1169         case LFUN_CIRCUMFLEX:
1170         case LFUN_GRAVE:
1171         case LFUN_ACUTE:
1172         case LFUN_TILDE:
1173         case LFUN_CEDILLA:
1174         case LFUN_MACRON:
1175         case LFUN_DOT:
1176         case LFUN_UNDERDOT:
1177         case LFUN_UNDERBAR:
1178         case LFUN_CARON:
1179         case LFUN_SPECIAL_CARON:
1180         case LFUN_BREVE:
1181         case LFUN_TIE:
1182         case LFUN_HUNG_UMLAUT:
1183         case LFUN_CIRCLE:
1184         case LFUN_OGONEK:
1185                 if (ev.argument.empty()) {
1186                         // As always...
1187                         owner_->getLyXFunc().handleKeyFunc(ev.action);
1188                 } else {
1189                         owner_->getLyXFunc().handleKeyFunc(ev.action);
1190                         owner_->getIntl().getTransManager()
1191                                 .TranslateAndInsert(ev.argument[0], bv_->getLyXText());
1192                         update(bv_->getLyXText(), BufferView::SELECT);
1193                 }
1194                 break;
1195
1196         case LFUN_MATH_MACRO:
1197         case LFUN_MATH_DELIM:
1198         case LFUN_INSERT_MATRIX:
1199         case LFUN_INSERT_MATH:
1200         case LFUN_MATH_IMPORT_SELECTION: // Imports LaTeX from the X selection
1201         case LFUN_MATH_DISPLAY:          // Open or create a displayed math inset
1202         case LFUN_MATH_MODE:             // Open or create an inlined math inset
1203                 mathDispatch(ev);
1204                 break;
1205
1206         case LFUN_INSET_APPLY: {
1207                 string const name = ev.getArg(0);
1208
1209                 InsetBase * inset = owner_->getDialogs().getOpenInset(name);
1210                 if (inset) {
1211                         // This works both for 'original' and 'mathed' insets.
1212                         // Note that the localDispatch performs updateInset
1213                         // also.
1214                         FuncRequest fr(bv_, LFUN_INSET_MODIFY, ev.argument);
1215                         inset->localDispatch(fr);
1216                 } else {
1217                         FuncRequest fr(bv_, LFUN_INSET_INSERT, ev.argument);
1218                         dispatch(fr);
1219                 }
1220         }
1221         break;
1222
1223         case LFUN_INSET_INSERT: {
1224                 InsetOld * inset = createInset(ev);
1225                 if (inset && insertInset(inset)) {
1226                         updateInset(inset);
1227
1228                         string const name = ev.getArg(0);
1229                         if (name == "bibitem") {
1230                                 // We need to do a redraw because the maximum
1231                                 // InsetBibitem width could have changed
1232 #warning please check you mean repaint() not update(),
1233 #warning and whether the repaint() is needed at all
1234                                 bv_->repaint();
1235                                 bv_->fitCursor();
1236                         }
1237                 } else {
1238                         delete inset;
1239                 }
1240         }
1241         break;
1242
1243         case LFUN_FLOAT_LIST:
1244                 if (tclass.floats().typeExist(ev.argument)) {
1245                         InsetOld * inset = new InsetFloatList(ev.argument);
1246                         if (!insertInset(inset, tclass.defaultLayoutName()))
1247                                 delete inset;
1248                 } else {
1249                         lyxerr << "Non-existent float type: "
1250                                << ev.argument << endl;
1251                 }
1252                 break;
1253
1254         case LFUN_LAYOUT_PARAGRAPH: {
1255                 Paragraph const * par = &*bv_->getLyXText()->cursor.par();
1256                 if (!par)
1257                         break;
1258
1259                 string data;
1260                 params2string(*par, data);
1261
1262                 data = "show\n" + data;
1263                 bv_->owner()->getDialogs().show("paragraph", data);
1264                 break;
1265         }
1266
1267         case LFUN_PARAGRAPH_UPDATE: {
1268                 if (!bv_->owner()->getDialogs().visible("paragraph"))
1269                         break;
1270                 Paragraph const * par = &*bv_->getLyXText()->cursor.par();
1271                 if (!par)
1272                         break;
1273
1274                 string data;
1275                 params2string(*par, data);
1276
1277                 // Will the paragraph accept changes from the dialog?
1278                 InsetOld * const inset = par->inInset();
1279                 bool const accept =
1280                         !(inset && inset->forceDefaultParagraphs(inset));
1281
1282                 data = "update " + tostr(accept) + '\n' + data;
1283                 bv_->owner()->getDialogs().update("paragraph", data);
1284                 break;
1285         }
1286
1287         case LFUN_PARAGRAPH_APPLY:
1288                 setParagraphParams(*bv_, ev.argument);
1289                 break;
1290
1291         case LFUN_THESAURUS_ENTRY:
1292         {
1293                 string arg = ev.argument;
1294
1295                 if (arg.empty()) {
1296                         arg = bv_->getLyXText()->selectionAsString(buffer_,
1297                                                                    false);
1298
1299                         // FIXME
1300                         if (arg.size() > 100 || arg.empty()) {
1301                                 // Get word or selection
1302                                 bv_->getLyXText()->selectWordWhenUnderCursor(lyx::WHOLE_WORD);
1303                                 arg = bv_->getLyXText()->selectionAsString(buffer_, false);
1304                                 // FIXME: where is getLyXText()->unselect(bv_) ?
1305                         }
1306                 }
1307
1308                 bv_->owner()->getDialogs().show("thesaurus", arg);
1309         }
1310                 break;
1311
1312         case LFUN_TRACK_CHANGES:
1313                 trackChanges();
1314                 break;
1315
1316         case LFUN_MERGE_CHANGES:
1317                 owner_->getDialogs().show("changes");
1318                 break;
1319
1320         case LFUN_ACCEPT_ALL_CHANGES: {
1321                 update(BufferView::SELECT);
1322                 bv_->text->setCursor(bv_->buffer()->paragraphs.begin(), 0);
1323 #warning FIXME changes
1324                 //moveCursorUpdate(false);
1325
1326                 while (lyx::find::findNextChange(bv_)) {
1327                         bv_->getLyXText()->acceptChange();
1328                 }
1329                 update(BufferView::SELECT);
1330                 break;
1331         }
1332
1333         case LFUN_REJECT_ALL_CHANGES: {
1334                 update(BufferView::SELECT);
1335                 bv_->text->setCursor(bv_->buffer()->paragraphs.begin(), 0);
1336 #warning FIXME changes
1337                 //moveCursorUpdate(false);
1338
1339                 while (lyx::find::findNextChange(bv_)) {
1340                         bv_->getLyXText()->rejectChange();
1341                 }
1342                 update(BufferView::SELECT);
1343                 break;
1344         }
1345
1346         case LFUN_ACCEPT_CHANGE: {
1347                 bv_->getLyXText()->acceptChange();
1348                 update(BufferView::SELECT);
1349                 break;
1350         }
1351
1352         case LFUN_REJECT_CHANGE: {
1353                 bv_->getLyXText()->rejectChange();
1354                 update(BufferView::SELECT);
1355                 break;
1356         }
1357
1358         case LFUN_UNKNOWN_ACTION:
1359                 ev.errorMessage(N_("Unknown function!"));
1360                 break;
1361
1362         default:
1363                 return bv_->getLyXText()->dispatch(FuncRequest(ev, bv_));
1364         } // end of switch
1365
1366         return true;
1367 }
1368
1369
1370 bool BufferView::Pimpl::insertInset(InsetOld * inset, string const & lout)
1371 {
1372         // if we are in a locking inset we should try to insert the
1373         // inset there otherwise this is a illegal function now
1374         if (bv_->theLockingInset()) {
1375                 if (bv_->theLockingInset()->insetAllowed(inset))
1376                         return bv_->theLockingInset()->insertInset(bv_, inset);
1377                 return false;
1378         }
1379
1380         // not quite sure if we want this...
1381         recordUndo(bv_, Undo::ATOMIC);
1382         freezeUndo();
1383
1384         beforeChange(bv_->text);
1385         if (!lout.empty()) {
1386                 update(BufferView::SELECT);
1387                 bv_->text->breakParagraph(bv_->buffer()->paragraphs);
1388                 update(BufferView::SELECT);
1389
1390                 if (!bv_->text->cursor.par()->empty()) {
1391                         bv_->text->cursorLeft(bv_);
1392
1393                         bv_->text->breakParagraph(bv_->buffer()->paragraphs);
1394                         update(BufferView::SELECT);
1395                 }
1396
1397                 string lres = lout;
1398                 LyXTextClass const & tclass =
1399                         buffer_->params.getLyXTextClass();
1400                 bool hasLayout = tclass.hasLayout(lres);
1401                 string lay = tclass.defaultLayoutName();
1402
1403                 if (hasLayout != false) {
1404                         // layout found
1405                         lay = lres;
1406                 } else {
1407                         // layout not fount using default
1408                         lay = tclass.defaultLayoutName();
1409                 }
1410
1411                 bv_->text->setLayout(lay);
1412
1413                 bv_->text->setParagraph(0, 0,
1414                                    0, 0,
1415                                    VSpace(VSpace::NONE), VSpace(VSpace::NONE),
1416                                    Spacing(),
1417                                    LYX_ALIGN_LAYOUT,
1418                                    string(),
1419                                    0);
1420                 update(BufferView::SELECT);
1421         }
1422
1423         bv_->text->insertInset(inset);
1424         update(BufferView::SELECT);
1425
1426         unFreezeUndo();
1427         return true;
1428 }
1429
1430
1431 void BufferView::Pimpl::updateInset(InsetOld * inset)
1432 {
1433         if (!inset || !available())
1434                 return;
1435
1436         // first check for locking insets
1437         if (bv_->theLockingInset()) {
1438                 if (bv_->theLockingInset() == inset) {
1439                         if (bv_->text->updateInset(inset)) {
1440                                 update();
1441                                 updateScrollbar();
1442                                 return;
1443                         }
1444                 } else if (bv_->theLockingInset()->updateInsetInInset(bv_, inset)) {
1445                         if (bv_->text->updateInset(bv_->theLockingInset())) {
1446                                 update();
1447                                 updateScrollbar();
1448                                 return;
1449                         }
1450                 }
1451         }
1452
1453         // then check if the inset is a top_level inset (has no owner)
1454         // if yes do the update as always otherwise we have to update the
1455         // toplevel inset where this inset is inside
1456         InsetOld * tl_inset = inset;
1457         while (tl_inset->owner())
1458                 tl_inset = tl_inset->owner();
1459         if (tl_inset == inset) {
1460                 update(BufferView::UPDATE);
1461                 if (bv_->text->updateInset(inset)) {
1462                         update(BufferView::SELECT);
1463                         return;
1464                 }
1465         } else if (static_cast<UpdatableInset *>(tl_inset)
1466                            ->updateInsetInInset(bv_, inset))
1467         {
1468                 if (bv_->text->updateInset(tl_inset)) {
1469                         update();
1470                         updateScrollbar();
1471                 }
1472         }
1473 }