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