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