]> git.lyx.org Git - lyx.git/blob - src/Text3.cpp
The huge URL patch:
[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 "Cursor.h"
29 #include "CutAndPaste.h"
30 #include "debug.h"
31 #include "DispatchResult.h"
32 #include "ErrorList.h"
33 #include "factory.h"
34 #include "FuncRequest.h"
35 #include "gettext.h"
36 #include "Intl.h"
37 #include "Language.h"
38 #include "Layout.h"
39 #include "LyXAction.h"
40 #include "LyXFunc.h"
41 #include "Lexer.h"
42 #include "LyXRC.h"
43 #include "Paragraph.h"
44 #include "paragraph_funcs.h"
45 #include "ParagraphParameters.h"
46 #include "TextMetrics.h"
47 #include "Undo.h"
48 #include "VSpace.h"
49 #include "ParIterator.h"
50
51 #include "frontends/Clipboard.h"
52 #include "frontends/Selection.h"
53
54 #include "insets/InsetCollapsable.h"
55 #include "insets/InsetCommand.h"
56 #include "insets/InsetFloatList.h"
57 #include "insets/InsetNewline.h"
58 #include "insets/InsetQuotes.h"
59 #include "insets/InsetSpecialChar.h"
60 #include "insets/InsetText.h"
61 #include "insets/InsetInfo.h"
62
63 #include "support/lstrings.h"
64 #include "support/lyxlib.h"
65 #include "support/convert.h"
66 #include "support/lyxtime.h"
67
68 #include "mathed/InsetMathHull.h"
69 #include "mathed/MathMacroTemplate.h"
70
71 #include <boost/current_function.hpp>
72
73 #include <clocale>
74 #include <sstream>
75
76 using std::endl;
77 using std::string;
78 using std::istringstream;
79 using std::ostringstream;
80
81 namespace lyx {
82
83 using cap::copySelection;
84 using cap::cutSelection;
85 using cap::pasteFromStack;
86 using cap::pasteClipboard;
87 using cap::replaceSelection;
88
89 using support::isStrUnsignedInt;
90 using support::token;
91
92 // globals...
93 static Font freefont(Font::ALL_IGNORE);
94 static bool toggleall = false;
95
96 static void toggleAndShow(Cursor & cur, Text * text,
97         Font const & font, bool toggleall = true)
98 {
99         text->toggleFree(cur, font, toggleall);
100
101         if (font.language() != ignore_language ||
102                         font.number() != Font::IGNORE) {
103                 TextMetrics const & tm = cur.bv().textMetrics(text);
104                 if (cur.boundary() != tm.isRTLBoundary(cur.pit(),
105                                                                                                                 cur.pos(), cur.real_current_font))
106                         text->setCursor(cur, cur.pit(), cur.pos(),
107                                                                                         false, !cur.boundary());
108         }
109 }
110
111
112 static void moveCursor(Cursor & cur, bool selecting)
113 {
114         if (selecting || cur.mark())
115                 cur.setSelection();
116 }
117
118
119 static void finishChange(Cursor & cur, bool selecting)
120 {
121         finishUndo();
122         moveCursor(cur, selecting);
123 }
124
125
126 static void mathDispatch(Cursor & cur, FuncRequest const & cmd, bool display)
127 {
128         recordUndo(cur);
129         docstring sel = cur.selectionAsString(false);
130
131         // It may happen that sel is empty but there is a selection
132         replaceSelection(cur);
133
134         if (sel.empty()) {
135 #ifdef ENABLE_ASSERTIONS
136                 const int old_pos = cur.pos();
137 #endif
138                 cur.insert(new InsetMathHull(hullSimple));
139                 BOOST_ASSERT(old_pos == cur.pos());
140                 cur.nextInset()->edit(cur, true);
141                 // don't do that also for LFUN_MATH_MODE
142                 // unless you want end up with always changing
143                 // to mathrm when opening an inlined inset --
144                 // I really hate "LyXfunc overloading"...
145                 if (display)
146                         cur.dispatch(FuncRequest(LFUN_MATH_DISPLAY));
147                 // Avoid an unnecessary undo step if cmd.argument
148                 // is empty
149                 if (!cmd.argument().empty())
150                         cur.dispatch(FuncRequest(LFUN_MATH_INSERT,
151                                                  cmd.argument()));
152         } else {
153                 // create a macro if we see "\\newcommand"
154                 // somewhere, and an ordinary formula
155                 // otherwise
156                 if (sel.find(from_ascii("\\newcommand")) == string::npos
157                                 && sel.find(from_ascii("\\def")) == string::npos)
158                 {
159                         InsetMathHull * formula = new InsetMathHull;
160                         istringstream is(to_utf8(sel));
161                         Lexer lex(0, 0);
162                         lex.setStream(is);
163                         formula->read(cur.buffer(), lex);
164                         if (formula->getType() == hullNone)
165                                 // Don't create pseudo formulas if
166                                 // delimiters are left out
167                                 formula->mutate(hullSimple);
168                         cur.insert(formula);
169                 } else {
170                         cur.insert(new MathMacroTemplate(sel));
171                 }
172         }
173         cur.message(from_utf8(N_("Math editor mode")));
174 }
175
176
177 static void specialChar(Cursor & cur, InsetSpecialChar::Kind kind)
178 {
179         recordUndo(cur);
180         cap::replaceSelection(cur);
181         cur.insert(new InsetSpecialChar(kind));
182         cur.posRight();
183 }
184
185
186 static bool doInsertInset(Cursor & cur, Text * text,
187         FuncRequest const & cmd, bool edit, bool pastesel)
188 {
189         Inset * inset = createInset(&cur.bv(), cmd);
190         if (!inset)
191                 return false;
192
193         recordUndo(cur);
194         if (cmd.action == LFUN_INDEX_INSERT) {
195                 docstring ds = support::subst(text->getStringToIndex(cur), '\n', ' ');
196                 text->insertInset(cur, inset);
197                 if (edit)
198                         inset->edit(cur, true);
199                 // Now put this into inset
200                 static_cast<InsetCollapsable *>(inset)->text_.insertStringAsParagraphs(cur, ds);
201         } else {
202                 bool gotsel = false;
203                 if (cur.selection()) {
204                         lyx::dispatch(FuncRequest(LFUN_CUT));
205                         gotsel = true;
206                 }
207                 text->insertInset(cur, inset);
208
209                 if (edit)
210                         inset->edit(cur, true);
211
212                 if (gotsel && pastesel) {
213                         lyx::dispatch(FuncRequest(LFUN_PASTE, "0"));
214                         InsetText * insetText = dynamic_cast<InsetText *>(inset);
215                         if (insetText && !insetText->allowMultiPar() 
216                             || cur.lastpit() == 0) {
217                                 // reset first par to default
218                                 LayoutPtr const layout =
219                                         cur.buffer().params().getTextClass().defaultLayout();
220                                 cur.text()->paragraphs().begin()->layout(layout);
221                                 cur.pos() = 0;
222                                 cur.pit() = 0;
223                                 // Merge multiple paragraphs -- hack
224                                 while (cur.lastpit() > 0) {
225                                         mergeParagraph(cur.buffer().params(),
226                                                 cur.text()->paragraphs(), 0);
227                                 }
228                         } else {
229                                 // reset surrounding par to default
230                                 docstring const layoutname = 
231                                         cur.buffer().params().getTextClass().defaultLayoutName();
232                                 cur.leaveInset(*inset);
233                                 text->setLayout(cur, layoutname);
234                         }
235                 }
236         }
237         return true;
238 }
239
240
241 string const freefont2string()
242 {
243         return freefont.toString(toggleall);
244 }
245
246
247 void Text::number(Cursor & cur)
248 {
249         Font font(Font::ALL_IGNORE);
250         font.setNumber(Font::TOGGLE);
251         toggleAndShow(cur, this, font);
252 }
253
254
255 bool Text::isRTL(Buffer const & buffer, Paragraph const & par) const
256 {
257         return par.isRTL(buffer.params());
258 }
259
260
261 void Text::dispatch(Cursor & cur, FuncRequest & cmd)
262 {
263         LYXERR(Debug::ACTION) << "Text::dispatch: cmd: " << cmd << endl;
264
265         // FIXME: We use the update flag to indicates wether a singlePar or a
266         // full screen update is needed. We reset it here but shall we restore it
267         // at the end?
268         cur.noUpdate();
269
270         BOOST_ASSERT(cur.text() == this);
271         BufferView * bv = &cur.bv();
272         TextMetrics & tm = cur.bv().textMetrics(this);
273         CursorSlice oldTopSlice = cur.top();
274         bool oldBoundary = cur.boundary();
275         bool sel = cur.selection();
276         // Signals that, even if needsUpdate == false, an update of the
277         // cursor paragraph is required
278         bool singleParUpdate = lyxaction.funcHasFlag(cmd.action,
279                 LyXAction::SingleParUpdate);
280         // Signals that a full-screen update is required
281         bool needsUpdate = !(lyxaction.funcHasFlag(cmd.action,
282                 LyXAction::NoUpdate) || singleParUpdate);
283         // Remember the old paragraph metric (_outer_ paragraph!)
284         ParagraphMetrics const & pm = cur.bv().parMetrics(
285                 cur.bottom().text(), cur.bottom().pit());
286         Dimension olddim = pm.dim();
287
288         switch (cmd.action) {
289
290         case LFUN_PARAGRAPH_MOVE_DOWN: {
291                 pit_type const pit = cur.pit();
292                 recUndo(cur, pit, pit + 1);
293                 finishUndo();
294                 std::swap(pars_[pit], pars_[pit + 1]);
295                 updateLabels(cur.buffer());
296                 needsUpdate = true;
297                 ++cur.pit();
298                 break;
299         }
300
301         case LFUN_PARAGRAPH_MOVE_UP: {
302                 pit_type const pit = cur.pit();
303                 recUndo(cur, pit - 1, pit);
304                 finishUndo();
305                 std::swap(pars_[pit], pars_[pit - 1]);
306                 updateLabels(cur.buffer());
307                 --cur.pit();
308                 needsUpdate = true;
309                 break;
310         }
311
312         case LFUN_APPENDIX: {
313                 Paragraph & par = cur.paragraph();
314                 bool start = !par.params().startOfAppendix();
315
316 // FIXME: The code below only makes sense at top level.
317 // Should LFUN_APPENDIX be restricted to top-level paragraphs?
318                 // ensure that we have only one start_of_appendix in this document
319                 // FIXME: this don't work for multipart document!
320                 for (pit_type tmp = 0, end = pars_.size(); tmp != end; ++tmp) {
321                         if (pars_[tmp].params().startOfAppendix()) {
322                                 recUndo(cur, tmp);
323                                 pars_[tmp].params().startOfAppendix(false);
324                                 break;
325                         }
326                 }
327
328                 recordUndo(cur);
329                 par.params().startOfAppendix(start);
330
331                 // we can set the refreshing parameters now
332                 updateLabels(cur.buffer());
333                 break;
334         }
335
336         case LFUN_WORD_DELETE_FORWARD:
337                 if (cur.selection()) {
338                         cutSelection(cur, true, false);
339                 } else
340                         deleteWordForward(cur);
341                 finishChange(cur, false);
342                 break;
343
344         case LFUN_WORD_DELETE_BACKWARD:
345                 if (cur.selection()) {
346                         cutSelection(cur, true, false);
347                 } else
348                         deleteWordBackward(cur);
349                 finishChange(cur, false);
350                 break;
351
352         case LFUN_LINE_DELETE:
353                 if (cur.selection()) {
354                         cutSelection(cur, true, false);
355                 } else
356                         tm.deleteLineForward(cur);
357                 finishChange(cur, false);
358                 break;
359
360         case LFUN_BUFFER_BEGIN:
361         case LFUN_BUFFER_BEGIN_SELECT:
362                 needsUpdate |= cur.selHandle(cmd.action == LFUN_BUFFER_BEGIN_SELECT);
363                 if (cur.depth() == 1) {
364                         needsUpdate |= cursorTop(cur);
365                 } else {
366                         cur.undispatched();
367                 }
368                 break;
369
370         case LFUN_BUFFER_END:
371         case LFUN_BUFFER_END_SELECT:
372                 needsUpdate |= cur.selHandle(cmd.action == LFUN_BUFFER_END_SELECT);
373                 if (cur.depth() == 1) {
374                         needsUpdate |= cursorBottom(cur);
375                 } else {
376                         cur.undispatched();
377                 }
378                 break;
379
380         case LFUN_CHAR_FORWARD:
381         case LFUN_CHAR_FORWARD_SELECT:
382                 //lyxerr << BOOST_CURRENT_FUNCTION
383                 //       << " LFUN_CHAR_FORWARD[SEL]:\n" << cur << endl;
384                 needsUpdate |= cur.selHandle(cmd.action == LFUN_CHAR_FORWARD_SELECT);
385                 if (reverseDirectionNeeded(cur))
386                         needsUpdate |= cursorLeft(cur);
387                 else
388                         needsUpdate |= cursorRight(cur);
389
390                 if (!needsUpdate && oldTopSlice == cur.top()
391                                 && cur.boundary() == oldBoundary) {
392                         cur.undispatched();
393                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
394                 }
395                 break;
396
397         case LFUN_CHAR_BACKWARD:
398         case LFUN_CHAR_BACKWARD_SELECT:
399                 //lyxerr << "handle LFUN_CHAR_BACKWARD[_SELECT]:\n" << cur << endl;
400                 needsUpdate |= cur.selHandle(cmd.action == LFUN_CHAR_BACKWARD_SELECT);
401                 if (reverseDirectionNeeded(cur))
402                         needsUpdate |= cursorRight(cur);
403                 else
404                         needsUpdate |= cursorLeft(cur);
405
406                 if (!needsUpdate && oldTopSlice == cur.top()
407                         && cur.boundary() == oldBoundary) {
408                         cur.undispatched();
409                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
410                 }
411                 break;
412
413         case LFUN_UP_SELECT:
414         case LFUN_DOWN_SELECT:
415         case LFUN_UP:
416         case LFUN_DOWN: {
417                 // stop/start the selection
418                 bool select = cmd.action == LFUN_DOWN_SELECT ||
419                         cmd.action == LFUN_UP_SELECT;
420                 cur.selHandle(select);
421                 
422                 // move cursor up/down
423                 bool up = cmd.action == LFUN_UP_SELECT || cmd.action == LFUN_UP;
424                 bool const successful = cur.upDownInText(up, needsUpdate);
425                 if (successful) {
426                         // notify insets which were left and get their update flags 
427                         notifyCursorLeaves(cur.beforeDispatchCursor(), cur);
428                         cur.fixIfBroken();
429                         
430                         // redraw if you leave mathed (for the decorations)
431                         needsUpdate |= cur.beforeDispatchCursor().inMathed();
432                 } else
433                         cur.undispatched();
434                 
435                 break;
436         }
437
438         case LFUN_PARAGRAPH_UP:
439         case LFUN_PARAGRAPH_UP_SELECT:
440                 needsUpdate |= cur.selHandle(cmd.action == LFUN_PARAGRAPH_UP_SELECT);
441                 needsUpdate |= cursorUpParagraph(cur);
442                 break;
443
444         case LFUN_PARAGRAPH_DOWN:
445         case LFUN_PARAGRAPH_DOWN_SELECT:
446                 needsUpdate |= cur.selHandle(cmd.action == LFUN_PARAGRAPH_DOWN_SELECT);
447                 needsUpdate |= cursorDownParagraph(cur);
448                 break;
449
450         case LFUN_SCREEN_UP_SELECT:
451                 needsUpdate |= cur.selHandle(true);
452                 if (cur.pit() == 0 && cur.textRow().pos() == 0)
453                         cur.undispatched();
454                 else {
455                         tm.cursorPrevious(cur);
456                 }
457                 break;
458
459         case LFUN_SCREEN_DOWN_SELECT:
460                 needsUpdate |= cur.selHandle(true);
461                 if (cur.pit() == cur.lastpit()
462                           && cur.textRow().endpos() == cur.lastpos())
463                         cur.undispatched();
464                 else {
465                         tm.cursorNext(cur);
466                 }
467                 break;
468
469         case LFUN_LINE_BEGIN:
470         case LFUN_LINE_BEGIN_SELECT:
471                 needsUpdate |= cur.selHandle(cmd.action == LFUN_LINE_BEGIN_SELECT);
472                 needsUpdate |= tm.cursorHome(cur);
473                 break;
474
475         case LFUN_LINE_END:
476         case LFUN_LINE_END_SELECT:
477                 needsUpdate |= cur.selHandle(cmd.action == LFUN_LINE_END_SELECT);
478                 needsUpdate |= tm.cursorEnd(cur);
479                 break;
480
481         case LFUN_WORD_FORWARD:
482         case LFUN_WORD_FORWARD_SELECT:
483                 needsUpdate |= cur.selHandle(cmd.action == LFUN_WORD_FORWARD_SELECT);
484                 if (reverseDirectionNeeded(cur))
485                         needsUpdate |= cursorLeftOneWord(cur);
486                 else
487                         needsUpdate |= cursorRightOneWord(cur);
488                 break;
489
490         case LFUN_WORD_BACKWARD:
491         case LFUN_WORD_BACKWARD_SELECT:
492                 needsUpdate |= cur.selHandle(cmd.action == LFUN_WORD_BACKWARD_SELECT);
493                 if (reverseDirectionNeeded(cur))
494                         needsUpdate |= cursorRightOneWord(cur);
495                 else
496                         needsUpdate |= cursorLeftOneWord(cur);
497                 break;
498
499         case LFUN_WORD_SELECT: {
500                 selectWord(cur, WHOLE_WORD);
501                 finishChange(cur, true);
502                 break;
503         }
504
505         case LFUN_BREAK_LINE: {
506                 // Not allowed by LaTeX (labels or empty par)
507                 if (cur.pos() > cur.paragraph().beginOfBody()) {
508                         // this avoids a double undo
509                         // FIXME: should not be needed, ideally
510                         if (!cur.selection())
511                                 recordUndo(cur);
512                         cap::replaceSelection(cur);
513                         cur.insert(new InsetNewline);
514                         cur.posRight();
515                         moveCursor(cur, false);
516                 }
517                 break;
518         }
519
520         case LFUN_CHAR_DELETE_FORWARD:
521                 if (!cur.selection()) {
522                         if (cur.pos() == cur.paragraph().size())
523                                 // Par boundary, force full-screen update
524                                 singleParUpdate = false;
525                         needsUpdate |= erase(cur);
526                         cur.resetAnchor();
527                         // It is possible to make it a lot faster still
528                         // just comment out the line below...
529                 } else {
530                         cutSelection(cur, true, false);
531                         singleParUpdate = false;
532                 }
533                 moveCursor(cur, false);
534                 break;
535
536         case LFUN_DELETE_FORWARD_SKIP:
537                 // Reverse the effect of LFUN_BREAK_PARAGRAPH_SKIP.
538                 if (!cur.selection()) {
539                         if (cur.pos() == cur.lastpos()) {
540                                 cursorRight(cur);
541                                 cursorLeft(cur);
542                         }
543                         erase(cur);
544                         cur.resetAnchor();
545                 } else {
546                         cutSelection(cur, true, false);
547                 }
548                 break;
549
550
551         case LFUN_CHAR_DELETE_BACKWARD:
552                 if (!cur.selection()) {
553                         if (bv->getIntl().getTransManager().backspace()) {
554                                 // Par boundary, full-screen update
555                                 if (cur.pos() == 0)
556                                         singleParUpdate = false;
557                                 needsUpdate |= backspace(cur);
558                                 cur.resetAnchor();
559                                 // It is possible to make it a lot faster still
560                                 // just comment out the line below...
561                         }
562                 } else {
563                         cutSelection(cur, true, false);
564                         singleParUpdate = false;
565                 }
566                 break;
567
568         case LFUN_DELETE_BACKWARD_SKIP:
569                 // Reverse the effect of LFUN_BREAK_PARAGRAPH_SKIP.
570                 if (!cur.selection()) {
571                         // FIXME: look here
572                         //CursorSlice cur = cursor();
573                         backspace(cur);
574                         //anchor() = cur;
575                 } else {
576                         cutSelection(cur, true, false);
577                 }
578                 break;
579
580         case LFUN_BREAK_PARAGRAPH:
581                 cap::replaceSelection(cur);
582                 breakParagraph(cur, cmd.argument() == "inverse");
583                 cur.resetAnchor();
584                 break;
585
586         case LFUN_BREAK_PARAGRAPH_SKIP: {
587                 // When at the beginning of a paragraph, remove
588                 // indentation.  Otherwise, do the same as LFUN_BREAK_PARAGRAPH.
589                 cap::replaceSelection(cur);
590                 if (cur.pos() == 0)
591                         cur.paragraph().params().labelWidthString(docstring());
592                 else
593                         breakParagraph(cur, false);
594                 cur.resetAnchor();
595                 break;
596         }
597
598         // TODO
599         // With the creation of LFUN_PARAGRAPH_PARAMS, this is now redundant,
600         // as its duties can be performed there. Should it be removed??
601         // FIXME For now, it can just dispatch LFUN_PARAGRAPH_PARAMS...
602         case LFUN_PARAGRAPH_SPACING: {
603                 Paragraph & par = cur.paragraph();
604                 Spacing::Space cur_spacing = par.params().spacing().getSpace();
605                 string cur_value = "1.0";
606                 if (cur_spacing == Spacing::Other)
607                         cur_value = par.params().spacing().getValueAsString();
608
609                 istringstream is(to_utf8(cmd.argument()));
610                 string tmp;
611                 is >> tmp;
612                 Spacing::Space new_spacing = cur_spacing;
613                 string new_value = cur_value;
614                 if (tmp.empty()) {
615                         lyxerr << "Missing argument to `paragraph-spacing'"
616                                << endl;
617                 } else if (tmp == "single") {
618                         new_spacing = Spacing::Single;
619                 } else if (tmp == "onehalf") {
620                         new_spacing = Spacing::Onehalf;
621                 } else if (tmp == "double") {
622                         new_spacing = Spacing::Double;
623                 } else if (tmp == "other") {
624                         new_spacing = Spacing::Other;
625                         string tmpval = "0.0";
626                         is >> tmpval;
627                         lyxerr << "new_value = " << tmpval << endl;
628                         if (tmpval != "0.0")
629                                 new_value = tmpval;
630                 } else if (tmp == "default") {
631                         new_spacing = Spacing::Default;
632                 } else {
633                         lyxerr << to_utf8(_("Unknown spacing argument: "))
634                                << to_utf8(cmd.argument()) << endl;
635                 }
636                 if (cur_spacing != new_spacing || cur_value != new_value)
637                         par.params().spacing(Spacing(new_spacing, new_value));
638                 break;
639         }
640
641         case LFUN_INSET_INSERT: {
642                 recordUndo(cur);
643                 Inset * inset = createInset(bv, cmd);
644                 if (inset) {
645                         // FIXME (Abdel 01/02/2006):
646                         // What follows would be a partial fix for bug 2154:
647                         //   http://bugzilla.lyx.org/show_bug.cgi?id=2154
648                         // This automatically put the label inset _after_ a
649                         // numbered section. It should be possible to extend the mechanism
650                         // to any kind of LateX environement.
651                         // The correct way to fix that bug would be at LateX generation.
652                         // I'll let the code here for reference as it could be used for some
653                         // other feature like "automatic labelling".
654                         /*
655                         Paragraph & par = pars_[cur.pit()];
656                         if (inset->lyxCode() == LABEL_CODE
657                                 && par.layout()->labeltype == LABEL_COUNTER) {
658                                 // Go to the end of the paragraph
659                                 // Warning: Because of Change-Tracking, the last
660                                 // position is 'size()' and not 'size()-1':
661                                 cur.pos() = par.size();
662                                 // Insert a new paragraph
663                                 FuncRequest fr(LFUN_BREAK_PARAGRAPH);
664                                 dispatch(cur, fr);
665                         }
666                         */
667                         if (cur.selection())
668                                 cutSelection(cur, true, false);
669                         insertInset(cur, inset);
670                         cur.posRight();
671                 }
672                 break;
673         }
674
675         case LFUN_INSET_DISSOLVE:
676                 needsUpdate |= dissolveInset(cur);
677                 break;
678
679         case LFUN_INSET_SETTINGS:
680                 cur.inset().showInsetDialog(bv);
681                 break;
682
683         case LFUN_SPACE_INSERT:
684                 if (cur.paragraph().layout()->free_spacing)
685                         insertChar(cur, ' ');
686                 else {
687                         doInsertInset(cur, this, cmd, false, false);
688                         cur.posRight();
689                 }
690                 moveCursor(cur, false);
691                 break;
692
693         case LFUN_HYPHENATION_POINT_INSERT:
694                 specialChar(cur, InsetSpecialChar::HYPHENATION);
695                 break;
696
697         case LFUN_LIGATURE_BREAK_INSERT:
698                 specialChar(cur, InsetSpecialChar::LIGATURE_BREAK);
699                 break;
700
701         case LFUN_DOTS_INSERT:
702                 specialChar(cur, InsetSpecialChar::LDOTS);
703                 break;
704
705         case LFUN_END_OF_SENTENCE_PERIOD_INSERT:
706                 specialChar(cur, InsetSpecialChar::END_OF_SENTENCE);
707                 break;
708
709         case LFUN_MENU_SEPARATOR_INSERT:
710                 specialChar(cur, InsetSpecialChar::MENU_SEPARATOR);
711                 break;
712
713         case LFUN_WORD_UPCASE:
714                 changeCase(cur, Text::text_uppercase);
715                 break;
716
717         case LFUN_WORD_LOWCASE:
718                 changeCase(cur, Text::text_lowercase);
719                 break;
720
721         case LFUN_WORD_CAPITALIZE:
722                 changeCase(cur, Text::text_capitalization);
723                 break;
724
725         case LFUN_CHARS_TRANSPOSE:
726                 charsTranspose(cur);
727                 break;
728
729         case LFUN_PASTE:
730                 cur.message(_("Paste"));
731                 cap::replaceSelection(cur);
732                 if (cmd.argument().empty() && !theClipboard().isInternal())
733                         pasteClipboard(cur, bv->buffer().errorList("Paste"));
734                 else {
735                         string const arg(to_utf8(cmd.argument()));
736                         pasteFromStack(cur, bv->buffer().errorList("Paste"),
737                                         isStrUnsignedInt(arg) ?
738                                                 convert<unsigned int>(arg) :
739                                                 0);
740                 }
741                 bv->buffer().errors("Paste");
742                 cur.clearSelection(); // bug 393
743                 finishUndo();
744                 break;
745
746         case LFUN_CUT:
747                 cutSelection(cur, true, true);
748                 cur.message(_("Cut"));
749                 break;
750
751         case LFUN_COPY:
752                 copySelection(cur);
753                 cur.message(_("Copy"));
754                 break;
755
756         case LFUN_SERVER_GET_XY:
757                 cur.message(from_utf8(
758                         convert<string>(tm.cursorX(cur.top(), cur.boundary()))
759                         + ' ' + convert<string>(tm.cursorY(cur.top(), cur.boundary()))));
760                 break;
761
762         case LFUN_SERVER_SET_XY: {
763                 int x = 0;
764                 int y = 0;
765                 istringstream is(to_utf8(cmd.argument()));
766                 is >> x >> y;
767                 if (!is)
768                         lyxerr << "SETXY: Could not parse coordinates in '"
769                                << to_utf8(cmd.argument()) << std::endl;
770                 else
771                         tm.setCursorFromCoordinates(cur, x, y);
772                 break;
773         }
774
775         case LFUN_SERVER_GET_FONT:
776                 if (cur.current_font.shape() == Font::ITALIC_SHAPE)
777                         cur.message(from_ascii("E"));
778                 else if (cur.current_font.shape() == Font::SMALLCAPS_SHAPE)
779                         cur.message(from_ascii("N"));
780                 else
781                         cur.message(from_ascii("0"));
782                 break;
783
784         case LFUN_SERVER_GET_LAYOUT:
785                 cur.message(cur.paragraph().layout()->name());
786                 break;
787
788         case LFUN_LAYOUT: {
789                 docstring layout = cmd.argument();
790                 LYXERR(Debug::INFO) << "LFUN_LAYOUT: (arg) " << to_utf8(layout) << endl;
791
792                 docstring const old_layout = cur.paragraph().layout()->name();
793
794                 // Derive layout number from given argument (string)
795                 // and current buffer's textclass (number)
796                 TextClass const & tclass = bv->buffer().params().getTextClass();
797                 if (layout.empty())
798                         layout = tclass.defaultLayoutName();
799                 bool hasLayout = tclass.hasLayout(layout);
800
801                 // If the entry is obsolete, use the new one instead.
802                 if (hasLayout) {
803                         docstring const & obs = tclass[layout]->obsoleted_by();
804                         if (!obs.empty())
805                                 layout = obs;
806                 }
807
808                 if (!hasLayout) {
809                         cur.errorMessage(from_utf8(N_("Layout ")) + cmd.argument() +
810                                 from_utf8(N_(" not known")));
811                         break;
812                 }
813
814                 bool change_layout = (old_layout != layout);
815
816                 if (!change_layout && cur.selection() &&
817                         cur.selBegin().pit() != cur.selEnd().pit())
818                 {
819                         pit_type spit = cur.selBegin().pit();
820                         pit_type epit = cur.selEnd().pit() + 1;
821                         while (spit != epit) {
822                                 if (pars_[spit].layout()->name() != old_layout) {
823                                         change_layout = true;
824                                         break;
825                                 }
826                                 ++spit;
827                         }
828                 }
829
830                 if (change_layout)
831                         setLayout(cur, layout);
832
833                 break;
834         }
835
836         case LFUN_CLIPBOARD_PASTE:
837                 cur.clearSelection();
838                 pasteClipboard(cur, bv->buffer().errorList("Paste"),
839                                cmd.argument() == "paragraph");
840                 bv->buffer().errors("Paste");
841                 break;
842
843         case LFUN_PRIMARY_SELECTION_PASTE:
844                 pasteString(cur, theSelection().get(),
845                             cmd.argument() == "paragraph");
846                 break;
847
848         case LFUN_UNICODE_INSERT: {
849                 if (cmd.argument().empty())
850                         break;
851                 docstring hexstring = cmd.argument();
852                 if (lyx::support::isHex(hexstring)) {
853                         char_type c = lyx::support::hexToInt(hexstring);
854                         if (c >= 32 && c < 0x10ffff) {
855                                 lyxerr << "Inserting c: " << c << endl;
856                                 docstring s = docstring(1, c);
857                                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, s));
858                         }
859                 }
860                 break;
861         }
862
863         case LFUN_QUOTE_INSERT: {
864                 Paragraph & par = cur.paragraph();
865                 pos_type pos = cur.pos();
866                 BufferParams const & bufparams = bv->buffer().params();
867                 LayoutPtr const & style = par.layout();
868                 if (!style->pass_thru
869                     && par.getFontSettings(bufparams, pos).language()->lang() != "hebrew") {
870                         // this avoids a double undo
871                         // FIXME: should not be needed, ideally
872                         if (!cur.selection())
873                                 recordUndo(cur);
874                         cap::replaceSelection(cur);
875                         pos = cur.pos();
876                         char_type c;
877                         if (pos == 0)
878                                 c = ' ';
879                         else if (cur.prevInset() && cur.prevInset()->isSpace())
880                                 c = ' ';
881                         else
882                                 c = par.getChar(pos - 1);
883                         string arg = to_utf8(cmd.argument());
884                         if (arg == "single")
885                                 cur.insert(new InsetQuotes(c,
886                                     bufparams.quotes_language,
887                                     InsetQuotes::SingleQ));
888                         else
889                                 cur.insert(new InsetQuotes(c,
890                                     bufparams.quotes_language,
891                                     InsetQuotes::DoubleQ));
892                         cur.posRight();
893                 }
894                 else
895                         lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, "\""));
896                 break;
897         }
898
899         case LFUN_DATE_INSERT: {
900                 string const format = cmd.argument().empty()
901                         ? lyxrc.date_insert_format : to_utf8(cmd.argument());
902                 string const time = formatted_time(current_time(), format);
903                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, time));
904                 break;
905         }
906
907         case LFUN_MOUSE_TRIPLE:
908                 if (cmd.button() == mouse_button::button1) {
909                         tm.cursorHome(cur);
910                         cur.resetAnchor();
911                         tm.cursorEnd(cur);
912                         cur.setSelection();
913                         bv->cursor() = cur;
914                 }
915                 break;
916
917         case LFUN_MOUSE_DOUBLE:
918                 if (cmd.button() == mouse_button::button1) {
919                         selectWord(cur, WHOLE_WORD_STRICT);
920                         bv->cursor() = cur;
921                 }
922                 break;
923
924         // Single-click on work area
925         case LFUN_MOUSE_PRESS: {
926                 // Right click on a footnote flag opens float menu
927                 // FIXME: Why should we clear the selection in this case?
928                 if (cmd.button() == mouse_button::button3)
929                         cur.clearSelection();
930
931                 bool do_selection = cmd.button() == mouse_button::button1
932                         && cmd.argument() == "region-select";
933                 // Set the cursor
934                 bool update = bv->mouseSetCursor(cur, do_selection);
935
936                 // Insert primary selection with middle mouse
937                 // if there is a local selection in the current buffer,
938                 // insert this
939                 if (cmd.button() == mouse_button::button2) {
940                         if (cap::selection()) {
941                                 // Copy the selection buffer to the clipboard
942                                 // stack, because we want it to appear in the
943                                 // "Edit->Paste recent" menu.
944                                 cap::copySelectionToStack();
945
946                                 cap::pasteSelection(bv->cursor(), 
947                                                     bv->buffer().errorList("Paste"));
948                                 bv->buffer().errors("Paste");
949                                 bv->buffer().markDirty();
950                                 finishUndo();
951                         } else {
952                                 lyx::dispatch(FuncRequest(LFUN_PRIMARY_SELECTION_PASTE, "paragraph"));
953                         }
954                 }
955
956                 // we have to update after dEPM triggered
957                 if (!update && cmd.button() == mouse_button::button1) {
958                         needsUpdate = false;
959                         cur.noUpdate();
960                 }
961
962                 break;
963         }
964
965         case LFUN_MOUSE_MOTION: {
966                 // Only use motion with button 1
967                 //if (cmd.button() != mouse_button::button1)
968                 //      return false;
969
970                 // ignore motions deeper nested than the real anchor
971                 Cursor & bvcur = cur.bv().cursor();
972                 if (bvcur.anchor_.hasPart(cur)) {
973                         CursorSlice old = bvcur.top();
974
975                         int const wh = bv->workHeight();
976                         int const y = std::max(0, std::min(wh - 1, cmd.y));
977
978                         tm.setCursorFromCoordinates(cur, cmd.x, y);
979                         cur.setTargetX(cmd.x);
980                         if (cmd.y >= wh)
981                                 lyx::dispatch(FuncRequest(LFUN_DOWN_SELECT));
982                         else if (cmd.y < 0)
983                                 lyx::dispatch(FuncRequest(LFUN_UP_SELECT));
984                         // This is to allow jumping over large insets
985                         if (cur.top() == old) {
986                                 if (cmd.y >= wh)
987                                         lyx::dispatch(FuncRequest(LFUN_DOWN_SELECT));
988                                 else if (cmd.y < 0)
989                                         lyx::dispatch(FuncRequest(LFUN_UP_SELECT));
990                         }
991
992                         if (cur.top() == old)
993                                 cur.noUpdate();
994                         else {
995                                 // don't set anchor_
996                                 bvcur.setCursor(cur);
997                                 bvcur.selection() = true;
998                                 //lyxerr << "MOTION: " << bv->cursor() << endl;
999                         }
1000
1001                 } else
1002                         cur.undispatched();
1003                 break;
1004         }
1005
1006         case LFUN_MOUSE_RELEASE: {
1007                 if (cmd.button() == mouse_button::button2)
1008                         break;
1009
1010                 if (cmd.button() == mouse_button::button1) {
1011                         // if there is new selection, update persistent
1012                         // selection, otherwise, single click does not
1013                         // clear persistent selection buffer
1014                         if (cur.selection()) {
1015                                 // finish selection
1016                                 // if double click, cur is moved to the end of word by selectWord
1017                                 // but bvcur is current mouse position
1018                                 Cursor & bvcur = cur.bv().cursor();
1019                                 bvcur.selection() = true;
1020                         }
1021                         needsUpdate = false;
1022                         cur.noUpdate();
1023                 }
1024
1025                 break;
1026         }
1027
1028         case LFUN_SELF_INSERT: {
1029                 if (cmd.argument().empty())
1030                         break;
1031
1032                 // Automatically delete the currently selected
1033                 // text and replace it with what is being
1034                 // typed in now. Depends on lyxrc settings
1035                 // "auto_region_delete", which defaults to
1036                 // true (on).
1037
1038                 if (lyxrc.auto_region_delete && cur.selection()) {
1039                         cutSelection(cur, false, false);
1040                         // When change tracking is set to off, the metrics update
1041                         // mechanism correctly detects if a full update is needed or not.
1042                         // This detection fails when a selection spans multiple rows and
1043                         // change tracking is enabled because the paragraph metrics stays
1044                         // the same. In this case, we force the full update:
1045                         // (see http://bugzilla.lyx.org/show_bug.cgi?id=3992)
1046                         if (cur.buffer().params().trackChanges)
1047                                 cur.updateFlags(Update::Force);
1048                 }
1049
1050                 cur.clearSelection();
1051                 Font const old_font = cur.real_current_font;
1052
1053                 docstring::const_iterator cit = cmd.argument().begin();
1054                 docstring::const_iterator end = cmd.argument().end();
1055                 for (; cit != end; ++cit)
1056                         bv->translateAndInsert(*cit, this, cur);
1057
1058                 cur.resetAnchor();
1059                 moveCursor(cur, false);
1060                 break;
1061         }
1062
1063         case LFUN_HYPERLINK_INSERT: {
1064                 InsetCommandParams p("href");
1065                 docstring content;
1066                 if (cur.selection()) {
1067                         content = cur.selectionAsString(false);
1068                         cutSelection(cur, true, false);
1069                 }
1070                 p["target"] = (cmd.argument().empty()) ?
1071                         content : cmd.argument();
1072                 string const data = InsetCommandMailer::params2string("href", p);
1073                 if (p["target"].empty()) {
1074                         bv->showInsetDialog("href", data, 0);
1075                 } else {
1076                         FuncRequest fr(LFUN_INSET_INSERT, data);
1077                         dispatch(cur, fr);
1078                 }
1079                 break;
1080         }
1081
1082         case LFUN_LABEL_INSERT: {
1083                 InsetCommandParams p("label");
1084                 // Try to generate a valid label
1085                 p["name"] = (cmd.argument().empty()) ?
1086                         cur.getPossibleLabel() :
1087                         cmd.argument();
1088                 string const data = InsetCommandMailer::params2string("label", p);
1089
1090                 if (cmd.argument().empty()) {
1091                         bv->showInsetDialog("label", data, 0);
1092                 } else {
1093                         FuncRequest fr(LFUN_INSET_INSERT, data);
1094                         dispatch(cur, fr);
1095                 }
1096                 break;
1097         }
1098
1099         case LFUN_INFO_INSERT: {
1100                 if (!cur.selection())
1101                         break;
1102                 Inset * inset = createInset(&cur.bv(), cmd);
1103                 if (!inset)
1104                         break;
1105                 // use selected text as info to avoid a separate UI
1106                 docstring ds = cur.selectionAsString(false);
1107                 cutSelection(cur, true, false);
1108                 insertInset(cur, inset);
1109                 static_cast<InsetInfo *>(inset)->setInfo(to_utf8(ds));
1110                 cur.posRight();
1111                 break;
1112         }
1113 #if 0
1114         case LFUN_LIST_INSERT:
1115         case LFUN_THEOREM_INSERT:
1116 #endif
1117         case LFUN_CAPTION_INSERT:
1118                 // Open the inset, and move the current selection
1119                 // inside it.
1120                 doInsertInset(cur, this, cmd, true, true);
1121                 cur.posRight();
1122                 updateLabels(bv->buffer());
1123                 break;
1124         case LFUN_NOTE_INSERT:
1125         case LFUN_FLEX_INSERT:
1126         case LFUN_BOX_INSERT:
1127         case LFUN_BRANCH_INSERT:
1128         case LFUN_BIBITEM_INSERT:
1129         case LFUN_ERT_INSERT:
1130         case LFUN_LISTING_INSERT:
1131         case LFUN_FOOTNOTE_INSERT:
1132         case LFUN_MARGINALNOTE_INSERT:
1133         case LFUN_OPTIONAL_INSERT:
1134         case LFUN_ENVIRONMENT_INSERT:
1135                 // Open the inset, and move the current selection
1136                 // inside it.
1137                 doInsertInset(cur, this, cmd, true, true);
1138                 cur.posRight();
1139                 break;
1140
1141         case LFUN_TABULAR_INSERT:
1142                 // if there were no arguments, just open the dialog
1143                 if (doInsertInset(cur, this, cmd, false, true))
1144                         cur.posRight();
1145                 else
1146                         bv->showDialog("tabularcreate");
1147
1148                 break;
1149
1150         case LFUN_FLOAT_INSERT:
1151         case LFUN_FLOAT_WIDE_INSERT:
1152         case LFUN_WRAP_INSERT: {
1153                 bool content = cur.selection();  // will some text be moved into the inset?
1154
1155                 doInsertInset(cur, this, cmd, true, true);
1156                 cur.posRight();
1157                 ParagraphList & pars = cur.text()->paragraphs();
1158
1159                 TextClass const & tclass = bv->buffer().params().getTextClass();
1160
1161                 // add a separate paragraph for the caption inset
1162                 pars.push_back(Paragraph());
1163                 pars.back().setInsetOwner(pars[0].inInset());
1164                 pars.back().layout(tclass.defaultLayout());
1165
1166                 int cap_pit = pars.size() - 1;
1167
1168                 // if an empty inset was created, we create an additional empty
1169                 // paragraph at the bottom so that the user can choose where to put
1170                 // the graphics (or table).
1171                 if (!content) {
1172                         pars.push_back(Paragraph());
1173                         pars.back().setInsetOwner(pars[0].inInset());
1174                         pars.back().layout(tclass.defaultLayout());
1175
1176                 }
1177
1178                 // reposition the cursor to the caption
1179                 cur.pit() = cap_pit;
1180                 cur.pos() = 0;
1181                 // FIXME: This Text/Cursor dispatch handling is a mess!
1182                 // We cannot use Cursor::dispatch here it needs access to up to
1183                 // date metrics.
1184                 FuncRequest cmd_caption(LFUN_CAPTION_INSERT);
1185                 cur.text()->dispatch(cur, cmd_caption);
1186                 cur.updateFlags(Update::Force);
1187                 // FIXME: When leaving the Float (or Wrap) inset we should
1188                 // delete any empty paragraph left above or below the
1189                 // caption.
1190                 break;
1191         }
1192
1193         case LFUN_INDEX_INSERT:
1194                 doInsertInset(cur, this, cmd, true, true);
1195                 cur.posRight();
1196                 break;
1197         case LFUN_NOMENCL_INSERT: {
1198                 Inset * inset = createInset(&cur.bv(), cmd);
1199                 if (!inset)
1200                         break;
1201                 recordUndo(cur);
1202                 cur.clearSelection();
1203                 insertInset(cur, inset);
1204                 // Show the dialog for the nomenclature entry, since the
1205                 // description entry still needs to be filled in.
1206                 if (cmd.action == LFUN_NOMENCL_INSERT)
1207                         inset->edit(cur, true);
1208                 cur.posRight();
1209                 break;
1210         }
1211
1212         case LFUN_INDEX_PRINT:
1213         case LFUN_NOMENCL_PRINT:
1214         case LFUN_TOC_INSERT:
1215         case LFUN_HFILL_INSERT:
1216         case LFUN_LINE_INSERT:
1217         case LFUN_PAGEBREAK_INSERT:
1218         case LFUN_CLEARPAGE_INSERT:
1219         case LFUN_CLEARDOUBLEPAGE_INSERT:
1220                 // do nothing fancy
1221                 doInsertInset(cur, this, cmd, false, false);
1222                 cur.posRight();
1223                 break;
1224
1225         case LFUN_DEPTH_DECREMENT:
1226                 changeDepth(cur, DEC_DEPTH);
1227                 break;
1228
1229         case LFUN_DEPTH_INCREMENT:
1230                 changeDepth(cur, INC_DEPTH);
1231                 break;
1232
1233         case LFUN_MATH_DISPLAY:
1234                 mathDispatch(cur, cmd, true);
1235                 break;
1236
1237         case LFUN_MATH_IMPORT_SELECTION:
1238         case LFUN_MATH_MODE:
1239                 if (cmd.argument() == "on")
1240                         // don't pass "on" as argument
1241                         mathDispatch(cur, FuncRequest(LFUN_MATH_MODE), false);
1242                 else
1243                         mathDispatch(cur, cmd, false);
1244                 break;
1245
1246         case LFUN_MATH_MACRO:
1247                 if (cmd.argument().empty())
1248                         cur.errorMessage(from_utf8(N_("Missing argument")));
1249                 else {
1250                         string s = to_utf8(cmd.argument());
1251                         string const s1 = token(s, ' ', 1);
1252                         int const nargs = s1.empty() ? 0 : convert<int>(s1);
1253                         string const s2 = token(s, ' ', 2);
1254                         string const type = s2.empty() ? "newcommand" : s2;
1255                         cur.insert(new MathMacroTemplate(from_utf8(token(s, ' ', 0)), nargs, from_utf8(type)));
1256                         //cur.nextInset()->edit(cur, true);
1257                 }
1258                 break;
1259
1260         // passthrough hat and underscore outside mathed:
1261         case LFUN_MATH_SUBSCRIPT:
1262                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "_"), false);
1263                 break;
1264         case LFUN_MATH_SUPERSCRIPT:
1265                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "^"), false);
1266                 break;
1267
1268         case LFUN_MATH_INSERT:
1269         case LFUN_MATH_MATRIX:
1270         case LFUN_MATH_DELIM:
1271         case LFUN_MATH_BIGDELIM: {
1272                 if (cur.selection())
1273                         cur.clearSelection();
1274                 // FIXME: instead of the above, this one
1275                 // should be used (but it asserts with Bidi enabled)
1276                 // cf. http://bugzilla.lyx.org/show_bug.cgi?id=4055
1277                 // cap::replaceSelection(cur);
1278                 cur.insert(new InsetMathHull(hullSimple));
1279                 checkAndActivateInset(cur, true);
1280                 BOOST_ASSERT(cur.inMathed());
1281                 cur.dispatch(cmd);
1282                 break;
1283         }
1284
1285         case LFUN_FONT_EMPH: {
1286                 Font font(Font::ALL_IGNORE);
1287                 font.setEmph(Font::TOGGLE);
1288                 toggleAndShow(cur, this, font);
1289                 break;
1290         }
1291
1292         case LFUN_FONT_BOLD: {
1293                 Font font(Font::ALL_IGNORE);
1294                 font.setSeries(Font::BOLD_SERIES);
1295                 toggleAndShow(cur, this, font);
1296                 break;
1297         }
1298
1299         case LFUN_FONT_NOUN: {
1300                 Font font(Font::ALL_IGNORE);
1301                 font.setNoun(Font::TOGGLE);
1302                 toggleAndShow(cur, this, font);
1303                 break;
1304         }
1305
1306         case LFUN_FONT_TYPEWRITER: {
1307                 Font font(Font::ALL_IGNORE);
1308                 font.setFamily(Font::TYPEWRITER_FAMILY); // no good
1309                 toggleAndShow(cur, this, font);
1310                 break;
1311         }
1312
1313         case LFUN_FONT_SANS: {
1314                 Font font(Font::ALL_IGNORE);
1315                 font.setFamily(Font::SANS_FAMILY);
1316                 toggleAndShow(cur, this, font);
1317                 break;
1318         }
1319
1320         case LFUN_FONT_ROMAN: {
1321                 Font font(Font::ALL_IGNORE);
1322                 font.setFamily(Font::ROMAN_FAMILY);
1323                 toggleAndShow(cur, this, font);
1324                 break;
1325         }
1326
1327         case LFUN_FONT_DEFAULT: {
1328                 Font font(Font::ALL_INHERIT, ignore_language);
1329                 toggleAndShow(cur, this, font);
1330                 break;
1331         }
1332
1333         case LFUN_FONT_UNDERLINE: {
1334                 Font font(Font::ALL_IGNORE);
1335                 font.setUnderbar(Font::TOGGLE);
1336                 toggleAndShow(cur, this, font);
1337                 break;
1338         }
1339
1340         case LFUN_FONT_SIZE: {
1341                 Font font(Font::ALL_IGNORE);
1342                 font.setLyXSize(to_utf8(cmd.argument()));
1343                 toggleAndShow(cur, this, font);
1344                 break;
1345         }
1346
1347         case LFUN_LANGUAGE: {
1348                 Language const * lang = languages.getLanguage(to_utf8(cmd.argument()));
1349                 if (!lang)
1350                         break;
1351                 Font font(Font::ALL_IGNORE);
1352                 font.setLanguage(lang);
1353                 toggleAndShow(cur, this, font);
1354                 break;
1355         }
1356
1357         case LFUN_FONT_FREE_APPLY:
1358                 toggleAndShow(cur, this, freefont, toggleall);
1359                 cur.message(_("Character set"));
1360                 break;
1361
1362         // Set the freefont using the contents of \param data dispatched from
1363         // the frontends and apply it at the current cursor location.
1364         case LFUN_FONT_FREE_UPDATE: {
1365                 Font font;
1366                 bool toggle;
1367                 if (font.fromString(to_utf8(cmd.argument()), toggle)) {
1368                         freefont = font;
1369                         toggleall = toggle;
1370                         toggleAndShow(cur, this, freefont, toggleall);
1371                         cur.message(_("Character set"));
1372                 }
1373                 break;
1374         }
1375
1376         case LFUN_FINISHED_LEFT:
1377                 LYXERR(Debug::DEBUG) << "handle LFUN_FINISHED_LEFT:\n" << cur << endl;
1378                 if (reverseDirectionNeeded(cur)) {
1379                         ++cur.pos();
1380                         cur.setCurrentFont();
1381                 }
1382                 break;
1383
1384         case LFUN_FINISHED_RIGHT:
1385                 LYXERR(Debug::DEBUG) << "handle LFUN_FINISHED_RIGHT:\n" << cur << endl;
1386                 if (!reverseDirectionNeeded(cur)) {
1387                         ++cur.pos();
1388                         cur.setCurrentFont();
1389                 }
1390                 break;
1391
1392         case LFUN_LAYOUT_PARAGRAPH: {
1393                 string data;
1394                 params2string(cur.paragraph(), data);
1395                 data = "show\n" + data;
1396                 bv->showDialogWithData("paragraph", data);
1397                 break;
1398         }
1399
1400         case LFUN_PARAGRAPH_UPDATE: {
1401                 string data;
1402                 params2string(cur.paragraph(), data);
1403
1404                 // Will the paragraph accept changes from the dialog?
1405                 bool const accept = !cur.inset().forceDefaultParagraphs(cur.idx());
1406
1407                 data = "update " + convert<string>(accept) + '\n' + data;
1408                 bv->updateDialog("paragraph", data);
1409                 break;
1410         }
1411
1412         case LFUN_ACCENT_UMLAUT:
1413         case LFUN_ACCENT_CIRCUMFLEX:
1414         case LFUN_ACCENT_GRAVE:
1415         case LFUN_ACCENT_ACUTE:
1416         case LFUN_ACCENT_TILDE:
1417         case LFUN_ACCENT_CEDILLA:
1418         case LFUN_ACCENT_MACRON:
1419         case LFUN_ACCENT_DOT:
1420         case LFUN_ACCENT_UNDERDOT:
1421         case LFUN_ACCENT_UNDERBAR:
1422         case LFUN_ACCENT_CARON:
1423         case LFUN_ACCENT_SPECIAL_CARON:
1424         case LFUN_ACCENT_BREVE:
1425         case LFUN_ACCENT_TIE:
1426         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
1427         case LFUN_ACCENT_CIRCLE:
1428         case LFUN_ACCENT_OGONEK:
1429                 theLyXFunc().handleKeyFunc(cmd.action);
1430                 if (!cmd.argument().empty())
1431                         // FIXME: Are all these characters encoded in one byte in utf8?
1432                         bv->translateAndInsert(cmd.argument()[0], this, cur);
1433                 break;
1434
1435         case LFUN_FLOAT_LIST: {
1436                 TextClass const & tclass = bv->buffer().params().getTextClass();
1437                 if (tclass.floats().typeExist(to_utf8(cmd.argument()))) {
1438                         recordUndo(cur);
1439                         if (cur.selection())
1440                                 cutSelection(cur, true, false);
1441                         breakParagraph(cur);
1442
1443                         if (cur.lastpos() != 0) {
1444                                 cursorLeft(cur);
1445                                 breakParagraph(cur);
1446                         }
1447
1448                         setLayout(cur, tclass.defaultLayoutName());
1449                         ParagraphParameters p;
1450                         setParagraphs(cur, p);
1451                         insertInset(cur, new InsetFloatList(to_utf8(cmd.argument())));
1452                         cur.posRight();
1453                 } else {
1454                         lyxerr << "Non-existent float type: "
1455                                << to_utf8(cmd.argument()) << endl;
1456                 }
1457                 break;
1458         }
1459
1460         case LFUN_CHANGE_ACCEPT: {
1461                 acceptOrRejectChanges(cur, ACCEPT);
1462                 break;
1463         }
1464
1465         case LFUN_CHANGE_REJECT: {
1466                 acceptOrRejectChanges(cur, REJECT);
1467                 break;
1468         }
1469
1470         case LFUN_THESAURUS_ENTRY: {
1471                 docstring arg = cmd.argument();
1472                 if (arg.empty()) {
1473                         arg = cur.selectionAsString(false);
1474                         // FIXME
1475                         if (arg.size() > 100 || arg.empty()) {
1476                                 // Get word or selection
1477                                 selectWordWhenUnderCursor(cur, WHOLE_WORD);
1478                                 arg = cur.selectionAsString(false);
1479                         }
1480                 }
1481                 bv->showDialogWithData("thesaurus", to_utf8(arg));
1482                 break;
1483         }
1484
1485         case LFUN_PARAGRAPH_PARAMS_APPLY: {
1486                 // Given data, an encoding of the ParagraphParameters
1487                 // generated in the Paragraph dialog, this function sets
1488                 // the current paragraph, or currently selected paragraphs,
1489                 // appropriately. 
1490                 // NOTE: This function overrides all existing settings.
1491                 setParagraphs(cur, cmd.argument());
1492                 cur.message(_("Paragraph layout set"));
1493                 break;
1494         }
1495         
1496         case LFUN_PARAGRAPH_PARAMS: {
1497                 // Given data, an encoding of the ParagraphParameters as we'd
1498                 // find them in a LyX file, this function modifies the current paragraph, 
1499                 // or currently selected paragraphs. 
1500                 // NOTE: This function only modifies, and does not override, existing
1501                 // settings.
1502                 setParagraphs(cur, cmd.argument(), true);
1503                 cur.message(_("Paragraph layout set"));
1504                 break;
1505         }
1506
1507         case LFUN_ESCAPE:
1508                 if (cur.selection()) {
1509                         cur.selection() = false;
1510                 } else {
1511                         cur.undispatched();
1512                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
1513                 }
1514                 break;
1515
1516         default:
1517                 LYXERR(Debug::ACTION)
1518                         << BOOST_CURRENT_FUNCTION
1519                         << ": Command " << cmd
1520                         << " not DISPATCHED by Text" << endl;
1521                 cur.undispatched();
1522                 break;
1523         }
1524
1525         needsUpdate |= (cur.pos() != cur.lastpos()) && cur.selection();
1526
1527         // FIXME: The cursor flag is reset two lines below
1528         // so we need to check here if some of the LFUN did touch that.
1529         // for now only Text::erase() and Text::backspace() do that.
1530         // The plan is to verify all the LFUNs and then to remove this
1531         // singleParUpdate boolean altogether.
1532         if (cur.result().update() & Update::Force) {
1533                 singleParUpdate = false;
1534                 needsUpdate = true;
1535         }
1536
1537         // FIXME: the following code should go in favor of fine grained
1538         // update flag treatment.
1539         if (singleParUpdate) {
1540                 // Inserting characters does not change par height
1541                 ParagraphMetrics const & pms
1542                         = cur.bv().parMetrics(cur.bottom().text(), cur.bottom().pit());
1543                 if (pms.dim().height()
1544                     == olddim.height()) {
1545                         // if so, update _only_ this paragraph
1546                         cur.updateFlags(Update::SinglePar |
1547                                 Update::FitCursor |
1548                                 Update::MultiParSel);
1549                         return;
1550                 } else
1551                         needsUpdate = true;
1552         }
1553
1554         if (!needsUpdate
1555             && &oldTopSlice.inset() == &cur.inset()
1556             && oldTopSlice.idx() == cur.idx()
1557             && !sel // sel is a backup of cur.selection() at the biginning of the function.
1558             && !cur.selection())
1559                 // FIXME: it would be better if we could just do this
1560                 //
1561                 //if (cur.result().update() != Update::FitCursor)
1562                 //      cur.noUpdate();
1563                 //
1564                 // But some LFUNs do not set Update::FitCursor when needed, so we
1565                 // do it for all. This is not very harmfull as FitCursor will provoke
1566                 // a full redraw only if needed but still, a proper review of all LFUN
1567                 // should be done and this needsUpdate boolean can then be removed.
1568                 cur.updateFlags(Update::FitCursor);
1569         else
1570                 cur.updateFlags(Update::Force | Update::FitCursor);
1571 }
1572
1573
1574 bool Text::getStatus(Cursor & cur, FuncRequest const & cmd,
1575                         FuncStatus & flag) const
1576 {
1577         BOOST_ASSERT(cur.text() == this);
1578
1579         Font const & font = cur.real_current_font;
1580         bool enable = true;
1581         InsetCode code = NO_CODE;
1582
1583         switch (cmd.action) {
1584
1585         case LFUN_DEPTH_DECREMENT:
1586                 enable = changeDepthAllowed(cur, DEC_DEPTH);
1587                 break;
1588
1589         case LFUN_DEPTH_INCREMENT:
1590                 enable = changeDepthAllowed(cur, INC_DEPTH);
1591                 break;
1592
1593         case LFUN_APPENDIX:
1594                 flag.setOnOff(cur.paragraph().params().startOfAppendix());
1595                 return true;
1596
1597         case LFUN_BIBITEM_INSERT:
1598                 enable = (cur.paragraph().layout()->labeltype == LABEL_BIBLIO
1599                           && cur.pos() == 0);
1600                 break;
1601
1602         case LFUN_DIALOG_SHOW_NEW_INSET:
1603                 if (cmd.argument() == "bibitem")
1604                         code = BIBITEM_CODE;
1605                 else if (cmd.argument() == "bibtex")
1606                         code = BIBTEX_CODE;
1607                 else if (cmd.argument() == "box")
1608                         code = BOX_CODE;
1609                 else if (cmd.argument() == "branch")
1610                         code = BRANCH_CODE;
1611                 else if (cmd.argument() == "citation")
1612                         code = CITE_CODE;
1613                 else if (cmd.argument() == "ert")
1614                         code = ERT_CODE;
1615                 else if (cmd.argument() == "external")
1616                         code = EXTERNAL_CODE;
1617                 else if (cmd.argument() == "float")
1618                         code = FLOAT_CODE;
1619                 else if (cmd.argument() == "graphics")
1620                         code = GRAPHICS_CODE;
1621                 else if (cmd.argument() == "href")
1622                         code = HYPERLINK_CODE;
1623                 else if (cmd.argument() == "include")
1624                         code = INCLUDE_CODE;
1625                 else if (cmd.argument() == "index")
1626                         code = INDEX_CODE;
1627                 else if (cmd.argument() == "nomenclature")
1628                         code = NOMENCL_CODE;
1629                 else if (cmd.argument() == "label")
1630                         code = LABEL_CODE;
1631                 else if (cmd.argument() == "note")
1632                         code = NOTE_CODE;
1633                 else if (cmd.argument() == "ref")
1634                         code = REF_CODE;
1635                 else if (cmd.argument() == "toc")
1636                         code = TOC_CODE;
1637                 else if (cmd.argument() == "vspace")
1638                         code = VSPACE_CODE;
1639                 else if (cmd.argument() == "wrap")
1640                         code = WRAP_CODE;
1641                 else if (cmd.argument() == "listings")
1642                         code = LISTINGS_CODE;
1643                 break;
1644
1645         case LFUN_ERT_INSERT:
1646                 code = ERT_CODE;
1647                 break;
1648         case LFUN_LISTING_INSERT:
1649             code = LISTINGS_CODE;
1650                 break;
1651         case LFUN_FOOTNOTE_INSERT:
1652                 code = FOOT_CODE;
1653                 break;
1654         case LFUN_TABULAR_INSERT:
1655                 code = TABULAR_CODE;
1656                 break;
1657         case LFUN_MARGINALNOTE_INSERT:
1658                 code = MARGIN_CODE;
1659                 break;
1660         case LFUN_FLOAT_INSERT:
1661         case LFUN_FLOAT_WIDE_INSERT:
1662                 code = FLOAT_CODE;
1663                 break;
1664         case LFUN_WRAP_INSERT:
1665                 code = WRAP_CODE;
1666                 break;
1667         case LFUN_FLOAT_LIST:
1668                 code = FLOAT_LIST_CODE;
1669                 break;
1670 #if 0
1671         case LFUN_LIST_INSERT:
1672                 code = LIST_CODE;
1673                 break;
1674         case LFUN_THEOREM_INSERT:
1675                 code = THEOREM_CODE;
1676                 break;
1677 #endif
1678         case LFUN_CAPTION_INSERT:
1679                 code = CAPTION_CODE;
1680                 break;
1681         case LFUN_NOTE_INSERT:
1682                 code = NOTE_CODE;
1683                 break;
1684         case LFUN_FLEX_INSERT: {
1685                 code = FLEX_CODE;
1686                 string s = cmd.getArg(0);
1687                 InsetLayout il =  cur.buffer().params().getTextClass().insetlayout(from_utf8(s));
1688                 if (il.lyxtype != "charstyle" &&
1689                     il.lyxtype != "custom" &&
1690                     il.lyxtype != "element")
1691                         enable = false;
1692                 break;
1693                 }
1694         case LFUN_BOX_INSERT:
1695                 code = BOX_CODE;
1696                 break;
1697         case LFUN_BRANCH_INSERT:
1698                 code = BRANCH_CODE;
1699                 if (cur.buffer().getMasterBuffer()->params().branchlist().empty())
1700                         enable = false;
1701                 break;
1702         case LFUN_LABEL_INSERT:
1703                 code = LABEL_CODE;
1704                 break;
1705         case LFUN_INFO_INSERT:
1706                 code = INFO_CODE;
1707                 break;
1708         case LFUN_OPTIONAL_INSERT:
1709                 code = OPTARG_CODE;
1710                 enable = numberOfOptArgs(cur.paragraph())
1711                         < cur.paragraph().layout()->optionalargs;
1712                 break;
1713         case LFUN_ENVIRONMENT_INSERT:
1714                 code = BOX_CODE;
1715                 break;
1716         case LFUN_INDEX_INSERT:
1717                 code = INDEX_CODE;
1718                 break;
1719         case LFUN_INDEX_PRINT:
1720                 code = INDEX_PRINT_CODE;
1721                 break;
1722         case LFUN_NOMENCL_INSERT:
1723                 code = NOMENCL_CODE;
1724                 break;
1725         case LFUN_NOMENCL_PRINT:
1726                 code = NOMENCL_PRINT_CODE;
1727                 break;
1728         case LFUN_TOC_INSERT:
1729                 code = TOC_CODE;
1730                 break;
1731         case LFUN_HYPERLINK_INSERT:
1732                 code = HYPERLINK_CODE;
1733                 break;
1734         case LFUN_QUOTE_INSERT:
1735                 // always allow this, since we will inset a raw quote
1736                 // if an inset is not allowed.
1737                 break;
1738         case LFUN_HYPHENATION_POINT_INSERT:
1739         case LFUN_LIGATURE_BREAK_INSERT:
1740         case LFUN_HFILL_INSERT:
1741         case LFUN_MENU_SEPARATOR_INSERT:
1742         case LFUN_DOTS_INSERT:
1743         case LFUN_END_OF_SENTENCE_PERIOD_INSERT:
1744                 code = SPECIALCHAR_CODE;
1745                 break;
1746         case LFUN_SPACE_INSERT:
1747                 // slight hack: we know this is allowed in math mode
1748                 if (cur.inTexted())
1749                         code = SPACE_CODE;
1750                 break;
1751
1752         case LFUN_INSET_MODIFY:
1753                 // We need to disable this, because we may get called for a
1754                 // tabular cell via
1755                 // InsetTabular::getStatus() -> InsetText::getStatus()
1756                 // and we don't handle LFUN_INSET_MODIFY.
1757                 enable = false;
1758                 break;
1759
1760         case LFUN_FONT_EMPH:
1761                 flag.setOnOff(font.emph() == Font::ON);
1762                 return true;
1763
1764         case LFUN_FONT_NOUN:
1765                 flag.setOnOff(font.noun() == Font::ON);
1766                 return true;
1767
1768         case LFUN_FONT_BOLD:
1769                 flag.setOnOff(font.series() == Font::BOLD_SERIES);
1770                 return true;
1771
1772         case LFUN_FONT_SANS:
1773                 flag.setOnOff(font.family() == Font::SANS_FAMILY);
1774                 return true;
1775
1776         case LFUN_FONT_ROMAN:
1777                 flag.setOnOff(font.family() == Font::ROMAN_FAMILY);
1778                 return true;
1779
1780         case LFUN_FONT_TYPEWRITER:
1781                 flag.setOnOff(font.family() == Font::TYPEWRITER_FAMILY);
1782                 return true;
1783
1784         case LFUN_CUT:
1785         case LFUN_COPY:
1786                 enable = cur.selection();
1787                 break;
1788
1789         case LFUN_PASTE:
1790                 if (cmd.argument().empty()) {
1791                         if (theClipboard().isInternal())
1792                                 enable = cap::numberOfSelections() > 0;
1793                         else
1794                                 enable = !theClipboard().empty();
1795                 } else {
1796                         string const arg = to_utf8(cmd.argument());
1797                         if (isStrUnsignedInt(arg)) {
1798                                 unsigned int n = convert<unsigned int>(arg);
1799                                 enable = cap::numberOfSelections() > n;
1800                         } else
1801                                 // unknown argument
1802                                 enable = false;
1803                 }
1804                 break;
1805
1806         case LFUN_CLIPBOARD_PASTE:
1807                 enable = !theClipboard().empty();
1808                 break;
1809
1810         case LFUN_PRIMARY_SELECTION_PASTE:
1811                 enable = cur.selection() || !theSelection().empty();
1812                 break;
1813
1814         case LFUN_PARAGRAPH_MOVE_UP:
1815                 enable = cur.pit() > 0 && !cur.selection();
1816                 break;
1817
1818         case LFUN_PARAGRAPH_MOVE_DOWN:
1819                 enable = cur.pit() < cur.lastpit() && !cur.selection();
1820                 break;
1821
1822         case LFUN_INSET_DISSOLVE:
1823                 if (!cmd.argument().empty()) {
1824                         InsetLayout il = cur.inset().getLayout(cur.buffer().params());
1825                         enable = (cur.inset().lyxCode() == FLEX_CODE) 
1826                               && (il.lyxtype == to_utf8(cmd.argument()));
1827                 } else
1828                         enable = !isMainText(cur.bv().buffer()) 
1829                                 && cur.inset().nargs() == 1;
1830                 break;
1831
1832         case LFUN_CHANGE_ACCEPT:
1833         case LFUN_CHANGE_REJECT:
1834                 // TODO: context-sensitive enabling of LFUN_CHANGE_ACCEPT/REJECT
1835                 // In principle, these LFUNs should only be enabled if there
1836                 // is a change at the current position/in the current selection.
1837                 // However, without proper optimizations, this will inevitably
1838                 // result in unacceptable performance - just imagine a user who
1839                 // wants to select the complete content of a long document.
1840                 enable = true;
1841                 break;
1842
1843         case LFUN_WORD_DELETE_FORWARD:
1844         case LFUN_WORD_DELETE_BACKWARD:
1845         case LFUN_LINE_DELETE:
1846         case LFUN_WORD_FORWARD:
1847         case LFUN_WORD_BACKWARD:
1848         case LFUN_CHAR_FORWARD:
1849         case LFUN_CHAR_FORWARD_SELECT:
1850         case LFUN_CHAR_BACKWARD:
1851         case LFUN_CHAR_BACKWARD_SELECT:
1852         case LFUN_UP:
1853         case LFUN_UP_SELECT:
1854         case LFUN_DOWN:
1855         case LFUN_DOWN_SELECT:
1856         case LFUN_PARAGRAPH_UP_SELECT:
1857         case LFUN_PARAGRAPH_DOWN_SELECT:
1858         case LFUN_SCREEN_UP_SELECT:
1859         case LFUN_SCREEN_DOWN_SELECT:
1860         case LFUN_LINE_BEGIN_SELECT:
1861         case LFUN_LINE_END_SELECT:
1862         case LFUN_WORD_FORWARD_SELECT:
1863         case LFUN_WORD_BACKWARD_SELECT:
1864         case LFUN_WORD_SELECT:
1865         case LFUN_PARAGRAPH_UP:
1866         case LFUN_PARAGRAPH_DOWN:
1867         case LFUN_LINE_BEGIN:
1868         case LFUN_LINE_END:
1869         case LFUN_BREAK_LINE:
1870         case LFUN_CHAR_DELETE_FORWARD:
1871         case LFUN_DELETE_FORWARD_SKIP:
1872         case LFUN_CHAR_DELETE_BACKWARD:
1873         case LFUN_DELETE_BACKWARD_SKIP:
1874         case LFUN_BREAK_PARAGRAPH:
1875         case LFUN_BREAK_PARAGRAPH_SKIP:
1876         case LFUN_PARAGRAPH_SPACING:
1877         case LFUN_INSET_INSERT:
1878         case LFUN_WORD_UPCASE:
1879         case LFUN_WORD_LOWCASE:
1880         case LFUN_WORD_CAPITALIZE:
1881         case LFUN_CHARS_TRANSPOSE:
1882         case LFUN_SERVER_GET_XY:
1883         case LFUN_SERVER_SET_XY:
1884         case LFUN_SERVER_GET_FONT:
1885         case LFUN_SERVER_GET_LAYOUT:
1886         case LFUN_LAYOUT:
1887         case LFUN_DATE_INSERT:
1888         case LFUN_SELF_INSERT:
1889         case LFUN_LINE_INSERT:
1890         case LFUN_PAGEBREAK_INSERT:
1891         case LFUN_CLEARPAGE_INSERT:
1892         case LFUN_CLEARDOUBLEPAGE_INSERT:
1893         case LFUN_MATH_DISPLAY:
1894         case LFUN_MATH_IMPORT_SELECTION:
1895         case LFUN_MATH_MODE:
1896         case LFUN_MATH_MACRO:
1897         case LFUN_MATH_MATRIX:
1898         case LFUN_MATH_DELIM:
1899         case LFUN_MATH_BIGDELIM:
1900         case LFUN_MATH_INSERT:
1901         case LFUN_MATH_SUBSCRIPT:
1902         case LFUN_MATH_SUPERSCRIPT:
1903         case LFUN_FONT_DEFAULT:
1904         case LFUN_FONT_UNDERLINE:
1905         case LFUN_FONT_SIZE:
1906         case LFUN_LANGUAGE:
1907         case LFUN_FONT_FREE_APPLY:
1908         case LFUN_FONT_FREE_UPDATE:
1909         case LFUN_LAYOUT_PARAGRAPH:
1910         case LFUN_PARAGRAPH_UPDATE:
1911         case LFUN_ACCENT_UMLAUT:
1912         case LFUN_ACCENT_CIRCUMFLEX:
1913         case LFUN_ACCENT_GRAVE:
1914         case LFUN_ACCENT_ACUTE:
1915         case LFUN_ACCENT_TILDE:
1916         case LFUN_ACCENT_CEDILLA:
1917         case LFUN_ACCENT_MACRON:
1918         case LFUN_ACCENT_DOT:
1919         case LFUN_ACCENT_UNDERDOT:
1920         case LFUN_ACCENT_UNDERBAR:
1921         case LFUN_ACCENT_CARON:
1922         case LFUN_ACCENT_SPECIAL_CARON:
1923         case LFUN_ACCENT_BREVE:
1924         case LFUN_ACCENT_TIE:
1925         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
1926         case LFUN_ACCENT_CIRCLE:
1927         case LFUN_ACCENT_OGONEK:
1928         case LFUN_THESAURUS_ENTRY:
1929         case LFUN_PARAGRAPH_PARAMS_APPLY:
1930         case LFUN_PARAGRAPH_PARAMS:
1931         case LFUN_ESCAPE:
1932         case LFUN_BUFFER_END:
1933         case LFUN_BUFFER_BEGIN:
1934         case LFUN_BUFFER_BEGIN_SELECT:
1935         case LFUN_BUFFER_END_SELECT:
1936         case LFUN_UNICODE_INSERT:
1937                 // these are handled in our dispatch()
1938                 enable = true;
1939                 break;
1940
1941         default:
1942                 return false;
1943         }
1944
1945         if (code != NO_CODE
1946             && (cur.empty() || !cur.inset().insetAllowed(code)))
1947                 enable = false;
1948
1949         flag.enabled(enable);
1950         return true;
1951 }
1952
1953
1954 void Text::pasteString(Cursor & cur, docstring const & clip,
1955                 bool asParagraphs)
1956 {
1957         cur.clearSelection();
1958         if (!clip.empty()) {
1959                 recordUndo(cur);
1960                 if (asParagraphs)
1961                         insertStringAsParagraphs(cur, clip);
1962                 else
1963                         insertStringAsLines(cur, clip);
1964         }
1965 }
1966
1967 } // namespace lyx