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