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