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