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