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