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