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