]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.C
I reactivate the code to resize the InsetText on a resize event of the main
[lyx.git] / src / BufferView_pimpl.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "BufferView_pimpl.h"
8 #include "WorkArea.h"
9 #include "lyxscreen.h"
10 #include "lyxtext.h"
11 #include "lyxrow.h"
12 #include "paragraph.h"
13 #include "LyXView.h"
14 #include "commandtags.h"
15 #include "lyxfunc.h"
16 #include "debug.h"
17 #include "font.h"
18 #include "bufferview_funcs.h"
19 #include "TextCache.h"
20 #include "bufferlist.h"
21 #include "lyxrc.h"
22 #include "intl.h"
23 // added for Dispatch functions
24 #include "lyx_cb.h"
25 #include "lyx_main.h"
26 #include "FloatList.h"
27 #include "gettext.h"
28 #include "ParagraphParameters.h"
29 #include "undo_funcs.h"
30 #include "lyxtextclasslist.h"
31
32 #include "frontends/Dialogs.h"
33 #include "frontends/Alert.h"
34 #include "frontends/FileDialog.h"
35
36 #include "insets/insetbib.h"
37 #include "insets/insettext.h"
38 #include "insets/inseturl.h"
39 #include "insets/insetlatexaccent.h"
40 #include "insets/insettoc.h"
41 #include "insets/insetref.h"
42 #include "insets/insetparent.h"
43 #include "insets/insetindex.h"
44 #include "insets/insetnote.h"
45 #include "insets/insetinclude.h"
46 #include "insets/insetcite.h"
47 #include "insets/insetert.h"
48 #include "insets/insetexternal.h"
49 #include "insets/insetgraphics.h"
50 #include "insets/insetfoot.h"
51 #include "insets/insetmarginal.h"
52 #include "insets/insetminipage.h"
53 #include "insets/insetfloat.h"
54 #include "insets/insettabular.h"
55 #if 0
56 #include "insets/insettheorem.h"
57 #include "insets/insetlist.h"
58 #endif
59 #include "insets/insetcaption.h"
60 #include "insets/insetfloatlist.h"
61 #include "insets/insetspecialchar.h"
62
63 #include "mathed/formulabase.h"
64
65 #include "support/LAssert.h"
66 #include "support/lstrings.h"
67 #include "support/filetools.h"
68 #include "support/lyxfunctional.h"
69
70 #include <ctime>
71 #include <unistd.h>
72 #include <sys/wait.h>
73 #include <clocale>
74
75
76 extern string current_layout;
77
78 using std::vector;
79 using std::find_if;
80 using std::find;
81 using std::pair;
82 using std::endl;
83 using std::make_pair;
84 using std::min;
85 using SigC::slot;
86
87 using lyx::pos_type;
88 using lyx::textclass_type;
89
90 /* the selection possible is needed, that only motion events are 
91  * used, where the bottom press event was on the drawing area too */
92 bool selection_possible = false;
93
94 extern BufferList bufferlist;
95 extern char ascii_type;
96
97 extern int bibitemMaxWidth(BufferView *, LyXFont const &);
98
99
100 namespace {
101
102 const unsigned int saved_positions_num = 20;
103
104 inline
105 void waitForX()
106 {
107         XSync(fl_get_display(), 0);
108 }
109
110
111 void SetXtermCursor(Window win)
112 {
113         static Cursor cursor;
114         static bool cursor_undefined = true;
115         if (cursor_undefined) {
116                 cursor = XCreateFontCursor(fl_get_display(), XC_xterm);
117                 XFlush(fl_get_display());
118                 cursor_undefined = false;
119         }
120         XDefineCursor(fl_get_display(), win, cursor);
121         XFlush(fl_get_display());
122 }
123
124 } // anon namespace
125
126
127 BufferView::Pimpl::Pimpl(BufferView * b, LyXView * o,
128              int xpos, int ypos, int width, int height)
129         : bv_(b), owner_(o), buffer_(0),
130           current_scrollbar_value(0), cursor_timeout(400),
131           workarea_(xpos, ypos, width, height), using_xterm_cursor(false),
132           inset_slept(false)
133 {
134         // Setup the signals
135         workarea_.scrollCB.connect(slot(this, &BufferView::Pimpl::scrollCB));
136         workarea_.workAreaExpose
137                 .connect(slot(this, &BufferView::Pimpl::workAreaExpose));
138         workarea_.workAreaEnter
139                 .connect(slot(this, &BufferView::Pimpl::enterView));
140         workarea_.workAreaLeave
141                 .connect(slot(this, &BufferView::Pimpl::leaveView));
142         workarea_.workAreaButtonPress
143                 .connect(slot(this, &BufferView::Pimpl::workAreaButtonPress));
144         workarea_.workAreaButtonRelease
145                 .connect(slot(this,
146                               &BufferView::Pimpl::workAreaButtonRelease));
147         workarea_.workAreaMotionNotify
148                 .connect(slot(this, &BufferView::Pimpl::workAreaMotionNotify));
149         workarea_.workAreaDoubleClick
150                 .connect(slot(this, &BufferView::Pimpl::doubleClick));
151         workarea_.workAreaTripleClick
152                 .connect(slot(this, &BufferView::Pimpl::tripleClick));
153         workarea_.workAreaKeyPress
154                 .connect(slot(this, &BufferView::Pimpl::workAreaKeyPress));
155         workarea_.selectionRequested
156                 .connect(slot(this, &BufferView::Pimpl::selectionRequested)); 
157         workarea_.selectionLost
158                 .connect(slot(this, &BufferView::Pimpl::selectionLost));
159         
160         cursor_timeout.timeout.connect(slot(this,
161                                             &BufferView::Pimpl::cursorToggle));
162         cursor_timeout.start();
163         workarea_.setFocus();
164         saved_positions.resize(saved_positions_num);
165 }
166
167
168 Painter & BufferView::Pimpl::painter() 
169 {
170         return workarea_.getPainter();
171 }
172
173
174 void BufferView::Pimpl::buffer(Buffer * b)
175 {
176         lyxerr[Debug::INFO] << "Setting buffer in BufferView ("
177                             << b << ")" << endl;
178         if (buffer_) {
179                 insetSleep();
180                 buffer_->delUser(bv_);
181
182                 // Put the old text into the TextCache, but
183                 // only if the buffer is still loaded.
184                 // Also set the owner of the test to 0
185                 //              bv_->text->owner(0);
186                 textcache.add(buffer_, workarea_.workWidth(), bv_->text);
187                 if (lyxerr.debugging())
188                         textcache.show(lyxerr, "BufferView::buffer");
189                 
190                 bv_->text = 0;
191         }
192
193         // Set current buffer
194         buffer_ = b;
195
196         if (bufferlist.getState() == BufferList::CLOSING) return;
197         
198         // Nuke old image
199         // screen is always deleted when the buffer is changed.
200         screen_.reset(0);
201
202         // If we are closing the buffer, use the first buffer as current
203         if (!buffer_) {
204                 buffer_ = bufferlist.first();
205         }
206
207         if (buffer_) {
208                 lyxerr[Debug::INFO] << "Buffer addr: " << buffer_ << endl;
209                 buffer_->addUser(bv_);
210                 // If we don't have a text object for this, we make one
211                 if (bv_->text == 0) {
212                         resizeCurrentBuffer();
213                 } else {
214                         updateScreen();
215                         updateScrollbar();
216                 }
217                 bv_->text->first_y = screen_->topCursorVisible(bv_->text);
218                 owner_->updateMenubar();
219                 owner_->updateToolbar();
220                 // Similarly, buffer-dependent dialogs should be updated or
221                 // hidden. This should go here because some dialogs (eg ToC)
222                 // require bv_->text.
223                 owner_->getDialogs()->updateBufferDependent(true);
224                 redraw();
225                 insetWakeup();
226         } else {
227                 lyxerr[Debug::INFO] << "  No Buffer!" << endl;
228                 owner_->updateMenubar();
229                 owner_->updateToolbar();
230                 owner_->getDialogs()->hideBufferDependent();
231                 updateScrollbar();
232                 workarea_.redraw();
233
234                 // Also remove all remaining text's from the testcache.
235                 // (there should not be any!) (if there is any it is a
236                 // bug!)
237                 if (lyxerr.debugging())
238                         textcache.show(lyxerr, "buffer delete all");
239                 textcache.clear();
240         }
241         // should update layoutchoice even if we don't have a buffer.
242         owner_->updateLayoutChoice();
243
244         owner_->updateWindowTitle();
245 }
246
247
248 void BufferView::Pimpl::resize(int xpos, int ypos, int width, int height)
249 {
250         workarea_.resize(xpos, ypos, width, height);
251         update(bv_->text, SELECT);
252         redraw();
253 }
254
255
256 void BufferView::Pimpl::resize()
257 {
258         if (buffer_)
259                 resizeCurrentBuffer();
260 }
261
262
263 void BufferView::Pimpl::redraw()
264 {
265         lyxerr[Debug::INFO] << "BufferView::redraw()" << endl;
266         workarea_.redraw();
267 }
268
269
270 bool BufferView::Pimpl::fitCursor()
271 {
272         lyx::Assert(screen_.get());
273
274         bool ret;
275
276         if (bv_->theLockingInset()) {
277                 bv_->theLockingInset()->fitInsetCursor(bv_);
278                 ret = true;
279         } else {
280                 ret = screen_->fitCursor(bv_->text, bv_);
281         }
282
283         bv_->owner()->getDialogs()->updateParagraph();
284         if (ret)
285             updateScrollbar();
286         return ret;
287 }
288
289
290 void BufferView::Pimpl::redoCurrentBuffer()
291 {
292         lyxerr[Debug::INFO] << "BufferView::redoCurrentBuffer" << endl;
293         if (buffer_ && bv_->text) {
294                 resize();
295                 owner_->updateLayoutChoice();
296         }
297 }
298
299
300 int BufferView::Pimpl::resizeCurrentBuffer()
301 {
302         lyxerr[Debug::INFO] << "resizeCurrentBuffer" << endl;
303         
304         Paragraph * par = 0;
305         Paragraph * selstartpar = 0;
306         Paragraph * selendpar = 0;
307         UpdatableInset * the_locking_inset = 0;
308         
309         pos_type pos = 0;
310         pos_type selstartpos = 0;
311         pos_type selendpos = 0;
312         bool selection = false;
313         bool mark_set  = false;
314
315         owner_->prohibitInput();
316
317         owner_->message(_("Formatting document..."));
318
319         if (bv_->text) {
320                 par = bv_->text->cursor.par();
321                 pos = bv_->text->cursor.pos();
322                 selstartpar = bv_->text->selection.start.par();
323                 selstartpos = bv_->text->selection.start.pos();
324                 selendpar = bv_->text->selection.end.par();
325                 selendpos = bv_->text->selection.end.pos();
326                 selection = bv_->text->selection.set();
327                 mark_set = bv_->text->selection.mark();
328                 the_locking_inset = bv_->theLockingInset();
329                 delete bv_->text;
330                 bv_->text = new LyXText(bv_);
331                 bv_->text->init(bv_);
332         } else {
333                 // See if we have a text in TextCache that fits
334                 // the new buffer_ with the correct width.
335                 bv_->text = textcache.findFit(buffer_, workarea_.workWidth());
336                 if (bv_->text) {
337                         if (lyxerr.debugging()) {
338                                 lyxerr << "Found a LyXText that fits:\n";
339                                 textcache.show(lyxerr, make_pair(buffer_, make_pair(workarea_.workWidth(), bv_->text)));
340                         }
341                         // Set the owner of the newly found text
342                         //      bv_->text->owner(bv_);
343                         if (lyxerr.debugging())
344                                 textcache.show(lyxerr, "resizeCurrentBuffer");
345                 } else {
346                         bv_->text = new LyXText(bv_);
347                         bv_->text->init(bv_);
348                 }
349         }
350         updateScreen();
351
352         if (par) {
353                 bv_->text->selection.set(true);
354                 /* at this point just to avoid the Delete-Empty-Paragraph
355                  * Mechanism when setting the cursor */
356                 bv_->text->selection.mark(mark_set);
357                 if (selection) {
358                         bv_->text->setCursor(bv_, selstartpar, selstartpos);
359                         bv_->text->selection.cursor = bv_->text->cursor;
360                         bv_->text->setCursor(bv_, selendpar, selendpos);
361                         bv_->text->setSelection(bv_);
362                         bv_->text->setCursor(bv_, par, pos);
363                 } else {
364                         bv_->text->setCursor(bv_, par, pos);
365                         bv_->text->selection.cursor = bv_->text->cursor;
366                         bv_->text->selection.set(false);
367                 }
368                 // remake the inset locking
369                 bv_->theLockingInset(the_locking_inset);
370         }
371         bv_->text->first_y = screen_->topCursorVisible(bv_->text);
372         // please tell me WHY the heck you deactivated this code, whoever
373         // 'you' are (Jug 20020311)
374 #if 1
375         buffer_->resizeInsets(bv_);
376 #endif
377         // this will scroll the screen such that the cursor becomes visible
378         updateScrollbar();
379         redraw();
380
381         setState();
382         owner_->allowInput();
383
384         /// clear the "Formatting Document" message 
385         owner_->message("");
386
387         return 0;
388 }
389
390
391 void BufferView::Pimpl::updateScreen()
392 {
393         // Regenerate the screen.
394         screen_.reset(new LyXScreen(workarea_));
395 }
396
397
398 void BufferView::Pimpl::updateScrollbar()
399 {
400         /* If the text is smaller than the working area, the scrollbar
401          * maximum must be the working area height. No scrolling will 
402          * be possible */
403         if (!bv_->text) {
404                 workarea_.setScrollbar(0, 1.0);
405                 return;
406         }
407
408         long const text_height = bv_->text->height;
409         long const work_height = workarea_.height();
410
411         if (text_height <= work_height) {
412                 workarea_.setScrollbarBounds(0.0, 0.0);
413                 current_scrollbar_value = bv_->text->first_y;
414                 workarea_.setScrollbar(current_scrollbar_value, 1.0);
415                 return;
416         }
417         
418         double const lineh = bv_->text->defaultHeight();
419         double const slider_size =
420                 (text_height == 0) ? 1.0 : 1.0 / double(text_height);
421         
422         static long old_text_height;
423         static double old_lineh;
424         static double old_slider_size;
425
426         if (text_height != old_text_height) {
427                 workarea_.setScrollbarBounds(0.0,
428                                              text_height - work_height);
429                 old_text_height = text_height;
430         }
431         if (lineh != old_lineh) {
432                 workarea_.setScrollbarIncrements(lineh);
433                 old_lineh = lineh;
434         }
435         if (current_scrollbar_value != bv_->text->first_y
436             || slider_size != old_slider_size) {
437                 current_scrollbar_value = bv_->text->first_y;
438                 workarea_.setScrollbar(current_scrollbar_value, slider_size);
439                 old_slider_size = slider_size;
440         }
441 }
442
443
444 // Callback for scrollbar slider
445 void BufferView::Pimpl::scrollCB(double value)
446 {
447         if (!buffer_) return;
448
449         current_scrollbar_value = long(value);
450
451         if (current_scrollbar_value < 0)
452                 current_scrollbar_value = 0;
453    
454         if (!screen_.get())
455                 return;
456
457         screen_->draw(bv_->text, bv_, current_scrollbar_value);
458
459         if (!lyxrc.cursor_follows_scrollbar) {
460                 waitForX();
461                 return;
462         }
463  
464         LyXText * vbt = bv_->text;
465  
466         int const height = vbt->defaultHeight();
467         int const first = static_cast<int>((bv_->text->first_y + height));
468         int const last = static_cast<int>((bv_->text->first_y + workarea_.height() - height));
469
470         if (vbt->cursor.y() < first)
471                 vbt->setCursorFromCoordinates(bv_, 0, first);
472         else if (vbt->cursor.y() > last)
473                 vbt->setCursorFromCoordinates(bv_, 0, last);
474
475         waitForX();
476 }
477
478
479 int BufferView::Pimpl::scrollUp(long time)
480 {
481         if (!buffer_) return 0;
482         if (!screen_.get()) return 0;
483    
484         double value = workarea_.getScrollbarValue();
485    
486         if (value == 0) return 0;
487
488         float add_value =  (bv_->text->defaultHeight()
489                             + float(time) * float(time) * 0.125);
490    
491         if (add_value > workarea_.height())
492                 add_value = float(workarea_.height() -
493                                   bv_->text->defaultHeight());
494    
495         value -= add_value;
496
497         if (value < 0)
498                 value = 0;
499    
500         workarea_.setScrollbarValue(value);
501    
502         scrollCB(value); 
503         return 0;
504 }
505
506
507 int BufferView::Pimpl::scrollDown(long time)
508 {
509         if (!buffer_) return 0;
510         if (!screen_.get()) return 0;
511    
512         double value = workarea_.getScrollbarValue();
513         pair<float, float> p = workarea_.getScrollbarBounds();
514         double const max = p.second;
515         
516         if (value == max) return 0;
517
518         float add_value =  (bv_->text->defaultHeight()
519                             + float(time) * float(time) * 0.125);
520    
521         if (add_value > workarea_.height())
522                 add_value = float(workarea_.height() -
523                                   bv_->text->defaultHeight());
524    
525         value += add_value;
526    
527         if (value > max)
528                 value = max;
529
530         workarea_.setScrollbarValue(value);
531         
532         scrollCB(value); 
533         return 0;
534 }
535
536
537 void BufferView::Pimpl::workAreaKeyPress(KeySym keysym, unsigned int state)
538 {
539         bv_->owner()->getLyXFunc()->processKeySym(keysym, state);
540 }
541
542
543 void BufferView::Pimpl::workAreaMotionNotify(int x, int y, unsigned int state)
544 {
545         // Only use motion with button 1
546         if (!(state & Button1MotionMask))
547                 return;
548
549         if (!buffer_ || !screen_.get()) return;
550
551         // Check for inset locking
552         if (bv_->theLockingInset()) {
553                 LyXCursor cursor = bv_->text->cursor;
554                 LyXFont font = bv_->text->getFont(buffer_,
555                                                   cursor.par(), cursor.pos());
556                 int width = bv_->theLockingInset()->width(bv_, font);
557                 int inset_x = font.isVisibleRightToLeft()
558                         ? cursor.x() - width : cursor.x();
559                 int start_x = inset_x + bv_->theLockingInset()->scroll();
560                 bv_->theLockingInset()->
561                         insetMotionNotify(bv_,
562                                           x - start_x,
563                                           y - cursor.y() + bv_->text->first_y,
564                                           state);
565                 return;
566         }
567    
568         /* The test for not selection possible is needed, that only motion
569            events are used, where the bottom press event was on
570            the drawing area too */
571         if (!selection_possible)
572                 return;
573  
574         screen_->hideCursor();
575
576         bv_->text->setCursorFromCoordinates(bv_, x, y + bv_->text->first_y);
577       
578         if (!bv_->text->selection.set())
579                 update(bv_->text, BufferView::UPDATE); // Maybe an empty line was deleted
580       
581         bv_->text->setSelection(bv_);
582         screen_->toggleToggle(bv_->text, bv_);
583         fitCursor();
584         showCursor();
585 }
586
587
588 // Single-click on work area
589 void BufferView::Pimpl::workAreaButtonPress(int xpos, int ypos,
590                                             unsigned int button)
591 {
592         if (!buffer_ || !screen_.get()) return;
593
594         Inset * inset_hit = checkInsetHit(bv_->text, xpos, ypos);
595
596         // ok ok, this is a hack.
597         if (button == 4 || button == 5) {
598                 switch (button) {
599                 case 4:
600                         scrollUp(lyxrc.wheel_jump); // default 100, set in lyxrc
601                         break;
602                 case 5:
603                         scrollDown(lyxrc.wheel_jump);
604                         break;
605                 }
606         }
607         
608         if (bv_->theLockingInset()) {
609                 // We are in inset locking mode
610                 
611                 /* Check whether the inset was hit. If not reset mode,
612                    otherwise give the event to the inset */
613                 if (inset_hit == bv_->theLockingInset()) {
614                         bv_->theLockingInset()->
615                                 insetButtonPress(bv_,xpos, ypos,button);
616                         return;
617                 } else {
618                         bv_->unlockInset(bv_->theLockingInset());
619                 }
620         }
621         
622         if (!inset_hit)
623                 selection_possible = true;
624         screen_->hideCursor();
625
626         int const screen_first = bv_->text->first_y;
627         
628         // Middle button press pastes if we have a selection
629         bool paste_internally = false;
630         if (button == 2
631             && bv_->text->selection.set()) {
632                 owner_->getLyXFunc()->dispatch(LFUN_COPY);
633                 paste_internally = true;
634         }
635         
636         // Clear the selection
637         screen_->toggleSelection(bv_->text, bv_);
638         bv_->text->clearSelection();
639         bv_->text->fullRebreak(bv_);
640         update();
641         updateScrollbar();
642         
643         // Single left click in math inset?
644         if (isHighlyEditableInset(inset_hit)) {
645                 // Highly editable inset, like math
646                 UpdatableInset * inset = static_cast<UpdatableInset *>(inset_hit);
647                 selection_possible = false;
648                 owner_->updateLayoutChoice();
649                 owner_->message(inset->editMessage());
650                 // IMO the inset has to be first in edit-mode and then we send the
651                 // button press. (Jug 20020222)
652                 inset->edit(bv_); //, xpos, ypos, button);
653                 inset->insetButtonPress(bv_, xpos, ypos, button);
654                 return;
655         } 
656         
657         // Right click on a footnote flag opens float menu
658         if (button == 3) { 
659                 selection_possible = false;
660                 return;
661         }
662         
663         if (!inset_hit) // otherwise it was already set in checkInsetHit(...)
664                 bv_->text->setCursorFromCoordinates(bv_, xpos, ypos + screen_first);
665         finishUndo();
666         bv_->text->selection.cursor = bv_->text->cursor;
667         bv_->text->cursor.x_fix(bv_->text->cursor.x());
668         
669         owner_->updateLayoutChoice();
670         if (fitCursor()) {
671                 selection_possible = false;
672         }
673         
674         // Insert primary selection with middle mouse
675         // if there is a local selection in the current buffer,
676         // insert this
677         if (button == 2) {
678                 if (paste_internally)
679                         owner_->getLyXFunc()->dispatch(LFUN_PASTE);
680                 else
681                         owner_->getLyXFunc()->dispatch(LFUN_PASTESELECTION,
682                                                        "paragraph");
683                 selection_possible = false;
684                 return;
685         }
686 }
687
688
689 void BufferView::Pimpl::doubleClick(int /*x*/, int /*y*/, unsigned int button) 
690 {
691         // select a word
692         if (!buffer_)
693                 return;
694
695         LyXText * text = bv_->getLyXText();
696
697         if (text->bv_owner && bv_->theLockingInset())
698                 return;
699
700         if (screen_.get() && button == 1) {
701                 if (text->bv_owner) {
702                         screen_->hideCursor();
703                         screen_->toggleSelection(text, bv_);
704                         text->selectWord(bv_, LyXText::WHOLE_WORD_STRICT);
705                         screen_->toggleSelection(text, bv_, false);
706                 } else {
707                         text->selectWord(bv_, LyXText::WHOLE_WORD_STRICT);
708                 }
709                 /* This will fit the cursor on the screen
710                  * if necessary */
711                 update(text, BufferView::SELECT|BufferView::FITCUR);
712         }
713 }
714
715
716 void BufferView::Pimpl::tripleClick(int /*x*/, int /*y*/, unsigned int button)
717 {
718         // select a line
719         if (!buffer_)
720                 return;
721
722         LyXText * text = bv_->getLyXText();
723
724         if (text->bv_owner && bv_->theLockingInset())
725             return;
726
727         if (screen_.get() && (button == 1)) {
728                 if (text->bv_owner) {
729                         screen_->hideCursor();
730                         screen_->toggleSelection(text, bv_);
731                 }
732                 text->cursorHome(bv_);
733                 text->selection.cursor = text->cursor;
734                 text->cursorEnd(bv_);
735                 text->setSelection(bv_);
736                 if (text->bv_owner) {
737                         screen_->toggleSelection(text, bv_, false);
738                 }
739                 /* This will fit the cursor on the screen
740                  * if necessary */
741                 update(text, BufferView::SELECT|BufferView::FITCUR);
742         }
743 }
744
745
746 void BufferView::Pimpl::selectionRequested()
747 {
748         if (!available())
749                 return;
750  
751         string const sel(bv_->getLyXText()->selectionAsString(bv_->buffer(),
752                                                               false)); 
753         if (!sel.empty()) {
754                 workarea_.putClipboard(sel);
755         }
756 }
757
758  
759 void BufferView::Pimpl::selectionLost()
760 {
761         if (active() && available()) { 
762                 hideCursor();
763                 toggleSelection();
764                 bv_->getLyXText()->clearSelection();
765                 showCursor(); 
766         }
767 }
768
769  
770 void BufferView::Pimpl::enterView()
771 {
772         if (active() && available()) {
773                 SetXtermCursor(workarea_.getWin());
774                 using_xterm_cursor = true;
775         }
776 }
777
778
779 void BufferView::Pimpl::leaveView()
780 {
781         if (using_xterm_cursor) {
782                 XUndefineCursor(fl_get_display(), workarea_.getWin());
783                 using_xterm_cursor = false;
784         }
785 }
786
787
788 void BufferView::Pimpl::workAreaButtonRelease(int x, int y,
789                                               unsigned int button)
790 {
791         if (!buffer_ || !screen_.get()) return;
792
793         // If we hit an inset, we have the inset coordinates in these
794         // and inset_hit points to the inset.  If we do not hit an
795         // inset, inset_hit is 0, and inset_x == x, inset_y == y.
796         Inset * inset_hit = checkInsetHit(bv_->text, x, y);
797
798         if (bv_->theLockingInset()) {
799                 // We are in inset locking mode.
800
801                 /* LyX does a kind of work-area grabbing for insets.
802                    Only a ButtonPress Event outside the inset will 
803                    force a insetUnlock. */
804                 bv_->theLockingInset()->
805                         insetButtonRelease(bv_, x, y, button);
806                 return;
807         }
808         
809         selection_possible = false;
810         
811         if (button == 2)
812                 return;
813
814         // finish selection
815         if (button == 1) {
816                 workarea_.haveSelection(bv_->getLyXText()->selection.set());
817         }
818  
819         setState();
820         owner_->showState();
821         owner_->updateMenubar();
822         owner_->updateToolbar();
823
824         // Did we hit an editable inset?
825         if (inset_hit) {
826                 selection_possible = false;
827
828                 // if we reach this point with a selection, it
829                 // must mean we are currently selecting.
830                 // But we don't want to open the inset
831                 // because that is annoying for the user. 
832                 // So just pretend we didn't hit it.
833                 // this is OK because a "kosher" ButtonRelease
834                 // will follow a ButtonPress that clears
835                 // the selection.
836                 // Note this also fixes selection drawing
837                 // problems if we end up opening an inset
838                 if (bv_->getLyXText()->selection.set())
839                         return;
840  
841                 // CHECK fix this proper in 0.13
842                 // well, maybe 13.0 !!!!!!!!!
843
844                 // Following a ref shouldn't issue
845                 // a push on the undo-stack
846                 // anylonger, now that we have
847                 // keybindings for following
848                 // references and returning from
849                 // references.  IMHO though, it
850                 // should be the inset's own business
851                 // to push or not push on the undo
852                 // stack. They don't *have* to
853                 // alter the document...
854                 // (Joacim)
855                 // ...or maybe the SetCursorParUndo()
856                 // below isn't necessary at all anylonger?
857                 if (inset_hit->lyxCode() == Inset::REF_CODE) {
858                         setCursorParUndo(bv_);
859                 }
860
861                 owner_->message(inset_hit->editMessage());
862
863                 if (isHighlyEditableInset(inset_hit)) {
864                         // Highly editable inset, like math
865                         UpdatableInset *inset = (UpdatableInset *)inset_hit;
866                         inset->insetButtonRelease(bv_, x, y, button);
867                 } else {
868                         inset_hit->insetButtonRelease(bv_, x, y, button);
869                         inset_hit->edit(bv_, x, y, button);
870                 }
871                 return;
872         }
873
874         // Maybe we want to edit a bibitem ale970302
875         if (bv_->text->cursor.par()->bibkey && x < 20 + 
876             bibitemMaxWidth(bv_, textclasslist[buffer_->params.textclass].defaultfont())) {
877                 bv_->text->cursor.par()->bibkey->edit(bv_, 0, 0, 0);
878         }
879
880         return;
881 }
882
883
884 Box BufferView::Pimpl::insetDimensions(LyXText const & text,
885                                        LyXCursor const & cursor) const
886 {
887         Paragraph /*const*/ & par = *cursor.par();
888         pos_type const pos = cursor.pos();
889
890         lyx::Assert(par.getInset(pos));
891  
892         Inset const & inset(*par.getInset(pos));
893
894         LyXFont const & font = text.getFont(buffer_, &par, pos);
895  
896         int const width = inset.width(bv_, font);
897         int const inset_x = font.isVisibleRightToLeft()
898                 ? (cursor.x() - width) : cursor.x();
899  
900         return Box(
901                 inset_x + inset.scroll(),
902                 inset_x + width,
903                 cursor.y() - inset.ascent(bv_, font),
904                 cursor.y() + inset.descent(bv_, font));
905 }
906  
907  
908 Inset * BufferView::Pimpl::checkInset(LyXText const & text,
909                                       LyXCursor const & cursor,
910                                       int & x, int & y) const
911 {
912         pos_type const pos(cursor.pos());
913         Paragraph /*const*/ & par(*cursor.par());
914
915         if (pos >= par.size() || !par.isInset(pos)) {
916                 return 0;
917         }
918
919         Inset /*const*/ * inset = par.getInset(pos);
920  
921         if (!isEditableInset(inset)) {
922                 return 0;
923         }
924
925         Box b(insetDimensions(text, cursor));
926
927         if (!b.contained(x, y)) {
928                 lyxerr[Debug::GUI] << "Missed inset at x,y " << x << "," << y 
929                         << " box " << b << endl;
930                 return 0;
931         }
932  
933         text.setCursor(bv_, &par, pos, true);
934  
935         x -= b.x1;
936         // The origin of an inset is on the baseline
937         y -= (text.cursor.y());
938   
939         return inset;
940 }
941
942  
943 Inset * BufferView::Pimpl::checkInsetHit(LyXText * text, int & x, int & y)
944 {
945         if (!screen_.get())
946                 return 0;
947   
948         int y_tmp = y + text->first_y;
949  
950         LyXCursor cursor;
951         text->setCursorFromCoordinates(bv_, cursor, x, y_tmp);
952  
953         Inset * inset(checkInset(*text, cursor, x, y_tmp));
954
955         if (inset) {
956                 y = y_tmp;
957                 return inset;
958         }
959  
960         // look at previous position
961  
962         if (cursor.pos() == 0) {
963                 return 0;
964         }
965
966         // move back one
967         text->setCursor(bv_, cursor, cursor.par(), cursor.pos() - 1, true);
968
969         inset = checkInset(*text, cursor, x, y_tmp);
970         if (inset) {
971                 y = y_tmp;
972         }
973         return inset;
974 }
975
976
977 void BufferView::Pimpl::workAreaExpose()
978 {
979         static int work_area_width;
980         static unsigned int work_area_height;
981
982         bool const widthChange = workarea_.workWidth() != work_area_width;
983         bool const heightChange = workarea_.height() != work_area_height;
984
985         // update from work area
986         work_area_width = workarea_.workWidth();
987         work_area_height = workarea_.height();
988         if (buffer_ != 0) {
989                 if (widthChange) {
990                         // The visible LyXView need a resize
991                         owner_->resize();
992
993                         // Remove all texts from the textcache
994                         // This is not _really_ what we want to do. What
995                         // we really want to do is to delete in textcache
996                         // that does not have a BufferView with matching
997                         // width, but as long as we have only one BufferView
998                         // deleting all gives the same result.
999                         if (lyxerr.debugging())
1000                                 textcache.show(lyxerr, "Expose delete all");
1001                         textcache.clear();
1002                 } else if (heightChange) {
1003                         // Rebuild image of current screen
1004                         updateScreen();
1005                         // fitCursor() ensures we don't jump back
1006                         // to the start of the document on vertical
1007                         // resize
1008                         fitCursor();
1009
1010                         // The main window size has changed, repaint most stuff
1011                         redraw();
1012                 } else if (screen_.get())
1013                     screen_->redraw(bv_->text, bv_);
1014         } else {
1015                 // Grey box when we don't have a buffer
1016                 workarea_.greyOut();
1017         }
1018
1019         // always make sure that the scrollbar is sane.
1020         updateScrollbar();
1021         owner_->updateLayoutChoice();
1022         return;
1023 }
1024
1025
1026 void BufferView::Pimpl::update()
1027 {
1028         if (screen_.get() &&
1029                 (!bv_->theLockingInset() || !bv_->theLockingInset()->nodraw()))
1030         {
1031                 LyXText::text_status st = bv_->text->status();
1032                 screen_->update(bv_->text, bv_);
1033                 bool fitc = false;
1034                 while (bv_->text->status() == LyXText::CHANGED_IN_DRAW) {
1035                         if (bv_->text->fullRebreak(bv_)) {
1036                                 st = LyXText::NEED_MORE_REFRESH;
1037                                 bv_->text->setCursor(bv_, bv_->text->cursor.par(),
1038                                                                          bv_->text->cursor.pos());
1039                                 fitc = true;
1040                         }
1041                         bv_->text->status(bv_, st);
1042                         screen_->update(bv_->text, bv_);
1043                 }
1044                 // do this here instead of in the screen::update because of
1045                 // the above loop!
1046                 bv_->text->status(bv_, LyXText::UNCHANGED);
1047                 if (fitc)
1048                         fitCursor();
1049         }
1050 }
1051
1052 // Values used when calling update:
1053 // -3 - update
1054 // -2 - update, move sel_cursor if selection, fitcursor
1055 // -1 - update, move sel_cursor if selection, fitcursor, mark dirty
1056 //  0 - update, move sel_cursor if selection, fitcursor 
1057 //  1 - update, move sel_cursor if selection, fitcursor, mark dirty
1058 //  3 - update, move sel_cursor if selection
1059 //
1060 // update -
1061 // a simple redraw of the parts that need refresh
1062 //
1063 // move sel_cursor if selection -
1064 // the text's sel_cursor is moved if there is selection is progress
1065 //
1066 // fitcursor -
1067 // fitCursor() is called and the scrollbar updated
1068 //
1069 // mark dirty -
1070 // the buffer is marked dirty.
1071 //
1072 // enum {
1073 //       UPDATE = 0,
1074 //       SELECT = 1,
1075 //       FITCUR = 2,
1076 //       CHANGE = 4 
1077 // };
1078 //
1079 // UPDATE_ONLY = UPDATE;
1080 // UPDATE_SELECT = UPDATE | SELECT;
1081 // UPDATE_SELECT_MOVE = UPDATE | SELECT | FITCUR;
1082 // UPDATE_SELECT_MOVE_AFTER_CHANGE = UPDATE | SELECT | FITCUR | CHANGE;
1083 //
1084 // update(-3) -> update(0)         -> update(0) -> update(UPDATE)
1085 // update(-2) -> update(1 + 2)     -> update(3) -> update(SELECT|FITCUR)
1086 // update(-1) -> update(1 + 2 + 4) -> update(7) -> update(SELECT|FITCUR|CHANGE)
1087 // update(1)  -> update(1 + 2 + 4) -> update(7) -> update(SELECT|FITCUR|CHANGE)
1088 // update(3)  -> update(1)         -> update(1) -> update(SELECT)
1089
1090 void BufferView::Pimpl::update(LyXText * text, BufferView::UpdateCodes f)
1091 {
1092         owner_->updateLayoutChoice();
1093
1094         if (!text->selection.set() && (f & SELECT)) {
1095                 text->selection.cursor = text->cursor;
1096         }
1097
1098         text->fullRebreak(bv_);
1099
1100         if (text->inset_owner) {
1101                 text->inset_owner->setUpdateStatus(bv_, InsetText::NONE);
1102             updateInset(text->inset_owner, false);
1103         } else {
1104             update();
1105         }
1106                 
1107         if ((f & FITCUR)) {
1108                 fitCursor();
1109         }
1110
1111         if ((f & CHANGE)) {
1112                 buffer_->markDirty();
1113         }
1114 }
1115
1116
1117 // Callback for cursor timer
1118 void BufferView::Pimpl::cursorToggle()
1119 {
1120         if (!buffer_) {
1121                 cursor_timeout.restart();
1122                 return;
1123         }
1124  
1125         if (!screen_.get()) {
1126                 cursor_timeout.restart();
1127                 return;
1128         }
1129
1130         /* FIXME */
1131         extern void reapSpellchecker(void);
1132         reapSpellchecker();
1133          
1134         if (!bv_->theLockingInset()) {
1135                 screen_->cursorToggle(bv_);
1136         } else {
1137                 bv_->theLockingInset()->toggleInsetCursor(bv_);
1138         }
1139         
1140         cursor_timeout.restart();
1141 }
1142
1143
1144 void BufferView::Pimpl::cursorPrevious(LyXText * text)
1145 {
1146         if (!text->cursor.row()->previous())
1147                 return;
1148         
1149         int y = text->first_y;
1150         Row * cursorrow = text->cursor.row();
1151         
1152         text->setCursorFromCoordinates(bv_, bv_->text->cursor.x_fix(), y);
1153         finishUndo();
1154         // This is to allow jumping over large insets
1155         if ((cursorrow == text->cursor.row()))
1156                 text->cursorUp(bv_);
1157         
1158         if (text->inset_owner ||
1159             text->cursor.row()->height() < workarea_.height())
1160                 screen_->draw(bv_->text, bv_,
1161                               text->cursor.y()
1162                               - text->cursor.row()->baseline()
1163                               + text->cursor.row()->height()
1164                               - workarea_.height() + 1);
1165         updateScrollbar();
1166 }
1167
1168
1169 void BufferView::Pimpl::cursorNext(LyXText * text)
1170 {
1171         if (!text->cursor.row()->next())
1172                 return;
1173         
1174         int y = text->first_y + workarea_.height();
1175 //      if (text->inset_owner)
1176 //              y += bv_->text->first;
1177         text->getRowNearY(y);
1178     
1179         Row * cursorrow = text->cursor.row();
1180         text->setCursorFromCoordinates(bv_, text->cursor.x_fix(), y); // + workarea_->height());
1181         finishUndo();
1182         // This is to allow jumping over large insets
1183         if ((cursorrow == bv_->text->cursor.row()))
1184                 text->cursorDown(bv_);
1185         
1186         if (text->inset_owner ||
1187             text->cursor.row()->height() < workarea_.height())
1188                 screen_->draw(bv_->text, bv_, text->cursor.y() -
1189                               text->cursor.row()->baseline());
1190         updateScrollbar();
1191 }
1192
1193
1194 bool BufferView::Pimpl::available() const
1195 {
1196         if (buffer_ && bv_->text)
1197                 return true;
1198         return false;
1199 }
1200
1201
1202 void BufferView::Pimpl::beforeChange(LyXText * text)
1203 {
1204         toggleSelection();
1205         text->clearSelection();
1206 }
1207
1208
1209 void BufferView::Pimpl::savePosition(unsigned int i)
1210 {
1211         if (i >= saved_positions_num)
1212                 return;
1213         saved_positions[i] = Position(buffer_->fileName(),
1214                                       bv_->text->cursor.par()->id(),
1215                                       bv_->text->cursor.pos());
1216         if (i > 0) {
1217                 ostringstream str;
1218                 str << _("Saved bookmark") << ' ' << i;
1219                 owner_->message(str.str().c_str());
1220         }
1221 }
1222
1223
1224 void BufferView::Pimpl::restorePosition(unsigned int i)
1225 {
1226         if (i >= saved_positions_num)
1227                 return;
1228
1229         string const fname = saved_positions[i].filename;
1230
1231         beforeChange(bv_->text);
1232
1233         if (fname != buffer_->fileName()) {
1234                 Buffer * b = bufferlist.exists(fname) ?
1235                         bufferlist.getBuffer(fname) :
1236                         bufferlist.loadLyXFile(fname); // don't ask, just load it
1237                 if (b != 0) buffer(b);
1238         }
1239
1240         Paragraph * par = buffer_->getParFromID(saved_positions[i].par_id);
1241         if (!par)
1242                 return;
1243
1244         bv_->text->setCursor(bv_, par,
1245                              min(par->size(), saved_positions[i].par_pos));
1246
1247         update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
1248         if (i > 0) {
1249                 ostringstream str;
1250                 str << _("Moved to bookmark") << ' ' << i;
1251                 owner_->message(str.str().c_str());
1252         }
1253 }
1254
1255
1256 bool BufferView::Pimpl::isSavedPosition(unsigned int i)
1257 {
1258         if (i >= saved_positions_num)
1259                 return false;
1260
1261         return !saved_positions[i].filename.empty();
1262 }
1263
1264
1265 void BufferView::Pimpl::setState()
1266 {
1267         if (!lyxrc.rtl_support)
1268                 return;
1269
1270         LyXText * text = bv_->getLyXText();
1271         if (text->real_current_font.isRightToLeft()) {
1272                 if (owner_->getIntl()->keymap == Intl::PRIMARY)
1273                         owner_->getIntl()->KeyMapSec();
1274         } else {
1275                 if (owner_->getIntl()->keymap == Intl::SECONDARY)
1276                         owner_->getIntl()->KeyMapPrim();
1277         }
1278 }
1279
1280
1281 void BufferView::Pimpl::insetSleep()
1282 {
1283         if (bv_->theLockingInset() && !inset_slept) {
1284                 bv_->theLockingInset()->getCursorPos(bv_, bv_->slx, bv_->sly);
1285                 bv_->theLockingInset()->insetUnlock(bv_);
1286                 inset_slept = true;
1287         }
1288 }
1289
1290
1291 void BufferView::Pimpl::insetWakeup()
1292 {
1293         if (bv_->theLockingInset() && inset_slept) {
1294                 bv_->theLockingInset()->edit(bv_, bv_->slx, bv_->sly, 0);
1295                 inset_slept = false;
1296         }
1297 }
1298
1299
1300 void BufferView::Pimpl::insetUnlock()
1301 {
1302         if (bv_->theLockingInset()) {
1303                 if (!inset_slept)
1304                         bv_->theLockingInset()->insetUnlock(bv_);
1305                 bv_->theLockingInset(0);
1306                 finishUndo();
1307                 inset_slept = false;
1308         }
1309 }
1310
1311
1312 bool BufferView::Pimpl::focus() const
1313 {
1314         return workarea_.hasFocus();
1315 }
1316
1317
1318 void BufferView::Pimpl::focus(bool f)
1319 {
1320         if (f) workarea_.setFocus();
1321 }
1322
1323
1324 bool BufferView::Pimpl::active() const
1325 {
1326         return workarea_.active();
1327 }
1328
1329
1330 bool BufferView::Pimpl::belowMouse() const 
1331 {
1332         return workarea_.belowMouse();
1333 }
1334
1335
1336 void BufferView::Pimpl::showCursor()
1337 {
1338         if (screen_.get()) {
1339                 if (bv_->theLockingInset())
1340                         bv_->theLockingInset()->showInsetCursor(bv_);
1341                 else
1342                         screen_->showCursor(bv_->text, bv_);
1343         }
1344 }
1345
1346
1347 void BufferView::Pimpl::hideCursor()
1348 {
1349         if (screen_.get()) {
1350                 if (!bv_->theLockingInset())
1351 //                      bv_->theLockingInset()->hideInsetCursor(bv_);
1352 //              else
1353                         screen_->hideCursor();
1354         }
1355 }
1356
1357
1358 void BufferView::Pimpl::toggleSelection(bool b)
1359 {
1360         if (screen_.get()) {
1361                 if (bv_->theLockingInset())
1362                         bv_->theLockingInset()->toggleSelection(bv_, b);
1363                 screen_->toggleSelection(bv_->text, bv_, b);
1364         }
1365 }
1366
1367
1368 void BufferView::Pimpl::toggleToggle()
1369 {
1370         if (screen_.get())
1371                 screen_->toggleToggle(bv_->text, bv_);
1372 }
1373
1374
1375 void BufferView::Pimpl::center() 
1376 {
1377         beforeChange(bv_->text);
1378         if (bv_->text->cursor.y() > static_cast<int>((workarea_.height() / 2))) {
1379                 screen_->draw(bv_->text, bv_, bv_->text->cursor.y() - workarea_.height() / 2);
1380         } else {
1381                 screen_->draw(bv_->text, bv_, 0);
1382         }
1383         update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
1384         redraw();
1385 }
1386
1387
1388 void BufferView::Pimpl::pasteClipboard(bool asPara) 
1389 {
1390         if (!buffer_) return;
1391
1392         screen_->hideCursor();
1393         beforeChange(bv_->text);
1394         
1395         string const clip(workarea_.getClipboard());
1396         
1397         if (clip.empty()) return;
1398
1399         if (asPara) {
1400                 bv_->getLyXText()->insertStringAsParagraphs(bv_, clip);
1401         } else {
1402                 bv_->getLyXText()->insertStringAsLines(bv_, clip);
1403         }
1404         update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
1405 }
1406
1407
1408 void BufferView::Pimpl::stuffClipboard(string const & stuff) const
1409 {
1410         workarea_.putClipboard(stuff);
1411 }
1412
1413
1414 /*
1415  * Dispatch functions for actions which can be valid for BufferView->text
1416  * and/or InsetText->text!!!
1417  */
1418
1419
1420 inline
1421 void BufferView::Pimpl::moveCursorUpdate(bool selecting)
1422 {
1423         LyXText * lt = bv_->getLyXText();
1424         
1425         if (selecting || lt->selection.mark()) {
1426                 lt->setSelection(bv_);
1427                 if (lt->bv_owner)
1428                         toggleToggle();
1429         }
1430         update(lt, BufferView::SELECT|BufferView::FITCUR);
1431         showCursor();
1432         
1433         /* ---> Everytime the cursor is moved, show the current font state. */
1434         // should this too me moved out of this func?
1435         //owner->showState();
1436         setState();
1437 }
1438
1439
1440 Inset * BufferView::Pimpl::getInsetByCode(Inset::Code code)
1441 {
1442         LyXCursor cursor = bv_->getLyXText()->cursor;
1443         Buffer::inset_iterator it =
1444                 find_if(Buffer::inset_iterator(
1445                         cursor.par(), cursor.pos()),
1446                         buffer_->inset_iterator_end(),
1447                         lyx::compare_memfun(&Inset::lyxCode, code));
1448         return it != buffer_->inset_iterator_end() ? (*it) : 0;
1449 }
1450
1451
1452 void BufferView::Pimpl::MenuInsertLyXFile(string const & filen)
1453 {
1454         string filename = filen;
1455
1456         if (filename.empty()) {
1457                 // Launch a file browser
1458                 string initpath = lyxrc.document_path;
1459
1460                 if (available()) {
1461                         string const trypath = owner_->buffer()->filePath();
1462                         // If directory is writeable, use this as default.
1463                         if (IsDirWriteable(trypath))
1464                                 initpath = trypath;
1465                 }
1466
1467                 FileDialog fileDlg(bv_->owner(),
1468                                    _("Select LyX document to insert"),
1469                         LFUN_FILE_INSERT,
1470                         make_pair(string(_("Documents|#o#O")),
1471                                   string(lyxrc.document_path)),
1472                         make_pair(string(_("Examples|#E#e")),
1473                                   string(AddPath(system_lyxdir, "examples"))));
1474
1475                 FileDialog::Result result =
1476                         fileDlg.Select(initpath,
1477                                        _("*.lyx| LyX Documents (*.lyx)"));
1478  
1479                 if (result.first == FileDialog::Later)
1480                         return;
1481
1482                 filename = result.second;
1483
1484                 // check selected filename
1485                 if (filename.empty()) {
1486                         owner_->message(_("Canceled."));
1487                         return;
1488                 }
1489         }
1490
1491         // get absolute path of file and add ".lyx" to the filename if
1492         // necessary
1493         filename = FileSearch(string(), filename, "lyx");
1494
1495         string const disp_fn(MakeDisplayPath(filename));
1496         
1497         ostringstream s1;
1498         s1 << _("Inserting document") << ' '
1499            << disp_fn << " ...";
1500         owner_->message(s1.str().c_str());
1501         bool const res = bv_->insertLyXFile(filename);
1502         if (res) {
1503                 ostringstream str;
1504                 str << _("Document") << ' ' << disp_fn
1505                     << ' ' << _("inserted.");
1506                 owner_->message(str.str().c_str());
1507         } else {
1508                 ostringstream str;
1509                 str << _("Could not insert document") << ' '
1510                     << disp_fn;
1511                 owner_->message(str.str().c_str());
1512         }
1513 }
1514
1515
1516 bool BufferView::Pimpl::Dispatch(kb_action action, string const & argument)
1517 {
1518         lyxerr[Debug::ACTION] << "BufferView::Pimpl::Dispatch: action["
1519                               << action <<"] arg[" << argument << "]" << endl;
1520         
1521         switch (action) {
1522                 // --- Misc -------------------------------------------
1523         case LFUN_APPENDIX:
1524         {
1525                 if (available()) {
1526                         LyXText * lt = bv_->getLyXText();
1527                         lt->toggleAppendix(bv_);
1528                         update(lt,
1529                                BufferView::SELECT
1530                                | BufferView::FITCUR
1531                                | BufferView::CHANGE);
1532                 }
1533         }
1534         break;
1535
1536         case LFUN_TOC_INSERT:
1537         {
1538                 InsetCommandParams p;
1539                 p.setCmdName("tableofcontents");
1540                 Inset * inset = new InsetTOC(p);
1541                 if (!insertInset(inset, "Standard"))
1542                         delete inset;
1543                 break;
1544         }
1545                 
1546         case LFUN_SCROLL_INSET:
1547                 // this is not handled here as this funktion is only aktive
1548                 // if we have a locking_inset and that one is (or contains)
1549                 // a tabular-inset
1550                 break;
1551
1552         case LFUN_INSET_GRAPHICS:
1553         {
1554                 Inset * new_inset = new InsetGraphics;
1555                 if (!insertInset(new_inset)) {
1556                         delete new_inset;
1557                 } else {
1558                         // this is need because you don't use a inset->Edit()
1559                         updateInset(new_inset, true);
1560                         new_inset->edit(bv_);
1561                 }
1562                 break;
1563         }
1564                 
1565         case LFUN_PASTE:
1566                 bv_->paste();
1567                 setState();
1568                 break;
1569                 
1570         case LFUN_PASTESELECTION:
1571         {
1572                 bool asPara = false;
1573                 if (argument == "paragraph")
1574                         asPara = true;
1575                 pasteClipboard(asPara);
1576         }
1577         break;
1578         
1579         case LFUN_CUT:
1580                 bv_->cut();
1581                 break;
1582                 
1583         case LFUN_COPY:
1584                 bv_->copy();
1585                 break;
1586                 
1587         case LFUN_LAYOUT_COPY:
1588                 bv_->copyEnvironment();
1589                 break;
1590                 
1591         case LFUN_LAYOUT_PASTE:
1592                 bv_->pasteEnvironment();
1593                 setState();
1594                 break;
1595                 
1596         case LFUN_GOTOERROR:
1597                 gotoInset(Inset::ERROR_CODE, false);
1598                 break;
1599                 
1600         case LFUN_GOTONOTE:
1601                 gotoInset(Inset::IGNORE_CODE, false);
1602                 break;
1603
1604         case LFUN_REFERENCE_GOTO:
1605         {
1606                 vector<Inset::Code> tmp;
1607                 tmp.push_back(Inset::LABEL_CODE);
1608                 tmp.push_back(Inset::REF_CODE);
1609                 gotoInset(tmp, true);
1610                 break;
1611         }
1612
1613         case LFUN_HYPHENATION:
1614                 specialChar(InsetSpecialChar::HYPHENATION);
1615                 break;
1616                 
1617         case LFUN_LIGATURE_BREAK:
1618                 specialChar(InsetSpecialChar::LIGATURE_BREAK);
1619                 break;
1620                 
1621         case LFUN_LDOTS:
1622                 specialChar(InsetSpecialChar::LDOTS);
1623                 break;
1624                 
1625         case LFUN_END_OF_SENTENCE:
1626                 specialChar(InsetSpecialChar::END_OF_SENTENCE);
1627                 break;
1628
1629         case LFUN_MENU_SEPARATOR:
1630                 specialChar(InsetSpecialChar::MENU_SEPARATOR);
1631                 break;
1632                 
1633         case LFUN_HFILL:
1634                 hfill();
1635                 break;
1636                 
1637         case LFUN_DEPTH:
1638                 changeDepth(bv_, bv_->getLyXText(), 0);
1639                 break;
1640                 
1641         case LFUN_DEPTH_MIN:
1642                 changeDepth(bv_, bv_->getLyXText(), -1);
1643                 break;
1644                 
1645         case LFUN_DEPTH_PLUS:
1646                 changeDepth(bv_, bv_->getLyXText(), 1);
1647                 break;
1648                 
1649         case LFUN_FREE:
1650                 owner_->getDialogs()->setUserFreeFont();
1651                 break;
1652
1653         case LFUN_FILE_INSERT:
1654                 MenuInsertLyXFile(argument);
1655                 break;
1656         
1657         case LFUN_FILE_INSERT_ASCII_PARA:
1658                 InsertAsciiFile(bv_, argument, true);
1659                 break;
1660
1661         case LFUN_FILE_INSERT_ASCII:
1662                 InsertAsciiFile(bv_, argument, false);
1663                 break;
1664                 
1665         case LFUN_LAYOUT:
1666         {
1667                 lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) "
1668                                     << argument << endl;
1669                 
1670                 // Derive layout number from given argument (string)
1671                 // and current buffer's textclass (number). */    
1672                 textclass_type tclass = buffer_->params.textclass;
1673                 bool hasLayout =
1674                         textclasslist[tclass].hasLayout(argument);
1675                 string layout = argument;
1676
1677                 // If the entry is obsolete, use the new one instead.
1678                 if (hasLayout) {
1679                         string const & obs = textclasslist[tclass][layout]
1680                                 .obsoleted_by();
1681                         if (!obs.empty()) 
1682                                 layout = obs;
1683                 }
1684
1685                 if (!hasLayout) {
1686                         owner_->getLyXFunc()->setErrorMessage(
1687                                 string(N_("Layout ")) + argument +
1688                                 N_(" not known"));
1689                         break;
1690                 }
1691
1692                 if (current_layout != layout) {
1693                         LyXText * lt = bv_->getLyXText();
1694                         hideCursor();
1695                         current_layout = layout;
1696                         update(lt,
1697                                BufferView::SELECT
1698                                | BufferView::FITCUR);
1699                         lt->setLayout(bv_, layout);
1700                         owner_->setLayout(layout);
1701                         update(lt,
1702                                BufferView::SELECT
1703                                | BufferView::FITCUR
1704                                | BufferView::CHANGE);
1705                         setState();
1706                 }
1707         }
1708         break;
1709
1710         case LFUN_LANGUAGE:
1711                 lang(bv_, argument);
1712                 setState();
1713                 owner_->showState();
1714                 break;
1715
1716         case LFUN_EMPH:
1717                 emph(bv_);
1718                 owner_->showState();
1719                 break;
1720
1721         case LFUN_BOLD:
1722                 bold(bv_);
1723                 owner_->showState();
1724                 break;
1725                 
1726         case LFUN_NOUN:
1727                 noun(bv_);
1728                 owner_->showState();
1729                 break;
1730                 
1731         case LFUN_CODE:
1732                 code(bv_);
1733                 owner_->showState();
1734                 break;
1735                 
1736         case LFUN_SANS:
1737                 sans(bv_);
1738                 owner_->showState();
1739                 break;
1740                 
1741         case LFUN_ROMAN:
1742                 roman(bv_);
1743                 owner_->showState();
1744                 break;
1745                 
1746         case LFUN_DEFAULT:
1747                 styleReset(bv_);
1748                 owner_->showState();
1749                 break;
1750                 
1751         case LFUN_UNDERLINE:
1752                 underline(bv_);
1753                 owner_->showState();
1754                 break;
1755                 
1756         case LFUN_FONT_SIZE:
1757                 fontSize(bv_, argument);
1758                 owner_->showState();
1759                 break;
1760                 
1761         case LFUN_FONT_STATE:
1762                 owner_->getLyXFunc()->setMessage(currentState(bv_));
1763                 break;
1764                 
1765         case LFUN_UPCASE_WORD:
1766         {
1767                 LyXText * lt = bv_->getLyXText();
1768                 
1769                 update(lt,
1770                        BufferView::SELECT
1771                        | BufferView::FITCUR);
1772                 lt->changeCase(bv_, LyXText::text_uppercase);
1773                 if (lt->inset_owner)
1774                         updateInset(lt->inset_owner, true);
1775                 update(lt,
1776                        BufferView::SELECT
1777                        | BufferView::FITCUR
1778                        | BufferView::CHANGE);
1779         }
1780         break;
1781                 
1782         case LFUN_LOWCASE_WORD:
1783         {
1784                 LyXText * lt = bv_->getLyXText();
1785                 
1786                 update(lt, BufferView::SELECT|BufferView::FITCUR);
1787                 lt->changeCase(bv_, LyXText::text_lowercase);
1788                 if (lt->inset_owner)
1789                         updateInset(lt->inset_owner, true);
1790                 update(lt,
1791                        BufferView::SELECT
1792                        | BufferView::FITCUR
1793                        | BufferView::CHANGE);
1794         }
1795         break;
1796                 
1797         case LFUN_CAPITALIZE_WORD:
1798         {
1799                 LyXText * lt = bv_->getLyXText();
1800                 
1801                 update(lt, BufferView::SELECT|BufferView::FITCUR);
1802                 lt->changeCase(bv_, LyXText::text_capitalization);
1803                 if (lt->inset_owner)
1804                         updateInset(lt->inset_owner, true);
1805                 update(lt,
1806                        BufferView::SELECT
1807                        | BufferView::FITCUR
1808                        | BufferView::CHANGE);
1809         }
1810         break;
1811
1812         case LFUN_TRANSPOSE_CHARS:
1813         {
1814                 LyXText * lt = bv_->getLyXText();
1815                 
1816                 update(lt, BufferView::SELECT|BufferView::FITCUR);
1817                 lt->transposeChars(*bv_);
1818                 if (lt->inset_owner)
1819                         updateInset(lt->inset_owner, true);
1820                 update(lt,
1821                        BufferView::SELECT
1822                        | BufferView::FITCUR
1823                        | BufferView::CHANGE);
1824         }
1825         break;
1826                 
1827                                           
1828         case LFUN_INSERT_LABEL:
1829                 MenuInsertLabel(bv_, argument);
1830                 break;
1831
1832         case LFUN_REF_INSERT:
1833                 if (argument.empty()) {
1834                         InsetCommandParams p("ref");
1835                         owner_->getDialogs()->createRef(p.getAsString());
1836                 } else {
1837                         InsetCommandParams p;
1838                         p.setFromString(argument);
1839
1840                         InsetRef * inset = new InsetRef(p, *buffer_);
1841                         if (!insertInset(inset))
1842                                 delete inset;
1843                         else
1844                                 updateInset(inset, true);
1845                 }
1846                 break;
1847
1848         case LFUN_BOOKMARK_SAVE:
1849                 savePosition(strToUnsignedInt(argument));
1850                 break;
1851
1852         case LFUN_BOOKMARK_GOTO:
1853                 restorePosition(strToUnsignedInt(argument));
1854                 break;
1855
1856         case LFUN_REF_GOTO:
1857         {
1858                 string label(argument);
1859                 if (label.empty()) {
1860                         InsetRef * inset = 
1861                                 static_cast<InsetRef*>(getInsetByCode(Inset::REF_CODE));
1862                         if (inset) {
1863                                 label = inset->getContents();
1864                                 savePosition(0);
1865                         }
1866                 }
1867                 
1868                 if (!label.empty()) {
1869                         //bv_->savePosition(0);
1870                         if (!bv_->gotoLabel(label))
1871                                 Alert::alert(_("Error"), 
1872                                            _("Couldn't find this label"), 
1873                                            _("in current document."));
1874                 }
1875         }
1876         break;
1877                 
1878                 // --- Cursor Movements -----------------------------
1879         case LFUN_RIGHT:
1880         {
1881                 LyXText * lt = bv_->getLyXText();
1882                 
1883                 bool is_rtl = lt->cursor.par()->isRightToLeftPar(buffer_->params);
1884                 if (!lt->selection.mark())
1885                         beforeChange(lt);
1886                 update(lt, BufferView::SELECT|BufferView::FITCUR);
1887                 if (is_rtl)
1888                         lt->cursorLeft(bv_, false);
1889                 if (lt->cursor.pos() < lt->cursor.par()->size()
1890                     && lt->cursor.par()->isInset(lt->cursor.pos())
1891                     && isHighlyEditableInset(lt->cursor.par()->getInset(lt->cursor.pos()))) {
1892                         Inset * tmpinset = lt->cursor.par()->getInset(lt->cursor.pos());
1893                         owner_->getLyXFunc()->setMessage(tmpinset->editMessage());
1894                         if (is_rtl)
1895                                 tmpinset->edit(bv_, false);
1896                         else
1897                                 tmpinset->edit(bv_);
1898                         break;
1899                 }
1900                 if (!is_rtl)
1901                         lt->cursorRight(bv_, false);
1902                 finishUndo();
1903                 moveCursorUpdate(false);
1904                 owner_->showState();
1905         }
1906         break;
1907                 
1908         case LFUN_LEFT:
1909         {
1910                 // This is soooo ugly. Isn`t it possible to make
1911                 // it simpler? (Lgb)
1912                 LyXText * lt = bv_->getLyXText();
1913                 bool is_rtl = lt->cursor.par()->isRightToLeftPar(buffer_->params);
1914                 if (!lt->selection.mark())
1915                         beforeChange(lt);
1916                 update(lt, BufferView::SELECT|BufferView::FITCUR);
1917                 LyXCursor const cur = lt->cursor;
1918                 if (!is_rtl)
1919                         lt->cursorLeft(bv_, false);
1920                 if ((is_rtl || cur != lt->cursor) && // only if really moved!
1921                     lt->cursor.pos() < lt->cursor.par()->size() &&
1922                     lt->cursor.par()->isInset(lt->cursor.pos()) &&
1923                     isHighlyEditableInset(lt->cursor.par()->getInset(lt->cursor.pos()))) {
1924                         Inset * tmpinset = lt->cursor.par()->getInset(lt->cursor.pos());
1925                         owner_->getLyXFunc()->setMessage(tmpinset->editMessage());
1926                         if (is_rtl)
1927                                 tmpinset->edit(bv_);
1928                         else
1929                                 tmpinset->edit(bv_, false);
1930                         break;
1931                 }
1932                 if  (is_rtl)
1933                         lt->cursorRight(bv_, false);
1934
1935                 finishUndo();
1936                 moveCursorUpdate(false);
1937                 owner_->showState();
1938         }
1939         break;
1940                 
1941         case LFUN_UP:
1942         {
1943                 LyXText * lt = bv_->getLyXText();
1944                 
1945                 if (!lt->selection.mark())
1946                         beforeChange(lt);
1947                 update(lt, BufferView::UPDATE);
1948                 lt->cursorUp(bv_);
1949                 finishUndo();
1950                 moveCursorUpdate(false);
1951                 owner_->showState();
1952         }
1953         break;
1954                 
1955         case LFUN_DOWN:
1956         {
1957                 LyXText * lt = bv_->getLyXText();
1958                 
1959                 if (!lt->selection.mark())
1960                         beforeChange(lt);
1961                 update(lt, BufferView::UPDATE);
1962                 lt->cursorDown(bv_);
1963                 finishUndo();
1964                 moveCursorUpdate(false);
1965                 owner_->showState();
1966         }
1967         break;
1968
1969         case LFUN_UP_PARAGRAPH:
1970         {
1971                 LyXText * lt = bv_->getLyXText();
1972                 
1973                 if (!lt->selection.mark())
1974                         beforeChange(lt);
1975                 update(lt, BufferView::UPDATE);
1976                 lt->cursorUpParagraph(bv_);
1977                 finishUndo();
1978                 moveCursorUpdate(false);
1979                 owner_->showState();
1980         }
1981         break;
1982                 
1983         case LFUN_DOWN_PARAGRAPH:
1984         {
1985                 LyXText * lt = bv_->getLyXText();
1986                 
1987                 if (!lt->selection.mark())
1988                         beforeChange(lt);
1989                 update(lt, BufferView::UPDATE);
1990                 lt->cursorDownParagraph(bv_);
1991                 finishUndo();
1992                 moveCursorUpdate(false);
1993                 owner_->showState();
1994         }
1995         break;
1996                 
1997         case LFUN_PRIOR:
1998         {
1999                 LyXText * lt = bv_->getLyXText();
2000                 
2001                 if (!lt->selection.mark())
2002                         beforeChange(lt);
2003                 update(lt, BufferView::UPDATE);
2004                 cursorPrevious(lt);
2005                 finishUndo();
2006                 moveCursorUpdate(false);
2007                 owner_->showState();
2008         }
2009         break;
2010                 
2011         case LFUN_NEXT:
2012         {
2013                 LyXText * lt = bv_->getLyXText();
2014                 
2015                 if (!lt->selection.mark())
2016                         beforeChange(lt);
2017                 update(lt, BufferView::UPDATE);
2018                 cursorNext(lt);
2019                 finishUndo();
2020                 moveCursorUpdate(false);
2021                 owner_->showState();
2022         }
2023         break;
2024                 
2025         case LFUN_HOME:
2026         {
2027                 LyXText * lt = bv_->getLyXText();
2028                 
2029                 if (!lt->selection.mark())
2030                         beforeChange(lt);
2031                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2032                 lt->cursorHome(bv_);
2033                 finishUndo();
2034                 moveCursorUpdate(false);
2035                 owner_->showState();
2036         }
2037         break;
2038                 
2039         case LFUN_END:
2040         {
2041                 LyXText * lt = bv_->getLyXText();
2042                 
2043                 if (!lt->selection.mark())
2044                         beforeChange(lt);
2045                 update(lt,
2046                        BufferView::SELECT|BufferView::FITCUR);
2047                 lt->cursorEnd(bv_);
2048                 finishUndo();
2049                 moveCursorUpdate(false);
2050                 owner_->showState();
2051         }
2052         break;
2053                 
2054         case LFUN_SHIFT_TAB:
2055         case LFUN_TAB:
2056         {
2057                 LyXText * lt = bv_->getLyXText();
2058                 
2059                 if (!lt->selection.mark())
2060                         beforeChange(lt);
2061                 update(lt,
2062                        BufferView::SELECT|BufferView::FITCUR);
2063                 lt->cursorTab(bv_);
2064                 finishUndo();
2065                 moveCursorUpdate(false);
2066                 owner_->showState();
2067         }
2068         break;
2069                 
2070         case LFUN_WORDRIGHT:
2071         {
2072                 LyXText * lt = bv_->getLyXText();
2073                 
2074                 if (!lt->selection.mark())
2075                         beforeChange(lt);
2076                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2077                 if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
2078                         lt->cursorLeftOneWord(bv_);
2079                 else
2080                         lt->cursorRightOneWord(bv_);
2081                 finishUndo();
2082                 moveCursorUpdate(false);
2083                 owner_->showState();
2084         }
2085         break;
2086                 
2087         case LFUN_WORDLEFT:
2088         {
2089                 LyXText * lt = bv_->getLyXText();
2090                 
2091                 if (!lt->selection.mark())
2092                         beforeChange(lt);
2093                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2094                 if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
2095                         lt->cursorRightOneWord(bv_);
2096                 else
2097                         lt->cursorLeftOneWord(bv_);
2098                 finishUndo();
2099                 moveCursorUpdate(false);
2100                 owner_->showState();
2101         }
2102         break;
2103                 
2104         case LFUN_BEGINNINGBUF:
2105         {
2106                 LyXText * lt = bv_->getLyXText();
2107                 
2108                 if (!lt->selection.mark())
2109                         beforeChange(lt);
2110                 update(lt,
2111                        BufferView::SELECT|BufferView::FITCUR);
2112                 lt->cursorTop(bv_);
2113                 finishUndo();
2114                 moveCursorUpdate(false);
2115                 owner_->showState();
2116         }
2117         break;
2118                 
2119         case LFUN_ENDBUF:
2120         {
2121                 LyXText * lt = bv_->getLyXText();
2122                 
2123                 if (!lt->selection.mark())
2124                         beforeChange(lt);
2125                 update(lt,
2126                        BufferView::SELECT|BufferView::FITCUR);
2127                 lt->cursorBottom(bv_);
2128                 finishUndo();
2129                 moveCursorUpdate(false);
2130                 owner_->showState();
2131         }
2132         break;
2133       
2134                 /* cursor selection ---------------------------- */
2135         case LFUN_RIGHTSEL:
2136         {
2137                 LyXText * lt = bv_->getLyXText();
2138                 
2139                 update(lt,
2140                        BufferView::SELECT|BufferView::FITCUR);
2141                 if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
2142                         lt->cursorLeft(bv_);
2143                 else
2144                         lt->cursorRight(bv_);
2145                 finishUndo();
2146                 moveCursorUpdate(true);
2147                 owner_->showState();
2148         }
2149         break;
2150                 
2151         case LFUN_LEFTSEL:
2152         {
2153                 LyXText * lt = bv_->getLyXText();
2154                 
2155                 update(lt,
2156                        BufferView::SELECT|BufferView::FITCUR);
2157                 if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
2158                         lt->cursorRight(bv_);
2159                 else
2160                         lt->cursorLeft(bv_);
2161                 finishUndo();
2162                 moveCursorUpdate(true);
2163                 owner_->showState();
2164         }
2165         break;
2166                 
2167         case LFUN_UPSEL:
2168         {
2169                 LyXText * lt = bv_->getLyXText();
2170                 
2171                 update(lt,
2172                        BufferView::SELECT|BufferView::FITCUR);
2173                 lt->cursorUp(bv_);
2174                 finishUndo();
2175                 moveCursorUpdate(true);
2176                 owner_->showState();
2177         }
2178         break;
2179                 
2180         case LFUN_DOWNSEL:
2181         {
2182                 LyXText * lt = bv_->getLyXText();
2183                 
2184                 update(lt,
2185                        BufferView::SELECT|BufferView::FITCUR);
2186                 lt->cursorDown(bv_);
2187                 finishUndo();
2188                 moveCursorUpdate(true);
2189                 owner_->showState();
2190         }
2191         break;
2192
2193         case LFUN_UP_PARAGRAPHSEL:
2194         {
2195                 LyXText * lt = bv_->getLyXText();
2196                 
2197                 update(lt,
2198                        BufferView::SELECT|BufferView::FITCUR);
2199                 lt->cursorUpParagraph(bv_);
2200                 finishUndo();
2201                 moveCursorUpdate(true);
2202                 owner_->showState();
2203         }
2204         break;
2205                 
2206         case LFUN_DOWN_PARAGRAPHSEL:
2207         {
2208                 LyXText * lt = bv_->getLyXText();
2209                 
2210                 update(lt,
2211                        BufferView::SELECT|BufferView::FITCUR);
2212                 lt->cursorDownParagraph(bv_);
2213                 finishUndo();
2214                 moveCursorUpdate(true);
2215                 owner_->showState();
2216         }
2217         break;
2218                 
2219         case LFUN_PRIORSEL:
2220         {
2221                 LyXText * lt = bv_->getLyXText();
2222                 
2223                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2224                 cursorPrevious(lt);
2225                 finishUndo();
2226                 moveCursorUpdate(true);
2227                 owner_->showState();
2228         }
2229         break;
2230                 
2231         case LFUN_NEXTSEL:
2232         {
2233                 LyXText * lt = bv_->getLyXText();
2234                 
2235                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2236                 cursorNext(lt);
2237                 finishUndo();
2238                 moveCursorUpdate(true);
2239                 owner_->showState();
2240         }
2241         break;
2242                 
2243         case LFUN_HOMESEL:
2244         {
2245                 LyXText * lt = bv_->getLyXText();
2246                 
2247                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2248                 lt->cursorHome(bv_);
2249                 finishUndo();
2250                 moveCursorUpdate(true);
2251                 owner_->showState();
2252         }
2253         break;
2254                 
2255         case LFUN_ENDSEL:
2256         {
2257                 LyXText * lt = bv_->getLyXText();
2258                 
2259                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2260                 lt->cursorEnd(bv_);
2261                 finishUndo();
2262                 moveCursorUpdate(true);
2263                 owner_->showState();
2264         }
2265         break;
2266                 
2267         case LFUN_WORDRIGHTSEL:
2268         {
2269                 LyXText * lt = bv_->getLyXText();
2270                 
2271                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2272                 if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
2273                         lt->cursorLeftOneWord(bv_);
2274                 else
2275                         lt->cursorRightOneWord(bv_);
2276                 finishUndo();
2277                 moveCursorUpdate(true);
2278                 owner_->showState();
2279         }
2280         break;
2281                 
2282         case LFUN_WORDLEFTSEL:
2283         {
2284                 LyXText * lt = bv_->getLyXText();
2285                 
2286                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2287                 if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
2288                         lt->cursorRightOneWord(bv_);
2289                 else
2290                         lt->cursorLeftOneWord(bv_);
2291                 finishUndo();
2292                 moveCursorUpdate(true);
2293                 owner_->showState();
2294         }
2295         break;
2296                 
2297         case LFUN_BEGINNINGBUFSEL:
2298         {
2299                 LyXText * lt = bv_->getLyXText();
2300                 
2301                 if (lt->inset_owner)
2302                         break;
2303                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2304                 lt->cursorTop(bv_);
2305                 finishUndo();
2306                 moveCursorUpdate(true);
2307                 owner_->showState();
2308         }
2309         break;
2310                 
2311         case LFUN_ENDBUFSEL:
2312         {
2313                 LyXText * lt = bv_->getLyXText();
2314                 
2315                 if (lt->inset_owner)
2316                         break;
2317                 update(lt,
2318                        BufferView::SELECT|BufferView::FITCUR);
2319                 lt->cursorBottom(bv_);
2320                 finishUndo();
2321                 moveCursorUpdate(true);
2322                 owner_->showState();
2323         }
2324         break;
2325
2326                 // --- text changing commands ------------------------
2327         case LFUN_BREAKLINE:
2328         {
2329                 LyXText * lt = bv_->getLyXText();
2330
2331                 beforeChange(lt);
2332                 lt->insertChar(bv_, Paragraph::META_NEWLINE);
2333                 update(lt,
2334                        BufferView::SELECT
2335                        | BufferView::FITCUR
2336                        | BufferView::CHANGE);
2337                 moveCursorUpdate(false);
2338         }
2339         break;
2340                 
2341         case LFUN_PROTECTEDSPACE:
2342         {
2343                 LyXText * lt = bv_->getLyXText();
2344
2345                 LyXLayout const & style = textclasslist[buffer_->params.textclass][lt->cursor.par()->layout()];
2346
2347                 if (style.free_spacing) {
2348                         lt->insertChar(bv_, ' ');
2349                         update(lt,
2350                                BufferView::SELECT
2351                                | BufferView::FITCUR
2352                                | BufferView::CHANGE);
2353                 } else {
2354                         protectedBlank(lt);
2355                 }
2356                 moveCursorUpdate(false);
2357         }
2358         break;
2359                 
2360         case LFUN_SETMARK:
2361         {
2362                 LyXText * lt = bv_->getLyXText();
2363
2364                 if (lt->selection.mark()) {
2365                         beforeChange(lt);
2366                         update(lt,
2367                                BufferView::SELECT
2368                                | BufferView::FITCUR);
2369                         owner_->getLyXFunc()->setMessage(N_("Mark removed"));
2370                 } else {
2371                         beforeChange(lt);
2372                         lt->selection.mark(true);
2373                         update(lt,
2374                                BufferView::SELECT
2375                                | BufferView::FITCUR);
2376                         owner_->getLyXFunc()->setMessage(N_("Mark set"));
2377                 }
2378                 lt->selection.cursor = lt->cursor;
2379         }
2380         break;
2381                 
2382         case LFUN_DELETE:
2383         {
2384                 LyXText * lt = bv_->getLyXText();
2385
2386                 if (!lt->selection.set()) {
2387                         lt->Delete(bv_);
2388                         lt->selection.cursor = lt->cursor;
2389                         update(lt,
2390                                BufferView::SELECT
2391                                | BufferView::FITCUR
2392                                | BufferView::CHANGE);
2393                         // It is possible to make it a lot faster still
2394                         // just comment out the line below...
2395                         showCursor();
2396                 } else {
2397                         bv_->cut(false);
2398                 }
2399                 moveCursorUpdate(false);
2400                 owner_->showState();
2401                 setState();
2402         }
2403         break;
2404
2405         case LFUN_DELETE_SKIP:
2406         {
2407                 LyXText * lt = bv_->getLyXText();
2408
2409                 // Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
2410                 
2411                 LyXCursor cursor = lt->cursor;
2412
2413                 if (!lt->selection.set()) {
2414                         if (cursor.pos() == cursor.par()->size()) {
2415                                 lt->cursorRight(bv_);
2416                                 cursor = lt->cursor;
2417                                 if (cursor.pos() == 0
2418                                     && !(cursor.par()->params().spaceTop()
2419                                          == VSpace (VSpace::NONE))) {
2420                                         lt->setParagraph
2421                                                 (bv_,
2422                                                  cursor.par()->params().lineTop(),
2423                                                  cursor.par()->params().lineBottom(),
2424                                                  cursor.par()->params().pagebreakTop(), 
2425                                                  cursor.par()->params().pagebreakBottom(),
2426                                                  VSpace(VSpace::NONE), 
2427                                                  cursor.par()->params().spaceBottom(),
2428                                                  cursor.par()->params().spacing(), 
2429                                                  cursor.par()->params().align(), 
2430                                                  cursor.par()->params().labelWidthString(), 0);
2431                                         lt->cursorLeft(bv_);
2432                                         update(lt, 
2433                                                BufferView::SELECT
2434                                                | BufferView::FITCUR
2435                                                | BufferView::CHANGE);
2436                                 } else {
2437                                         lt->cursorLeft(bv_);
2438                                         lt->Delete(bv_);
2439                                         lt->selection.cursor = lt->cursor;
2440                                         update(lt,
2441                                                BufferView::SELECT
2442                                                | BufferView::FITCUR
2443                                                | BufferView::CHANGE);
2444                                 }
2445                         } else {
2446                                 lt->Delete(bv_);
2447                                 lt->selection.cursor = lt->cursor;
2448                                 update(lt,
2449                                        BufferView::SELECT
2450                                        | BufferView::FITCUR
2451                                        | BufferView::CHANGE);
2452                         }
2453                 } else {
2454                         bv_->cut(false);
2455                 }
2456         }
2457         break;
2458
2459         /* -------> Delete word forward. */
2460         case LFUN_DELETE_WORD_FORWARD:
2461                 update(bv_->getLyXText(), BufferView::SELECT|BufferView::FITCUR);
2462                 bv_->getLyXText()->deleteWordForward(bv_);
2463                 update(bv_->getLyXText(), BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
2464                 moveCursorUpdate(false);
2465                 owner_->showState();
2466                 break;
2467
2468                 /* -------> Delete word backward. */
2469         case LFUN_DELETE_WORD_BACKWARD:
2470         {
2471                 LyXText * lt = bv_->getLyXText();
2472                 
2473                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2474                 lt->deleteWordBackward(bv_);
2475                 update(lt,
2476                        BufferView::SELECT
2477                        | BufferView::FITCUR
2478                        | BufferView::CHANGE);
2479                 moveCursorUpdate(false);
2480                 owner_->showState();
2481         }
2482         break;
2483                 
2484                 /* -------> Kill to end of line. */
2485         case LFUN_DELETE_LINE_FORWARD:
2486         {
2487                 LyXText * lt = bv_->getLyXText();
2488                 
2489                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2490                 lt->deleteLineForward(bv_);
2491                 update(lt,
2492                        BufferView::SELECT
2493                        | BufferView::FITCUR
2494                        | BufferView::CHANGE);
2495                 moveCursorUpdate(false);
2496         }
2497         break;
2498                 
2499                 /* -------> Set mark off. */
2500         case LFUN_MARK_OFF:
2501         {
2502                 LyXText * lt = bv_->getLyXText();
2503                 
2504                 beforeChange(lt);
2505                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2506                 lt->selection.cursor = lt->cursor;
2507                 owner_->getLyXFunc()->setMessage(N_("Mark off"));
2508         }
2509         break;
2510
2511                 /* -------> Set mark on. */
2512         case LFUN_MARK_ON:
2513         {
2514                 LyXText * lt = bv_->getLyXText();
2515                 
2516                 beforeChange(lt);
2517                 lt->selection.mark(true);
2518                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2519                 lt->selection.cursor = lt->cursor;
2520                 owner_->getLyXFunc()->setMessage(N_("Mark on"));
2521         }
2522         break;
2523                 
2524         case LFUN_BACKSPACE:
2525         {
2526                 LyXText * lt = bv_->getLyXText();
2527                 
2528                 if (!lt->selection.set()) {
2529                         if (owner_->getIntl()->getTrans().backspace()) {
2530                                 lt->backspace(bv_);
2531                                 lt->selection.cursor = lt->cursor;
2532                                 update(lt,
2533                                        BufferView::SELECT
2534                                        | BufferView::FITCUR
2535                                        | BufferView::CHANGE);
2536                                 // It is possible to make it a lot faster still
2537                                 // just comment out the line below...
2538                                 showCursor();
2539                         }
2540                 } else {
2541                         bv_->cut(false);
2542                 }
2543                 owner_->showState();
2544                 setState();
2545         }
2546         break;
2547
2548         case LFUN_BACKSPACE_SKIP:
2549         {
2550                 // Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
2551                 LyXText * lt = bv_->getLyXText();
2552                 
2553                 LyXCursor cursor = lt->cursor;
2554                 
2555                 if (!lt->selection.set()) {
2556                         if (cursor.pos() == 0 
2557                             && !(cursor.par()->params().spaceTop() 
2558                                  == VSpace (VSpace::NONE))) {
2559                                 lt->setParagraph 
2560                                         (bv_,
2561                                          cursor.par()->params().lineTop(),      
2562                                          cursor.par()->params().lineBottom(),
2563                                          cursor.par()->params().pagebreakTop(), 
2564                                          cursor.par()->params().pagebreakBottom(),
2565                                          VSpace(VSpace::NONE), cursor.par()->params().spaceBottom(),
2566                                          cursor.par()->params().spacing(), 
2567                                          cursor.par()->params().align(), 
2568                                          cursor.par()->params().labelWidthString(), 0);
2569                                 update(lt,
2570                                        BufferView::SELECT
2571                                        | BufferView::FITCUR
2572                                        | BufferView::CHANGE);
2573                         } else {
2574                                 lt->backspace(bv_);
2575                                 lt->selection.cursor = cursor;
2576                                 update(lt,
2577                                        BufferView::SELECT
2578                                        | BufferView::FITCUR
2579                                        | BufferView::CHANGE);
2580                         }
2581                 } else
2582                         bv_->cut(false);
2583         }
2584         break;
2585
2586         case LFUN_BREAKPARAGRAPH:
2587         {
2588                 LyXText * lt = bv_->getLyXText();
2589                 
2590                 beforeChange(lt);
2591                 lt->breakParagraph(bv_, 0);
2592                 update(lt,
2593                        BufferView::SELECT
2594                        | BufferView::FITCUR
2595                        | BufferView::CHANGE);
2596                 lt->selection.cursor = lt->cursor;
2597                 setState();
2598                 owner_->showState();
2599                 break;
2600         }
2601
2602         case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
2603         {
2604                 LyXText * lt = bv_->getLyXText();
2605                 
2606                 beforeChange(lt);
2607                 lt->breakParagraph(bv_, 1);
2608                 update(lt,
2609                        BufferView::SELECT
2610                        | BufferView::FITCUR
2611                        | BufferView::CHANGE);
2612                 lt->selection.cursor = lt->cursor;
2613                 setState();
2614                 owner_->showState();
2615                 break;
2616         }
2617         
2618         case LFUN_BREAKPARAGRAPH_SKIP:
2619         {
2620                 // When at the beginning of a paragraph, remove
2621                 // indentation and add a "defskip" at the top.
2622                 // Otherwise, do the same as LFUN_BREAKPARAGRAPH.
2623                 LyXText * lt = bv_->getLyXText();
2624                 
2625                 LyXCursor cursor = lt->cursor;
2626                 
2627                 beforeChange(lt);
2628                 if (cursor.pos() == 0) {
2629                         if (cursor.par()->params().spaceTop() == VSpace(VSpace::NONE)) {
2630                                 lt->setParagraph
2631                                         (bv_,
2632                                          cursor.par()->params().lineTop(),
2633                                          cursor.par()->params().lineBottom(),
2634                                          cursor.par()->params().pagebreakTop(),
2635                                          cursor.par()->params().pagebreakBottom(),
2636                                          VSpace(VSpace::DEFSKIP), cursor.par()->params().spaceBottom(),
2637                                          cursor.par()->params().spacing(),
2638                                          cursor.par()->params().align(),
2639                                          cursor.par()->params().labelWidthString(), 1);
2640                                 //update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
2641                         } 
2642                 }
2643                 else {
2644                         lt->breakParagraph(bv_, 0);
2645                         //update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
2646                 }
2647
2648                 update(lt,
2649                        BufferView::SELECT
2650                        | BufferView::FITCUR
2651                        | BufferView::CHANGE);
2652                 lt->selection.cursor = cursor;
2653                 setState();
2654                 owner_->showState();
2655         }
2656         break;
2657
2658         case LFUN_PARAGRAPH_SPACING:
2659         {
2660                 LyXText * lt = bv_->getLyXText();
2661                 
2662                 Paragraph * par = lt->cursor.par();
2663                 Spacing::Space cur_spacing = par->params().spacing().getSpace();
2664                 float cur_value = 1.0;
2665                 if (cur_spacing == Spacing::Other) {
2666                         cur_value = par->params().spacing().getValue();
2667                 }
2668                 
2669                 istringstream istr(argument.c_str());
2670
2671                 string tmp;
2672                 istr >> tmp;
2673                 Spacing::Space new_spacing = cur_spacing;
2674                 float new_value = cur_value;
2675                 if (tmp.empty()) {
2676                         lyxerr << "Missing argument to `paragraph-spacing'"
2677                                << endl;
2678                 } else if (tmp == "single") {
2679                         new_spacing = Spacing::Single;
2680                 } else if (tmp == "onehalf") {
2681                         new_spacing = Spacing::Onehalf;
2682                 } else if (tmp == "double") {
2683                         new_spacing = Spacing::Double;
2684                 } else if (tmp == "other") {
2685                         new_spacing = Spacing::Other;
2686                         float tmpval = 0.0;
2687                         istr >> tmpval;
2688                         lyxerr << "new_value = " << tmpval << endl;
2689                         if (tmpval != 0.0)
2690                                 new_value = tmpval;
2691                 } else if (tmp == "default") {
2692                         new_spacing = Spacing::Default;
2693                 } else {
2694                         lyxerr << _("Unknown spacing argument: ")
2695                                << argument << endl;
2696                 }
2697                 if (cur_spacing != new_spacing || cur_value != new_value) {
2698                         par->params().spacing(Spacing(new_spacing, new_value));
2699                         lt->redoParagraph(bv_);
2700                         update(lt,
2701                                BufferView::SELECT
2702                                | BufferView::FITCUR
2703                                | BufferView::CHANGE);
2704                 }
2705         }
2706         break;
2707         
2708         case LFUN_INSET_TOGGLE:
2709         {
2710                 LyXText * lt = bv_->getLyXText();
2711                 hideCursor();
2712                 beforeChange(lt);
2713                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2714                 lt->toggleInset(bv_);
2715                 update(lt, BufferView::SELECT|BufferView::FITCUR);
2716                 setState();
2717         }       
2718                 break;
2719
2720         case LFUN_QUOTE:
2721                 smartQuote();
2722                 break;
2723
2724         case LFUN_HTMLURL:
2725         case LFUN_URL:
2726         {
2727                 InsetCommandParams p;
2728                 if (action == LFUN_HTMLURL)
2729                         p.setCmdName("htmlurl");
2730                 else
2731                         p.setCmdName("url");
2732                 owner_->getDialogs()->createUrl(p.getAsString());
2733         }
2734         break;
2735         
2736         case LFUN_INSERT_URL:
2737         {
2738                 InsetCommandParams p;
2739                 p.setFromString(argument);
2740
2741                 InsetUrl * inset = new InsetUrl(p);
2742                 if (!insertInset(inset))
2743                         delete inset;
2744                 else
2745                         updateInset(inset, true);
2746         }
2747         break;
2748         
2749         case LFUN_INSET_TEXT:
2750                 insertAndEditInset(new InsetText(buffer_->params));
2751                 break;
2752         
2753         case LFUN_INSET_ERT:
2754                 insertAndEditInset(new InsetERT(buffer_->params));
2755                 break;
2756         
2757         case LFUN_INSET_EXTERNAL:
2758                 insertAndEditInset(new InsetExternal);
2759                 break;
2760         
2761         case LFUN_INSET_FOOTNOTE:
2762                 insertAndEditInset(new InsetFoot(buffer_->params));
2763                 break;
2764
2765         case LFUN_INSET_MARGINAL:
2766                 insertAndEditInset(new InsetMarginal(buffer_->params));
2767                 break;
2768
2769         case LFUN_INSET_MINIPAGE:
2770                 insertAndEditInset(new InsetMinipage(buffer_->params));
2771                 break;
2772
2773         case LFUN_INSERT_NOTE:
2774                 insertAndEditInset(new InsetNote(buffer_->params));
2775                 break;
2776
2777         case LFUN_INSET_FLOAT:
2778                 // check if the float type exist
2779                 if (floatList.typeExist(argument)) {
2780                         insertAndEditInset(new InsetFloat(buffer_->params,
2781                                                           argument));
2782                 } else {
2783                         lyxerr << "Non-existent float type: "
2784                                << argument << endl;
2785                 }
2786                 break;
2787
2788         case LFUN_INSET_WIDE_FLOAT:
2789         {
2790                 // check if the float type exist
2791                 if (floatList.typeExist(argument)) {
2792                         InsetFloat * new_inset =
2793                                 new InsetFloat(buffer_->params, argument);
2794                         new_inset->wide(true);
2795                         if (insertInset(new_inset))
2796                                 new_inset->edit(bv_);
2797                         else
2798                                 delete new_inset;
2799                 } else {
2800                         lyxerr << "Non-existent float type: "
2801                                << argument << endl;
2802                 }
2803                 
2804         }
2805         break;
2806
2807 #if 0
2808         case LFUN_INSET_LIST:
2809                 insertAndEditInset(new InsetList);
2810                 break;
2811
2812         case LFUN_INSET_THEOREM:
2813                 insertAndEditInset(new InsetTheorem);
2814                 break;
2815 #endif
2816                 
2817         case LFUN_INSET_CAPTION:
2818         {
2819                 // Do we have a locking inset...
2820                 if (bv_->theLockingInset()) {
2821                         lyxerr << "Locking inset code: "
2822                                << static_cast<int>(bv_->theLockingInset()->lyxCode());
2823                         InsetCaption * new_inset =
2824                                 new InsetCaption(buffer_->params);
2825                         new_inset->setOwner(bv_->theLockingInset());
2826                         new_inset->setAutoBreakRows(true);
2827                         new_inset->setDrawFrame(0, InsetText::LOCKED);
2828                         new_inset->setFrameColor(0, LColor::captionframe);
2829                         if (insertInset(new_inset))
2830                                 new_inset->edit(bv_);
2831                         else
2832                                 delete new_inset;
2833                 }
2834         }
2835         break;
2836         
2837         case LFUN_INSET_TABULAR:
2838         {
2839                 int r = 2;
2840                 int c = 2;
2841                 if (!argument.empty())
2842                         ::sscanf(argument.c_str(),"%d%d", &r, &c);
2843                 InsetTabular * new_inset =
2844                         new InsetTabular(*buffer_, r, c);
2845                 bool const rtl =
2846                         bv_->getLyXText()->real_current_font.isRightToLeft();
2847                 if (!open_new_inset(new_inset, rtl))
2848                         delete new_inset;
2849         }
2850         break;
2851
2852         // --- lyxserver commands ----------------------------
2853
2854         case LFUN_CHARATCURSOR:
2855         {
2856                 pos_type pos = bv_->getLyXText()->cursor.pos();
2857                 if (pos < bv_->getLyXText()->cursor.par()->size())
2858                         owner_->getLyXFunc()->setMessage(
2859                                 tostr(bv_->getLyXText()->cursor.par()->getChar(pos)));
2860                 else
2861                         owner_->getLyXFunc()->setMessage("EOF");
2862         }
2863         break;
2864         
2865         case LFUN_GETXY:
2866                 owner_->getLyXFunc()->setMessage(tostr(bv_->getLyXText()->cursor.x())
2867                                                  + ' '
2868                                                  + tostr(bv_->getLyXText()->cursor.y()));
2869                 break;
2870                 
2871         case LFUN_SETXY:
2872         {
2873                 int x = 0;
2874                 int y = 0;
2875                 if (::sscanf(argument.c_str(), " %d %d", &x, &y) != 2) {
2876                         lyxerr << "SETXY: Could not parse coordinates in '"
2877                                << argument << std::endl;
2878                 }
2879                 bv_->getLyXText()->setCursorFromCoordinates(bv_, x, y);
2880         }
2881         break;
2882         
2883         case LFUN_GETLAYOUT:
2884                 owner_->getLyXFunc()->setMessage(tostr(bv_->getLyXText()->cursor.par()->layout()));
2885                 break;
2886                         
2887         case LFUN_GETFONT:
2888         {
2889                 LyXFont & font = bv_->getLyXText()->current_font;
2890                 if (font.shape() == LyXFont::ITALIC_SHAPE)
2891                         owner_->getLyXFunc()->setMessage("E");
2892                 else if (font.shape() == LyXFont::SMALLCAPS_SHAPE)
2893                         owner_->getLyXFunc()->setMessage("N");
2894                 else
2895                         owner_->getLyXFunc()->setMessage("0");
2896
2897         }
2898         break;
2899
2900         // --- accented characters ---------------------------
2901                 
2902         case LFUN_UMLAUT:
2903         case LFUN_CIRCUMFLEX:
2904         case LFUN_GRAVE:
2905         case LFUN_ACUTE:
2906         case LFUN_TILDE:
2907         case LFUN_CEDILLA:
2908         case LFUN_MACRON:
2909         case LFUN_DOT:
2910         case LFUN_UNDERDOT:
2911         case LFUN_UNDERBAR:
2912         case LFUN_CARON:
2913         case LFUN_SPECIAL_CARON:
2914         case LFUN_BREVE:
2915         case LFUN_TIE:
2916         case LFUN_HUNG_UMLAUT:
2917         case LFUN_CIRCLE:
2918         case LFUN_OGONEK:
2919                 if (argument.empty()) {
2920                         // As always...
2921                         owner_->getLyXFunc()->handleKeyFunc(action);
2922                 } else {
2923                         owner_->getLyXFunc()->handleKeyFunc(action);
2924                         owner_->getIntl()->getTrans()
2925                                 .TranslateAndInsert(argument[0], bv_->getLyXText());
2926                         update(bv_->getLyXText(),
2927                                BufferView::SELECT
2928                                | BufferView::FITCUR
2929                                | BufferView::CHANGE);
2930                 }
2931                 break;
2932         
2933         case LFUN_MATH_MACRO:
2934                 mathDispatchMathMacro(bv_, argument);
2935                 break;
2936
2937         case LFUN_MATH_DELIM:     
2938                 mathDispatchMathDelim(bv_, argument);
2939                 break;
2940
2941         case LFUN_INSERT_MATRIX:
2942                 mathDispatchInsertMatrix(bv_, argument);
2943                 break;
2944
2945         case LFUN_INSERT_MATH:
2946                 mathDispatchInsertMath(bv_, argument);
2947                 break;
2948
2949         case LFUN_MATH_IMPORT_SELECTION: // Imports LaTeX from the X selection
2950                 mathDispatchMathImportSelection(bv_, argument);
2951                 break;
2952
2953         case LFUN_MATH_DISPLAY:          // Open or create a displayed math inset
2954                 mathDispatchMathDisplay(bv_, argument);
2955                 break;
2956
2957         case LFUN_MATH_MODE:             // Open or create an inlined math inset 
2958                 mathDispatchMathMode(bv_, argument);
2959                 break;
2960                 
2961         case LFUN_GREEK:                 // Insert a single greek letter
2962                 mathDispatchGreek(bv_, argument);
2963                 break;
2964                 
2965         case LFUN_CITATION_INSERT:
2966         {
2967                 InsetCommandParams p;
2968                 p.setFromString(argument);
2969
2970                 InsetCitation * inset = new InsetCitation(p);
2971                 if (!insertInset(inset))
2972                         delete inset;
2973                 else
2974                         updateInset(inset, true);
2975         }
2976         break;
2977                     
2978         case LFUN_INSERT_BIBTEX:
2979         {   
2980                 // ale970405+lasgoutt970425
2981                 // The argument can be up to two tokens separated 
2982                 // by a space. The first one is the bibstyle.
2983                 string const db       = token(argument, ' ', 0);
2984                 string const bibstyle = token(argument, ' ', 1);
2985
2986                 InsetCommandParams p("BibTeX", db, bibstyle);
2987                 InsetBibtex * inset = new InsetBibtex(p);
2988                 
2989                 if (insertInset(inset)) {
2990                         if (argument.empty())
2991                                 inset->edit(bv_);
2992                 } else
2993                         delete inset;
2994         }
2995         break;
2996                 
2997         // BibTeX data bases
2998         case LFUN_BIBDB_ADD:
2999         {
3000                 InsetBibtex * inset = 
3001                         static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
3002                 if (inset) {
3003                         inset->addDatabase(argument);
3004                 }
3005         }
3006         break;
3007                     
3008         case LFUN_BIBDB_DEL:
3009         {
3010                 InsetBibtex * inset = 
3011                         static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
3012                 if (inset) {
3013                         inset->delDatabase(argument);
3014                 }
3015         }
3016         break;
3017         
3018         case LFUN_BIBTEX_STYLE:
3019         {
3020                 InsetBibtex * inset = 
3021                         static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
3022                 if (inset) {
3023                         inset->setOptions(argument);
3024                 }
3025         }
3026         break;
3027                 
3028         case LFUN_INDEX_CREATE:
3029         {
3030                 InsetCommandParams p("index");
3031                 if (argument.empty()) {
3032                         string const idxstring(bv_->getLyXText()->getStringToIndex(bv_));
3033                         p.setContents(idxstring);
3034                 } else {
3035                         p.setContents(argument);
3036                 }
3037
3038                 owner_->getDialogs()->createIndex(p.getAsString());
3039         }
3040         break;
3041                     
3042         case LFUN_INDEX_INSERT:
3043         {
3044                 InsetCommandParams p;
3045                 p.setFromString(argument);
3046                 InsetIndex * inset = new InsetIndex(p);
3047
3048                 if (!insertInset(inset))
3049                         delete inset;
3050                 else
3051                         updateInset(inset, true);
3052         }
3053         break;
3054                     
3055         case LFUN_INDEX_INSERT_LAST:
3056         {
3057                 string const idxstring(bv_->getLyXText()->getStringToIndex(bv_));
3058                 if (!idxstring.empty()) {
3059                         owner_->message(_("Word `")
3060                                         + idxstring + _(("' indexed.")));
3061                         InsetCommandParams p("index", idxstring);
3062                         InsetIndex * inset = new InsetIndex(p);
3063                         
3064                         if (!insertInset(inset))
3065                                 delete inset;
3066                         else
3067                                 updateInset(inset, true);
3068                 }
3069         }
3070         break;
3071
3072         case LFUN_INDEX_PRINT:
3073         {
3074                 InsetCommandParams p("printindex");
3075                 Inset * inset = new InsetPrintIndex(p);
3076                 if (!insertInset(inset, "Standard"))
3077                         delete inset;
3078         }
3079         break;
3080
3081         case LFUN_PARENTINSERT:
3082         {
3083                 lyxerr << "arg " << argument << endl;
3084                 InsetCommandParams p("lyxparent", argument);
3085                 Inset * inset = new InsetParent(p, *buffer_);
3086                 if (!insertInset(inset, "Standard"))
3087                         delete inset;
3088         }
3089                  
3090         break;
3091
3092         case LFUN_CHILD_INSERT:
3093         {
3094                 InsetInclude::Params p;
3095                 p.cparams.setFromString(argument);
3096                 p.masterFilename_ = buffer_->fileName();
3097
3098                 InsetInclude * inset = new InsetInclude(p);
3099                 if (!insertInset(inset))
3100                         delete inset;
3101                 else {
3102                         updateInset(inset, true);
3103                         bv_->owner()->getDialogs()->showInclude(inset);
3104                 }
3105         }
3106         break; 
3107
3108         case LFUN_FLOAT_LIST:
3109         {
3110                 // We should check the argument for validity. (Lgb)
3111                 Inset * inset = new InsetFloatList(argument);
3112                 if (!insertInset(inset, "Standard"))
3113                         delete inset;
3114         }
3115         break;
3116         
3117         case LFUN_THESAURUS_ENTRY:
3118         {
3119                 string arg = argument;
3120
3121                 if (arg.empty()) {
3122                         arg = bv_->getLyXText()->selectionAsString(buffer_,
3123                                                                    false);
3124  
3125                         // FIXME
3126                         if (arg.size() > 100 || arg.empty()) {
3127                                 // Get word or selection
3128                                 bv_->getLyXText()->selectWordWhenUnderCursor(bv_, LyXText::WHOLE_WORD);
3129                                 arg = bv_->getLyXText()->selectionAsString(buffer_, false);
3130                                 // FIXME: where is getLyXText()->unselect(bv_) ?
3131                         }
3132                 }
3133
3134                 bv_->owner()->getDialogs()->showThesaurus(arg);
3135         }
3136                 break;
3137  
3138         case LFUN_SELFINSERT:
3139         {
3140                 if (argument.empty()) break;
3141                 
3142                 /* Automatically delete the currently selected
3143                  * text and replace it with what is being
3144                  * typed in now. Depends on lyxrc settings
3145                  * "auto_region_delete", which defaults to
3146                  * true (on). */
3147
3148                 LyXText * lt = bv_->getLyXText();
3149                 
3150                 if (lyxrc.auto_region_delete) {
3151                         if (lt->selection.set()) {
3152                                 lt->cutSelection(bv_, false, false);
3153                                 bv_->update(lt,
3154                                             BufferView::SELECT
3155                                             | BufferView::FITCUR
3156                                             | BufferView::CHANGE);
3157                         }
3158                 }
3159                 
3160                 beforeChange(lt);
3161                 LyXFont const old_font(lt->real_current_font);
3162                 
3163                 string::const_iterator cit = argument.begin();
3164                 string::const_iterator end = argument.end();
3165                 for (; cit != end; ++cit) {
3166                         owner_->getIntl()->getTrans().TranslateAndInsert(*cit, lt);
3167                 }
3168                 
3169                 bv_->update(lt,
3170                             BufferView::SELECT
3171                             | BufferView::FITCUR
3172                             | BufferView::CHANGE);
3173                 
3174                 lt->selection.cursor = lt->cursor;
3175                 moveCursorUpdate(false);
3176                 
3177                 // real_current_font.number can change so we need to
3178                 // update the minibuffer
3179                 if (old_font != lt->real_current_font)
3180                         owner_->showState();
3181                 //return string();
3182         }
3183         break;
3184
3185         case LFUN_DATE_INSERT:  // jdblair: date-insert cmd
3186         {
3187                 time_t now_time_t = time(NULL);
3188                 struct tm * now_tm = localtime(&now_time_t);
3189                 setlocale(LC_TIME, "");
3190                 string arg;
3191                 if (!argument.empty())
3192                         arg = argument;
3193                 else 
3194                         arg = lyxrc.date_insert_format;
3195                 char datetmp[32];
3196                 int const datetmp_len =
3197                         ::strftime(datetmp, 32, arg.c_str(), now_tm);
3198
3199                 LyXText * lt = bv_->getLyXText();
3200                 
3201                 for (int i = 0; i < datetmp_len; i++) {
3202                         lt->insertChar(bv_, datetmp[i]);
3203                         update(lt,
3204                                BufferView::SELECT
3205                                | BufferView::FITCUR
3206                                | BufferView::CHANGE);
3207                 }
3208
3209                 lt->selection.cursor = lt->cursor;
3210                 moveCursorUpdate(false);
3211         }
3212         break;
3213
3214         case LFUN_UNKNOWN_ACTION:
3215                 owner_->getLyXFunc()->setErrorMessage(N_("Unknown function!"));
3216                 break;
3217         
3218         default:
3219                 return false;
3220         } // end of switch
3221
3222         return true;
3223 }
3224
3225
3226 void BufferView::Pimpl::newline()
3227 {
3228         if (available()) {
3229                 LyXText * lt = bv_->getLyXText();
3230                 hideCursor();
3231                 update(lt,
3232                        BufferView::SELECT
3233                        | BufferView::FITCUR);
3234                 lt->insertChar(bv_, Paragraph::META_NEWLINE);
3235                 update(lt,
3236                        BufferView::SELECT
3237                        | BufferView::FITCUR
3238                        | BufferView::CHANGE);
3239         }
3240 }
3241
3242
3243 void BufferView::Pimpl::hfill()
3244 {
3245         if (available()) {
3246                 LyXText * lt = bv_->getLyXText();
3247                 hideCursor();
3248                 update(lt,
3249                        BufferView::SELECT
3250                        | BufferView::FITCUR);
3251                 lt->insertChar(bv_, Paragraph::META_HFILL);
3252                 update(lt,
3253                        BufferView::SELECT
3254                        | BufferView::FITCUR
3255                        | BufferView::CHANGE);
3256         }
3257 }
3258
3259
3260 void BufferView::Pimpl::protectedBlank(LyXText * lt)
3261 {
3262         if (available()) {
3263                 hideCursor();
3264                 update(lt, BufferView::SELECT|BufferView::FITCUR);
3265                 InsetSpecialChar * new_inset =
3266                         new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
3267 #ifdef WITH_WARNINGS
3268 #warning Why is this code different from specialChar() below? (JMarc)
3269 // the code in specialChar is a generic version of what used to exist
3270 // for other special chars. I did not merge this case because of the
3271 // call to updateInset(), but what does it do?
3272 #endif
3273                 if (!insertInset(new_inset))
3274                         delete new_inset;
3275                 else
3276                         updateInset(new_inset, true);
3277         }
3278 }
3279
3280
3281 void BufferView::Pimpl::specialChar(InsetSpecialChar::Kind kind)
3282 {
3283         if (available()) {
3284                 LyXText * lt = bv_->getLyXText();
3285                 
3286                 hideCursor();
3287                 update(lt, BufferView::SELECT|BufferView::FITCUR);
3288                 InsetSpecialChar * new_inset = 
3289                         new InsetSpecialChar(kind);
3290                 if (!insertInset(new_inset))
3291                         delete new_inset;
3292         }
3293 }
3294
3295
3296 void BufferView::Pimpl::smartQuote()
3297 {
3298         LyXText const * lt = bv_->getLyXText();
3299         Paragraph const * par = lt->cursor.par();
3300         pos_type pos = lt->cursor.pos();
3301         char c;
3302
3303         if (!pos
3304             || (par->isInset(pos - 1)
3305                 && par->getInset(pos - 1)->isSpace()))
3306                 c = ' ';
3307         else
3308                 c = par->getChar(pos - 1);
3309                 
3310
3311         hideCursor();
3312
3313         LyXLayout const & style =
3314                 textclasslist[bv_->buffer()->params.textclass][par->layout()];
3315         
3316         if (style.pass_thru ||
3317                 (!insertInset(new InsetQuotes(c, bv_->buffer()->params))))
3318                 bv_->owner()->getLyXFunc()->dispatch(LFUN_SELFINSERT, "\"");
3319 }
3320
3321
3322 void BufferView::Pimpl::insertAndEditInset(Inset * inset)
3323 {
3324         if (insertInset(inset))
3325                 inset->edit(bv_);
3326         else
3327                 delete inset;
3328 }
3329
3330  
3331 // Open and lock an updatable inset
3332 bool BufferView::Pimpl::open_new_inset(UpdatableInset * new_inset, bool behind)
3333 {
3334         LyXText * lt = bv_->getLyXText();
3335         
3336         beforeChange(lt);
3337         finishUndo();
3338         if (!insertInset(new_inset)) {
3339                 delete new_inset;
3340                 return false;
3341         }
3342         new_inset->edit(bv_, !behind);
3343         return true;
3344 }
3345
3346
3347 bool BufferView::Pimpl::insertInset(Inset * inset, string const & lout)
3348 {
3349         // if we are in a locking inset we should try to insert the
3350         // inset there otherwise this is a illegal function now
3351         if (bv_->theLockingInset()) {
3352                 if (bv_->theLockingInset()->insetAllowed(inset))
3353                     return bv_->theLockingInset()->insertInset(bv_, inset);
3354                 return false;
3355         }
3356
3357         // not quite sure if we want this...
3358         setCursorParUndo(bv_);
3359         freezeUndo();
3360         
3361         beforeChange(bv_->text);
3362         if (!lout.empty()) {
3363                 update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
3364                 bv_->text->breakParagraph(bv_);
3365                 update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
3366
3367                 if (bv_->text->cursor.par()->size()) {
3368                         bv_->text->cursorLeft(bv_);
3369                         
3370                         bv_->text->breakParagraph(bv_);
3371                         update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
3372                 }
3373
3374                 string lres = lout;
3375                 LyXTextClass const & tclass =
3376                         textclasslist[buffer_->params.textclass];
3377                 bool hasLayout = tclass.hasLayout(lres);
3378                 string lay = tclass.defaultLayoutName();
3379
3380                 if (hasLayout != false) {
3381                         // layout found
3382                         lay = lres;
3383                 } else {
3384                         // layout not fount using default
3385                         lay = tclass.defaultLayoutName();
3386                 }
3387
3388                 bv_->text->setLayout(bv_, lay);
3389                 
3390                 bv_->text->setParagraph(bv_, 0, 0,
3391                                    0, 0,
3392                                    VSpace(VSpace::NONE), VSpace(VSpace::NONE),
3393                                    Spacing(),
3394                                    LYX_ALIGN_LAYOUT, 
3395                                    string(),
3396                                    0);
3397                 update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
3398         }
3399         
3400         bv_->text->insertInset(bv_, inset);
3401         update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
3402
3403         unFreezeUndo();
3404         return true;
3405 }
3406
3407
3408 void BufferView::Pimpl::updateInset(Inset * inset, bool mark_dirty)
3409 {
3410         if (!inset || !available())
3411                 return;
3412
3413         // first check for locking insets
3414         if (bv_->theLockingInset()) {
3415                 if (bv_->theLockingInset() == inset) {
3416                         if (bv_->text->updateInset(bv_, inset)) {
3417                                 update();
3418                                 if (mark_dirty) {
3419                                         buffer_->markDirty();
3420                                 }
3421                                 updateScrollbar();
3422                                 return;
3423                         }
3424                 } else if (bv_->theLockingInset()->updateInsetInInset(bv_, inset)) {
3425                         if (bv_->text->updateInset(bv_,  bv_->theLockingInset())) {
3426                                 update();
3427                                 if (mark_dirty) {
3428                                         buffer_->markDirty();
3429                                 }
3430                                 updateScrollbar();
3431                                 return;
3432                         }
3433                 }
3434         }
3435   
3436         // then check if the inset is a top_level inset (has no owner)
3437         // if yes do the update as always otherwise we have to update the
3438         // toplevel inset where this inset is inside
3439         Inset * tl_inset = inset;
3440         while(tl_inset->owner())
3441                 tl_inset = tl_inset->owner();
3442         hideCursor();
3443         if (tl_inset == inset) {
3444                 update(bv_->text, BufferView::UPDATE);
3445                 if (bv_->text->updateInset(bv_, inset)) {
3446                         if (mark_dirty) {
3447                                 update(bv_->text,
3448                                        BufferView::SELECT
3449                                        | BufferView::FITCUR
3450                                        | BufferView::CHANGE);
3451                         } else {
3452                                 update(bv_->text, SELECT);
3453                         }
3454                         return;
3455                 }
3456         } else if (static_cast<UpdatableInset *>(tl_inset)
3457                            ->updateInsetInInset(bv_, inset))
3458         {
3459                         if (bv_->text->updateInset(bv_,  tl_inset)) {
3460                                 update();
3461                                 updateScrollbar();
3462                         }
3463         }
3464 }
3465
3466
3467 void BufferView::Pimpl::gotoInset(vector<Inset::Code> const & codes,
3468                                   bool same_content)
3469 {
3470         if (!available()) return;
3471         
3472         hideCursor();
3473         beforeChange(bv_->text);
3474         update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
3475         
3476         LyXCursor const & cursor = bv_->text->cursor;
3477  
3478         string contents;
3479         if (same_content &&
3480             cursor.par()->isInset(cursor.pos())) {
3481                 Inset const * inset = cursor.par()->getInset(cursor.pos());
3482                 if (find(codes.begin(), codes.end(), inset->lyxCode())
3483                     != codes.end())
3484                         contents =
3485                                 static_cast<InsetCommand const *>(inset)->getContents();
3486         }
3487         
3488  
3489         if (!bv_->text->gotoNextInset(bv_, codes, contents)) {
3490                 if (bv_->text->cursor.pos() 
3491                     || bv_->text->cursor.par() != bv_->text->ownerParagraph()) {
3492                         LyXCursor tmp = bv_->text->cursor;
3493                         bv_->text->cursor.par(bv_->text->ownerParagraph());
3494                         bv_->text->cursor.pos(0);
3495                         if (!bv_->text->gotoNextInset(bv_, codes, contents)) {
3496                                 bv_->text->cursor = tmp;
3497                                 bv_->owner()->message(_("No more insets"));
3498                         }
3499                 } else {
3500                         bv_->owner()->message(_("No more insets"));
3501                 }
3502         }
3503         update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
3504         bv_->text->selection.cursor = bv_->text->cursor;
3505 }
3506
3507
3508 void BufferView::Pimpl::gotoInset(Inset::Code code, bool same_content)
3509 {
3510         gotoInset(vector<Inset::Code>(1, code), same_content);
3511 }