]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.C
remove unneeded '// -*- C++ -*-' comment.
[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_);
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         if (par != bv_->text->ownerParagraphs().end()) {
431                 bv_->text->selection.set(true);
432                 // At this point just to avoid the Delete-Empty-Paragraph-
433                 // Mechanism when setting the cursor.
434                 bv_->text->selection.mark(mark_set);
435                 if (selection) {
436                         bv_->text->setCursor(selstartpar, selstartpos);
437                         bv_->text->selection.cursor = bv_->text->cursor;
438                         bv_->text->setCursor(selendpar, selendpos);
439                         bv_->text->setSelection();
440                         bv_->text->setCursor(par, pos);
441                 } else {
442                         bv_->text->setCursor(par, pos);
443                         bv_->text->selection.cursor = bv_->text->cursor;
444                         bv_->text->selection.set(false);
445                 }
446                 // remake the inset locking
447                 bv_->theLockingInset(the_locking_inset);
448         }
449
450         bv_->text->top_y(screen().topCursorVisible(bv_->text));
451
452         switchKeyMap();
453         owner_->busy(false);
454
455         // reset the "Formatting..." message
456         owner_->clearMessage();
457
458         updateScrollbar();
459 }
460
461
462 void BufferView::Pimpl::updateScrollbar()
463 {
464         if (!bv_->text) {
465                 lyxerr[Debug::GUI] << "no text in updateScrollbar" << endl;
466                 workarea().setScrollbarParams(0, 0, 0);
467                 return;
468         }
469
470         LyXText const & t = *bv_->text;
471
472         lyxerr[Debug::GUI] << "Updating scrollbar: h " << t.height << ", top_y() "
473                 << t.top_y() << ", default height " << defaultRowHeight() << endl;
474
475         workarea().setScrollbarParams(t.height, t.top_y(), defaultRowHeight());
476 }
477
478
479 void BufferView::Pimpl::scrollDocView(int value)
480 {
481         lyxerr[Debug::GUI] << "scrollDocView of " << value << endl;
482
483         if (!buffer_)
484                 return;
485
486         screen().hideCursor();
487
488         screen().draw(bv_->text, bv_, value);
489
490         if (!lyxrc.cursor_follows_scrollbar)
491                 return;
492
493         LyXText * vbt = bv_->text;
494
495         int const height = defaultRowHeight();
496         int const first = static_cast<int>((bv_->text->top_y() + height));
497         int const last = static_cast<int>((bv_->text->top_y() + workarea().workHeight() - height));
498
499         if (vbt->cursor.y() < first)
500                 vbt->setCursorFromCoordinates(0, first);
501         else if (vbt->cursor.y() > last)
502                 vbt->setCursorFromCoordinates(0, last);
503
504         owner_->updateLayoutChoice();
505 }
506
507
508 void BufferView::Pimpl::scroll(int lines)
509 {
510         if (!buffer_) {
511                 return;
512         }
513
514         LyXText const * t = bv_->text;
515         int const line_height = defaultRowHeight();
516
517         // The new absolute coordinate
518         int new_top_y = t->top_y() + lines * line_height;
519
520         // Restrict to a valid value
521         new_top_y = std::min(t->height - 4 * line_height, new_top_y);
522         new_top_y = std::max(0, new_top_y);
523
524         scrollDocView(new_top_y);
525
526         // Update the scrollbar.
527         workarea().setScrollbarParams(t->height, t->top_y(), defaultRowHeight());
528 }
529
530
531 void BufferView::Pimpl::workAreaKeyPress(LyXKeySymPtr key,
532                                          key_modifier::state state)
533 {
534         bv_->owner()->getLyXFunc().processKeySym(key, state);
535
536         /* This is perhaps a bit of a hack. When we move
537          * around, or type, it's nice to be able to see
538          * the cursor immediately after the keypress. So
539          * we reset the toggle timeout and force the visibility
540          * of the cursor. Note we cannot do this inside
541          * dispatch() itself, because that's called recursively.
542          */
543         if (available()) {
544                 cursor_timeout.restart();
545                 screen().showCursor(*bv_);
546         }
547 }
548
549
550 void BufferView::Pimpl::selectionRequested()
551 {
552         static string sel;
553
554         if (!available())
555                 return;
556
557         LyXText * text = bv_->getLyXText();
558
559         if (text->selection.set() &&
560                 (!bv_->text->xsel_cache.set() ||
561                  text->selection.start != bv_->text->xsel_cache.start ||
562                  text->selection.end != bv_->text->xsel_cache.end))
563         {
564                 bv_->text->xsel_cache = text->selection;
565                 sel = text->selectionAsString(bv_->buffer(), false);
566         } else if (!text->selection.set()) {
567                 sel = string();
568                 bv_->text->xsel_cache.set(false);
569         }
570         if (!sel.empty()) {
571                 workarea().putClipboard(sel);
572         }
573 }
574
575
576 void BufferView::Pimpl::selectionLost()
577 {
578         if (available()) {
579                 screen().hideCursor();
580                 toggleSelection();
581                 bv_->getLyXText()->clearSelection();
582                 bv_->text->xsel_cache.set(false);
583         }
584 }
585
586
587 void BufferView::Pimpl::workAreaResize()
588 {
589         static int work_area_width;
590         static int work_area_height;
591
592         bool const widthChange = workarea().workWidth() != work_area_width;
593         bool const heightChange = workarea().workHeight() != work_area_height;
594
595         // update from work area
596         work_area_width = workarea().workWidth();
597         work_area_height = workarea().workHeight();
598
599         if (buffer_ != 0) {
600                 if (widthChange) {
601                         // The visible LyXView need a resize
602                         resizeCurrentBuffer();
603
604                         // Remove all texts from the textcache
605                         // This is not _really_ what we want to do. What
606                         // we really want to do is to delete in textcache
607                         // that does not have a BufferView with matching
608                         // width, but as long as we have only one BufferView
609                         // deleting all gives the same result.
610                         if (lyxerr.debugging())
611                                 textcache.show(lyxerr, "Expose delete all");
612                         textcache.clear();
613                 }
614         }
615
616         if (widthChange || heightChange)
617                 update();
618
619         // always make sure that the scrollbar is sane.
620         updateScrollbar();
621         owner_->updateLayoutChoice();
622 }
623
624
625 void BufferView::Pimpl::update()
626 {
627         lyxerr << "BufferView::update()" << endl;
628         // fix cursor coordinate cache in case something went wrong
629         if (bv_->getLyXText()) {
630                 // check needed to survive LyX startup
631                 bv_->getLyXText()->redoCursor();
632                 fitCursor();
633         }
634         screen().redraw(*bv_);
635 }
636
637
638 // Callback for cursor timer
639 void BufferView::Pimpl::cursorToggle()
640 {
641         if (!buffer_) {
642                 cursor_timeout.restart();
643                 return;
644         }
645
646         screen().toggleCursor(*bv_);
647
648         cursor_timeout.restart();
649 }
650
651
652 bool BufferView::Pimpl::available() const
653 {
654         if (buffer_ && bv_->text)
655                 return true;
656         return false;
657 }
658
659
660 Change const BufferView::Pimpl::getCurrentChange()
661 {
662         if (!bv_->buffer()->params.tracking_changes)
663                 return Change(Change::UNCHANGED);
664
665         LyXText * t(bv_->getLyXText());
666
667         if (!t->selection.set())
668                 return Change(Change::UNCHANGED);
669
670         LyXCursor const & cur(t->selection.start);
671         return cur.par()->lookupChangeFull(cur.pos());
672 }
673
674
675 void BufferView::Pimpl::beforeChange(LyXText * text)
676 {
677         toggleSelection();
678         text->clearSelection();
679 }
680
681
682 void BufferView::Pimpl::savePosition(unsigned int i)
683 {
684         if (i >= saved_positions_num)
685                 return;
686         saved_positions[i] = Position(buffer_->fileName(),
687                                       bv_->text->cursor.par()->id(),
688                                       bv_->text->cursor.pos());
689         if (i > 0)
690                 owner_->message(bformat(_("Saved bookmark %1$s"), tostr(i)));
691 }
692
693
694 void BufferView::Pimpl::restorePosition(unsigned int i)
695 {
696         if (i >= saved_positions_num)
697                 return;
698
699         string const fname = saved_positions[i].filename;
700
701         beforeChange(bv_->text);
702
703         if (fname != buffer_->fileName()) {
704                 Buffer * b;
705                 if (bufferlist.exists(fname))
706                         b = bufferlist.getBuffer(fname);
707                 else {
708                         b = bufferlist.newBuffer(fname);
709                         ::loadLyXFile(b, fname); // don't ask, just load it
710                 }
711                 if (b != 0)
712                         buffer(b);
713         }
714
715         ParIterator par = buffer_->getParFromID(saved_positions[i].par_id);
716         if (par == buffer_->par_iterator_end())
717                 return;
718
719         bv_->text->setCursor(par.pit(),
720                              min(par->size(), saved_positions[i].par_pos));
721
722         update();
723         if (i > 0)
724                 owner_->message(bformat(_("Moved to bookmark %1$s"), tostr(i)));
725 }
726
727
728 bool BufferView::Pimpl::isSavedPosition(unsigned int i)
729 {
730         if (i >= saved_positions_num)
731                 return false;
732
733         return !saved_positions[i].filename.empty();
734 }
735
736
737 void BufferView::Pimpl::switchKeyMap()
738 {
739         if (!lyxrc.rtl_support)
740                 return;
741
742         LyXText * text = bv_->getLyXText();
743         if (text->real_current_font.isRightToLeft()
744             && !(bv_->theLockingInset()
745                  && bv_->theLockingInset()->lyxCode() == InsetOld::ERT_CODE))
746         {
747                 if (owner_->getIntl().keymap == Intl::PRIMARY)
748                         owner_->getIntl().KeyMapSec();
749         } else {
750                 if (owner_->getIntl().keymap == Intl::SECONDARY)
751                         owner_->getIntl().KeyMapPrim();
752         }
753 }
754
755
756 void BufferView::Pimpl::insetUnlock()
757 {
758         if (bv_->theLockingInset()) {
759                 bv_->theLockingInset()->insetUnlock(bv_);
760                 bv_->theLockingInset(0);
761                 finishUndo();
762         }
763 }
764
765
766 void BufferView::Pimpl::toggleSelection(bool b)
767 {
768         screen().toggleSelection(bv_->text, bv_, b);
769 }
770
771
772 void BufferView::Pimpl::center()
773 {
774         LyXText * t = bv_->text;
775
776         beforeChange(t);
777         int const half_height = workarea().workHeight() / 2;
778         int new_y = 0;
779
780         if (t->cursor.y() > half_height)
781                 new_y = t->cursor.y() - half_height;
782
783         // FIXME: look at this comment again ...
784
785         // FIXME: can we do this w/o calling screen directly ?
786         // This updates top_y() but means the fitCursor() call
787         // from the update(FITCUR) doesn't realise that we might
788         // have moved (e.g. from GOTOPARAGRAPH), so doesn't cause
789         // the scrollbar to be updated as it should, so we have
790         // to do it manually. Any operation that does a center()
791         // and also might have moved top_y() must make sure to call
792         // updateScrollbar() currently. Never mind that this is a
793         // pretty obfuscated way of updating t->top_y()
794         screen().draw(t, bv_, new_y);
795
796         update();
797 }
798
799
800 void BufferView::Pimpl::stuffClipboard(string const & stuff) const
801 {
802         workarea().putClipboard(stuff);
803 }
804
805
806 /*
807  * Dispatch functions for actions which can be valid for BufferView->text
808  * and/or InsetText->text!!!
809  */
810
811
812 InsetOld * BufferView::Pimpl::getInsetByCode(InsetOld::Code code)
813 {
814 #if 0
815         LyXCursor cursor = bv_->getLyXText()->cursor;
816         Buffer::inset_iterator it =
817                 find_if(Buffer::inset_iterator(
818                         cursor.par(), cursor.pos()),
819                         buffer_->inset_iterator_end(),
820                         lyx::compare_memfun(&Inset::lyxCode, code));
821         return it != buffer_->inset_iterator_end() ? (*it) : 0;
822 #else
823         // Ok, this is a little bit too brute force but it
824         // should work for now. Better infrastructure is comming. (Lgb)
825
826         Buffer * b = bv_->buffer();
827         LyXCursor cursor = bv_->getLyXText()->cursor;
828
829         Buffer::inset_iterator beg = b->inset_iterator_begin();
830         Buffer::inset_iterator end = b->inset_iterator_end();
831
832         bool cursor_par_seen = false;
833
834         for (; beg != end; ++beg) {
835                 if (beg.getPar() == cursor.par()) {
836                         cursor_par_seen = true;
837                 }
838                 if (cursor_par_seen) {
839                         if (beg.getPar() == cursor.par()
840                             && beg.getPos() >= cursor.pos()) {
841                                 break;
842                         } else if (beg.getPar() != cursor.par()) {
843                                 break;
844                         }
845                 }
846
847         }
848         if (beg != end) {
849                 // Now find the first inset that matches code.
850                 for (; beg != end; ++beg) {
851                         if (beg->lyxCode() == code) {
852                                 return &(*beg);
853                         }
854                 }
855         }
856         return 0;
857 #endif
858 }
859
860
861 void BufferView::Pimpl::MenuInsertLyXFile(string const & filen)
862 {
863         string filename = filen;
864
865         if (filename.empty()) {
866                 // Launch a file browser
867                 string initpath = lyxrc.document_path;
868
869                 if (available()) {
870                         string const trypath = owner_->buffer()->filePath();
871                         // If directory is writeable, use this as default.
872                         if (IsDirWriteable(trypath))
873                                 initpath = trypath;
874                 }
875
876                 FileDialog fileDlg(_("Select LyX document to insert"),
877                         LFUN_FILE_INSERT,
878                         make_pair(string(_("Documents|#o#O")),
879                                   string(lyxrc.document_path)),
880                         make_pair(string(_("Examples|#E#e")),
881                                   string(AddPath(system_lyxdir(), "examples"))));
882
883                 FileDialog::Result result =
884                         fileDlg.open(initpath,
885                                        _("*.lyx| LyX Documents (*.lyx)"));
886
887                 if (result.first == FileDialog::Later)
888                         return;
889
890                 filename = result.second;
891
892                 // check selected filename
893                 if (filename.empty()) {
894                         owner_->message(_("Canceled."));
895                         return;
896                 }
897         }
898
899         // get absolute path of file and add ".lyx" to the filename if
900         // necessary
901         filename = FileSearch(string(), filename, "lyx");
902
903         string const disp_fn = MakeDisplayPath(filename);
904         owner_->message(bformat(_("Inserting document %1$s..."), disp_fn));
905         if (bv_->insertLyXFile(filename))
906                 owner_->message(bformat(_("Document %1$s inserted."),
907                                         disp_fn));
908         else
909                 owner_->message(bformat(_("Could not insert document %1$s"),
910                                         disp_fn));
911 }
912
913
914 void BufferView::Pimpl::trackChanges()
915 {
916         Buffer * buf(bv_->buffer());
917         bool const tracking(buf->params.tracking_changes);
918
919         if (!tracking) {
920                 ParIterator const end = buf->par_iterator_end();
921                 for (ParIterator it = buf->par_iterator_begin(); it != end; ++it)
922                         it->trackChanges();
923                 buf->params.tracking_changes = true;
924
925                 // we cannot allow undos beyond the freeze point
926                 buf->undostack.clear();
927         } else {
928                 update();
929                 bv_->text->setCursor(buf->paragraphs.begin(), 0);
930 #warning changes FIXME
931                 //moveCursorUpdate(false);
932
933                 bool found = lyx::find::findNextChange(bv_);
934                 if (found) {
935                         owner_->getDialogs().show("changes");
936                         return;
937                 }
938
939                 ParIterator const end = buf->par_iterator_end();
940                 for (ParIterator it = buf->par_iterator_begin(); it != end; ++it)
941                         it->untrackChanges();
942                 buf->params.tracking_changes = false;
943         }
944
945         buf->redostack.clear();
946 }
947
948
949 bool BufferView::Pimpl::workAreaDispatch(FuncRequest const & ev)
950 {
951         switch (ev.action) {
952         case LFUN_MOUSE_PRESS:
953         case LFUN_MOUSE_MOTION:
954         case LFUN_MOUSE_RELEASE:
955         case LFUN_MOUSE_DOUBLE:
956         case LFUN_MOUSE_TRIPLE:
957         {
958                 // We pass those directly to the Bufferview, since
959                 // otherwise selection handling breaks down
960
961                 // Doesn't go through lyxfunc, so we need to update
962                 // the layout choice etc. ourselves
963
964                 // e.g. Qt mouse press when no buffer
965                 if (!available())
966                         return false;
967
968                 screen().hideCursor();
969
970                 bool const res = dispatch(ev);
971                 
972                 // see workAreaKeyPress
973                 cursor_timeout.restart();
974                 screen().showCursor(*bv_);
975
976                 // FIXME: we should skip these when selecting
977                 owner_->updateLayoutChoice();
978                 owner_->updateToolbar();
979                 fitCursor();
980
981                 // slight hack: this is only called currently when we
982                 // clicked somewhere, so we force through the display
983                 // of the new status here.
984                 owner_->clearMessage();
985
986                 return res;
987         }
988         default:
989                 owner_->dispatch(ev);
990                 return true;
991         }
992 }
993
994
995 bool BufferView::Pimpl::dispatch(FuncRequest const & ev_in)
996 {
997         // Make sure that the cached BufferView is correct.
998         FuncRequest ev = ev_in;
999         ev.setView(bv_);
1000
1001         lyxerr[Debug::ACTION] << "BufferView::Pimpl::Dispatch:"
1002                 << " action[" << ev.action << ']'
1003                 << " arg[" << ev.argument << ']'
1004                 << " x[" << ev.x << ']'
1005                 << " y[" << ev.y << ']'
1006                 << " button[" << ev.button() << ']'
1007                 << endl;
1008
1009         LyXTextClass const & tclass = buffer_->params.getLyXTextClass();
1010
1011         switch (ev.action) {
1012
1013         case LFUN_SCROLL_INSET:
1014                 // this is not handled here as this function is only active
1015                 // if we have a locking_inset and that one is (or contains)
1016                 // a tabular-inset
1017                 break;
1018
1019         case LFUN_FILE_INSERT:
1020                 MenuInsertLyXFile(ev.argument);
1021                 break;
1022
1023         case LFUN_FILE_INSERT_ASCII_PARA:
1024                 InsertAsciiFile(bv_, ev.argument, true);
1025                 break;
1026
1027         case LFUN_FILE_INSERT_ASCII:
1028                 InsertAsciiFile(bv_, ev.argument, false);
1029                 break;
1030
1031         case LFUN_LANGUAGE:
1032                 lang(bv_, ev.argument);
1033                 switchKeyMap();
1034                 owner_->view_state_changed();
1035                 break;
1036
1037         case LFUN_EMPH:
1038                 emph(bv_);
1039                 owner_->view_state_changed();
1040                 break;
1041
1042         case LFUN_BOLD:
1043                 bold(bv_);
1044                 owner_->view_state_changed();
1045                 break;
1046
1047         case LFUN_NOUN:
1048                 noun(bv_);
1049                 owner_->view_state_changed();
1050                 break;
1051
1052         case LFUN_CODE:
1053                 code(bv_);
1054                 owner_->view_state_changed();
1055                 break;
1056
1057         case LFUN_SANS:
1058                 sans(bv_);
1059                 owner_->view_state_changed();
1060                 break;
1061
1062         case LFUN_ROMAN:
1063                 roman(bv_);
1064                 owner_->view_state_changed();
1065                 break;
1066
1067         case LFUN_DEFAULT:
1068                 styleReset(bv_);
1069                 owner_->view_state_changed();
1070                 break;
1071
1072         case LFUN_UNDERLINE:
1073                 underline(bv_);
1074                 owner_->view_state_changed();
1075                 break;
1076
1077         case LFUN_FONT_SIZE:
1078                 fontSize(bv_, ev.argument);
1079                 owner_->view_state_changed();
1080                 break;
1081
1082         case LFUN_FONT_STATE:
1083                 owner_->getLyXFunc().setMessage(currentState(bv_));
1084                 break;
1085
1086         case LFUN_INSERT_LABEL: {
1087                 // Try and generate a valid label
1088                 string const contents = ev.argument.empty() ?
1089                         getPossibleLabel(*bv_) : ev.argument;
1090                 InsetCommandParams icp("label", contents);
1091                 string data = InsetCommandMailer::params2string("label", icp);
1092                 owner_->getDialogs().show("label", data, 0);
1093         }
1094         break;
1095
1096         case LFUN_BOOKMARK_SAVE:
1097                 savePosition(strToUnsignedInt(ev.argument));
1098                 break;
1099
1100         case LFUN_BOOKMARK_GOTO:
1101                 restorePosition(strToUnsignedInt(ev.argument));
1102                 break;
1103
1104         case LFUN_REF_GOTO: {
1105                 string label = ev.argument;
1106                 if (label.empty()) {
1107                         InsetRef * inset =
1108                                 static_cast<InsetRef*>(getInsetByCode(InsetOld::REF_CODE));
1109                         if (inset) {
1110                                 label = inset->getContents();
1111                                 savePosition(0);
1112                         }
1113                 }
1114
1115                 if (!label.empty())
1116                         bv_->gotoLabel(label);
1117         }
1118         break;
1119
1120         // --- accented characters ---------------------------
1121
1122         case LFUN_UMLAUT:
1123         case LFUN_CIRCUMFLEX:
1124         case LFUN_GRAVE:
1125         case LFUN_ACUTE:
1126         case LFUN_TILDE:
1127         case LFUN_CEDILLA:
1128         case LFUN_MACRON:
1129         case LFUN_DOT:
1130         case LFUN_UNDERDOT:
1131         case LFUN_UNDERBAR:
1132         case LFUN_CARON:
1133         case LFUN_SPECIAL_CARON:
1134         case LFUN_BREVE:
1135         case LFUN_TIE:
1136         case LFUN_HUNG_UMLAUT:
1137         case LFUN_CIRCLE:
1138         case LFUN_OGONEK:
1139                 if (ev.argument.empty()) {
1140                         // As always...
1141                         owner_->getLyXFunc().handleKeyFunc(ev.action);
1142                 } else {
1143                         owner_->getLyXFunc().handleKeyFunc(ev.action);
1144                         owner_->getIntl().getTransManager()
1145                                 .TranslateAndInsert(ev.argument[0], bv_->getLyXText());
1146                         update();
1147                 }
1148                 break;
1149
1150         case LFUN_MATH_MACRO:
1151         case LFUN_MATH_DELIM:
1152         case LFUN_INSERT_MATRIX:
1153         case LFUN_INSERT_MATH:
1154         case LFUN_MATH_IMPORT_SELECTION: // Imports LaTeX from the X selection
1155         case LFUN_MATH_DISPLAY:          // Open or create a displayed math inset
1156         case LFUN_MATH_MODE:             // Open or create an inlined math inset
1157                 mathDispatch(ev);
1158                 break;
1159
1160         case LFUN_INSET_APPLY: {
1161                 string const name = ev.getArg(0);
1162
1163                 InsetBase * inset = owner_->getDialogs().getOpenInset(name);
1164                 if (inset) {
1165                         // This works both for 'original' and 'mathed' insets.
1166                         // Note that the localDispatch performs updateInset
1167                         // also.
1168                         FuncRequest fr(bv_, LFUN_INSET_MODIFY, ev.argument);
1169                         inset->localDispatch(fr);
1170                 } else {
1171                         FuncRequest fr(bv_, LFUN_INSET_INSERT, ev.argument);
1172                         dispatch(fr);
1173                 }
1174         }
1175         break;
1176
1177         case LFUN_INSET_INSERT: {
1178                 InsetOld * inset = createInset(ev);
1179                 if (inset && insertInset(inset)) {
1180                         updateInset();
1181
1182                         string const name = ev.getArg(0);
1183                         if (name == "bibitem") {
1184                                 // We need to do a redraw because the maximum
1185                                 // InsetBibitem width could have changed
1186                                 bv_->fitCursor();
1187 #warning check whether the update() is needed at all
1188                                 bv_->update();
1189                         }
1190                 } else {
1191                         delete inset;
1192                 }
1193         }
1194         break;
1195
1196         case LFUN_FLOAT_LIST:
1197                 if (tclass.floats().typeExist(ev.argument)) {
1198                         InsetOld * inset = new InsetFloatList(ev.argument);
1199                         if (!insertInset(inset, tclass.defaultLayoutName()))
1200                                 delete inset;
1201                 } else {
1202                         lyxerr << "Non-existent float type: "
1203                                << ev.argument << endl;
1204                 }
1205                 break;
1206
1207         case LFUN_LAYOUT_PARAGRAPH: {
1208                 Paragraph const * par = &*bv_->getLyXText()->cursor.par();
1209                 if (!par)
1210                         break;
1211
1212                 string data;
1213                 params2string(*par, data);
1214
1215                 data = "show\n" + data;
1216                 bv_->owner()->getDialogs().show("paragraph", data);
1217                 break;
1218         }
1219
1220         case LFUN_PARAGRAPH_UPDATE: {
1221                 if (!bv_->owner()->getDialogs().visible("paragraph"))
1222                         break;
1223                 Paragraph const & par = *bv_->getLyXText()->cursor.par();
1224
1225                 string data;
1226                 params2string(par, data);
1227
1228                 // Will the paragraph accept changes from the dialog?
1229                 InsetOld * const inset = par.inInset();
1230                 bool const accept =
1231                         !(inset && inset->forceDefaultParagraphs(inset));
1232
1233                 data = "update " + tostr(accept) + '\n' + data;
1234                 bv_->owner()->getDialogs().update("paragraph", data);
1235                 break;
1236         }
1237
1238         case LFUN_PARAGRAPH_APPLY:
1239                 setParagraphParams(*bv_, ev.argument);
1240                 break;
1241
1242         case LFUN_THESAURUS_ENTRY:
1243         {
1244                 string arg = ev.argument;
1245
1246                 if (arg.empty()) {
1247                         arg = bv_->getLyXText()->selectionAsString(buffer_,
1248                                                                    false);
1249
1250                         // FIXME
1251                         if (arg.size() > 100 || arg.empty()) {
1252                                 // Get word or selection
1253                                 bv_->getLyXText()->selectWordWhenUnderCursor(lyx::WHOLE_WORD);
1254                                 arg = bv_->getLyXText()->selectionAsString(buffer_, false);
1255                                 // FIXME: where is getLyXText()->unselect(bv_) ?
1256                         }
1257                 }
1258
1259                 bv_->owner()->getDialogs().show("thesaurus", arg);
1260         }
1261                 break;
1262
1263         case LFUN_TRACK_CHANGES:
1264                 trackChanges();
1265                 break;
1266
1267         case LFUN_MERGE_CHANGES:
1268                 owner_->getDialogs().show("changes");
1269                 break;
1270
1271         case LFUN_ACCEPT_ALL_CHANGES: {
1272                 bv_->text->setCursor(bv_->buffer()->paragraphs.begin(), 0);
1273 #warning FIXME changes
1274                 //moveCursorUpdate(false);
1275
1276                 while (lyx::find::findNextChange(bv_))
1277                         bv_->getLyXText()->acceptChange();
1278
1279                 update();
1280                 break;
1281         }
1282
1283         case LFUN_REJECT_ALL_CHANGES: {
1284                 bv_->text->setCursor(bv_->buffer()->paragraphs.begin(), 0);
1285 #warning FIXME changes
1286                 //moveCursorUpdate(false);
1287
1288                 while (lyx::find::findNextChange(bv_))
1289                         bv_->getLyXText()->rejectChange();
1290
1291                 update();
1292                 break;
1293         }
1294
1295         case LFUN_ACCEPT_CHANGE: {
1296                 bv_->getLyXText()->acceptChange();
1297                 update();
1298                 break;
1299         }
1300
1301         case LFUN_REJECT_CHANGE: {
1302                 bv_->getLyXText()->rejectChange();
1303                 update();
1304                 break;
1305         }
1306
1307         case LFUN_UNKNOWN_ACTION:
1308                 ev.errorMessage(N_("Unknown function!"));
1309                 break;
1310
1311         default:
1312                 return bv_->getLyXText()->dispatch(FuncRequest(ev, bv_));
1313         } // end of switch
1314
1315         return true;
1316 }
1317
1318
1319 bool BufferView::Pimpl::insertInset(InsetOld * inset, string const & lout)
1320 {
1321         // if we are in a locking inset we should try to insert the
1322         // inset there otherwise this is a illegal function now
1323         if (bv_->theLockingInset()) {
1324                 if (bv_->theLockingInset()->insetAllowed(inset))
1325                         return bv_->theLockingInset()->insertInset(bv_, inset);
1326                 return false;
1327         }
1328
1329         // not quite sure if we want this...
1330         recordUndo(bv_, Undo::ATOMIC);
1331         freezeUndo();
1332
1333         beforeChange(bv_->text);
1334         if (!lout.empty()) {
1335                 bv_->text->breakParagraph(bv_->buffer()->paragraphs);
1336
1337                 if (!bv_->text->cursor.par()->empty()) {
1338                         bv_->text->cursorLeft(bv_);
1339                         bv_->text->breakParagraph(bv_->buffer()->paragraphs);
1340                 }
1341
1342                 string lres = lout;
1343                 LyXTextClass const & tclass = buffer_->params.getLyXTextClass();
1344                 bool hasLayout = tclass.hasLayout(lres);
1345                 string lay = tclass.defaultLayoutName();
1346
1347                 if (hasLayout != false) {
1348                         // layout found
1349                         lay = lres;
1350                 } else {
1351                         // layout not fount using default
1352                         lay = tclass.defaultLayoutName();
1353                 }
1354
1355                 bv_->text->setLayout(lay);
1356
1357                 bv_->text->setParagraph(0, 0,
1358                                    0, 0,
1359                                    VSpace(VSpace::NONE), VSpace(VSpace::NONE),
1360                                    Spacing(),
1361                                    LYX_ALIGN_LAYOUT,
1362                                    string(),
1363                                    0);
1364         }
1365
1366         bv_->text->insertInset(inset);
1367         update();
1368
1369         unFreezeUndo();
1370         return true;
1371 }
1372
1373
1374 void BufferView::Pimpl::updateInset()
1375 {
1376         if (!available())
1377                 return;
1378
1379         // this should not be needed, but it is...
1380         bv_->text->redoParagraph(bv_->text->cursor.par());
1381
1382         update();
1383         updateScrollbar();
1384 }