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