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