]> git.lyx.org Git - lyx.git/blob - src/Text3.cpp
Fix #7274.
[lyx.git] / src / Text3.cpp
1 /**
2  * \file Text3.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Alfredo Braunstein
9  * \author Angus Leeming
10  * \author John Levon
11  * \author André Pönitz
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #include <config.h>
17
18 #include "Text.h"
19
20 #include "Bidi.h"
21 #include "BranchList.h"
22 #include "FloatList.h"
23 #include "FuncStatus.h"
24 #include "Buffer.h"
25 #include "buffer_funcs.h"
26 #include "BufferParams.h"
27 #include "BufferView.h"
28 #include "Changes.h"
29 #include "Cursor.h"
30 #include "CutAndPaste.h"
31 #include "DispatchResult.h"
32 #include "ErrorList.h"
33 #include "factory.h"
34 #include "FuncRequest.h"
35 #include "InsetList.h"
36 #include "Intl.h"
37 #include "Language.h"
38 #include "Layout.h"
39 #include "LyXAction.h"
40 #include "LyX.h"
41 #include "Lexer.h"
42 #include "LyXRC.h"
43 #include "Paragraph.h"
44 #include "ParagraphParameters.h"
45 #include "SpellChecker.h"
46 #include "TextClass.h"
47 #include "TextMetrics.h"
48 #include "VSpace.h"
49 #include "WordLangTuple.h"
50
51 #include "frontends/Application.h"
52 #include "frontends/Clipboard.h"
53 #include "frontends/Selection.h"
54
55 #include "insets/InsetCollapsable.h"
56 #include "insets/InsetCommand.h"
57 #include "insets/InsetExternal.h"
58 #include "insets/InsetFloat.h"
59 #include "insets/InsetFloatList.h"
60 #include "insets/InsetGraphics.h"
61 #include "insets/InsetGraphicsParams.h"
62 #include "insets/InsetNewline.h"
63 #include "insets/InsetQuotes.h"
64 #include "insets/InsetSpecialChar.h"
65 #include "insets/InsetText.h"
66 #include "insets/InsetWrap.h"
67
68 #include "support/convert.h"
69 #include "support/debug.h"
70 #include "support/gettext.h"
71 #include "support/lstrings.h"
72 #include "support/lyxtime.h"
73 #include "support/os.h"
74
75 #include "mathed/InsetMathHull.h"
76 #include "mathed/MathMacroTemplate.h"
77
78 #include <boost/next_prior.hpp>
79
80 #include <clocale>
81 #include <sstream>
82
83 using namespace std;
84 using namespace lyx::support;
85
86 namespace lyx {
87
88 using cap::copySelection;
89 using cap::cutSelection;
90 using cap::pasteFromStack;
91 using cap::pasteClipboardText;
92 using cap::pasteClipboardGraphics;
93 using cap::replaceSelection;
94 using cap::grabAndEraseSelection;
95 using cap::selClearOrDel;
96
97 // globals...
98 static Font freefont(ignore_font, ignore_language);
99 static bool toggleall = false;
100
101 static void toggleAndShow(Cursor & cur, Text * text,
102         Font const & font, bool toggleall = true)
103 {
104         text->toggleFree(cur, font, toggleall);
105
106         if (font.language() != ignore_language ||
107             font.fontInfo().number() != FONT_IGNORE) {
108                 TextMetrics const & tm = cur.bv().textMetrics(text);
109                 if (cur.boundary() != tm.isRTLBoundary(cur.pit(), cur.pos(),
110                                                        cur.real_current_font))
111                         text->setCursor(cur, cur.pit(), cur.pos(),
112                                         false, !cur.boundary());
113         }
114 }
115
116
117 static void moveCursor(Cursor & cur, bool selecting)
118 {
119         if (selecting || cur.mark())
120                 cur.setSelection();
121 }
122
123
124 static void finishChange(Cursor & cur, bool selecting)
125 {
126         cur.finishUndo();
127         moveCursor(cur, selecting);
128 }
129
130
131 static void mathDispatch(Cursor & cur, FuncRequest const & cmd, bool display)
132 {
133         cur.recordUndo();
134         docstring sel = cur.selectionAsString(false);
135
136         // It may happen that sel is empty but there is a selection
137         replaceSelection(cur);
138
139         // Is this a valid formula?
140         bool valid = true;
141
142         if (sel.empty()) {
143 #ifdef ENABLE_ASSERTIONS
144                 const int old_pos = cur.pos();
145 #endif
146                 cur.insert(new InsetMathHull(cur.buffer(), hullSimple));
147 #ifdef ENABLE_ASSERTIONS
148                 LASSERT(old_pos == cur.pos(), /**/);
149 #endif
150                 cur.nextInset()->edit(cur, true);
151                 // don't do that also for LFUN_MATH_MODE
152                 // unless you want end up with always changing
153                 // to mathrm when opening an inlined inset --
154                 // I really hate "LyXfunc overloading"...
155                 if (display)
156                         cur.dispatch(FuncRequest(LFUN_MATH_DISPLAY));
157                 // Avoid an unnecessary undo step if cmd.argument
158                 // is empty
159                 if (!cmd.argument().empty())
160                         cur.dispatch(FuncRequest(LFUN_MATH_INSERT,
161                                                  cmd.argument()));
162         } else {
163                 // create a macro if we see "\\newcommand"
164                 // somewhere, and an ordinary formula
165                 // otherwise
166                 if (sel.find(from_ascii("\\newcommand")) == string::npos
167                                 && sel.find(from_ascii("\\newlyxcommand")) == string::npos
168                                 && sel.find(from_ascii("\\def")) == string::npos)
169                 {
170                         InsetMathHull * formula = new InsetMathHull(cur.buffer());
171                         string const selstr = to_utf8(sel);
172                         istringstream is(selstr);
173                         Lexer lex;
174                         lex.setStream(is);
175                         if (!formula->readQuiet(lex)) {
176                                 // No valid formula, let's try with delims
177                                 is.str("$" + selstr + "$");
178                                 lex.setStream(is);
179                                 if (!formula->readQuiet(lex)) {
180                                         // Still not valid, leave it as is
181                                         valid = false;
182                                         delete formula;
183                                         cur.insert(sel);
184                                 } else
185                                         cur.insert(formula);
186                         } else
187                                 cur.insert(formula);
188                 } else {
189                         cur.insert(new MathMacroTemplate(cur.buffer(), sel));
190                 }
191         }
192         if (valid)
193                 cur.message(from_utf8(N_("Math editor mode")));
194         else
195                 cur.message(from_utf8(N_("No valid math formula")));
196 }
197
198
199 void regexpDispatch(Cursor & cur, FuncRequest const & cmd)
200 {
201         LASSERT(cmd.action() == LFUN_REGEXP_MODE, return);
202         if (cur.inRegexped()) {
203                 cur.message(_("Already in regular expression mode"));
204                 return;
205         }
206         cur.recordUndo();
207         docstring sel = cur.selectionAsString(false);
208
209         // It may happen that sel is empty but there is a selection
210         replaceSelection(cur);
211
212         cur.insert(new InsetMathHull(cur.buffer(), hullRegexp));
213         cur.nextInset()->edit(cur, true);
214         cur.niceInsert(sel);
215
216         cur.message(_("Regexp editor mode"));
217 }
218
219
220 static void specialChar(Cursor & cur, InsetSpecialChar::Kind kind)
221 {
222         cur.recordUndo();
223         cap::replaceSelection(cur);
224         cur.insert(new InsetSpecialChar(kind));
225         cur.posForward();
226 }
227
228
229 static bool doInsertInset(Cursor & cur, Text * text,
230         FuncRequest const & cmd, bool edit, bool pastesel)
231 {
232         Buffer & buffer = cur.bv().buffer();
233         BufferParams const & bparams = buffer.params();
234         Inset * inset = createInset(&buffer, cmd);
235         if (!inset)
236                 return false;
237
238         if (InsetCollapsable * ci = inset->asInsetCollapsable())
239                 ci->setButtonLabel();
240
241         cur.recordUndo();
242         if (cmd.action() == LFUN_INDEX_INSERT) {
243                 docstring ds = subst(text->getStringToIndex(cur), '\n', ' ');
244                 text->insertInset(cur, inset);
245                 if (edit)
246                         inset->edit(cur, true);
247                 // Now put this into inset
248                 Font const f(inherit_font, cur.current_font.language());
249                 cur.text()->insertStringAsLines(cur, ds, f);
250                 cur.leaveInset(*inset);
251                 return true;
252         }
253
254         bool gotsel = false;
255         if (cur.selection()) {
256                 cutSelection(cur, false, pastesel);
257                 cur.clearSelection();
258                 gotsel = true;
259         }
260         text->insertInset(cur, inset);
261
262         if (edit)
263                 inset->edit(cur, true);
264
265         if (!gotsel || !pastesel)
266                 return true;
267
268         pasteFromStack(cur, cur.buffer()->errorList("Paste"), 0);
269         cur.buffer()->errors("Paste");
270         cur.clearSelection(); // bug 393
271         cur.finishUndo();
272         InsetText * inset_text = inset->asInsetText();
273         if (inset_text) {
274                 inset_text->fixParagraphsFont();
275                 if (!inset_text->allowMultiPar() || cur.lastpit() == 0) {
276                         // reset first par to default
277                         cur.text()->paragraphs().begin()
278                                 ->setPlainOrDefaultLayout(bparams.documentClass());
279                         cur.pos() = 0;
280                         cur.pit() = 0;
281                         // Merge multiple paragraphs -- hack
282                         while (cur.lastpit() > 0)
283                                 mergeParagraph(bparams, cur.text()->paragraphs(), 0);
284                         cur.leaveInset(*inset);
285                 }
286         } else {
287                 cur.leaveInset(*inset);
288                 // reset surrounding par to default
289                 DocumentClass const & dc = bparams.documentClass();
290                 docstring const layoutname = inset->usePlainLayout()
291                         ? dc.plainLayoutName()
292                         : dc.defaultLayoutName();
293                 text->setLayout(cur, layoutname);
294         }
295         return true;
296 }
297
298
299 string const freefont2string()
300 {
301         return freefont.toString(toggleall);
302 }
303
304
305 /// the type of outline operation
306 enum OutlineOp {
307         OutlineUp, // Move this header with text down
308         OutlineDown,   // Move this header with text up
309         OutlineIn, // Make this header deeper
310         OutlineOut // Make this header shallower
311 };
312
313
314 static void outline(OutlineOp mode, Cursor & cur)
315 {
316         Buffer & buf = *cur.buffer();
317         pit_type & pit = cur.pit();
318         ParagraphList & pars = buf.text().paragraphs();
319         ParagraphList::iterator const bgn = pars.begin();
320         // The first paragraph of the area to be copied:
321         ParagraphList::iterator start = boost::next(bgn, pit);
322         // The final paragraph of area to be copied:
323         ParagraphList::iterator finish = start;
324         ParagraphList::iterator const end = pars.end();
325
326         DocumentClass const & tc = buf.params().documentClass();
327
328         int const thistoclevel = start->layout().toclevel;
329         int toclevel;
330
331         // Move out (down) from this section header
332         if (finish != end)
333                 ++finish;
334
335         // Seek the one (on same level) below
336         for (; finish != end; ++finish) {
337                 toclevel = finish->layout().toclevel;
338                 if (toclevel != Layout::NOT_IN_TOC && toclevel <= thistoclevel)
339                         break;
340         }
341
342         switch (mode) {
343                 case OutlineUp: {
344                         if (start == pars.begin())
345                                 // Nothing to move.
346                                 return;
347                         ParagraphList::iterator dest = start;
348                         // Move out (up) from this header
349                         if (dest == bgn)
350                                 return;
351                         // Search previous same-level header above
352                         do {
353                                 --dest;
354                                 toclevel = dest->layout().toclevel;
355                         } while(dest != bgn
356                                 && (toclevel == Layout::NOT_IN_TOC
357                                     || toclevel > thistoclevel));
358                         // Not found; do nothing
359                         if (toclevel == Layout::NOT_IN_TOC || toclevel > thistoclevel)
360                                 return;
361                         pit_type const newpit = distance(bgn, dest);
362                         pit_type const len = distance(start, finish);
363                         pit_type const deletepit = pit + len;
364                         buf.undo().recordUndo(cur, ATOMIC_UNDO, newpit, deletepit - 1);
365                         pars.splice(dest, start, finish);
366                         cur.pit() = newpit;
367                         break;
368                 }
369                 case OutlineDown: {
370                         if (finish == end)
371                                 // Nothing to move.
372                                 return;
373                         // Go one down from *this* header:
374                         ParagraphList::iterator dest = boost::next(finish, 1);
375                         // Go further down to find header to insert in front of:
376                         for (; dest != end; ++dest) {
377                                 toclevel = dest->layout().toclevel;
378                                 if (toclevel != Layout::NOT_IN_TOC
379                                       && toclevel <= thistoclevel)
380                                         break;
381                         }
382                         // One such was found:
383                         pit_type newpit = distance(bgn, dest);
384                         buf.undo().recordUndo(cur, ATOMIC_UNDO, pit, newpit - 1);
385                         pit_type const len = distance(start, finish);
386                         pars.splice(dest, start, finish);
387                         cur.pit() = newpit - len;
388                         break;
389                 }
390                 case OutlineIn: {
391                         pit_type const len = distance(start, finish);
392                         buf.undo().recordUndo(cur, ATOMIC_UNDO, pit, pit + len - 1);
393                         for (; start != finish; ++start) {
394                                 toclevel = start->layout().toclevel;
395                                 if (toclevel == Layout::NOT_IN_TOC)
396                                         continue;
397                                 DocumentClass::const_iterator lit = tc.begin();
398                                 DocumentClass::const_iterator len = tc.end();
399                                 for (; lit != len; ++lit) {
400                                         if (lit->toclevel == toclevel + 1 &&
401                                             start->layout().labeltype == lit->labeltype) {
402                                                 start->setLayout(*lit);
403                                                 break;
404                                         }
405                                 }
406                         }
407                         break;
408                 }
409                 case OutlineOut: {
410                         pit_type const len = distance(start, finish);
411                         buf.undo().recordUndo(cur, ATOMIC_UNDO, pit, pit + len - 1);
412                         for (; start != finish; ++start) {
413                                 toclevel = start->layout().toclevel;
414                                 if (toclevel == Layout::NOT_IN_TOC)
415                                         continue;
416                                 DocumentClass::const_iterator lit = tc.begin();
417                                 DocumentClass::const_iterator len = tc.end();
418                                 for (; lit != len; ++lit) {
419                                         if (lit->toclevel == toclevel - 1 &&
420                                                 start->layout().labeltype == lit->labeltype) {
421                                                         start->setLayout(*lit);
422                                                         break;
423                                         }
424                                 }
425                         }
426                         break;
427                 }
428         }
429 }
430
431
432 void Text::number(Cursor & cur)
433 {
434         FontInfo font = ignore_font;
435         font.setNumber(FONT_TOGGLE);
436         toggleAndShow(cur, this, Font(font, ignore_language));
437 }
438
439
440 bool Text::isRTL(Paragraph const & par) const
441 {
442         Buffer const & buffer = owner_->buffer();
443         return par.isRTL(buffer.params());
444 }
445
446
447 void Text::dispatch(Cursor & cur, FuncRequest & cmd)
448 {
449         LYXERR(Debug::ACTION, "Text::dispatch: cmd: " << cmd);
450
451         // Dispatch if the cursor is inside the text. It is not the
452         // case for context menus (bug 5797).
453         if (cur.text() != this) {
454                 cur.undispatched();
455                 return;
456         }
457
458         BufferView * bv = &cur.bv();
459         TextMetrics * tm = &bv->textMetrics(this);
460         if (!tm->contains(cur.pit())) {
461                 lyx::dispatch(FuncRequest(LFUN_SCREEN_SHOW_CURSOR));
462                 tm = &bv->textMetrics(this);
463         }
464
465         // FIXME: We use the update flag to indicates wether a singlePar or a
466         // full screen update is needed. We reset it here but shall we restore it
467         // at the end?
468         cur.noScreenUpdate();
469
470         LASSERT(cur.text() == this, /**/);
471         CursorSlice const oldTopSlice = cur.top();
472         bool const oldBoundary = cur.boundary();
473         bool const oldSelection = cur.selection();
474         // Signals that, even if needsUpdate == false, an update of the
475         // cursor paragraph is required
476         bool singleParUpdate = lyxaction.funcHasFlag(cmd.action(),
477                 LyXAction::SingleParUpdate);
478         // Signals that a full-screen update is required
479         bool needsUpdate = !(lyxaction.funcHasFlag(cmd.action(),
480                 LyXAction::NoUpdate) || singleParUpdate);
481         bool const last_misspelled = lyxrc.spellcheck_continuously
482                 && cur.paragraph().isMisspelled(cur.pos(), true);
483         
484         FuncCode const act = cmd.action();
485         switch (act) {
486
487         case LFUN_PARAGRAPH_MOVE_DOWN: {
488                 pit_type const pit = cur.pit();
489                 recUndo(cur, pit, pit + 1);
490                 cur.finishUndo();
491                 pars_.swap(pit, pit + 1);
492                 needsUpdate = true;
493                 cur.forceBufferUpdate();
494                 ++cur.pit();
495                 break;
496         }
497
498         case LFUN_PARAGRAPH_MOVE_UP: {
499                 pit_type const pit = cur.pit();
500                 recUndo(cur, pit - 1, pit);
501                 cur.finishUndo();
502                 pars_.swap(pit, pit - 1);
503                 --cur.pit();
504                 needsUpdate = true;
505                 cur.forceBufferUpdate();
506                 break;
507         }
508
509         case LFUN_APPENDIX: {
510                 Paragraph & par = cur.paragraph();
511                 bool start = !par.params().startOfAppendix();
512
513 // FIXME: The code below only makes sense at top level.
514 // Should LFUN_APPENDIX be restricted to top-level paragraphs?
515                 // ensure that we have only one start_of_appendix in this document
516                 // FIXME: this don't work for multipart document!
517                 for (pit_type tmp = 0, end = pars_.size(); tmp != end; ++tmp) {
518                         if (pars_[tmp].params().startOfAppendix()) {
519                                 recUndo(cur, tmp);
520                                 pars_[tmp].params().startOfAppendix(false);
521                                 break;
522                         }
523                 }
524
525                 cur.recordUndo();
526                 par.params().startOfAppendix(start);
527
528                 // we can set the refreshing parameters now
529                 cur.forceBufferUpdate();
530                 break;
531         }
532
533         case LFUN_WORD_DELETE_FORWARD:
534                 if (cur.selection())
535                         cutSelection(cur, true, false);
536                 else
537                         deleteWordForward(cur);
538                 finishChange(cur, false);
539                 break;
540
541         case LFUN_WORD_DELETE_BACKWARD:
542                 if (cur.selection())
543                         cutSelection(cur, true, false);
544                 else
545                         deleteWordBackward(cur);
546                 finishChange(cur, false);
547                 break;
548
549         case LFUN_LINE_DELETE:
550                 if (cur.selection())
551                         cutSelection(cur, true, false);
552                 else
553                         tm->deleteLineForward(cur);
554                 finishChange(cur, false);
555                 break;
556
557         case LFUN_BUFFER_BEGIN:
558         case LFUN_BUFFER_BEGIN_SELECT:
559                 needsUpdate |= cur.selHandle(act == LFUN_BUFFER_BEGIN_SELECT);
560                 if (cur.depth() == 1)
561                         needsUpdate |= cursorTop(cur);
562                 else
563                         cur.undispatched();
564                 cur.screenUpdateFlags(Update::FitCursor);
565                 break;
566
567         case LFUN_BUFFER_END:
568         case LFUN_BUFFER_END_SELECT:
569                 needsUpdate |= cur.selHandle(act == LFUN_BUFFER_END_SELECT);
570                 if (cur.depth() == 1)
571                         needsUpdate |= cursorBottom(cur);
572                 else
573                         cur.undispatched();
574                 cur.screenUpdateFlags(Update::FitCursor);
575                 break;
576
577         case LFUN_INSET_BEGIN:
578         case LFUN_INSET_BEGIN_SELECT:
579                 needsUpdate |= cur.selHandle(act == LFUN_INSET_BEGIN_SELECT);
580                 if (cur.depth() == 1 || !cur.top().at_begin())
581                         needsUpdate |= cursorTop(cur);
582                 else
583                         cur.undispatched();
584                 cur.screenUpdateFlags(Update::FitCursor);
585                 break;
586
587         case LFUN_INSET_END:
588         case LFUN_INSET_END_SELECT:
589                 needsUpdate |= cur.selHandle(act == LFUN_INSET_END_SELECT);
590                 if (cur.depth() == 1 || !cur.top().at_end())
591                         needsUpdate |= cursorBottom(cur);
592                 else
593                         cur.undispatched();
594                 cur.screenUpdateFlags(Update::FitCursor);
595                 break;
596
597         case LFUN_INSET_SELECT_ALL:
598                 if (cur.depth() == 1 || !cur.selection() || !cur.selBegin().at_begin()
599                           || !cur.selEnd().at_end()) {
600                         needsUpdate |= cur.selHandle(false);
601                         needsUpdate |= cursorTop(cur);
602                         needsUpdate |= cur.selHandle(true);
603                         needsUpdate |= cursorBottom(cur);
604                 } else 
605                         cur.undispatched();
606                 cur.screenUpdateFlags(Update::FitCursor);
607                 break;
608
609         case LFUN_CHAR_FORWARD:
610         case LFUN_CHAR_FORWARD_SELECT:
611                 //LYXERR0(" LFUN_CHAR_FORWARD[SEL]:\n" << cur);
612                 needsUpdate |= cur.selHandle(act == LFUN_CHAR_FORWARD_SELECT);
613                 needsUpdate |= cursorForward(cur);
614
615                 if (!needsUpdate && oldTopSlice == cur.top()
616                                 && cur.boundary() == oldBoundary) {
617                         cur.undispatched();
618                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
619                 
620                         // we will probably be moving out the inset, so we should execute
621                         // the depm-mechanism, but only when the cursor has a place to 
622                         // go outside this inset, i.e. in a slice above.
623                         if (cur.depth() > 1 && cur.pos() == cur.lastpos() 
624                                   && cur.pit() == cur.lastpit()) {
625                                 // The cursor hasn't changed yet. To give the 
626                                 // DEPM the possibility of doing something we must
627                                 // provide it with two different cursors.
628                                 Cursor dummy = cur;
629                                 dummy.pos() = dummy.pit() = 0;
630                                 if (cur.bv().checkDepm(dummy, cur))
631                                         cur.forceBufferUpdate();
632                         }
633                 }
634                 break;
635
636         case LFUN_CHAR_BACKWARD:
637         case LFUN_CHAR_BACKWARD_SELECT:
638                 //lyxerr << "handle LFUN_CHAR_BACKWARD[_SELECT]:\n" << cur << endl;
639                 needsUpdate |= cur.selHandle(act == LFUN_CHAR_BACKWARD_SELECT);
640                 needsUpdate |= cursorBackward(cur);
641
642                 if (!needsUpdate && oldTopSlice == cur.top()
643                         && cur.boundary() == oldBoundary) {
644                         cur.undispatched();
645                         cmd = FuncRequest(LFUN_FINISHED_BACKWARD);
646
647                         // we will probably be moving out the inset, so we should execute
648                         // the depm-mechanism, but only when the cursor has a place to 
649                         // go outside this inset, i.e. in a slice above.
650                         if (cur.depth() > 1 && cur.pos() == 0 && cur.pit() == 0) {
651                                 // The cursor hasn't changed yet. To give the 
652                                 // DEPM the possibility of doing something we must
653                                 // provide it with two different cursors.
654                                 Cursor dummy = cur;
655                                 dummy.pos() = cur.lastpos();
656                                 dummy.pit() = cur.lastpit();
657                                 if (cur.bv().checkDepm(dummy, cur))
658                                         cur.forceBufferUpdate();
659                         }
660                 }
661                 break;
662
663         case LFUN_CHAR_LEFT:
664         case LFUN_CHAR_LEFT_SELECT:
665                 if (lyxrc.visual_cursor) {
666                         needsUpdate |= cur.selHandle(act == LFUN_CHAR_LEFT_SELECT);
667                         needsUpdate |= cursorVisLeft(cur);
668                         if (!needsUpdate && oldTopSlice == cur.top()
669                                         && cur.boundary() == oldBoundary) {
670                                 cur.undispatched();
671                                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
672                         }
673                 } else {
674                         if (reverseDirectionNeeded(cur)) {
675                                 cmd.setAction(cmd.action() == LFUN_CHAR_LEFT_SELECT ?
676                                         LFUN_CHAR_FORWARD_SELECT : LFUN_CHAR_FORWARD);
677                         } else {
678                                 cmd.setAction(cmd.action() == LFUN_CHAR_LEFT_SELECT ?
679                                         LFUN_CHAR_BACKWARD_SELECT : LFUN_CHAR_BACKWARD);
680                         }
681                         dispatch(cur, cmd);
682                         return;
683                 }
684                 break;
685
686         case LFUN_CHAR_RIGHT:
687         case LFUN_CHAR_RIGHT_SELECT:
688                 if (lyxrc.visual_cursor) {
689                         needsUpdate |= cur.selHandle(cmd.action() == LFUN_CHAR_RIGHT_SELECT);
690                         needsUpdate |= cursorVisRight(cur);
691                         if (!needsUpdate && oldTopSlice == cur.top()
692                                         && cur.boundary() == oldBoundary) {
693                                 cur.undispatched();
694                                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
695                         }
696                 } else {
697                         if (reverseDirectionNeeded(cur)) {
698                                 cmd.setAction(cmd.action() == LFUN_CHAR_RIGHT_SELECT ?
699                                         LFUN_CHAR_BACKWARD_SELECT : LFUN_CHAR_BACKWARD);
700                         } else {
701                                 cmd.setAction(cmd.action() == LFUN_CHAR_RIGHT_SELECT ?
702                                         LFUN_CHAR_FORWARD_SELECT : LFUN_CHAR_FORWARD);
703                         }
704                         dispatch(cur, cmd);
705                         return;
706                 }
707                 break;
708
709
710         case LFUN_UP_SELECT:
711         case LFUN_DOWN_SELECT:
712         case LFUN_UP:
713         case LFUN_DOWN: {
714                 // stop/start the selection
715                 bool select = cmd.action() == LFUN_DOWN_SELECT ||
716                         cmd.action() == LFUN_UP_SELECT;
717
718                 // move cursor up/down
719                 bool up = cmd.action() == LFUN_UP_SELECT || cmd.action() == LFUN_UP;
720                 bool const atFirstOrLastRow = cur.atFirstOrLastRow(up);
721
722                 if (!atFirstOrLastRow) {
723                         needsUpdate |= cur.selHandle(select);   
724                         cur.selHandle(select);
725                         cur.upDownInText(up, needsUpdate);
726                         needsUpdate |= cur.beforeDispatchCursor().inMathed();
727                 } else {
728                         // if the cursor cannot be moved up or down do not remove
729                         // the selection right now, but wait for the next dispatch.
730                         if (select)
731                                 needsUpdate |= cur.selHandle(select);   
732                         cur.upDownInText(up, needsUpdate);
733                         cur.undispatched();
734                 }
735
736                 break;
737         }
738
739         case LFUN_PARAGRAPH_UP:
740         case LFUN_PARAGRAPH_UP_SELECT:
741                 needsUpdate |= cur.selHandle(cmd.action() == LFUN_PARAGRAPH_UP_SELECT);
742                 needsUpdate |= cursorUpParagraph(cur);
743                 break;
744
745         case LFUN_PARAGRAPH_DOWN:
746         case LFUN_PARAGRAPH_DOWN_SELECT:
747                 needsUpdate |= cur.selHandle(cmd.action() == LFUN_PARAGRAPH_DOWN_SELECT);
748                 needsUpdate |= cursorDownParagraph(cur);
749                 break;
750
751         case LFUN_LINE_BEGIN:
752         case LFUN_LINE_BEGIN_SELECT:
753                 needsUpdate |= cur.selHandle(cmd.action() == LFUN_LINE_BEGIN_SELECT);
754                 needsUpdate |= tm->cursorHome(cur);
755                 break;
756
757         case LFUN_LINE_END:
758         case LFUN_LINE_END_SELECT:
759                 needsUpdate |= cur.selHandle(cmd.action() == LFUN_LINE_END_SELECT);
760                 needsUpdate |= tm->cursorEnd(cur);
761                 break;
762
763         case LFUN_SECTION_SELECT: {
764                 Buffer const & buf = *cur.buffer();
765                 pit_type const pit = cur.pit();
766                 ParagraphList & pars = buf.text().paragraphs();
767                 ParagraphList::iterator bgn = pars.begin();
768                 // The first paragraph of the area to be selected:
769                 ParagraphList::iterator start = boost::next(bgn, pit);
770                 // The final paragraph of area to be selected:
771                 ParagraphList::iterator finish = start;
772                 ParagraphList::iterator end = pars.end();
773
774                 int const thistoclevel = start->layout().toclevel;
775                 if (thistoclevel == Layout::NOT_IN_TOC)
776                         break;
777
778                 cur.pos() = 0;
779                 Cursor const old_cur = cur;
780                 needsUpdate |= cur.selHandle(true);
781
782                 // Move out (down) from this section header
783                 if (finish != end)
784                         ++finish;
785
786                 // Seek the one (on same level) below
787                 for (; finish != end; ++finish, ++cur.pit()) {
788                         int const toclevel = finish->layout().toclevel;
789                         if (toclevel != Layout::NOT_IN_TOC && toclevel <= thistoclevel)
790                                 break;
791                 }
792                 cur.pos() = cur.lastpos();
793                 
794                 needsUpdate |= cur != old_cur;
795                 break;
796         }
797
798         case LFUN_WORD_RIGHT:
799         case LFUN_WORD_RIGHT_SELECT:
800                 if (lyxrc.visual_cursor) {
801                         needsUpdate |= cur.selHandle(cmd.action() == LFUN_WORD_RIGHT_SELECT);
802                         needsUpdate |= cursorVisRightOneWord(cur);
803                         if (!needsUpdate && oldTopSlice == cur.top()
804                                         && cur.boundary() == oldBoundary) {
805                                 cur.undispatched();
806                                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
807                         }
808                 } else {
809                         if (reverseDirectionNeeded(cur)) {
810                                 cmd.setAction(cmd.action() == LFUN_WORD_RIGHT_SELECT ?
811                                                 LFUN_WORD_BACKWARD_SELECT : LFUN_WORD_BACKWARD);
812                         } else {
813                                 cmd.setAction(cmd.action() == LFUN_WORD_RIGHT_SELECT ?
814                                                 LFUN_WORD_FORWARD_SELECT : LFUN_WORD_FORWARD);
815                         }
816                         dispatch(cur, cmd);
817                         return;
818                 }
819                 break;
820
821         case LFUN_WORD_FORWARD:
822         case LFUN_WORD_FORWARD_SELECT:
823                 needsUpdate |= cur.selHandle(cmd.action() == LFUN_WORD_FORWARD_SELECT);
824                 needsUpdate |= cursorForwardOneWord(cur);
825
826                 if (!needsUpdate && oldTopSlice == cur.top()
827                                 && cur.boundary() == oldBoundary) {
828                         cur.undispatched();
829                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
830                 
831                         // we will probably be moving out the inset, so we should execute
832                         // the depm-mechanism, but only when the cursor has a place to 
833                         // go outside this inset, i.e. in a slice above.
834                         if (cur.depth() > 1 && cur.pos() == cur.lastpos() 
835                                   && cur.pit() == cur.lastpit()) {
836                                 // The cursor hasn't changed yet. To give the 
837                                 // DEPM the possibility of doing something we must
838                                 // provide it with two different cursors.
839                                 Cursor dummy = cur;
840                                 dummy.pos() = dummy.pit() = 0;
841                                 if (cur.bv().checkDepm(dummy, cur))
842                                         cur.forceBufferUpdate();
843                         }
844                 }
845                 break;
846
847         case LFUN_WORD_LEFT:
848         case LFUN_WORD_LEFT_SELECT:
849                 if (lyxrc.visual_cursor) {
850                         needsUpdate |= cur.selHandle(cmd.action() == LFUN_WORD_LEFT_SELECT);
851                         needsUpdate |= cursorVisLeftOneWord(cur);
852                         if (!needsUpdate && oldTopSlice == cur.top()
853                                         && cur.boundary() == oldBoundary) {
854                                 cur.undispatched();
855                                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
856                         }
857                 } else {
858                         if (reverseDirectionNeeded(cur)) {
859                                 cmd.setAction(cmd.action() == LFUN_WORD_LEFT_SELECT ?
860                                                 LFUN_WORD_FORWARD_SELECT : LFUN_WORD_FORWARD);
861                         } else {
862                                 cmd.setAction(cmd.action() == LFUN_WORD_LEFT_SELECT ?
863                                                 LFUN_WORD_BACKWARD_SELECT : LFUN_WORD_BACKWARD);
864                         }
865                         dispatch(cur, cmd);
866                         return;
867                 }
868                 break;
869
870         case LFUN_WORD_BACKWARD:
871         case LFUN_WORD_BACKWARD_SELECT:
872                 needsUpdate |= cur.selHandle(cmd.action() == LFUN_WORD_BACKWARD_SELECT);
873                 needsUpdate |= cursorBackwardOneWord(cur);
874         
875                 if (!needsUpdate && oldTopSlice == cur.top()
876                                 && cur.boundary() == oldBoundary) {
877                         cur.undispatched();
878                         cmd = FuncRequest(LFUN_FINISHED_BACKWARD);
879                 
880                         // we will probably be moving out the inset, so we should execute
881                         // the depm-mechanism, but only when the cursor has a place to 
882                         // go outside this inset, i.e. in a slice above.
883                         if (cur.depth() > 1 && cur.pos() == 0 
884                                   && cur.pit() == 0) {
885                                 // The cursor hasn't changed yet. To give the 
886                                 // DEPM the possibility of doing something we must
887                                 // provide it with two different cursors.
888                                 Cursor dummy = cur;
889                                 dummy.pos() = cur.lastpos();
890                                 dummy.pit() = cur.lastpit();
891                                 if (cur.bv().checkDepm(dummy, cur))
892                                         cur.forceBufferUpdate();
893                         }
894                 }
895                 break;
896
897         case LFUN_WORD_SELECT: {
898                 selectWord(cur, WHOLE_WORD);
899                 finishChange(cur, true);
900                 break;
901         }
902
903         case LFUN_NEWLINE_INSERT: {
904                 InsetNewlineParams inp;
905                 docstring arg = cmd.argument();
906                 // this avoids a double undo
907                 // FIXME: should not be needed, ideally
908                 if (!cur.selection())
909                         cur.recordUndo();
910                 cap::replaceSelection(cur);
911                 if (arg == "linebreak")
912                         inp.kind = InsetNewlineParams::LINEBREAK;
913                 else
914                         inp.kind = InsetNewlineParams::NEWLINE;
915                 cur.insert(new InsetNewline(inp));
916                 cur.posForward();
917                 moveCursor(cur, false);
918                 break;
919         }
920
921         case LFUN_TAB_INSERT: {
922                 bool const multi_par_selection = cur.selection() &&
923                         cur.selBegin().pit() != cur.selEnd().pit();
924                 if (multi_par_selection) {
925                         // If there is a multi-paragraph selection, a tab is inserted
926                         // at the beginning of each paragraph.
927                         cur.recordUndoSelection();
928                         pit_type const pit_end = cur.selEnd().pit();
929                         for (pit_type pit = cur.selBegin().pit(); pit <= pit_end; pit++) {
930                                 pars_[pit].insertChar(0, '\t', 
931                                                       bv->buffer().params().trackChanges);
932                                 // Update the selection pos to make sure the selection does not
933                                 // change as the inserted tab will increase the logical pos.
934                                 if (cur.realAnchor().pit() == pit)
935                                         cur.realAnchor().forwardPos();
936                                 if (cur.pit() == pit)
937                                         cur.forwardPos();
938                         }
939                         cur.finishUndo();
940                 } else {
941                         // Maybe we shouldn't allow tabs within a line, because they
942                         // are not (yet) aligned as one might do expect.
943                         FuncRequest cmd(LFUN_SELF_INSERT, from_ascii("\t"));
944                         dispatch(cur, cmd);     
945                 }
946                 break;
947         }
948
949         case LFUN_TAB_DELETE: {
950                 bool const tc = bv->buffer().params().trackChanges;
951                 if (cur.selection()) {
952                         // If there is a selection, a tab (if present) is removed from
953                         // the beginning of each paragraph.
954                         cur.recordUndoSelection();
955                         pit_type const pit_end = cur.selEnd().pit();
956                         for (pit_type pit = cur.selBegin().pit(); pit <= pit_end; pit++) {
957                                 Paragraph & par = paragraphs()[pit];
958                                 if (par.empty())
959                                         continue;
960                                 char_type const c = par.getChar(0);
961                                 if (c == '\t' || c == ' ') {
962                                         // remove either 1 tab or 4 spaces.
963                                         int const n = (c == ' ' ? 4 : 1);
964                                         for (int i = 0; i < n 
965                                                   && !par.empty() && par.getChar(0) == c; ++i) {
966                                                 if (cur.pit() == pit)
967                                                         cur.posBackward();
968                                                 if (cur.realAnchor().pit() == pit 
969                                                           && cur.realAnchor().pos() > 0 )
970                                                         cur.realAnchor().backwardPos();
971                                                 par.eraseChar(0, tc);
972                                         }
973                                 }
974                         }
975                         cur.finishUndo();
976                 } else {
977                         // If there is no selection, try to remove a tab or some spaces 
978                         // before the position of the cursor.
979                         Paragraph & par = paragraphs()[cur.pit()];
980                         pos_type const pos = cur.pos();
981                         
982                         if (pos == 0)
983                                 break;
984                         
985                         char_type const c = par.getChar(pos - 1);
986                         cur.recordUndo();
987                         if (c == '\t') {
988                                 cur.posBackward();
989                                 par.eraseChar(cur.pos(), tc);
990                         } else
991                                 for (int n_spaces = 0; 
992                                      cur.pos() > 0
993                                              && par.getChar(cur.pos() - 1) == ' ' 
994                                              && n_spaces < 4;
995                                      ++n_spaces) {
996                                         cur.posBackward();
997                                         par.eraseChar(cur.pos(), tc);
998                                 }
999                         cur.finishUndo();
1000                 }
1001                 break;
1002         }
1003
1004         case LFUN_CHAR_DELETE_FORWARD:
1005                 if (!cur.selection()) {
1006                         if (cur.pos() == cur.paragraph().size())
1007                                 // Par boundary, force full-screen update
1008                                 singleParUpdate = false;
1009                         needsUpdate |= erase(cur);
1010                         cur.resetAnchor();
1011                         // It is possible to make it a lot faster still
1012                         // just comment out the line below...
1013                 } else {
1014                         cutSelection(cur, true, false);
1015                         singleParUpdate = false;
1016                 }
1017                 moveCursor(cur, false);
1018                 break;
1019
1020         case LFUN_CHAR_DELETE_BACKWARD:
1021                 if (!cur.selection()) {
1022                         if (bv->getIntl().getTransManager().backspace()) {
1023                                 // Par boundary, full-screen update
1024                                 if (cur.pos() == 0)
1025                                         singleParUpdate = false;
1026                                 needsUpdate |= backspace(cur);
1027                                 cur.resetAnchor();
1028                                 // It is possible to make it a lot faster still
1029                                 // just comment out the line below...
1030                         }
1031                 } else {
1032                         cutSelection(cur, true, false);
1033                         singleParUpdate = false;
1034                 }
1035                 break;
1036
1037         case LFUN_BREAK_PARAGRAPH:
1038                 cap::replaceSelection(cur);
1039                 breakParagraph(cur, cmd.argument() == "inverse");
1040                 cur.resetAnchor();
1041                 break;
1042
1043         case LFUN_INSET_INSERT: {
1044                 cur.recordUndo();
1045
1046                 // We have to avoid triggering InstantPreview loading
1047                 // before inserting into the document. See bug #5626.
1048                 bool loaded = bv->buffer().isFullyLoaded();
1049                 bv->buffer().setFullyLoaded(false);
1050                 Inset * inset = createInset(&bv->buffer(), cmd);
1051                 bv->buffer().setFullyLoaded(loaded);
1052
1053                 if (inset) {
1054                         // FIXME (Abdel 01/02/2006):
1055                         // What follows would be a partial fix for bug 2154:
1056                         //   http://www.lyx.org/trac/ticket/2154
1057                         // This automatically put the label inset _after_ a
1058                         // numbered section. It should be possible to extend the mechanism
1059                         // to any kind of LateX environement.
1060                         // The correct way to fix that bug would be at LateX generation.
1061                         // I'll let the code here for reference as it could be used for some
1062                         // other feature like "automatic labelling".
1063                         /*
1064                         Paragraph & par = pars_[cur.pit()];
1065                         if (inset->lyxCode() == LABEL_CODE
1066                                 && par.layout().labeltype == LABEL_COUNTER) {
1067                                 // Go to the end of the paragraph
1068                                 // Warning: Because of Change-Tracking, the last
1069                                 // position is 'size()' and not 'size()-1':
1070                                 cur.pos() = par.size();
1071                                 // Insert a new paragraph
1072                                 FuncRequest fr(LFUN_BREAK_PARAGRAPH);
1073                                 dispatch(cur, fr);
1074                         }
1075                         */
1076                         if (cur.selection())
1077                                 cutSelection(cur, true, false);
1078                         cur.insert(inset);
1079                         if (inset->editable() && inset->asInsetText())
1080                                 inset->edit(cur, true);
1081                         else
1082                                 cur.posForward();
1083
1084                         // trigger InstantPreview now
1085                         if (inset->lyxCode() == EXTERNAL_CODE) {
1086                                 InsetExternal & ins =
1087                                         static_cast<InsetExternal &>(*inset);
1088                                 ins.updatePreview();
1089                         }
1090                 }
1091
1092                 break;
1093         }
1094
1095         case LFUN_INSET_DISSOLVE: {
1096                 if (dissolveInset(cur)) {
1097                         needsUpdate = true;
1098                         cur.forceBufferUpdate();
1099                 }
1100                 break;
1101         }
1102
1103         case LFUN_SET_GRAPHICS_GROUP: {
1104                 InsetGraphics * ins = graphics::getCurrentGraphicsInset(cur);
1105                 if (!ins)
1106                         break;
1107
1108                 cur.recordUndo();
1109
1110                 string id = to_utf8(cmd.argument());
1111                 string grp = graphics::getGroupParams(bv->buffer(), id);
1112                 InsetGraphicsParams tmp, inspar = ins->getParams();
1113
1114                 if (id.empty())
1115                         inspar.groupId = to_utf8(cmd.argument());
1116                 else {
1117                         InsetGraphics::string2params(grp, bv->buffer(), tmp);
1118                         tmp.filename = inspar.filename;
1119                         inspar = tmp;
1120                 }
1121
1122                 ins->setParams(inspar);
1123         }
1124
1125         case LFUN_SPACE_INSERT:
1126                 if (cur.paragraph().layout().free_spacing)
1127                         insertChar(cur, ' ');
1128                 else {
1129                         doInsertInset(cur, this, cmd, false, false);
1130                         cur.posForward();
1131                 }
1132                 moveCursor(cur, false);
1133                 break;
1134
1135         case LFUN_SPECIALCHAR_INSERT: {
1136                 string const name = to_utf8(cmd.argument());
1137                 if (name == "hyphenation")
1138                         specialChar(cur, InsetSpecialChar::HYPHENATION);
1139                 else if (name == "ligature-break")
1140                         specialChar(cur, InsetSpecialChar::LIGATURE_BREAK);
1141                 else if (name == "slash")
1142                         specialChar(cur, InsetSpecialChar::SLASH);
1143                 else if (name == "nobreakdash")
1144                         specialChar(cur, InsetSpecialChar::NOBREAKDASH);
1145                 else if (name == "dots")
1146                         specialChar(cur, InsetSpecialChar::LDOTS);
1147                 else if (name == "end-of-sentence")
1148                         specialChar(cur, InsetSpecialChar::END_OF_SENTENCE);
1149                 else if (name == "menu-separator")
1150                         specialChar(cur, InsetSpecialChar::MENU_SEPARATOR);
1151                 else if (name.empty())
1152                         lyxerr << "LyX function 'specialchar-insert' needs an argument." << endl;
1153                 else
1154                         lyxerr << "Wrong argument for LyX function 'specialchar-insert'." << endl;
1155                 break;
1156         }
1157
1158         case LFUN_WORD_UPCASE:
1159                 changeCase(cur, text_uppercase);
1160                 break;
1161
1162         case LFUN_WORD_LOWCASE:
1163                 changeCase(cur, text_lowercase);
1164                 break;
1165
1166         case LFUN_WORD_CAPITALIZE:
1167                 changeCase(cur, text_capitalization);
1168                 break;
1169
1170         case LFUN_CHARS_TRANSPOSE:
1171                 charsTranspose(cur);
1172                 break;
1173
1174         case LFUN_PASTE: {
1175                 cur.message(_("Paste"));
1176                 LASSERT(cur.selBegin().idx() == cur.selEnd().idx(), /**/);
1177                 cap::replaceSelection(cur);
1178
1179                 // without argument?
1180                 string const arg = to_utf8(cmd.argument());
1181                 if (arg.empty()) {
1182                         if (theClipboard().isInternal())
1183                                 pasteFromStack(cur, bv->buffer().errorList("Paste"), 0);
1184                         else if (theClipboard().hasGraphicsContents() 
1185                                      && !theClipboard().hasTextContents())
1186                                 pasteClipboardGraphics(cur, bv->buffer().errorList("Paste"));
1187                         else
1188                                 pasteClipboardText(cur, bv->buffer().errorList("Paste"));
1189                 } else if (isStrUnsignedInt(arg)) {
1190                         // we have a numerical argument
1191                         pasteFromStack(cur, bv->buffer().errorList("Paste"),
1192                                        convert<unsigned int>(arg));
1193                 } else {
1194                         Clipboard::GraphicsType type = Clipboard::AnyGraphicsType;
1195                         if (arg == "pdf")
1196                                 type = Clipboard::PdfGraphicsType;
1197                         else if (arg == "png")
1198                                 type = Clipboard::PngGraphicsType;
1199                         else if (arg == "jpeg")
1200                                 type = Clipboard::JpegGraphicsType;
1201                         else if (arg == "linkback")
1202                                 type = Clipboard::LinkBackGraphicsType;
1203                         else if (arg == "emf")
1204                                 type = Clipboard::EmfGraphicsType;
1205                         else if (arg == "wmf")
1206                                 type = Clipboard::WmfGraphicsType;
1207
1208                         else
1209                                 LASSERT(false, /**/);
1210
1211                         pasteClipboardGraphics(cur, bv->buffer().errorList("Paste"), type);
1212                 }
1213
1214                 bv->buffer().errors("Paste");
1215                 cur.clearSelection(); // bug 393
1216                 cur.finishUndo();
1217                 break;
1218         }
1219
1220         case LFUN_CUT:
1221                 cutSelection(cur, true, true);
1222                 cur.message(_("Cut"));
1223                 break;
1224
1225         case LFUN_COPY:
1226                 copySelection(cur);
1227                 cur.message(_("Copy"));
1228                 break;
1229
1230         case LFUN_SERVER_GET_XY:
1231                 cur.message(from_utf8(
1232                         convert<string>(tm->cursorX(cur.top(), cur.boundary()))
1233                         + ' ' + convert<string>(tm->cursorY(cur.top(), cur.boundary()))));
1234                 break;
1235
1236         case LFUN_SERVER_SET_XY: {
1237                 int x = 0;
1238                 int y = 0;
1239                 istringstream is(to_utf8(cmd.argument()));
1240                 is >> x >> y;
1241                 if (!is)
1242                         lyxerr << "SETXY: Could not parse coordinates in '"
1243                                << to_utf8(cmd.argument()) << endl;
1244                 else
1245                         tm->setCursorFromCoordinates(cur, x, y);
1246                 break;
1247         }
1248
1249         case LFUN_SERVER_GET_LAYOUT:
1250                 cur.message(cur.paragraph().layout().name());
1251                 break;
1252
1253         case LFUN_LAYOUT: {
1254                 docstring layout = cmd.argument();
1255                 LYXERR(Debug::INFO, "LFUN_LAYOUT: (arg) " << to_utf8(layout));
1256
1257                 Paragraph const & para = cur.paragraph();
1258                 docstring const old_layout = para.layout().name();
1259                 DocumentClass const & tclass = bv->buffer().params().documentClass();
1260
1261                 if (layout.empty())
1262                         layout = tclass.defaultLayoutName();
1263
1264                 if (owner_->forcePlainLayout())
1265                         // in this case only the empty layout is allowed
1266                         layout = tclass.plainLayoutName();
1267                 else if (para.usePlainLayout()) {
1268                         // in this case, default layout maps to empty layout
1269                         if (layout == tclass.defaultLayoutName())
1270                                 layout = tclass.plainLayoutName();
1271                 } else {
1272                         // otherwise, the empty layout maps to the default
1273                         if (layout == tclass.plainLayoutName())
1274                                 layout = tclass.defaultLayoutName();
1275                 }
1276
1277                 bool hasLayout = tclass.hasLayout(layout);
1278
1279                 // If the entry is obsolete, use the new one instead.
1280                 if (hasLayout) {
1281                         docstring const & obs = tclass[layout].obsoleted_by();
1282                         if (!obs.empty())
1283                                 layout = obs;
1284                 }
1285
1286                 if (!hasLayout) {
1287                         cur.errorMessage(from_utf8(N_("Layout ")) + cmd.argument() +
1288                                 from_utf8(N_(" not known")));
1289                         break;
1290                 }
1291
1292                 bool change_layout = (old_layout != layout);
1293
1294                 if (!change_layout && cur.selection() &&
1295                         cur.selBegin().pit() != cur.selEnd().pit())
1296                 {
1297                         pit_type spit = cur.selBegin().pit();
1298                         pit_type epit = cur.selEnd().pit() + 1;
1299                         while (spit != epit) {
1300                                 if (pars_[spit].layout().name() != old_layout) {
1301                                         change_layout = true;
1302                                         break;
1303                                 }
1304                                 ++spit;
1305                         }
1306                 }
1307
1308                 if (change_layout)
1309                         setLayout(cur, layout);
1310
1311                 break;
1312         }
1313
1314         case LFUN_CLIPBOARD_PASTE:
1315                 cur.clearSelection();
1316                 pasteClipboardText(cur, bv->buffer().errorList("Paste"),
1317                                cmd.argument() == "paragraph");
1318                 bv->buffer().errors("Paste");
1319                 break;
1320
1321         case LFUN_PRIMARY_SELECTION_PASTE:
1322                 pasteString(cur, theSelection().get(),
1323                             cmd.argument() == "paragraph");
1324                 break;
1325
1326         case LFUN_SELECTION_PASTE:
1327                 // Copy the selection buffer to the clipboard stack,
1328                 // because we want it to appear in the "Edit->Paste
1329                 // recent" menu.
1330                 cap::copySelectionToStack();
1331                 cap::pasteSelection(bv->cursor(), bv->buffer().errorList("Paste"));
1332                 bv->buffer().errors("Paste");
1333                 break;
1334
1335         case LFUN_UNICODE_INSERT: {
1336                 if (cmd.argument().empty())
1337                         break;
1338                 docstring hexstring = cmd.argument();
1339                 if (isHex(hexstring)) {
1340                         char_type c = hexToInt(hexstring);
1341                         if (c >= 32 && c < 0x10ffff) {
1342                                 lyxerr << "Inserting c: " << c << endl;
1343                                 docstring s = docstring(1, c);
1344                                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, s));
1345                         }
1346                 }
1347                 break;
1348         }
1349
1350         case LFUN_QUOTE_INSERT: {
1351                 // this avoids a double undo
1352                 // FIXME: should not be needed, ideally
1353                 if (!cur.selection())
1354                         cur.recordUndo();
1355                 cap::replaceSelection(cur);
1356
1357                 Paragraph const & par = cur.paragraph();
1358                 pos_type pos = cur.pos();
1359
1360                 BufferParams const & bufparams = bv->buffer().params();
1361                 bool const hebrew = 
1362                         par.getFontSettings(bufparams, pos).language()->lang() == "hebrew";
1363                 bool const allow_inset_quote = !(par.isPassThru() || hebrew);
1364                 
1365                 if (allow_inset_quote) {
1366                         char_type c = ' ';
1367                         if (pos > 0 && (!cur.prevInset() || !cur.prevInset()->isSpace()))
1368                                 c = par.getChar(pos - 1);
1369                         string const arg = to_utf8(cmd.argument());
1370                         InsetQuotes::QuoteTimes const quote_type = (arg == "single")
1371                                 ? InsetQuotes::SingleQuotes : InsetQuotes::DoubleQuotes;
1372                         cur.insert(new InsetQuotes(cur.buffer(), c, quote_type));
1373                         cur.posForward();
1374                 } else {
1375                         // The cursor might have been invalidated by the replaceSelection.
1376                         cur.buffer()->changed(true);
1377                         lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, "\""));
1378                 }                       
1379                 break;
1380         }
1381
1382         case LFUN_DATE_INSERT: {
1383                 string const format = cmd.argument().empty()
1384                         ? lyxrc.date_insert_format : to_utf8(cmd.argument());
1385                 string const time = formatted_time(current_time(), format);
1386                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, time));
1387                 break;
1388         }
1389
1390         case LFUN_MOUSE_TRIPLE:
1391                 if (cmd.button() == mouse_button::button1) {
1392                         tm->cursorHome(cur);
1393                         cur.resetAnchor();
1394                         tm->cursorEnd(cur);
1395                         cur.setSelection();
1396                         bv->cursor() = cur;
1397                 }
1398                 break;
1399
1400         case LFUN_MOUSE_DOUBLE:
1401                 if (cmd.button() == mouse_button::button1) {
1402                         selectWord(cur, WHOLE_WORD_STRICT);
1403                         bv->cursor() = cur;
1404                 }
1405                 break;
1406
1407         // Single-click on work area
1408         case LFUN_MOUSE_PRESS: {
1409                 // We are not marking a selection with the keyboard in any case.
1410                 Cursor & bvcur = cur.bv().cursor();
1411                 bvcur.setMark(false);
1412                 switch (cmd.button()) {
1413                 case mouse_button::button1:
1414                         // Set the cursor
1415                         if (!bv->mouseSetCursor(cur, cmd.argument() == "region-select"))
1416                                 cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1417                         if (bvcur.wordSelection())
1418                                 selectWord(bvcur, WHOLE_WORD);
1419                         break;
1420
1421                 case mouse_button::button2:
1422                         // Middle mouse pasting.
1423                         bv->mouseSetCursor(cur);
1424                         lyx::dispatch(
1425                                 FuncRequest(LFUN_COMMAND_ALTERNATIVES,
1426                                             "selection-paste ; primary-selection-paste paragraph"));
1427                         cur.noScreenUpdate();
1428                         break;
1429
1430                 case mouse_button::button3: {
1431                         // Don't do anything if we right-click a
1432                         // selection, a context menu will popup.
1433                         if (bvcur.selection() && cur >= bvcur.selectionBegin()
1434                             && cur < bvcur.selectionEnd()) {
1435                                 cur.noScreenUpdate();
1436                                 return;
1437                         }
1438                         if (!bv->mouseSetCursor(cur, false))
1439                                 cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1440                         break;
1441                 }
1442
1443                 default:
1444                         break;
1445                 } // switch (cmd.button())
1446                 break;
1447         }
1448         case LFUN_MOUSE_MOTION: {
1449                 // Mouse motion with right or middle mouse do nothing for now.
1450                 if (cmd.button() != mouse_button::button1) {
1451                         cur.noScreenUpdate();
1452                         return;
1453                 }
1454                 // ignore motions deeper nested than the real anchor
1455                 Cursor & bvcur = cur.bv().cursor();
1456                 if (!bvcur.realAnchor().hasPart(cur)) {
1457                         cur.undispatched();
1458                         break;
1459                 }
1460                 CursorSlice old = bvcur.top();
1461
1462                 int const wh = bv->workHeight();
1463                 int const y = max(0, min(wh - 1, cmd.y()));
1464
1465                 tm->setCursorFromCoordinates(cur, cmd.x(), y);
1466                 cur.setTargetX(cmd.x());
1467                 if (cmd.y() >= wh)
1468                         lyx::dispatch(FuncRequest(LFUN_DOWN_SELECT));
1469                 else if (cmd.y() < 0)
1470                         lyx::dispatch(FuncRequest(LFUN_UP_SELECT));
1471                 // This is to allow jumping over large insets
1472                 if (cur.top() == old) {
1473                         if (cmd.y() >= wh)
1474                                 lyx::dispatch(FuncRequest(LFUN_DOWN_SELECT));
1475                         else if (cmd.y() < 0)
1476                                 lyx::dispatch(FuncRequest(LFUN_UP_SELECT));
1477                 }
1478                 // We continue with our existing selection or start a new one, so don't
1479                 // reset the anchor.
1480                 bvcur.setCursor(cur);
1481                 bvcur.setSelection(true);
1482                 if (cur.top() == old) {
1483                         // We didn't move one iota, so no need to update the screen.
1484                         cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1485                         //cur.noScreenUpdate();
1486                         return;
1487                 }
1488                 break;
1489         }
1490
1491         case LFUN_MOUSE_RELEASE:
1492                 switch (cmd.button()) {
1493                 case mouse_button::button1:
1494                         // Cursor was set at LFUN_MOUSE_PRESS or LFUN_MOUSE_MOTION time.
1495                         // If there is a new selection, update persistent selection;
1496                         // otherwise, single click does not clear persistent selection
1497                         // buffer.
1498                         if (cur.selection()) {
1499                                 // Finish selection. If double click,
1500                                 // cur is moved to the end of word by
1501                                 // selectWord but bvcur is current
1502                                 // mouse position.
1503                                 cur.bv().cursor().setSelection();
1504                                 // We might have removed an empty but drawn selection
1505                                 // (probably a margin)
1506                                 cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1507                         } else
1508                                 cur.noScreenUpdate();
1509                         // FIXME: We could try to handle drag and drop of selection here.
1510                         return;
1511
1512                 case mouse_button::button2:
1513                         // Middle mouse pasting is handled at mouse press time,
1514                         // see LFUN_MOUSE_PRESS.
1515                         cur.noScreenUpdate();
1516                         return;
1517
1518                 case mouse_button::button3:
1519                         // Cursor was set at LFUN_MOUSE_PRESS time.
1520                         // FIXME: If there is a selection we could try to handle a special
1521                         // drag & drop context menu.
1522                         cur.noScreenUpdate();
1523                         return;
1524
1525                 case mouse_button::none:
1526                 case mouse_button::button4:
1527                 case mouse_button::button5:
1528                         break;
1529                 } // switch (cmd.button())
1530
1531                 break;
1532
1533         case LFUN_SELF_INSERT: {
1534                 if (cmd.argument().empty())
1535                         break;
1536
1537                 // Automatically delete the currently selected
1538                 // text and replace it with what is being
1539                 // typed in now. Depends on lyxrc settings
1540                 // "auto_region_delete", which defaults to
1541                 // true (on).
1542
1543                 if (lyxrc.auto_region_delete && cur.selection())
1544                         cutSelection(cur, false, false);
1545
1546                 cur.clearSelection();
1547
1548                 docstring::const_iterator cit = cmd.argument().begin();
1549                 docstring::const_iterator const end = cmd.argument().end();
1550                 for (; cit != end; ++cit)
1551                         bv->translateAndInsert(*cit, this, cur);
1552
1553                 cur.resetAnchor();
1554                 moveCursor(cur, false);
1555                 bv->bookmarkEditPosition();
1556                 break;
1557         }
1558
1559         case LFUN_HYPERLINK_INSERT: {
1560                 InsetCommandParams p(HYPERLINK_CODE);
1561                 docstring content;
1562                 if (cur.selection()) {
1563                         content = cur.selectionAsString(false);
1564                         cutSelection(cur, true, false);
1565                 }
1566                 p["target"] = (cmd.argument().empty()) ?
1567                         content : cmd.argument();
1568                 string const data = InsetCommand::params2string(p);
1569                 if (p["target"].empty()) {
1570                         bv->showDialog("href", data);
1571                 } else {
1572                         FuncRequest fr(LFUN_INSET_INSERT, data);
1573                         dispatch(cur, fr);
1574                 }
1575                 break;
1576         }
1577
1578         case LFUN_LABEL_INSERT: {
1579                 InsetCommandParams p(LABEL_CODE);
1580                 // Try to generate a valid label
1581                 p["name"] = (cmd.argument().empty()) ?
1582                         cur.getPossibleLabel() :
1583                         cmd.argument();
1584                 string const data = InsetCommand::params2string(p);
1585
1586                 if (cmd.argument().empty()) {
1587                         bv->showDialog("label", data);
1588                 } else {
1589                         FuncRequest fr(LFUN_INSET_INSERT, data);
1590                         dispatch(cur, fr);
1591                 }
1592                 break;
1593         }
1594
1595         case LFUN_INFO_INSERT: {
1596                 Inset * inset;
1597                 if (cmd.argument().empty() && cur.selection()) {
1598                         // if command argument is empty use current selection as parameter.
1599                         docstring ds = cur.selectionAsString(false);
1600                         cutSelection(cur, true, false);
1601                         FuncRequest cmd0(cmd, ds);
1602                         inset = createInset(cur.buffer(), cmd0);
1603                 } else {
1604                         inset = createInset(cur.buffer(), cmd);
1605                 }
1606                 if (!inset)
1607                         break;
1608                 cur.recordUndo();
1609                 insertInset(cur, inset);
1610                 cur.posForward();
1611                 break;
1612         }
1613         case LFUN_CAPTION_INSERT:
1614         case LFUN_FOOTNOTE_INSERT:
1615         case LFUN_NOTE_INSERT:
1616         case LFUN_FLEX_INSERT:
1617         case LFUN_BOX_INSERT:
1618         case LFUN_BRANCH_INSERT:
1619         case LFUN_PHANTOM_INSERT:
1620         case LFUN_ERT_INSERT:
1621         case LFUN_LISTING_INSERT:
1622         case LFUN_MARGINALNOTE_INSERT:
1623         case LFUN_ARGUMENT_INSERT:
1624         case LFUN_INDEX_INSERT:
1625         case LFUN_PREVIEW_INSERT:
1626         case LFUN_SCRIPT_INSERT:
1627                 // Open the inset, and move the current selection
1628                 // inside it.
1629                 doInsertInset(cur, this, cmd, true, true);
1630                 cur.posForward();
1631                 // Some insets are numbered, others are shown in the outline pane so
1632                 // let's update the labels and the toc backend.
1633                 cur.forceBufferUpdate();
1634                 break;
1635
1636         case LFUN_TABULAR_INSERT:
1637                 // if there were no arguments, just open the dialog
1638                 if (doInsertInset(cur, this, cmd, false, true))
1639                         cur.posForward();
1640                 else
1641                         bv->showDialog("tabularcreate");
1642
1643                 break;
1644
1645         case LFUN_FLOAT_INSERT:
1646         case LFUN_FLOAT_WIDE_INSERT:
1647         case LFUN_WRAP_INSERT: {
1648                 // will some text be moved into the inset?
1649                 bool content = cur.selection();
1650
1651                 doInsertInset(cur, this, cmd, true, true);
1652                 cur.posForward();
1653
1654                 // If some text is moved into the inset, doInsertInset 
1655                 // puts the cursor outside the inset. To insert the
1656                 // caption we put it back into the inset.
1657                 if (content)
1658                         cur.backwardPos();
1659
1660                 ParagraphList & pars = cur.text()->paragraphs();
1661
1662                 DocumentClass const & tclass = bv->buffer().params().documentClass();
1663
1664                 // add a separate paragraph for the caption inset
1665                 pars.push_back(Paragraph());
1666                 pars.back().setInsetOwner(&cur.text()->inset());
1667                 pars.back().setPlainOrDefaultLayout(tclass);
1668                 int cap_pit = pars.size() - 1;
1669
1670                 // if an empty inset was created, we create an additional empty
1671                 // paragraph at the bottom so that the user can choose where to put
1672                 // the graphics (or table).
1673                 if (!content) {
1674                         pars.push_back(Paragraph());
1675                         pars.back().setInsetOwner(&cur.text()->inset());
1676                         pars.back().setPlainOrDefaultLayout(tclass);
1677                 }
1678
1679                 // reposition the cursor to the caption
1680                 cur.pit() = cap_pit;
1681                 cur.pos() = 0;
1682                 // FIXME: This Text/Cursor dispatch handling is a mess!
1683                 // We cannot use Cursor::dispatch here it needs access to up to
1684                 // date metrics.
1685                 FuncRequest cmd_caption(LFUN_CAPTION_INSERT);
1686                 doInsertInset(cur, cur.text(), cmd_caption, true, false);
1687                 cur.forceBufferUpdate();
1688                 cur.screenUpdateFlags(Update::Force);
1689                 // FIXME: When leaving the Float (or Wrap) inset we should
1690                 // delete any empty paragraph left above or below the
1691                 // caption.
1692                 break;
1693         }
1694
1695         case LFUN_NOMENCL_INSERT: {
1696                 InsetCommandParams p(NOMENCL_CODE);
1697                 if (cmd.argument().empty())
1698                         p["symbol"] = bv->cursor().innerText()->getStringToIndex(bv->cursor());
1699                 else
1700                         p["symbol"] = cmd.argument();
1701                 string const data = InsetCommand::params2string(p);
1702                 bv->showDialog("nomenclature", data);
1703                 break;
1704         }
1705
1706         case LFUN_INDEX_PRINT: {
1707                 InsetCommandParams p(INDEX_PRINT_CODE);
1708                 if (cmd.argument().empty())
1709                         p["type"] = from_ascii("idx");
1710                 else
1711                         p["type"] = cmd.argument();
1712                 string const data = InsetCommand::params2string(p);
1713                 FuncRequest fr(LFUN_INSET_INSERT, data);
1714                 dispatch(cur, fr);
1715                 break;
1716         }
1717         
1718         case LFUN_NOMENCL_PRINT:
1719         case LFUN_NEWPAGE_INSERT:
1720                 // do nothing fancy
1721                 doInsertInset(cur, this, cmd, false, false);
1722                 cur.posForward();
1723                 break;
1724
1725         case LFUN_DEPTH_DECREMENT:
1726                 changeDepth(cur, DEC_DEPTH);
1727                 break;
1728
1729         case LFUN_DEPTH_INCREMENT:
1730                 changeDepth(cur, INC_DEPTH);
1731                 break;
1732
1733         case LFUN_MATH_DISPLAY:
1734                 mathDispatch(cur, cmd, true);
1735                 break;
1736
1737         case LFUN_REGEXP_MODE:
1738                 regexpDispatch(cur, cmd);
1739                 break;
1740
1741         case LFUN_MATH_MODE:
1742                 if (cmd.argument() == "on")
1743                         // don't pass "on" as argument
1744                         // (it would appear literally in the first cell)
1745                         mathDispatch(cur, FuncRequest(LFUN_MATH_MODE), false);
1746                 else
1747                         mathDispatch(cur, cmd, false);
1748                 break;
1749
1750         case LFUN_MATH_MACRO:
1751                 if (cmd.argument().empty())
1752                         cur.errorMessage(from_utf8(N_("Missing argument")));
1753                 else {
1754                         cur.recordUndo();
1755                         string s = to_utf8(cmd.argument());
1756                         string const s1 = token(s, ' ', 1);
1757                         int const nargs = s1.empty() ? 0 : convert<int>(s1);
1758                         string const s2 = token(s, ' ', 2);
1759                         MacroType type = MacroTypeNewcommand;
1760                         if (s2 == "def")
1761                                 type = MacroTypeDef;
1762                         MathMacroTemplate * inset = new MathMacroTemplate(cur.buffer(),
1763                                 from_utf8(token(s, ' ', 0)), nargs, false, type);
1764                         inset->setBuffer(bv->buffer());
1765                         insertInset(cur, inset);
1766
1767                         // enter macro inset and select the name
1768                         cur.push(*inset);
1769                         cur.top().pos() = cur.top().lastpos();
1770                         cur.resetAnchor();
1771                         cur.setSelection(true);
1772                         cur.top().pos() = 0;
1773                 }
1774                 break;
1775
1776         // passthrough hat and underscore outside mathed:
1777         case LFUN_MATH_SUBSCRIPT:
1778                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "_"), false);
1779                 break;
1780         case LFUN_MATH_SUPERSCRIPT:
1781                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "^"), false);
1782                 break;
1783
1784         case LFUN_MATH_INSERT:
1785         case LFUN_MATH_AMS_MATRIX:
1786         case LFUN_MATH_MATRIX:
1787         case LFUN_MATH_DELIM:
1788         case LFUN_MATH_BIGDELIM: {
1789                 cur.recordUndo();
1790                 cap::replaceSelection(cur);
1791                 cur.insert(new InsetMathHull(cur.buffer(), hullSimple));
1792                 checkAndActivateInset(cur, true);
1793                 LASSERT(cur.inMathed(), /**/);
1794                 cur.dispatch(cmd);
1795                 break;
1796         }
1797
1798         case LFUN_FONT_EMPH: {
1799                 Font font(ignore_font, ignore_language);
1800                 font.fontInfo().setEmph(FONT_TOGGLE);
1801                 toggleAndShow(cur, this, font);
1802                 break;
1803         }
1804
1805         case LFUN_FONT_ITAL: {
1806                 Font font(ignore_font, ignore_language);
1807                 font.fontInfo().setShape(ITALIC_SHAPE);
1808                 toggleAndShow(cur, this, font);
1809                 break;
1810         }
1811
1812         case LFUN_FONT_BOLD:
1813         case LFUN_FONT_BOLDSYMBOL: {
1814                 Font font(ignore_font, ignore_language);
1815                 font.fontInfo().setSeries(BOLD_SERIES);
1816                 toggleAndShow(cur, this, font);
1817                 break;
1818         }
1819
1820         case LFUN_FONT_NOUN: {
1821                 Font font(ignore_font, ignore_language);
1822                 font.fontInfo().setNoun(FONT_TOGGLE);
1823                 toggleAndShow(cur, this, font);
1824                 break;
1825         }
1826
1827         case LFUN_FONT_TYPEWRITER: {
1828                 Font font(ignore_font, ignore_language);
1829                 font.fontInfo().setFamily(TYPEWRITER_FAMILY); // no good
1830                 toggleAndShow(cur, this, font);
1831                 break;
1832         }
1833
1834         case LFUN_FONT_SANS: {
1835                 Font font(ignore_font, ignore_language);
1836                 font.fontInfo().setFamily(SANS_FAMILY);
1837                 toggleAndShow(cur, this, font);
1838                 break;
1839         }
1840
1841         case LFUN_FONT_ROMAN: {
1842                 Font font(ignore_font, ignore_language);
1843                 font.fontInfo().setFamily(ROMAN_FAMILY);
1844                 toggleAndShow(cur, this, font);
1845                 break;
1846         }
1847
1848         case LFUN_FONT_DEFAULT: {
1849                 Font font(inherit_font, ignore_language);
1850                 toggleAndShow(cur, this, font);
1851                 break;
1852         }
1853
1854         case LFUN_FONT_STRIKEOUT: {
1855                 Font font(ignore_font, ignore_language);
1856                 font.fontInfo().setStrikeout(FONT_TOGGLE);
1857                 toggleAndShow(cur, this, font);
1858                 break;
1859         }
1860
1861         case LFUN_FONT_UULINE: {
1862                 Font font(ignore_font, ignore_language);
1863                 font.fontInfo().setUuline(FONT_TOGGLE);
1864                 toggleAndShow(cur, this, font);
1865                 break;
1866         }
1867
1868         case LFUN_FONT_UWAVE: {
1869                 Font font(ignore_font, ignore_language);
1870                 font.fontInfo().setUwave(FONT_TOGGLE);
1871                 toggleAndShow(cur, this, font);
1872                 break;
1873         }
1874
1875         case LFUN_FONT_UNDERLINE: {
1876                 Font font(ignore_font, ignore_language);
1877                 font.fontInfo().setUnderbar(FONT_TOGGLE);
1878                 toggleAndShow(cur, this, font);
1879                 break;
1880         }
1881
1882         case LFUN_FONT_SIZE: {
1883                 Font font(ignore_font, ignore_language);
1884                 setLyXSize(to_utf8(cmd.argument()), font.fontInfo());
1885                 toggleAndShow(cur, this, font);
1886                 break;
1887         }
1888
1889         case LFUN_LANGUAGE: {
1890                 Language const * lang = languages.getLanguage(to_utf8(cmd.argument()));
1891                 if (!lang)
1892                         break;
1893                 if (!cur.selection()) {
1894                         // apply to current word
1895                         selectWordWhenUnderCursor(cur, WHOLE_WORD);
1896                 }
1897                 Font font(ignore_font, lang);
1898                 toggleAndShow(cur, this, font);
1899                 break;
1900         }
1901
1902         case LFUN_TEXTSTYLE_APPLY:
1903                 toggleAndShow(cur, this, freefont, toggleall);
1904                 cur.message(_("Character set"));
1905                 break;
1906
1907         // Set the freefont using the contents of \param data dispatched from
1908         // the frontends and apply it at the current cursor location.
1909         case LFUN_TEXTSTYLE_UPDATE: {
1910                 Font font;
1911                 bool toggle;
1912                 if (font.fromString(to_utf8(cmd.argument()), toggle)) {
1913                         freefont = font;
1914                         toggleall = toggle;
1915                         toggleAndShow(cur, this, freefont, toggleall);
1916                         cur.message(_("Character set"));
1917                 } else {
1918                         lyxerr << "Argument not ok";
1919                 }
1920                 break;
1921         }
1922
1923         case LFUN_FINISHED_LEFT:
1924                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_LEFT:\n" << cur);
1925                 // We're leaving an inset, going left. If the inset is LTR, we're
1926                 // leaving from the front, so we should not move (remain at --- but
1927                 // not in --- the inset). If the inset is RTL, move left, without
1928                 // entering the inset itself; i.e., move to after the inset.
1929                 if (cur.paragraph().getFontSettings(
1930                                 cur.bv().buffer().params(), cur.pos()).isRightToLeft())
1931                         cursorVisLeft(cur, true);
1932                 break;
1933
1934         case LFUN_FINISHED_RIGHT:
1935                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_RIGHT:\n" << cur);
1936                 // We're leaving an inset, going right. If the inset is RTL, we're
1937                 // leaving from the front, so we should not move (remain at --- but
1938                 // not in --- the inset). If the inset is LTR, move right, without
1939                 // entering the inset itself; i.e., move to after the inset.
1940                 if (!cur.paragraph().getFontSettings(
1941                                 cur.bv().buffer().params(), cur.pos()).isRightToLeft())
1942                         cursorVisRight(cur, true);
1943                 break;
1944
1945         case LFUN_FINISHED_BACKWARD:
1946                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_BACKWARD:\n" << cur);
1947                 break;
1948
1949         case LFUN_FINISHED_FORWARD:
1950                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_FORWARD:\n" << cur);
1951                 ++cur.pos();
1952                 cur.setCurrentFont();
1953                 break;
1954
1955         case LFUN_LAYOUT_PARAGRAPH: {
1956                 string data;
1957                 params2string(cur.paragraph(), data);
1958                 data = "show\n" + data;
1959                 bv->showDialog("paragraph", data);
1960                 break;
1961         }
1962
1963         case LFUN_PARAGRAPH_UPDATE: {
1964                 string data;
1965                 params2string(cur.paragraph(), data);
1966
1967                 // Will the paragraph accept changes from the dialog?
1968                 bool const accept =
1969                         cur.inset().allowParagraphCustomization(cur.idx());
1970
1971                 data = "update " + convert<string>(accept) + '\n' + data;
1972                 bv->updateDialog("paragraph", data);
1973                 break;
1974         }
1975
1976         case LFUN_ACCENT_UMLAUT:
1977         case LFUN_ACCENT_CIRCUMFLEX:
1978         case LFUN_ACCENT_GRAVE:
1979         case LFUN_ACCENT_ACUTE:
1980         case LFUN_ACCENT_TILDE:
1981         case LFUN_ACCENT_CEDILLA:
1982         case LFUN_ACCENT_MACRON:
1983         case LFUN_ACCENT_DOT:
1984         case LFUN_ACCENT_UNDERDOT:
1985         case LFUN_ACCENT_UNDERBAR:
1986         case LFUN_ACCENT_CARON:
1987         case LFUN_ACCENT_BREVE:
1988         case LFUN_ACCENT_TIE:
1989         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
1990         case LFUN_ACCENT_CIRCLE:
1991         case LFUN_ACCENT_OGONEK:
1992                 theApp()->handleKeyFunc(cmd.action());
1993                 if (!cmd.argument().empty())
1994                         // FIXME: Are all these characters encoded in one byte in utf8?
1995                         bv->translateAndInsert(cmd.argument()[0], this, cur);
1996                 cur.screenUpdateFlags(Update::FitCursor);
1997                 break;
1998
1999         case LFUN_FLOAT_LIST_INSERT: {
2000                 DocumentClass const & tclass = bv->buffer().params().documentClass();
2001                 if (tclass.floats().typeExist(to_utf8(cmd.argument()))) {
2002                         cur.recordUndo();
2003                         if (cur.selection())
2004                                 cutSelection(cur, true, false);
2005                         breakParagraph(cur);
2006
2007                         if (cur.lastpos() != 0) {
2008                                 cursorBackward(cur);
2009                                 breakParagraph(cur);
2010                         }
2011
2012                         docstring const laystr = cur.inset().usePlainLayout() ?
2013                                 tclass.plainLayoutName() :
2014                                 tclass.defaultLayoutName();
2015                         setLayout(cur, laystr);
2016                         ParagraphParameters p;
2017                         // FIXME If this call were replaced with one to clearParagraphParams(),
2018                         // then we could get rid of this method altogether.
2019                         setParagraphs(cur, p);
2020                         // FIXME This should be simplified when InsetFloatList takes a
2021                         // Buffer in its constructor.
2022                         InsetFloatList * ifl = new InsetFloatList(cur.buffer(), to_utf8(cmd.argument()));
2023                         ifl->setBuffer(bv->buffer());
2024                         insertInset(cur, ifl);
2025                         cur.posForward();
2026                 } else {
2027                         lyxerr << "Non-existent float type: "
2028                                << to_utf8(cmd.argument()) << endl;
2029                 }
2030                 break;
2031         }
2032
2033         case LFUN_CHANGE_ACCEPT: {
2034                 acceptOrRejectChanges(cur, ACCEPT);
2035                 break;
2036         }
2037
2038         case LFUN_CHANGE_REJECT: {
2039                 acceptOrRejectChanges(cur, REJECT);
2040                 break;
2041         }
2042
2043         case LFUN_THESAURUS_ENTRY: {
2044                 docstring arg = cmd.argument();
2045                 if (arg.empty()) {
2046                         arg = cur.selectionAsString(false);
2047                         // FIXME
2048                         if (arg.size() > 100 || arg.empty()) {
2049                                 // Get word or selection
2050                                 selectWordWhenUnderCursor(cur, WHOLE_WORD);
2051                                 arg = cur.selectionAsString(false);
2052                                 arg += " lang=" + from_ascii(cur.getFont().language()->lang());
2053                         }
2054                 }
2055                 bv->showDialog("thesaurus", to_utf8(arg));
2056                 break;
2057         }
2058
2059         case LFUN_SPELLING_ADD: {
2060                 docstring word = from_utf8(cmd.getArg(0));
2061                 Language * lang;
2062                 if (word.empty()) {
2063                         word = cur.selectionAsString(false);
2064                         // FIXME
2065                         if (word.size() > 100 || word.empty()) {
2066                                 // Get word or selection
2067                                 selectWordWhenUnderCursor(cur, WHOLE_WORD);
2068                                 word = cur.selectionAsString(false);
2069                         }
2070                         lang = const_cast<Language *>(cur.getFont().language());
2071                 } else
2072                         lang = const_cast<Language *>(languages.getLanguage(cmd.getArg(1)));
2073                 WordLangTuple wl(word, lang);
2074                 theSpellChecker()->insert(wl);
2075                 break;
2076         }
2077
2078         case LFUN_SPELLING_IGNORE: {
2079                 docstring word = from_utf8(cmd.getArg(0));
2080                 Language * lang;
2081                 if (word.empty()) {
2082                         word = cur.selectionAsString(false);
2083                         // FIXME
2084                         if (word.size() > 100 || word.empty()) {
2085                                 // Get word or selection
2086                                 selectWordWhenUnderCursor(cur, WHOLE_WORD);
2087                                 word = cur.selectionAsString(false);
2088                         }
2089                         lang = const_cast<Language *>(cur.getFont().language());
2090                 } else
2091                         lang = const_cast<Language *>(languages.getLanguage(cmd.getArg(1)));
2092                 WordLangTuple wl(word, lang);
2093                 theSpellChecker()->accept(wl);
2094                 break;
2095         }
2096
2097         case LFUN_SPELLING_REMOVE: {
2098                 docstring word = from_utf8(cmd.getArg(0));
2099                 Language * lang;
2100                 if (word.empty()) {
2101                         word = cur.selectionAsString(false);
2102                         // FIXME
2103                         if (word.size() > 100 || word.empty()) {
2104                                 // Get word or selection
2105                                 selectWordWhenUnderCursor(cur, WHOLE_WORD);
2106                                 word = cur.selectionAsString(false);
2107                         }
2108                         lang = const_cast<Language *>(cur.getFont().language());
2109                 } else
2110                         lang = const_cast<Language *>(languages.getLanguage(cmd.getArg(1)));
2111                 WordLangTuple wl(word, lang);
2112                 theSpellChecker()->remove(wl);
2113                 break;
2114         }
2115
2116         case LFUN_PARAGRAPH_PARAMS_APPLY: {
2117                 // Given data, an encoding of the ParagraphParameters
2118                 // generated in the Paragraph dialog, this function sets
2119                 // the current paragraph, or currently selected paragraphs,
2120                 // appropriately.
2121                 // NOTE: This function overrides all existing settings.
2122                 setParagraphs(cur, cmd.argument());
2123                 cur.message(_("Paragraph layout set"));
2124                 break;
2125         }
2126
2127         case LFUN_PARAGRAPH_PARAMS: {
2128                 // Given data, an encoding of the ParagraphParameters as we'd
2129                 // find them in a LyX file, this function modifies the current paragraph,
2130                 // or currently selected paragraphs.
2131                 // NOTE: This function only modifies, and does not override, existing
2132                 // settings.
2133                 setParagraphs(cur, cmd.argument(), true);
2134                 cur.message(_("Paragraph layout set"));
2135                 break;
2136         }
2137
2138         case LFUN_ESCAPE:
2139                 if (cur.selection()) {
2140                         cur.setSelection(false);
2141                 } else {
2142                         cur.undispatched();
2143                         // This used to be LFUN_FINISHED_RIGHT, I think FORWARD is more
2144                         // correct, but I'm not 100% sure -- dov, 071019
2145                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
2146                 }
2147                 break;
2148
2149         case LFUN_OUTLINE_UP:
2150                 outline(OutlineUp, cur);
2151                 setCursor(cur, cur.pit(), 0);
2152                 cur.forceBufferUpdate();
2153                 needsUpdate = true;
2154                 break;
2155
2156         case LFUN_OUTLINE_DOWN:
2157                 outline(OutlineDown, cur);
2158                 setCursor(cur, cur.pit(), 0);
2159                 cur.forceBufferUpdate();
2160                 needsUpdate = true;
2161                 break;
2162
2163         case LFUN_OUTLINE_IN:
2164                 outline(OutlineIn, cur);
2165                 cur.forceBufferUpdate();
2166                 needsUpdate = true;
2167                 break;
2168
2169         case LFUN_OUTLINE_OUT:
2170                 outline(OutlineOut, cur);
2171                 cur.forceBufferUpdate();
2172                 needsUpdate = true;
2173                 break;
2174
2175         default:
2176                 LYXERR(Debug::ACTION, "Command " << cmd << " not DISPATCHED by Text");
2177                 cur.undispatched();
2178                 break;
2179         }
2180
2181         needsUpdate |= (cur.pos() != cur.lastpos()) && cur.selection();
2182
2183         if (lyxrc.spellcheck_continuously && !needsUpdate) {
2184                 // Check for misspelled text
2185                 // The redraw is useful because of the painting of
2186                 // misspelled markers depends on the cursor position.
2187                 // Trigger a redraw for cursor moves inside misspelled text.
2188                 if (!cur.inTexted()) {
2189                         // move from regular text to math
2190                         needsUpdate = last_misspelled;
2191                 } else if (oldTopSlice != cur.top() || oldBoundary != cur.boundary()) {
2192                         // move inside regular text
2193                         needsUpdate = last_misspelled
2194                                 || cur.paragraph().isMisspelled(cur.pos(), true);
2195                 }
2196         }
2197
2198         // FIXME: The cursor flag is reset two lines below
2199         // so we need to check here if some of the LFUN did touch that.
2200         // for now only Text::erase() and Text::backspace() do that.
2201         // The plan is to verify all the LFUNs and then to remove this
2202         // singleParUpdate boolean altogether.
2203         if (cur.result().screenUpdate() & Update::Force) {
2204                 singleParUpdate = false;
2205                 needsUpdate = true;
2206         }
2207
2208         // FIXME: the following code should go in favor of fine grained
2209         // update flag treatment.
2210         if (singleParUpdate) {
2211                 // Inserting characters does not change par height in general. So, try
2212                 // to update _only_ this paragraph. BufferView will detect if a full
2213                 // metrics update is needed anyway.
2214                 cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
2215                 return;
2216         }
2217         if (!needsUpdate
2218             && &oldTopSlice.inset() == &cur.inset()
2219             && oldTopSlice.idx() == cur.idx()
2220             && !oldSelection // oldSelection is a backup of cur.selection() at the beginning of the function.
2221             && !cur.selection())
2222                 // FIXME: it would be better if we could just do this
2223                 //
2224                 //if (cur.result().update() != Update::FitCursor)
2225                 //      cur.noScreenUpdate();
2226                 //
2227                 // But some LFUNs do not set Update::FitCursor when needed, so we
2228                 // do it for all. This is not very harmfull as FitCursor will provoke
2229                 // a full redraw only if needed but still, a proper review of all LFUN
2230                 // should be done and this needsUpdate boolean can then be removed.
2231                 cur.screenUpdateFlags(Update::FitCursor);
2232         else
2233                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
2234 }
2235
2236
2237 bool Text::getStatus(Cursor & cur, FuncRequest const & cmd,
2238                         FuncStatus & flag) const
2239 {
2240         LASSERT(cur.text() == this, /**/);
2241
2242         FontInfo const & fontinfo = cur.real_current_font.fontInfo();
2243         bool enable = true;
2244         InsetCode code = NO_CODE;
2245
2246         switch (cmd.action()) {
2247
2248         case LFUN_DEPTH_DECREMENT:
2249                 enable = changeDepthAllowed(cur, DEC_DEPTH);
2250                 break;
2251
2252         case LFUN_DEPTH_INCREMENT:
2253                 enable = changeDepthAllowed(cur, INC_DEPTH);
2254                 break;
2255
2256         case LFUN_APPENDIX:
2257                 flag.setOnOff(cur.paragraph().params().startOfAppendix());
2258                 break;
2259
2260         case LFUN_DIALOG_SHOW_NEW_INSET:
2261                 if (cmd.argument() == "bibitem")
2262                         code = BIBITEM_CODE;
2263                 else if (cmd.argument() == "bibtex") {
2264                         code = BIBTEX_CODE;
2265                         // not allowed in description items
2266                         enable = !inDescriptionItem(cur);
2267                 }
2268                 else if (cmd.argument() == "box")
2269                         code = BOX_CODE;
2270                 else if (cmd.argument() == "branch")
2271                         code = BRANCH_CODE;
2272                 else if (cmd.argument() == "citation")
2273                         code = CITE_CODE;
2274                 else if (cmd.argument() == "ert")
2275                         code = ERT_CODE;
2276                 else if (cmd.argument() == "external")
2277                         code = EXTERNAL_CODE;
2278                 else if (cmd.argument() == "float")
2279                         code = FLOAT_CODE;
2280                 else if (cmd.argument() == "graphics")
2281                         code = GRAPHICS_CODE;
2282                 else if (cmd.argument() == "href")
2283                         code = HYPERLINK_CODE;
2284                 else if (cmd.argument() == "include")
2285                         code = INCLUDE_CODE;
2286                 else if (cmd.argument() == "index")
2287                         code = INDEX_CODE;
2288                 else if (cmd.argument() == "index_print")
2289                         code = INDEX_PRINT_CODE;
2290                 else if (cmd.argument() == "nomenclature")
2291                         code = NOMENCL_CODE;
2292                 else if (cmd.argument() == "nomencl_print")
2293                         code = NOMENCL_PRINT_CODE;
2294                 else if (cmd.argument() == "label")
2295                         code = LABEL_CODE;
2296                 else if (cmd.argument() == "line")
2297                         code = LINE_CODE;
2298                 else if (cmd.argument() == "note")
2299                         code = NOTE_CODE;
2300                 else if (cmd.argument() == "phantom")
2301                         code = PHANTOM_CODE;
2302                 else if (cmd.argument() == "ref")
2303                         code = REF_CODE;
2304                 else if (cmd.argument() == "space")
2305                         code = SPACE_CODE;
2306                 else if (cmd.argument() == "toc")
2307                         code = TOC_CODE;
2308                 else if (cmd.argument() == "vspace")
2309                         code = VSPACE_CODE;
2310                 else if (cmd.argument() == "wrap")
2311                         code = WRAP_CODE;
2312                 else if (cmd.argument() == "listings")
2313                         code = LISTINGS_CODE;
2314                 break;
2315
2316         case LFUN_ERT_INSERT:
2317                 code = ERT_CODE;
2318                 break;
2319         case LFUN_LISTING_INSERT:
2320                 code = LISTINGS_CODE;
2321                 // not allowed in description items
2322                 enable = !inDescriptionItem(cur);
2323                 break;
2324         case LFUN_FOOTNOTE_INSERT:
2325                 code = FOOT_CODE;
2326                 break;
2327         case LFUN_TABULAR_INSERT:
2328                 code = TABULAR_CODE;
2329                 break;
2330         case LFUN_MARGINALNOTE_INSERT:
2331                 code = MARGIN_CODE;
2332                 break;
2333         case LFUN_FLOAT_INSERT:
2334         case LFUN_FLOAT_WIDE_INSERT:
2335                 // FIXME: If there is a selection, we should check whether there
2336                 // are floats in the selection, but this has performance issues, see
2337                 // LFUN_CHANGE_ACCEPT/REJECT.
2338                 code = FLOAT_CODE;
2339                 if (inDescriptionItem(cur))
2340                         // not allowed in description items
2341                         enable = false;
2342                 else {
2343                         InsetCode const inset_code = cur.inset().lyxCode();
2344
2345                         // algorithm floats cannot be put in another float
2346                         if (to_utf8(cmd.argument()) == "algorithm") {
2347                                 enable = inset_code != WRAP_CODE && inset_code != FLOAT_CODE;
2348                                 break;
2349                         }
2350
2351                         // for figures and tables: only allow in another
2352                         // float or wrap if it is of the same type and
2353                         // not a subfloat already
2354                         if(cur.inset().lyxCode() == code) {
2355                                 InsetFloat const & ins =
2356                                         static_cast<InsetFloat const &>(cur.inset());
2357                                 enable = ins.params().type == to_utf8(cmd.argument())
2358                                         && !ins.params().subfloat;
2359                         } else if(cur.inset().lyxCode() == WRAP_CODE) {
2360                                 InsetWrap const & ins =
2361                                         static_cast<InsetWrap const &>(cur.inset());
2362                                 enable = ins.params().type == to_utf8(cmd.argument());
2363                         }
2364                 }
2365                 break;
2366         case LFUN_WRAP_INSERT:
2367                 code = WRAP_CODE;
2368                 // not allowed in description items
2369                 enable = !inDescriptionItem(cur);
2370                 break;
2371         case LFUN_FLOAT_LIST_INSERT: {
2372                 code = FLOAT_LIST_CODE;
2373                 // not allowed in description items
2374                 enable = !inDescriptionItem(cur);
2375                 if (enable) {
2376                         FloatList const & floats = cur.buffer()->params().documentClass().floats();
2377                         FloatList::const_iterator cit = floats[to_ascii(cmd.argument())];
2378                         // make sure we know about such floats
2379                         if (cit == floats.end() ||
2380                                         // and that we know how to generate a list of them
2381                             (!cit->second.needsFloatPkg() && cit->second.listCommand().empty())) {
2382                                 flag.setUnknown(true);
2383                                 // probably not necessary, but...
2384                                 enable = false;
2385                         }
2386                 }
2387                 break;
2388         }
2389         case LFUN_CAPTION_INSERT:
2390                 code = CAPTION_CODE;
2391                 // not allowed in description items
2392                 enable = !inDescriptionItem(cur);
2393                 break;
2394         case LFUN_NOTE_INSERT:
2395                 code = NOTE_CODE;
2396                 // in commands (sections etc.) and description items,
2397                 // only Notes are allowed
2398                 enable = (cmd.argument().empty() || cmd.getArg(0) == "Note" ||
2399                           (!cur.paragraph().layout().isCommand()
2400                            && !inDescriptionItem(cur)));
2401                 break;
2402         case LFUN_FLEX_INSERT: {
2403                 code = FLEX_CODE;
2404                 string s = cmd.getArg(0);
2405                 InsetLayout il =
2406                         cur.buffer()->params().documentClass().insetLayout(from_utf8(s));
2407                 if (il.lyxtype() != InsetLayout::CHARSTYLE &&
2408                     il.lyxtype() != InsetLayout::CUSTOM &&
2409                     il.lyxtype() != InsetLayout::ELEMENT &&
2410                     il.lyxtype ()!= InsetLayout::STANDARD)
2411                         enable = false;
2412                 break;
2413                 }
2414         case LFUN_BOX_INSERT:
2415                 code = BOX_CODE;
2416                 break;
2417         case LFUN_BRANCH_INSERT:
2418                 code = BRANCH_CODE;
2419                 if (cur.buffer()->masterBuffer()->params().branchlist().empty()
2420                     && cur.buffer()->params().branchlist().empty())
2421                         enable = false;
2422                 break;
2423         case LFUN_PHANTOM_INSERT:
2424                 code = PHANTOM_CODE;
2425                 break;
2426         case LFUN_LABEL_INSERT:
2427                 code = LABEL_CODE;
2428                 break;
2429         case LFUN_INFO_INSERT:
2430                 code = INFO_CODE;
2431                 break;
2432         case LFUN_ARGUMENT_INSERT: {
2433                 code = ARG_CODE;
2434                 Layout const & lay = cur.paragraph().layout();
2435                 int const numargs = lay.reqargs + lay.optargs;
2436                 enable = cur.paragraph().insetList().count(ARG_CODE) < numargs;
2437                 break;
2438         }
2439         case LFUN_INDEX_INSERT:
2440                 code = INDEX_CODE;
2441                 break;
2442         case LFUN_INDEX_PRINT:
2443                 code = INDEX_PRINT_CODE;
2444                 // not allowed in description items
2445                 enable = !inDescriptionItem(cur);
2446                 break;
2447         case LFUN_NOMENCL_INSERT:
2448                 if (cur.selIsMultiCell() || cur.selIsMultiLine()) {
2449                         enable = false;
2450                         break;
2451                 }
2452                 code = NOMENCL_CODE;
2453                 break;
2454         case LFUN_NOMENCL_PRINT:
2455                 code = NOMENCL_PRINT_CODE;
2456                 // not allowed in description items
2457                 enable = !inDescriptionItem(cur);
2458                 break;
2459         case LFUN_HYPERLINK_INSERT:
2460                 if (cur.selIsMultiCell() || cur.selIsMultiLine()) {
2461                         enable = false;
2462                         break;
2463                 }
2464                 code = HYPERLINK_CODE;
2465                 break;
2466         case LFUN_QUOTE_INSERT:
2467                 // always allow this, since we will inset a raw quote
2468                 // if an inset is not allowed.
2469                 break;
2470         case LFUN_SPECIALCHAR_INSERT:
2471                 code = SPECIALCHAR_CODE;
2472                 break;
2473         case LFUN_SPACE_INSERT:
2474                 // slight hack: we know this is allowed in math mode
2475                 if (cur.inTexted())
2476                         code = SPACE_CODE;
2477                 break;
2478         case LFUN_PREVIEW_INSERT:
2479                 code = PREVIEW_CODE;
2480                 break;
2481         case LFUN_SCRIPT_INSERT:
2482                 code = SCRIPT_CODE;
2483                 break;
2484
2485         case LFUN_MATH_INSERT:
2486         case LFUN_MATH_AMS_MATRIX:
2487         case LFUN_MATH_MATRIX:
2488         case LFUN_MATH_DELIM:
2489         case LFUN_MATH_BIGDELIM:
2490         case LFUN_MATH_DISPLAY:
2491         case LFUN_MATH_MODE:
2492         case LFUN_MATH_MACRO:
2493         case LFUN_MATH_SUBSCRIPT:
2494         case LFUN_MATH_SUPERSCRIPT:
2495                 code = MATH_HULL_CODE;
2496                 break;
2497
2498         case LFUN_REGEXP_MODE:
2499                 code = MATH_HULL_CODE;
2500                 enable = cur.buffer()->isInternal() && !cur.inRegexped();
2501                 break;
2502
2503         case LFUN_INSET_MODIFY:
2504                 // We need to disable this, because we may get called for a
2505                 // tabular cell via
2506                 // InsetTabular::getStatus() -> InsetText::getStatus()
2507                 // and we don't handle LFUN_INSET_MODIFY.
2508                 enable = false;
2509                 break;
2510
2511         case LFUN_FONT_EMPH:
2512                 flag.setOnOff(fontinfo.emph() == FONT_ON);
2513                 enable = !cur.paragraph().isPassThru();
2514                 break;
2515
2516         case LFUN_FONT_ITAL:
2517                 flag.setOnOff(fontinfo.shape() == ITALIC_SHAPE);
2518                 enable = !cur.paragraph().isPassThru();
2519                 break;
2520
2521         case LFUN_FONT_NOUN:
2522                 flag.setOnOff(fontinfo.noun() == FONT_ON);
2523                 enable = !cur.paragraph().isPassThru();
2524                 break;
2525
2526         case LFUN_FONT_BOLD:
2527         case LFUN_FONT_BOLDSYMBOL:
2528                 flag.setOnOff(fontinfo.series() == BOLD_SERIES);
2529                 enable = !cur.paragraph().isPassThru();
2530                 break;
2531
2532         case LFUN_FONT_SANS:
2533                 flag.setOnOff(fontinfo.family() == SANS_FAMILY);
2534                 enable = !cur.paragraph().isPassThru();
2535                 break;
2536
2537         case LFUN_FONT_ROMAN:
2538                 flag.setOnOff(fontinfo.family() == ROMAN_FAMILY);
2539                 enable = !cur.paragraph().isPassThru();
2540                 break;
2541
2542         case LFUN_FONT_TYPEWRITER:
2543                 flag.setOnOff(fontinfo.family() == TYPEWRITER_FAMILY);
2544                 enable = !cur.paragraph().isPassThru();
2545                 break;
2546
2547         case LFUN_CUT:
2548         case LFUN_COPY:
2549                 enable = cur.selection();
2550                 break;
2551
2552         case LFUN_PASTE: {
2553                 if (cmd.argument().empty()) {
2554                         if (theClipboard().isInternal())
2555                                 enable = cap::numberOfSelections() > 0;
2556                         else
2557                                 enable = !theClipboard().empty();
2558                         break;
2559                 }
2560
2561                 // we have an argument
2562                 string const arg = to_utf8(cmd.argument());
2563                 if (isStrUnsignedInt(arg)) {
2564                         // it's a number and therefore means the internal stack
2565                         unsigned int n = convert<unsigned int>(arg);
2566                         enable = cap::numberOfSelections() > n;
2567                         break;
2568                 }
2569
2570                 // explicit graphics type?
2571                 Clipboard::GraphicsType type = Clipboard::AnyGraphicsType;
2572                 if ((arg == "pdf" && (type = Clipboard::PdfGraphicsType))
2573                           || (arg == "png" && (type = Clipboard::PngGraphicsType))
2574                           || (arg == "jpeg" && (type = Clipboard::JpegGraphicsType))
2575                           || (arg == "linkback" &&  (type = Clipboard::LinkBackGraphicsType))
2576                           || (arg == "emf" &&  (type = Clipboard::EmfGraphicsType))
2577                           || (arg == "wmf" &&  (type = Clipboard::WmfGraphicsType))) {
2578                         enable = theClipboard().hasGraphicsContents(type);
2579                         break;
2580                 }
2581
2582                 // unknown argument
2583                 enable = false;
2584                 break;
2585          }
2586
2587         case LFUN_CLIPBOARD_PASTE:
2588                 enable = !theClipboard().empty();
2589                 break;
2590
2591         case LFUN_PRIMARY_SELECTION_PASTE:
2592                 enable = cur.selection() || !theSelection().empty();
2593                 break;
2594
2595         case LFUN_SELECTION_PASTE:
2596                 enable = cap::selection();
2597                 break;
2598
2599         case LFUN_PARAGRAPH_MOVE_UP:
2600                 enable = cur.pit() > 0 && !cur.selection();
2601                 break;
2602
2603         case LFUN_PARAGRAPH_MOVE_DOWN:
2604                 enable = cur.pit() < cur.lastpit() && !cur.selection();
2605                 break;
2606
2607         case LFUN_CHANGE_ACCEPT:
2608         case LFUN_CHANGE_REJECT:
2609                 // In principle, these LFUNs should only be enabled if there
2610                 // is a change at the current position/in the current selection.
2611                 // However, without proper optimizations, this will inevitably
2612                 // result in unacceptable performance - just imagine a user who
2613                 // wants to select the complete content of a long document.
2614                 if (!cur.selection())
2615                         enable = cur.paragraph().isChanged(cur.pos());
2616                 else
2617                         // TODO: context-sensitive enabling of LFUN_CHANGE_ACCEPT/REJECT
2618                         // for selections.
2619                         enable = true;
2620                 break;
2621
2622         case LFUN_OUTLINE_UP:
2623         case LFUN_OUTLINE_DOWN:
2624         case LFUN_OUTLINE_IN:
2625         case LFUN_OUTLINE_OUT:
2626                 // FIXME: LyX is not ready for outlining within inset.
2627                 enable = isMainText()
2628                         && cur.paragraph().layout().toclevel != Layout::NOT_IN_TOC;
2629                 break;
2630
2631         case LFUN_NEWLINE_INSERT:
2632                 // LaTeX restrictions (labels or empty par)
2633                 enable = (cur.pos() > cur.paragraph().beginOfBody());
2634                 break;
2635
2636         case LFUN_TAB_INSERT:
2637         case LFUN_TAB_DELETE:
2638                 enable = cur.paragraph().isPassThru();
2639                 break;
2640
2641         case LFUN_SET_GRAPHICS_GROUP: {
2642                 InsetGraphics * ins = graphics::getCurrentGraphicsInset(cur);
2643                 if (!ins)
2644                         enable = false;
2645                 else
2646                         flag.setOnOff(to_utf8(cmd.argument()) == ins->getParams().groupId);
2647                 break;
2648         }
2649
2650         case LFUN_NEWPAGE_INSERT:
2651                 // not allowed in description items
2652                 code = NEWPAGE_CODE;
2653                 enable = !inDescriptionItem(cur);
2654                 break;
2655
2656         case LFUN_DATE_INSERT: {
2657                 string const format = cmd.argument().empty()
2658                         ? lyxrc.date_insert_format : to_utf8(cmd.argument());
2659                 enable = support::os::is_valid_strftime(format);
2660                 break;
2661         }
2662
2663         case LFUN_LANGUAGE:
2664                 enable = !cur.paragraph().isPassThru();
2665                 flag.setOnOff(to_utf8(cmd.argument()) == cur.real_current_font.language()->lang());
2666                 break;
2667
2668         case LFUN_BREAK_PARAGRAPH:
2669                 enable = cur.inset().getLayout().isMultiPar();
2670                 break;
2671         
2672         case LFUN_SPELLING_ADD:
2673         case LFUN_SPELLING_IGNORE:
2674         case LFUN_SPELLING_REMOVE:
2675                 enable = theSpellChecker();
2676                 break;
2677
2678         case LFUN_LAYOUT:
2679                 enable = !cur.inset().forcePlainLayout();
2680                 break;
2681                 
2682         case LFUN_LAYOUT_PARAGRAPH:
2683         case LFUN_PARAGRAPH_PARAMS:
2684         case LFUN_PARAGRAPH_PARAMS_APPLY:
2685         case LFUN_PARAGRAPH_UPDATE:
2686                 enable = cur.inset().allowParagraphCustomization();
2687                 break;
2688
2689         // FIXME: why are accent lfuns forbidden with pass_thru layouts?
2690         case LFUN_ACCENT_ACUTE:
2691         case LFUN_ACCENT_BREVE:
2692         case LFUN_ACCENT_CARON:
2693         case LFUN_ACCENT_CEDILLA:
2694         case LFUN_ACCENT_CIRCLE:
2695         case LFUN_ACCENT_CIRCUMFLEX:
2696         case LFUN_ACCENT_DOT:
2697         case LFUN_ACCENT_GRAVE:
2698         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
2699         case LFUN_ACCENT_MACRON:
2700         case LFUN_ACCENT_OGONEK:
2701         case LFUN_ACCENT_TIE:
2702         case LFUN_ACCENT_TILDE:
2703         case LFUN_ACCENT_UMLAUT:
2704         case LFUN_ACCENT_UNDERBAR:
2705         case LFUN_ACCENT_UNDERDOT:
2706         case LFUN_FONT_DEFAULT:
2707         case LFUN_FONT_FRAK:
2708         case LFUN_FONT_SIZE:
2709         case LFUN_FONT_STATE:
2710         case LFUN_FONT_UNDERLINE:
2711         case LFUN_FONT_STRIKEOUT:
2712         case LFUN_FONT_UULINE:
2713         case LFUN_FONT_UWAVE:
2714         case LFUN_TEXTSTYLE_APPLY:
2715         case LFUN_TEXTSTYLE_UPDATE:
2716                 enable = !cur.paragraph().isPassThru();
2717                 break;
2718
2719         case LFUN_WORD_DELETE_FORWARD:
2720         case LFUN_WORD_DELETE_BACKWARD:
2721         case LFUN_LINE_DELETE:
2722         case LFUN_WORD_FORWARD:
2723         case LFUN_WORD_BACKWARD:
2724         case LFUN_WORD_RIGHT:
2725         case LFUN_WORD_LEFT:
2726         case LFUN_CHAR_FORWARD:
2727         case LFUN_CHAR_FORWARD_SELECT:
2728         case LFUN_CHAR_BACKWARD:
2729         case LFUN_CHAR_BACKWARD_SELECT:
2730         case LFUN_CHAR_LEFT:
2731         case LFUN_CHAR_LEFT_SELECT:
2732         case LFUN_CHAR_RIGHT:
2733         case LFUN_CHAR_RIGHT_SELECT:
2734         case LFUN_UP:
2735         case LFUN_UP_SELECT:
2736         case LFUN_DOWN:
2737         case LFUN_DOWN_SELECT:
2738         case LFUN_PARAGRAPH_UP_SELECT:
2739         case LFUN_PARAGRAPH_DOWN_SELECT:
2740         case LFUN_LINE_BEGIN_SELECT:
2741         case LFUN_LINE_END_SELECT:
2742         case LFUN_WORD_FORWARD_SELECT:
2743         case LFUN_WORD_BACKWARD_SELECT:
2744         case LFUN_WORD_RIGHT_SELECT:
2745         case LFUN_WORD_LEFT_SELECT:
2746         case LFUN_WORD_SELECT:
2747         case LFUN_SECTION_SELECT:
2748         case LFUN_BUFFER_BEGIN:
2749         case LFUN_BUFFER_END:
2750         case LFUN_BUFFER_BEGIN_SELECT:
2751         case LFUN_BUFFER_END_SELECT:
2752         case LFUN_INSET_BEGIN:
2753         case LFUN_INSET_END:
2754         case LFUN_INSET_BEGIN_SELECT:
2755         case LFUN_INSET_END_SELECT:
2756         case LFUN_INSET_SELECT_ALL:
2757         case LFUN_PARAGRAPH_UP:
2758         case LFUN_PARAGRAPH_DOWN:
2759         case LFUN_LINE_BEGIN:
2760         case LFUN_LINE_END:
2761         case LFUN_CHAR_DELETE_FORWARD:
2762         case LFUN_CHAR_DELETE_BACKWARD:
2763         case LFUN_WORD_UPCASE:
2764         case LFUN_WORD_LOWCASE:
2765         case LFUN_WORD_CAPITALIZE:
2766         case LFUN_CHARS_TRANSPOSE:
2767         case LFUN_SERVER_GET_XY:
2768         case LFUN_SERVER_SET_XY:
2769         case LFUN_SERVER_GET_LAYOUT:
2770         case LFUN_SELF_INSERT:
2771         case LFUN_UNICODE_INSERT:
2772         case LFUN_THESAURUS_ENTRY:
2773         case LFUN_ESCAPE:
2774                 // these are handled in our dispatch()
2775                 enable = true;
2776                 break;
2777
2778         case LFUN_INSET_INSERT: {
2779                 string const type = cmd.getArg(0);
2780                 if (type == "toc") {
2781                         code = TOC_CODE;
2782                         // not allowed in description items
2783                         //FIXME: couldn't this be merged in Inset::insetAllowed()?
2784                         enable = !inDescriptionItem(cur);
2785                 } else {
2786                         enable = true;
2787                 }
2788                 break;
2789         }
2790
2791         default:
2792                 return false;
2793         }
2794
2795         if (code != NO_CODE
2796             && (cur.empty() 
2797                 || !cur.inset().insetAllowed(code)
2798                 || cur.paragraph().layout().pass_thru))
2799                 enable = false;
2800
2801         flag.setEnabled(enable);
2802         return true;
2803 }
2804
2805
2806 void Text::pasteString(Cursor & cur, docstring const & clip,
2807                 bool asParagraphs)
2808 {
2809         cur.clearSelection();
2810         if (!clip.empty()) {
2811                 cur.recordUndo();
2812                 if (asParagraphs)
2813                         insertStringAsParagraphs(cur, clip, cur.current_font);
2814                 else
2815                         insertStringAsLines(cur, clip, cur.current_font);
2816         }
2817 }
2818
2819
2820 // FIXME: an item inset would make things much easier.
2821 bool Text::inDescriptionItem(Cursor & cur) const
2822 {
2823         Paragraph & par = cur.paragraph();
2824         pos_type const pos = cur.pos();
2825         pos_type const body_pos = par.beginOfBody();
2826
2827         if (par.layout().latextype != LATEX_LIST_ENVIRONMENT
2828             && (par.layout().latextype != LATEX_ITEM_ENVIRONMENT
2829                 || par.layout().margintype != MARGIN_FIRST_DYNAMIC))
2830                 return false;
2831
2832         return (pos < body_pos
2833                 || (pos == body_pos
2834                     && (pos == 0 || par.getChar(pos - 1) != ' ')));
2835 }
2836
2837 } // namespace lyx