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