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