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