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