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