]> git.lyx.org Git - features.git/blob - src/Text3.cpp
* get rid of support::absolutePath()
[features.git] / src / Text3.cpp
1 /**
2  * \file text3.cpp
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 "Text.h"
19
20 #include "Bidi.h"
21 #include "BranchList.h"
22 #include "FloatList.h"
23 #include "FuncStatus.h"
24 #include "Buffer.h"
25 #include "buffer_funcs.h"
26 #include "BufferParams.h"
27 #include "BufferView.h"
28 #include "Cursor.h"
29 #include "CutAndPaste.h"
30 #include "support/debug.h"
31 #include "DispatchResult.h"
32 #include "ErrorList.h"
33 #include "factory.h"
34 #include "FuncRequest.h"
35 #include "support/gettext.h"
36 #include "InsetList.h"
37 #include "Intl.h"
38 #include "Language.h"
39 #include "Layout.h"
40 #include "LyXAction.h"
41 #include "LyXFunc.h"
42 #include "Lexer.h"
43 #include "LyXRC.h"
44 #include "Paragraph.h"
45 #include "paragraph_funcs.h"
46 #include "ParagraphParameters.h"
47 #include "ParIterator.h"
48 #include "TextClass.h"
49 #include "TextMetrics.h"
50 #include "VSpace.h"
51
52 #include "frontends/Clipboard.h"
53 #include "frontends/Selection.h"
54
55 #include "insets/InsetCollapsable.h"
56 #include "insets/InsetCommand.h"
57 #include "insets/InsetFloatList.h"
58 #include "insets/InsetNewline.h"
59 #include "insets/InsetQuotes.h"
60 #include "insets/InsetSpecialChar.h"
61 #include "insets/InsetText.h"
62 #include "insets/InsetInfo.h"
63
64 #include "support/lstrings.h"
65 #include "support/convert.h"
66 #include "support/lyxtime.h"
67
68 #include "mathed/InsetMathHull.h"
69 #include "mathed/MathMacroTemplate.h"
70
71 #include <boost/next_prior.hpp>
72
73 #include <clocale>
74 #include <sstream>
75
76 using namespace std;
77 using namespace lyx::support;
78
79 namespace lyx {
80
81 using cap::copySelection;
82 using cap::cutSelection;
83 using cap::pasteFromStack;
84 using cap::pasteClipboard;
85 using cap::replaceSelection;
86
87 // globals...
88 static Font freefont(ignore_font, ignore_language);
89 static bool toggleall = false;
90
91 static void toggleAndShow(Cursor & cur, Text * text,
92         Font const & font, bool toggleall = true)
93 {
94         text->toggleFree(cur, font, toggleall);
95
96         if (font.language() != ignore_language ||
97             font.fontInfo().number() != FONT_IGNORE) {
98                 TextMetrics const & tm = cur.bv().textMetrics(text);
99                 if (cur.boundary() != tm.isRTLBoundary(cur.pit(), cur.pos(),
100                                                        cur.real_current_font))
101                         text->setCursor(cur, cur.pit(), cur.pos(),
102                                         false, !cur.boundary());
103         }
104 }
105
106
107 static void moveCursor(Cursor & cur, bool selecting)
108 {
109         if (selecting || cur.mark())
110                 cur.setSelection();
111 }
112
113
114 static void finishChange(Cursor & cur, bool selecting)
115 {
116         cur.finishUndo();
117         moveCursor(cur, selecting);
118 }
119
120
121 static void mathDispatch(Cursor & cur, FuncRequest const & cmd, bool display)
122 {
123         cur.recordUndo();
124         docstring sel = cur.selectionAsString(false);
125
126         // It may happen that sel is empty but there is a selection
127         replaceSelection(cur);
128
129         if (sel.empty()) {
130 #ifdef ENABLE_ASSERTIONS
131                 const int old_pos = cur.pos();
132 #endif
133                 cur.insert(new InsetMathHull(hullSimple));
134                 BOOST_ASSERT(old_pos == cur.pos());
135                 cur.nextInset()->edit(cur, true);
136                 // don't do that also for LFUN_MATH_MODE
137                 // unless you want end up with always changing
138                 // to mathrm when opening an inlined inset --
139                 // I really hate "LyXfunc overloading"...
140                 if (display)
141                         cur.dispatch(FuncRequest(LFUN_MATH_DISPLAY));
142                 // Avoid an unnecessary undo step if cmd.argument
143                 // is empty
144                 if (!cmd.argument().empty())
145                         cur.dispatch(FuncRequest(LFUN_MATH_INSERT,
146                                                  cmd.argument()));
147         } else {
148                 // create a macro if we see "\\newcommand"
149                 // somewhere, and an ordinary formula
150                 // otherwise
151                 if (sel.find(from_ascii("\\newcommand")) == string::npos
152                                 && sel.find(from_ascii("\\def")) == string::npos)
153                 {
154                         InsetMathHull * formula = new InsetMathHull;
155                         istringstream is(to_utf8(sel));
156                         Lexer lex(0, 0);
157                         lex.setStream(is);
158                         formula->read(cur.buffer(), lex);
159                         if (formula->getType() == hullNone)
160                                 // Don't create pseudo formulas if
161                                 // delimiters are left out
162                                 formula->mutate(hullSimple);
163                         cur.insert(formula);
164                 } else {
165                         cur.insert(new MathMacroTemplate(sel));
166                 }
167         }
168         cur.message(from_utf8(N_("Math editor mode")));
169 }
170
171
172 static void specialChar(Cursor & cur, InsetSpecialChar::Kind kind)
173 {
174         cur.recordUndo();
175         cap::replaceSelection(cur);
176         cur.insert(new InsetSpecialChar(kind));
177         cur.posForward();
178 }
179
180
181 static bool doInsertInset(Cursor & cur, Text * text,
182         FuncRequest const & cmd, bool edit, bool pastesel)
183 {
184         Inset * inset = createInset(cur.bv().buffer(), cmd);
185         if (!inset)
186                 return false;
187
188         if (InsetCollapsable * ci = inset->asInsetCollapsable())
189                 ci->setLayout(cur.bv().buffer().params());
190
191         cur.recordUndo();
192         if (cmd.action == LFUN_INDEX_INSERT) {
193                 docstring ds = subst(text->getStringToIndex(cur), '\n', ' ');
194                 text->insertInset(cur, inset);
195                 if (edit)
196                         inset->edit(cur, true);
197                 // Now put this into inset
198                 static_cast<InsetCollapsable *>(inset)->text_.insertStringAsParagraphs(cur, ds);
199         } else {
200                 bool gotsel = false;
201                 if (cur.selection()) {
202                         lyx::dispatch(FuncRequest(LFUN_CUT));
203                         gotsel = true;
204                 }
205                 text->insertInset(cur, inset);
206
207                 if (edit)
208                         inset->edit(cur, true);
209
210                 if (gotsel && pastesel) {
211                         lyx::dispatch(FuncRequest(LFUN_PASTE, "0"));
212                         InsetText * insetText = dynamic_cast<InsetText *>(inset);
213                         if (insetText && !insetText->allowMultiPar() 
214                             || cur.lastpit() == 0) {
215                                 // reset first par to default
216                                 LayoutPtr const layout =
217                                         cur.buffer().params().getTextClass().defaultLayout();
218                                 cur.text()->paragraphs().begin()->layout(layout);
219                                 cur.pos() = 0;
220                                 cur.pit() = 0;
221                                 // Merge multiple paragraphs -- hack
222                                 while (cur.lastpit() > 0) {
223                                         mergeParagraph(cur.buffer().params(),
224                                                 cur.text()->paragraphs(), 0);
225                                 }
226                         } else {
227                                 // reset surrounding par to default
228                                 docstring const layoutname = 
229                                         cur.buffer().params().getTextClass().defaultLayoutName();
230                                 cur.leaveInset(*inset);
231                                 text->setLayout(cur, layoutname);
232                         }
233                 }
234         }
235         return true;
236 }
237
238
239 string const freefont2string()
240 {
241         return freefont.toString(toggleall);
242 }
243
244
245 /// the type of outline operation
246 enum OutlineOp {
247         OutlineUp, // Move this header with text down
248         OutlineDown,   // Move this header with text up
249         OutlineIn, // Make this header deeper
250         OutlineOut // Make this header shallower
251 };
252
253
254 static void outline(OutlineOp mode, Cursor & cur)
255 {
256         Buffer & buf = cur.buffer();
257         pit_type & pit = cur.pit();
258         ParagraphList & pars = buf.text().paragraphs();
259         ParagraphList::iterator bgn = pars.begin();
260         // The first paragraph of the area to be copied:
261         ParagraphList::iterator start = boost::next(bgn, pit);
262         // The final paragraph of area to be copied:
263         ParagraphList::iterator finish = start;
264         ParagraphList::iterator end = pars.end();
265
266         TextClass::const_iterator lit =
267                 buf.params().getTextClass().begin();
268         TextClass::const_iterator const lend =
269                 buf.params().getTextClass().end();
270
271         int const thistoclevel = start->layout()->toclevel;
272         int toclevel;
273         switch (mode) {
274                 case OutlineUp: {
275                         // Move out (down) from this section header
276                         if (finish != end)
277                                 ++finish;
278                         // Seek the one (on same level) below
279                         for (; finish != end; ++finish) {
280                                 toclevel = finish->layout()->toclevel;
281                                 if (toclevel != Layout::NOT_IN_TOC
282                                     && toclevel <= thistoclevel) {
283                                         break;
284                                 }
285                         }
286                         ParagraphList::iterator dest = start;
287                         // Move out (up) from this header
288                         if (dest == bgn)
289                                 break;
290                         // Search previous same-level header above
291                         do {
292                                 --dest;
293                                 toclevel = dest->layout()->toclevel;
294                         } while(dest != bgn
295                                 && (toclevel == Layout::NOT_IN_TOC
296                                     || toclevel > thistoclevel));
297                         // Not found; do nothing
298                         if (toclevel == Layout::NOT_IN_TOC || toclevel > thistoclevel)
299                                 break;
300                         pit_type const newpit = distance(bgn, dest);
301                         pit_type const len = distance(start, finish);
302                         pit_type const deletepit = pit + len;
303                         buf.undo().recordUndo(cur, ATOMIC_UNDO, newpit, deletepit - 1);
304                         pars.insert(dest, start, finish);
305                         start = boost::next(pars.begin(), deletepit);
306                         pit = newpit;
307                         pars.erase(start, finish);
308                         break;
309                 }
310                 case OutlineDown: {
311                         // Go down out of current header:
312                         if (finish != end)
313                                 ++finish;
314                         // Find next same-level header:
315                         for (; finish != end; ++finish) {
316                                 toclevel = finish->layout()->toclevel;
317                                 if (toclevel != Layout::NOT_IN_TOC && toclevel <= thistoclevel)
318                                         break;
319                         }
320                         ParagraphList::iterator dest = finish;
321                         // Go one down from *this* header:
322                         if (dest != end)
323                                 ++dest;
324                         else
325                                 break;
326                         // Go further down to find header to insert in front of:
327                         for (; dest != end; ++dest) {
328                                 toclevel = dest->layout()->toclevel;
329                                 if (toclevel != Layout::NOT_IN_TOC && toclevel <= thistoclevel)
330                                         break;
331                         }
332                         // One such was found:
333                         pit_type newpit = distance(bgn, dest);
334                         pit_type const len = distance(start, finish);
335                         buf.undo().recordUndo(cur, ATOMIC_UNDO, pit, newpit - 1);
336                         pars.insert(dest, start, finish);
337                         start = boost::next(bgn, pit);
338                         pit = newpit - len;
339                         pars.erase(start, finish);
340                         break;
341                 }
342                 case OutlineIn:
343                         buf.undo().recordUndo(cur);
344                         for (; lit != lend; ++lit) {
345                                 if ((*lit)->toclevel == thistoclevel + 1 &&
346                                     start->layout()->labeltype == (*lit)->labeltype) {
347                                         start->layout((*lit));
348                                         break;
349                                 }
350                         }
351                         break;
352                 case OutlineOut:
353                         buf.undo().recordUndo(cur);
354                         for (; lit != lend; ++lit) {
355                                 if ((*lit)->toclevel == thistoclevel - 1 &&
356                                     start->layout()->labeltype == (*lit)->labeltype) {
357                                         start->layout((*lit));
358                                         break;
359                                 }
360                         }
361                         break;
362                 default:
363                         break;
364         }
365 }
366
367
368 void Text::number(Cursor & cur)
369 {
370         FontInfo font = ignore_font;
371         font.setNumber(FONT_TOGGLE);
372         toggleAndShow(cur, this, Font(font));
373 }
374
375
376 bool Text::isRTL(Buffer const & buffer, Paragraph const & par) const
377 {
378         return par.isRTL(buffer.params());
379 }
380
381
382 void Text::dispatch(Cursor & cur, FuncRequest & cmd)
383 {
384         LYXERR(Debug::ACTION, "Text::dispatch: cmd: " << cmd);
385
386         // FIXME: We use the update flag to indicates wether a singlePar or a
387         // full screen update is needed. We reset it here but shall we restore it
388         // at the end?
389         cur.noUpdate();
390
391         BOOST_ASSERT(cur.text() == this);
392         BufferView * bv = &cur.bv();
393         TextMetrics & tm = cur.bv().textMetrics(this);
394         CursorSlice oldTopSlice = cur.top();
395         bool oldBoundary = cur.boundary();
396         bool sel = cur.selection();
397         // Signals that, even if needsUpdate == false, an update of the
398         // cursor paragraph is required
399         bool singleParUpdate = lyxaction.funcHasFlag(cmd.action,
400                 LyXAction::SingleParUpdate);
401         // Signals that a full-screen update is required
402         bool needsUpdate = !(lyxaction.funcHasFlag(cmd.action,
403                 LyXAction::NoUpdate) || singleParUpdate);
404         // Remember the old paragraph metric (_outer_ paragraph!)
405         ParagraphMetrics const & pm = cur.bv().parMetrics(
406                 cur.bottom().text(), cur.bottom().pit());
407         Dimension olddim = pm.dim();
408
409         switch (cmd.action) {
410
411         case LFUN_PARAGRAPH_MOVE_DOWN: {
412                 pit_type const pit = cur.pit();
413                 recUndo(cur, pit, pit + 1);
414                 cur.finishUndo();
415                 swap(pars_[pit], pars_[pit + 1]);
416                 updateLabels(cur.buffer());
417                 needsUpdate = true;
418                 ++cur.pit();
419                 break;
420         }
421
422         case LFUN_PARAGRAPH_MOVE_UP: {
423                 pit_type const pit = cur.pit();
424                 recUndo(cur, pit - 1, pit);
425                 cur.finishUndo();
426                 swap(pars_[pit], pars_[pit - 1]);
427                 updateLabels(cur.buffer());
428                 --cur.pit();
429                 needsUpdate = true;
430                 break;
431         }
432
433         case LFUN_APPENDIX: {
434                 Paragraph & par = cur.paragraph();
435                 bool start = !par.params().startOfAppendix();
436
437 // FIXME: The code below only makes sense at top level.
438 // Should LFUN_APPENDIX be restricted to top-level paragraphs?
439                 // ensure that we have only one start_of_appendix in this document
440                 // FIXME: this don't work for multipart document!
441                 for (pit_type tmp = 0, end = pars_.size(); tmp != end; ++tmp) {
442                         if (pars_[tmp].params().startOfAppendix()) {
443                                 recUndo(cur, tmp);
444                                 pars_[tmp].params().startOfAppendix(false);
445                                 break;
446                         }
447                 }
448
449                 cur.recordUndo();
450                 par.params().startOfAppendix(start);
451
452                 // we can set the refreshing parameters now
453                 updateLabels(cur.buffer());
454                 break;
455         }
456
457         case LFUN_WORD_DELETE_FORWARD:
458                 if (cur.selection()) {
459                         cutSelection(cur, true, false);
460                 } else
461                         deleteWordForward(cur);
462                 finishChange(cur, false);
463                 break;
464
465         case LFUN_WORD_DELETE_BACKWARD:
466                 if (cur.selection()) {
467                         cutSelection(cur, true, false);
468                 } else
469                         deleteWordBackward(cur);
470                 finishChange(cur, false);
471                 break;
472
473         case LFUN_LINE_DELETE:
474                 if (cur.selection()) {
475                         cutSelection(cur, true, false);
476                 } else
477                         tm.deleteLineForward(cur);
478                 finishChange(cur, false);
479                 break;
480
481         case LFUN_BUFFER_BEGIN:
482         case LFUN_BUFFER_BEGIN_SELECT:
483                 needsUpdate |= cur.selHandle(cmd.action == LFUN_BUFFER_BEGIN_SELECT);
484                 if (cur.depth() == 1) {
485                         needsUpdate |= cursorTop(cur);
486                 } else {
487                         cur.undispatched();
488                 }
489                 break;
490
491         case LFUN_BUFFER_END:
492         case LFUN_BUFFER_END_SELECT:
493                 needsUpdate |= cur.selHandle(cmd.action == LFUN_BUFFER_END_SELECT);
494                 if (cur.depth() == 1) {
495                         needsUpdate |= cursorBottom(cur);
496                 } else {
497                         cur.undispatched();
498                 }
499                 break;
500
501         case LFUN_CHAR_FORWARD:
502         case LFUN_CHAR_FORWARD_SELECT:
503                 //LYXERR0(" LFUN_CHAR_FORWARD[SEL]:\n" << cur);
504                 needsUpdate |= cur.selHandle(cmd.action == LFUN_CHAR_FORWARD_SELECT);
505                 needsUpdate |= cursorForward(cur);
506
507                 if (!needsUpdate && oldTopSlice == cur.top()
508                                 && cur.boundary() == oldBoundary) {
509                         cur.undispatched();
510                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
511                 }
512                 break;
513
514         case LFUN_CHAR_BACKWARD:
515         case LFUN_CHAR_BACKWARD_SELECT:
516                 //lyxerr << "handle LFUN_CHAR_BACKWARD[_SELECT]:\n" << cur << endl;
517                 needsUpdate |= cur.selHandle(cmd.action == LFUN_CHAR_BACKWARD_SELECT);
518                 needsUpdate |= cursorBackward(cur);
519
520                 if (!needsUpdate && oldTopSlice == cur.top()
521                         && cur.boundary() == oldBoundary) {
522                         cur.undispatched();
523                         cmd = FuncRequest(LFUN_FINISHED_BACKWARD);
524                 }
525                 break;
526
527         case LFUN_CHAR_LEFT:
528         case LFUN_CHAR_LEFT_SELECT:
529                 //FIXME: for visual cursor, really move left
530                 if (reverseDirectionNeeded(cur)) {
531                         cmd.action = cmd.action == LFUN_CHAR_LEFT_SELECT ? 
532                                         LFUN_CHAR_FORWARD_SELECT : LFUN_CHAR_FORWARD;
533                 } else {
534                         cmd.action = cmd.action == LFUN_CHAR_LEFT_SELECT ? 
535                                         LFUN_CHAR_BACKWARD_SELECT : LFUN_CHAR_BACKWARD;
536                 }
537                 dispatch(cur, cmd);
538                 return;
539
540         case LFUN_CHAR_RIGHT:
541         case LFUN_CHAR_RIGHT_SELECT:
542                 //FIXME: for visual cursor, really move right
543                 if (reverseDirectionNeeded(cur)) {
544                         cmd.action = cmd.action == LFUN_CHAR_RIGHT_SELECT ? 
545                                         LFUN_CHAR_BACKWARD_SELECT : LFUN_CHAR_BACKWARD;
546                 } else {
547                         cmd.action = cmd.action == LFUN_CHAR_RIGHT_SELECT ? 
548                                         LFUN_CHAR_FORWARD_SELECT : LFUN_CHAR_FORWARD;
549                 }
550                 dispatch(cur, cmd);
551                 return;
552
553         case LFUN_UP_SELECT:
554         case LFUN_DOWN_SELECT:
555         case LFUN_UP:
556         case LFUN_DOWN: {
557                 // stop/start the selection
558                 bool select = cmd.action == LFUN_DOWN_SELECT ||
559                         cmd.action == LFUN_UP_SELECT;
560                 cur.selHandle(select);
561                 
562                 // move cursor up/down
563                 bool up = cmd.action == LFUN_UP_SELECT || cmd.action == LFUN_UP;
564                 bool const successful = cur.upDownInText(up, needsUpdate);
565                 if (successful) {
566                         // notify insets which were left and get their update flags 
567                         notifyCursorLeaves(cur.beforeDispatchCursor(), cur);
568                         cur.fixIfBroken();
569                         
570                         // redraw if you leave mathed (for the decorations)
571                         needsUpdate |= cur.beforeDispatchCursor().inMathed();
572                 } else
573                         cur.undispatched();
574                 
575                 break;
576         }
577
578         case LFUN_PARAGRAPH_UP:
579         case LFUN_PARAGRAPH_UP_SELECT:
580                 needsUpdate |= cur.selHandle(cmd.action == LFUN_PARAGRAPH_UP_SELECT);
581                 needsUpdate |= cursorUpParagraph(cur);
582                 break;
583
584         case LFUN_PARAGRAPH_DOWN:
585         case LFUN_PARAGRAPH_DOWN_SELECT:
586                 needsUpdate |= cur.selHandle(cmd.action == LFUN_PARAGRAPH_DOWN_SELECT);
587                 needsUpdate |= cursorDownParagraph(cur);
588                 break;
589
590         case LFUN_SCREEN_UP_SELECT:
591                 needsUpdate |= cur.selHandle(true);
592                 if (cur.pit() == 0 && cur.textRow().pos() == 0)
593                         cur.undispatched();
594                 else {
595                         tm.cursorPrevious(cur);
596                 }
597                 break;
598
599         case LFUN_SCREEN_DOWN_SELECT:
600                 needsUpdate |= cur.selHandle(true);
601                 if (cur.pit() == cur.lastpit()
602                           && cur.textRow().endpos() == cur.lastpos())
603                         cur.undispatched();
604                 else {
605                         tm.cursorNext(cur);
606                 }
607                 break;
608
609         case LFUN_LINE_BEGIN:
610         case LFUN_LINE_BEGIN_SELECT:
611                 needsUpdate |= cur.selHandle(cmd.action == LFUN_LINE_BEGIN_SELECT);
612                 needsUpdate |= tm.cursorHome(cur);
613                 break;
614
615         case LFUN_LINE_END:
616         case LFUN_LINE_END_SELECT:
617                 needsUpdate |= cur.selHandle(cmd.action == LFUN_LINE_END_SELECT);
618                 needsUpdate |= tm.cursorEnd(cur);
619                 break;
620
621         case LFUN_WORD_RIGHT:
622         case LFUN_WORD_RIGHT_SELECT:
623                 //FIXME: for visual cursor mode, really move right
624                 if (reverseDirectionNeeded(cur)) {
625                         cmd.action = cmd.action == LFUN_WORD_RIGHT_SELECT ?
626                                         LFUN_WORD_BACKWARD_SELECT : LFUN_WORD_BACKWARD;
627                 } else {
628                         cmd.action = cmd.action == LFUN_WORD_RIGHT_SELECT ?
629                                         LFUN_WORD_FORWARD_SELECT : LFUN_WORD_FORWARD;
630                 }
631                 dispatch(cur, cmd);
632                 return;
633
634         case LFUN_WORD_FORWARD:
635         case LFUN_WORD_FORWARD_SELECT:
636                 needsUpdate |= cur.selHandle(cmd.action == LFUN_WORD_FORWARD_SELECT);
637                 needsUpdate |= cursorForwardOneWord(cur);
638                 break;
639
640         case LFUN_WORD_LEFT:
641         case LFUN_WORD_LEFT_SELECT:
642                 //FIXME: for visual cursor mode, really move left
643                 if (reverseDirectionNeeded(cur)) {
644                         cmd.action = cmd.action == LFUN_WORD_LEFT_SELECT ?
645                                         LFUN_WORD_FORWARD_SELECT : LFUN_WORD_FORWARD;
646                 } else {
647                         cmd.action = cmd.action == LFUN_WORD_LEFT_SELECT ?
648                                         LFUN_WORD_BACKWARD_SELECT : LFUN_WORD_BACKWARD;
649                 }
650                 dispatch(cur, cmd);
651                 return;
652
653         case LFUN_WORD_BACKWARD:
654         case LFUN_WORD_BACKWARD_SELECT:
655                 needsUpdate |= cur.selHandle(cmd.action == LFUN_WORD_BACKWARD_SELECT);
656                 needsUpdate |= cursorBackwardOneWord(cur);
657                 break;
658
659         case LFUN_WORD_SELECT: {
660                 selectWord(cur, WHOLE_WORD);
661                 finishChange(cur, true);
662                 break;
663         }
664
665         case LFUN_NEW_LINE: {
666                 // Not allowed by LaTeX (labels or empty par)
667                 if (cur.pos() > cur.paragraph().beginOfBody()) {
668                         // this avoids a double undo
669                         // FIXME: should not be needed, ideally
670                         if (!cur.selection())
671                                 cur.recordUndo();
672                         cap::replaceSelection(cur);
673                         cur.insert(new InsetNewline);
674                         cur.posForward();
675                         moveCursor(cur, false);
676                 }
677                 break;
678         }
679         
680         case LFUN_LINE_BREAK: {
681                 // Not allowed by LaTeX (labels or empty par)
682                 if (cur.pos() > cur.paragraph().beginOfBody()) {
683                         // this avoids a double undo
684                         // FIXME: should not be needed, ideally
685                         if (!cur.selection())
686                                 cur.recordUndo();
687                         cap::replaceSelection(cur);
688                         cur.insert(new InsetLinebreak);
689                         cur.posForward();
690                         moveCursor(cur, false);
691                 }
692                 break;
693         }
694
695         case LFUN_CHAR_DELETE_FORWARD:
696                 if (!cur.selection()) {
697                         if (cur.pos() == cur.paragraph().size())
698                                 // Par boundary, force full-screen update
699                                 singleParUpdate = false;
700                         needsUpdate |= erase(cur);
701                         cur.resetAnchor();
702                         // It is possible to make it a lot faster still
703                         // just comment out the line below...
704                 } else {
705                         cutSelection(cur, true, false);
706                         singleParUpdate = false;
707                 }
708                 moveCursor(cur, false);
709                 break;
710
711         case LFUN_DELETE_FORWARD_SKIP:
712                 // Reverse the effect of LFUN_BREAK_PARAGRAPH_SKIP.
713                 if (!cur.selection()) {
714                         if (cur.pos() == cur.lastpos()) {
715                                 cursorForward(cur);
716                                 cursorBackward(cur);
717                         }
718                         erase(cur);
719                         cur.resetAnchor();
720                 } else {
721                         cutSelection(cur, true, false);
722                 }
723                 break;
724
725
726         case LFUN_CHAR_DELETE_BACKWARD:
727                 if (!cur.selection()) {
728                         if (bv->getIntl().getTransManager().backspace()) {
729                                 // Par boundary, full-screen update
730                                 if (cur.pos() == 0)
731                                         singleParUpdate = false;
732                                 needsUpdate |= backspace(cur);
733                                 cur.resetAnchor();
734                                 // It is possible to make it a lot faster still
735                                 // just comment out the line below...
736                         }
737                 } else {
738                         cutSelection(cur, true, false);
739                         singleParUpdate = false;
740                 }
741                 break;
742
743         case LFUN_DELETE_BACKWARD_SKIP:
744                 // Reverse the effect of LFUN_BREAK_PARAGRAPH_SKIP.
745                 if (!cur.selection()) {
746                         // FIXME: look here
747                         //CursorSlice cur = cursor();
748                         backspace(cur);
749                         //anchor() = cur;
750                 } else {
751                         cutSelection(cur, true, false);
752                 }
753                 break;
754
755         case LFUN_BREAK_PARAGRAPH:
756                 cap::replaceSelection(cur);
757                 breakParagraph(cur, cmd.argument() == "inverse");
758                 cur.resetAnchor();
759                 break;
760
761         case LFUN_BREAK_PARAGRAPH_SKIP: {
762                 // When at the beginning of a paragraph, remove
763                 // indentation.  Otherwise, do the same as LFUN_BREAK_PARAGRAPH.
764                 cap::replaceSelection(cur);
765                 if (cur.pos() == 0)
766                         cur.paragraph().params().labelWidthString(docstring());
767                 else
768                         breakParagraph(cur, false);
769                 cur.resetAnchor();
770                 break;
771         }
772
773         // TODO
774         // With the creation of LFUN_PARAGRAPH_PARAMS, this is now redundant,
775         // as its duties can be performed there. Should it be removed??
776         // FIXME For now, it can just dispatch LFUN_PARAGRAPH_PARAMS...
777         case LFUN_PARAGRAPH_SPACING: {
778                 Paragraph & par = cur.paragraph();
779                 Spacing::Space cur_spacing = par.params().spacing().getSpace();
780                 string cur_value = "1.0";
781                 if (cur_spacing == Spacing::Other)
782                         cur_value = par.params().spacing().getValueAsString();
783
784                 istringstream is(to_utf8(cmd.argument()));
785                 string tmp;
786                 is >> tmp;
787                 Spacing::Space new_spacing = cur_spacing;
788                 string new_value = cur_value;
789                 if (tmp.empty()) {
790                         lyxerr << "Missing argument to `paragraph-spacing'"
791                                << endl;
792                 } else if (tmp == "single") {
793                         new_spacing = Spacing::Single;
794                 } else if (tmp == "onehalf") {
795                         new_spacing = Spacing::Onehalf;
796                 } else if (tmp == "double") {
797                         new_spacing = Spacing::Double;
798                 } else if (tmp == "other") {
799                         new_spacing = Spacing::Other;
800                         string tmpval = "0.0";
801                         is >> tmpval;
802                         lyxerr << "new_value = " << tmpval << endl;
803                         if (tmpval != "0.0")
804                                 new_value = tmpval;
805                 } else if (tmp == "default") {
806                         new_spacing = Spacing::Default;
807                 } else {
808                         lyxerr << to_utf8(_("Unknown spacing argument: "))
809                                << to_utf8(cmd.argument()) << endl;
810                 }
811                 if (cur_spacing != new_spacing || cur_value != new_value)
812                         par.params().spacing(Spacing(new_spacing, new_value));
813                 break;
814         }
815
816         case LFUN_INSET_INSERT: {
817                 cur.recordUndo();
818                 Inset * inset = createInset(bv->buffer(), cmd);
819                 if (inset) {
820                         // FIXME (Abdel 01/02/2006):
821                         // What follows would be a partial fix for bug 2154:
822                         //   http://bugzilla.lyx.org/show_bug.cgi?id=2154
823                         // This automatically put the label inset _after_ a
824                         // numbered section. It should be possible to extend the mechanism
825                         // to any kind of LateX environement.
826                         // The correct way to fix that bug would be at LateX generation.
827                         // I'll let the code here for reference as it could be used for some
828                         // other feature like "automatic labelling".
829                         /*
830                         Paragraph & par = pars_[cur.pit()];
831                         if (inset->lyxCode() == LABEL_CODE
832                                 && par.layout()->labeltype == LABEL_COUNTER) {
833                                 // Go to the end of the paragraph
834                                 // Warning: Because of Change-Tracking, the last
835                                 // position is 'size()' and not 'size()-1':
836                                 cur.pos() = par.size();
837                                 // Insert a new paragraph
838                                 FuncRequest fr(LFUN_BREAK_PARAGRAPH);
839                                 dispatch(cur, fr);
840                         }
841                         */
842                         if (cur.selection())
843                                 cutSelection(cur, true, false);
844                         insertInset(cur, inset);
845                         cur.posForward();
846                 }
847                 break;
848         }
849
850         case LFUN_INSET_DISSOLVE:
851                 needsUpdate |= dissolveInset(cur);
852                 break;
853
854         case LFUN_INSET_SETTINGS:
855                 cur.inset().showInsetDialog(bv);
856                 break;
857
858         case LFUN_SPACE_INSERT:
859                 if (cur.paragraph().layout()->free_spacing)
860                         insertChar(cur, ' ');
861                 else {
862                         doInsertInset(cur, this, cmd, false, false);
863                         cur.posForward();
864                 }
865                 moveCursor(cur, false);
866                 break;
867
868         case LFUN_SPECIALCHAR_INSERT: {
869                 string const name = to_utf8(cmd.argument());
870                 if (name == "hyphenation")
871                         specialChar(cur, InsetSpecialChar::HYPHENATION);
872                 else if (name == "ligature-break")
873                         specialChar(cur, InsetSpecialChar::LIGATURE_BREAK);
874                 else if (name == "slash")
875                         specialChar(cur, InsetSpecialChar::SLASH);
876                 else if (name == "nobreakdash")
877                         specialChar(cur, InsetSpecialChar::NOBREAKDASH);
878                 else if (name == "dots")
879                         specialChar(cur, InsetSpecialChar::LDOTS);
880                 else if (name == "end-of-sentence")
881                         specialChar(cur, InsetSpecialChar::END_OF_SENTENCE);
882                 else if (name == "menu-separator")
883                         specialChar(cur, InsetSpecialChar::MENU_SEPARATOR);
884                 else if (name.empty())
885                         lyxerr << "LyX function 'specialchar-insert' needs an argument." << endl;
886                 else
887                         lyxerr << "Wrong argument for LyX function 'specialchar-insert'." << endl;
888                 break;
889         }
890
891         case LFUN_WORD_UPCASE:
892                 changeCase(cur, text_uppercase);
893                 break;
894
895         case LFUN_WORD_LOWCASE:
896                 changeCase(cur, text_lowercase);
897                 break;
898
899         case LFUN_WORD_CAPITALIZE:
900                 changeCase(cur, text_capitalization);
901                 break;
902
903         case LFUN_CHARS_TRANSPOSE:
904                 charsTranspose(cur);
905                 break;
906
907         case LFUN_PASTE:
908                 cur.message(_("Paste"));
909                 cap::replaceSelection(cur);
910                 if (cmd.argument().empty() && !theClipboard().isInternal())
911                         pasteClipboard(cur, bv->buffer().errorList("Paste"));
912                 else {
913                         string const arg(to_utf8(cmd.argument()));
914                         pasteFromStack(cur, bv->buffer().errorList("Paste"),
915                                         isStrUnsignedInt(arg) ?
916                                                 convert<unsigned int>(arg) :
917                                                 0);
918                 }
919                 bv->buffer().errors("Paste");
920                 cur.clearSelection(); // bug 393
921                 cur.finishUndo();
922                 break;
923
924         case LFUN_CUT:
925                 cutSelection(cur, true, true);
926                 cur.message(_("Cut"));
927                 break;
928
929         case LFUN_COPY:
930                 copySelection(cur);
931                 cur.message(_("Copy"));
932                 break;
933
934         case LFUN_SERVER_GET_XY:
935                 cur.message(from_utf8(
936                         convert<string>(tm.cursorX(cur.top(), cur.boundary()))
937                         + ' ' + convert<string>(tm.cursorY(cur.top(), cur.boundary()))));
938                 break;
939
940         case LFUN_SERVER_SET_XY: {
941                 int x = 0;
942                 int y = 0;
943                 istringstream is(to_utf8(cmd.argument()));
944                 is >> x >> y;
945                 if (!is)
946                         lyxerr << "SETXY: Could not parse coordinates in '"
947                                << to_utf8(cmd.argument()) << endl;
948                 else
949                         tm.setCursorFromCoordinates(cur, x, y);
950                 break;
951         }
952
953         case LFUN_SERVER_GET_FONT:
954                 if (cur.current_font.fontInfo().shape() == ITALIC_SHAPE)
955                         cur.message(from_ascii("E"));
956                 else if (cur.current_font.fontInfo().shape() == SMALLCAPS_SHAPE)
957                         cur.message(from_ascii("N"));
958                 else
959                         cur.message(from_ascii("0"));
960                 break;
961
962         case LFUN_SERVER_GET_LAYOUT:
963                 cur.message(cur.paragraph().layout()->name());
964                 break;
965
966         case LFUN_LAYOUT: {
967                 docstring layout = cmd.argument();
968                 LYXERR(Debug::INFO, "LFUN_LAYOUT: (arg) " << to_utf8(layout));
969
970                 docstring const old_layout = cur.paragraph().layout()->name();
971
972                 // Derive layout number from given argument (string)
973                 // and current buffer's textclass (number)
974                 TextClass const & tclass = bv->buffer().params().getTextClass();
975                 if (layout.empty())
976                         layout = tclass.defaultLayoutName();
977                 bool hasLayout = tclass.hasLayout(layout);
978
979                 // If the entry is obsolete, use the new one instead.
980                 if (hasLayout) {
981                         docstring const & obs = tclass[layout]->obsoleted_by();
982                         if (!obs.empty())
983                                 layout = obs;
984                 }
985
986                 if (!hasLayout) {
987                         cur.errorMessage(from_utf8(N_("Layout ")) + cmd.argument() +
988                                 from_utf8(N_(" not known")));
989                         break;
990                 }
991
992                 bool change_layout = (old_layout != layout);
993
994                 if (!change_layout && cur.selection() &&
995                         cur.selBegin().pit() != cur.selEnd().pit())
996                 {
997                         pit_type spit = cur.selBegin().pit();
998                         pit_type epit = cur.selEnd().pit() + 1;
999                         while (spit != epit) {
1000                                 if (pars_[spit].layout()->name() != old_layout) {
1001                                         change_layout = true;
1002                                         break;
1003                                 }
1004                                 ++spit;
1005                         }
1006                 }
1007
1008                 if (change_layout)
1009                         setLayout(cur, layout);
1010
1011                 break;
1012         }
1013
1014         case LFUN_CLIPBOARD_PASTE:
1015                 cur.clearSelection();
1016                 pasteClipboard(cur, bv->buffer().errorList("Paste"),
1017                                cmd.argument() == "paragraph");
1018                 bv->buffer().errors("Paste");
1019                 break;
1020
1021         case LFUN_PRIMARY_SELECTION_PASTE:
1022                 pasteString(cur, theSelection().get(),
1023                             cmd.argument() == "paragraph");
1024                 break;
1025
1026         case LFUN_UNICODE_INSERT: {
1027                 if (cmd.argument().empty())
1028                         break;
1029                 docstring hexstring = cmd.argument();
1030                 if (isHex(hexstring)) {
1031                         char_type c = hexToInt(hexstring);
1032                         if (c >= 32 && c < 0x10ffff) {
1033                                 lyxerr << "Inserting c: " << c << endl;
1034                                 docstring s = docstring(1, c);
1035                                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, s));
1036                         }
1037                 }
1038                 break;
1039         }
1040
1041         case LFUN_QUOTE_INSERT: {
1042                 Paragraph & par = cur.paragraph();
1043                 pos_type pos = cur.pos();
1044                 BufferParams const & bufparams = bv->buffer().params();
1045                 LayoutPtr const & style = par.layout();
1046                 if (!style->pass_thru
1047                     && par.getFontSettings(bufparams, pos).language()->lang() != "hebrew") {
1048                         // this avoids a double undo
1049                         // FIXME: should not be needed, ideally
1050                         if (!cur.selection())
1051                                 cur.recordUndo();
1052                         cap::replaceSelection(cur);
1053                         pos = cur.pos();
1054                         char_type c;
1055                         if (pos == 0)
1056                                 c = ' ';
1057                         else if (cur.prevInset() && cur.prevInset()->isSpace())
1058                                 c = ' ';
1059                         else
1060                                 c = par.getChar(pos - 1);
1061                         string arg = to_utf8(cmd.argument());
1062                         if (arg == "single")
1063                                 cur.insert(new InsetQuotes(c,
1064                                     bufparams.quotes_language,
1065                                     InsetQuotes::SingleQ));
1066                         else
1067                                 cur.insert(new InsetQuotes(c,
1068                                     bufparams.quotes_language,
1069                                     InsetQuotes::DoubleQ));
1070                         cur.posForward();
1071                 }
1072                 else
1073                         lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, "\""));
1074                 break;
1075         }
1076
1077         case LFUN_DATE_INSERT: {
1078                 string const format = cmd.argument().empty()
1079                         ? lyxrc.date_insert_format : to_utf8(cmd.argument());
1080                 string const time = formatted_time(current_time(), format);
1081                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, time));
1082                 break;
1083         }
1084
1085         case LFUN_MOUSE_TRIPLE:
1086                 if (cmd.button() == mouse_button::button1) {
1087                         tm.cursorHome(cur);
1088                         cur.resetAnchor();
1089                         tm.cursorEnd(cur);
1090                         cur.setSelection();
1091                         bv->cursor() = cur;
1092                 }
1093                 break;
1094
1095         case LFUN_MOUSE_DOUBLE:
1096                 if (cmd.button() == mouse_button::button1) {
1097                         selectWord(cur, WHOLE_WORD_STRICT);
1098                         bv->cursor() = cur;
1099                 }
1100                 break;
1101
1102         // Single-click on work area
1103         case LFUN_MOUSE_PRESS: {
1104                 // Right click on a footnote flag opens float menu
1105                 // FIXME: Why should we clear the selection in this case?
1106                 if (cmd.button() == mouse_button::button3)
1107                         cur.clearSelection();
1108
1109                 bool do_selection = cmd.button() == mouse_button::button1
1110                         && cmd.argument() == "region-select";
1111                 // Set the cursor
1112                 bool update = bv->mouseSetCursor(cur, do_selection);
1113
1114                 // Insert primary selection with middle mouse
1115                 // if there is a local selection in the current buffer,
1116                 // insert this
1117                 if (cmd.button() == mouse_button::button2) {
1118                         if (cap::selection()) {
1119                                 // Copy the selection buffer to the clipboard
1120                                 // stack, because we want it to appear in the
1121                                 // "Edit->Paste recent" menu.
1122                                 cap::copySelectionToStack();
1123
1124                                 cap::pasteSelection(bv->cursor(), 
1125                                                     bv->buffer().errorList("Paste"));
1126                                 bv->buffer().errors("Paste");
1127                                 bv->buffer().markDirty();
1128                                 bv->cursor().finishUndo();
1129                         } else {
1130                                 lyx::dispatch(FuncRequest(LFUN_PRIMARY_SELECTION_PASTE, "paragraph"));
1131                         }
1132                 }
1133
1134                 // we have to update after dEPM triggered
1135                 if (!update && cmd.button() == mouse_button::button1) {
1136                         needsUpdate = false;
1137                         cur.noUpdate();
1138                 }
1139
1140                 break;
1141         }
1142
1143         case LFUN_MOUSE_MOTION: {
1144                 // Only use motion with button 1
1145                 //if (cmd.button() != mouse_button::button1)
1146                 //      return false;
1147
1148                 // ignore motions deeper nested than the real anchor
1149                 Cursor & bvcur = cur.bv().cursor();
1150                 if (!bvcur.anchor_.hasPart(cur)) {
1151                         cur.undispatched();
1152                         break;
1153                 }
1154                 CursorSlice old = bvcur.top();
1155
1156                 int const wh = bv->workHeight();
1157                 int const y = max(0, min(wh - 1, cmd.y));
1158
1159                 tm.setCursorFromCoordinates(cur, cmd.x, y);
1160                 cur.setTargetX(cmd.x);
1161                 if (cmd.y >= wh)
1162                         lyx::dispatch(FuncRequest(LFUN_DOWN_SELECT));
1163                 else if (cmd.y < 0)
1164                         lyx::dispatch(FuncRequest(LFUN_UP_SELECT));
1165                 // This is to allow jumping over large insets
1166                 if (cur.top() == old) {
1167                         if (cmd.y >= wh)
1168                                 lyx::dispatch(FuncRequest(LFUN_DOWN_SELECT));
1169                         else if (cmd.y < 0)
1170                                 lyx::dispatch(FuncRequest(LFUN_UP_SELECT));
1171                 }
1172
1173                 if (cur.top() == old)
1174                         cur.noUpdate();
1175                 else {
1176                         // FIXME: This is brute force! But without it the selected
1177                         // area is not corrected updated while moving the mouse.
1178                         cur.updateFlags(Update::Force | Update::FitCursor);
1179                         // don't set anchor_
1180                         bvcur.setCursor(cur);
1181                         bvcur.selection() = true;
1182                         //lyxerr << "MOTION: " << bv->cursor() << endl;
1183                 }
1184                 break;
1185         }
1186
1187         case LFUN_MOUSE_RELEASE: {
1188                 if (cmd.button() == mouse_button::button2)
1189                         break;
1190
1191                 if (cmd.button() == mouse_button::button1) {
1192                         // if there is new selection, update persistent
1193                         // selection, otherwise, single click does not
1194                         // clear persistent selection buffer
1195                         if (cur.selection()) {
1196                                 // finish selection
1197                                 // if double click, cur is moved to the end of word by selectWord
1198                                 // but bvcur is current mouse position
1199                                 Cursor & bvcur = cur.bv().cursor();
1200                                 bvcur.selection() = true;
1201                         }
1202                         needsUpdate = false;
1203                         cur.noUpdate();
1204                 }
1205
1206                 break;
1207         }
1208
1209         case LFUN_SELF_INSERT: {
1210                 if (cmd.argument().empty())
1211                         break;
1212
1213                 // Automatically delete the currently selected
1214                 // text and replace it with what is being
1215                 // typed in now. Depends on lyxrc settings
1216                 // "auto_region_delete", which defaults to
1217                 // true (on).
1218
1219                 if (lyxrc.auto_region_delete && cur.selection())
1220                         cutSelection(cur, false, false);
1221
1222                 cur.clearSelection();
1223                 Font const old_font = cur.real_current_font;
1224
1225                 docstring::const_iterator cit = cmd.argument().begin();
1226                 docstring::const_iterator end = cmd.argument().end();
1227                 for (; cit != end; ++cit)
1228                         bv->translateAndInsert(*cit, this, cur);
1229
1230                 cur.resetAnchor();
1231                 moveCursor(cur, false);
1232                 break;
1233         }
1234
1235         case LFUN_HYPERLINK_INSERT: {
1236                 InsetCommandParams p(HYPERLINK_CODE);
1237                 docstring content;
1238                 if (cur.selection()) {
1239                         content = cur.selectionAsString(false);
1240                         cutSelection(cur, true, false);
1241                 }
1242                 p["target"] = (cmd.argument().empty()) ?
1243                         content : cmd.argument();
1244                 string const data = InsetCommandMailer::params2string("href", p);
1245                 if (p["target"].empty()) {
1246                         bv->showDialog("href", data);
1247                 } else {
1248                         FuncRequest fr(LFUN_INSET_INSERT, data);
1249                         dispatch(cur, fr);
1250                 }
1251                 break;
1252         }
1253
1254         case LFUN_LABEL_INSERT: {
1255                 InsetCommandParams p(LABEL_CODE);
1256                 // Try to generate a valid label
1257                 p["name"] = (cmd.argument().empty()) ?
1258                         cur.getPossibleLabel() :
1259                         cmd.argument();
1260                 string const data = InsetCommandMailer::params2string("label", p);
1261
1262                 if (cmd.argument().empty()) {
1263                         bv->showDialog("label", data);
1264                 } else {
1265                         FuncRequest fr(LFUN_INSET_INSERT, data);
1266                         dispatch(cur, fr);
1267                 }
1268                 break;
1269         }
1270
1271         case LFUN_INFO_INSERT: {
1272                 Inset * inset = createInset(cur.bv().buffer(), cmd);
1273                 if (!inset)
1274                         break;
1275                 // if an empty inset is created (cmd.argument() is empty)
1276                 // use current selection as parameter.
1277                 if (cmd.argument().empty() && cur.selection()) {
1278                         // use selected text as info to avoid a separate UI
1279                         docstring ds = cur.selectionAsString(false);
1280                         cutSelection(cur, true, false);
1281                         static_cast<InsetInfo *>(inset)->setInfo(to_utf8(ds));
1282                 }
1283                 insertInset(cur, inset);
1284                 cur.posForward();
1285                 break;
1286         }
1287 #if 0
1288         case LFUN_LIST_INSERT:
1289         case LFUN_THEOREM_INSERT:
1290 #endif
1291         case LFUN_CAPTION_INSERT:
1292         case LFUN_FOOTNOTE_INSERT:
1293                 // Open the inset, and move the current selection
1294                 // inside it.
1295                 doInsertInset(cur, this, cmd, true, true);
1296                 cur.posForward();
1297                 // These insets are numbered.
1298                 updateLabels(bv->buffer());
1299                 break;
1300         case LFUN_NOTE_INSERT:
1301         case LFUN_FLEX_INSERT:
1302         case LFUN_BOX_INSERT:
1303         case LFUN_BRANCH_INSERT:
1304         case LFUN_BIBITEM_INSERT:
1305         case LFUN_ERT_INSERT:
1306         case LFUN_LISTING_INSERT:
1307         case LFUN_MARGINALNOTE_INSERT:
1308         case LFUN_OPTIONAL_INSERT:
1309         case LFUN_ENVIRONMENT_INSERT:
1310                 // Open the inset, and move the current selection
1311                 // inside it.
1312                 doInsertInset(cur, this, cmd, true, true);
1313                 cur.posForward();
1314                 break;
1315
1316         case LFUN_TABULAR_INSERT:
1317                 // if there were no arguments, just open the dialog
1318                 if (doInsertInset(cur, this, cmd, false, true))
1319                         cur.posForward();
1320                 else
1321                         bv->showDialog("tabularcreate");
1322
1323                 break;
1324
1325         case LFUN_FLOAT_INSERT:
1326         case LFUN_FLOAT_WIDE_INSERT:
1327         case LFUN_WRAP_INSERT: {
1328                 bool content = cur.selection();  // will some text be moved into the inset?
1329
1330                 doInsertInset(cur, this, cmd, true, true);
1331                 cur.posForward();
1332                 ParagraphList & pars = cur.text()->paragraphs();
1333
1334                 TextClass const & tclass = bv->buffer().params().getTextClass();
1335
1336                 // add a separate paragraph for the caption inset
1337                 pars.push_back(Paragraph());
1338                 pars.back().setInsetOwner(pars[0].inInset());
1339                 pars.back().layout(tclass.defaultLayout());
1340
1341                 int cap_pit = pars.size() - 1;
1342
1343                 // if an empty inset was created, we create an additional empty
1344                 // paragraph at the bottom so that the user can choose where to put
1345                 // the graphics (or table).
1346                 if (!content) {
1347                         pars.push_back(Paragraph());
1348                         pars.back().setInsetOwner(pars[0].inInset());
1349                         pars.back().layout(tclass.defaultLayout());
1350
1351                 }
1352
1353                 // reposition the cursor to the caption
1354                 cur.pit() = cap_pit;
1355                 cur.pos() = 0;
1356                 // FIXME: This Text/Cursor dispatch handling is a mess!
1357                 // We cannot use Cursor::dispatch here it needs access to up to
1358                 // date metrics.
1359                 FuncRequest cmd_caption(LFUN_CAPTION_INSERT);
1360                 cur.text()->dispatch(cur, cmd_caption);
1361                 cur.updateFlags(Update::Force);
1362                 // FIXME: When leaving the Float (or Wrap) inset we should
1363                 // delete any empty paragraph left above or below the
1364                 // caption.
1365                 break;
1366         }
1367
1368         case LFUN_INDEX_INSERT:
1369                 doInsertInset(cur, this, cmd, true, true);
1370                 cur.posForward();
1371                 break;
1372
1373         case LFUN_NOMENCL_INSERT: {
1374                 FuncRequest cmd1 = cmd;
1375                 if (cmd.argument().empty())
1376                         cmd1 = FuncRequest(cmd,
1377                                 bv->cursor().innerText()->getStringToIndex(bv->cursor()));
1378                 Inset * inset = createInset(cur.bv().buffer(), cmd1);
1379                 if (!inset)
1380                         break;
1381                 cur.recordUndo();
1382                 cur.clearSelection();
1383                 insertInset(cur, inset);
1384                 // Show the dialog for the nomenclature entry, since the
1385                 // description entry still needs to be filled in.
1386                 if (cmd.action == LFUN_NOMENCL_INSERT)
1387                         inset->edit(cur, true);
1388                 cur.posForward();
1389                 break;
1390         }
1391
1392         case LFUN_INDEX_PRINT:
1393         case LFUN_NOMENCL_PRINT:
1394         case LFUN_TOC_INSERT:
1395         case LFUN_HFILL_INSERT:
1396         case LFUN_LINE_INSERT:
1397         case LFUN_NEWPAGE_INSERT:
1398         case LFUN_PAGEBREAK_INSERT:
1399         case LFUN_CLEARPAGE_INSERT:
1400         case LFUN_CLEARDOUBLEPAGE_INSERT:
1401                 // do nothing fancy
1402                 doInsertInset(cur, this, cmd, false, false);
1403                 cur.posForward();
1404                 break;
1405
1406         case LFUN_DEPTH_DECREMENT:
1407                 changeDepth(cur, DEC_DEPTH);
1408                 break;
1409
1410         case LFUN_DEPTH_INCREMENT:
1411                 changeDepth(cur, INC_DEPTH);
1412                 break;
1413
1414         case LFUN_MATH_DISPLAY:
1415                 mathDispatch(cur, cmd, true);
1416                 break;
1417
1418         case LFUN_MATH_IMPORT_SELECTION:
1419         case LFUN_MATH_MODE:
1420                 if (cmd.argument() == "on")
1421                         // don't pass "on" as argument
1422                         mathDispatch(cur, FuncRequest(LFUN_MATH_MODE), false);
1423                 else
1424                         mathDispatch(cur, cmd, false);
1425                 break;
1426
1427         case LFUN_MATH_MACRO:
1428                 if (cmd.argument().empty())
1429                         cur.errorMessage(from_utf8(N_("Missing argument")));
1430                 else {
1431                         string s = to_utf8(cmd.argument());
1432                         string const s1 = token(s, ' ', 1);
1433                         int const nargs = s1.empty() ? 0 : convert<int>(s1);
1434                         string const s2 = token(s, ' ', 2);
1435                         string const type = s2.empty() ? "newcommand" : s2;
1436                         cur.insert(new MathMacroTemplate(from_utf8(token(s, ' ', 0)), nargs, false, from_utf8(type)));
1437                         //cur.nextInset()->edit(cur, true);
1438                 }
1439                 break;
1440
1441         // passthrough hat and underscore outside mathed:
1442         case LFUN_MATH_SUBSCRIPT:
1443                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "_"), false);
1444                 break;
1445         case LFUN_MATH_SUPERSCRIPT:
1446                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "^"), false);
1447                 break;
1448
1449         case LFUN_MATH_INSERT:
1450         case LFUN_MATH_MATRIX:
1451         case LFUN_MATH_DELIM:
1452         case LFUN_MATH_BIGDELIM: {
1453                 if (cur.selection())
1454                         cur.clearSelection();
1455                 // FIXME: instead of the above, this one
1456                 // should be used (but it asserts with Bidi enabled)
1457                 // cf. http://bugzilla.lyx.org/show_bug.cgi?id=4055
1458                 // cap::replaceSelection(cur);
1459                 cur.insert(new InsetMathHull(hullSimple));
1460                 checkAndActivateInset(cur, true);
1461                 BOOST_ASSERT(cur.inMathed());
1462                 cur.dispatch(cmd);
1463                 break;
1464         }
1465
1466         case LFUN_FONT_EMPH: {
1467                 Font font(ignore_font, ignore_language);
1468                 font.fontInfo().setEmph(FONT_TOGGLE);
1469                 toggleAndShow(cur, this, font);
1470                 break;
1471         }
1472
1473         case LFUN_FONT_BOLD: {
1474                 Font font(ignore_font, ignore_language);
1475                 font.fontInfo().setSeries(BOLD_SERIES);
1476                 toggleAndShow(cur, this, font);
1477                 break;
1478         }
1479
1480         case LFUN_FONT_NOUN: {
1481                 Font font(ignore_font, ignore_language);
1482                 font.fontInfo().setNoun(FONT_TOGGLE);
1483                 toggleAndShow(cur, this, font);
1484                 break;
1485         }
1486
1487         case LFUN_FONT_TYPEWRITER: {
1488                 Font font(ignore_font, ignore_language);
1489                 font.fontInfo().setFamily(TYPEWRITER_FAMILY); // no good
1490                 toggleAndShow(cur, this, font);
1491                 break;
1492         }
1493
1494         case LFUN_FONT_SANS: {
1495                 Font font(ignore_font, ignore_language);
1496                 font.fontInfo().setFamily(SANS_FAMILY);
1497                 toggleAndShow(cur, this, font);
1498                 break;
1499         }
1500
1501         case LFUN_FONT_ROMAN: {
1502                 Font font(ignore_font, ignore_language);
1503                 font.fontInfo().setFamily(ROMAN_FAMILY);
1504                 toggleAndShow(cur, this, font);
1505                 break;
1506         }
1507
1508         case LFUN_FONT_DEFAULT: {
1509                 Font font(inherit_font, ignore_language);
1510                 toggleAndShow(cur, this, font);
1511                 break;
1512         }
1513
1514         case LFUN_FONT_UNDERLINE: {
1515                 Font font(ignore_font, ignore_language);
1516                 font.fontInfo().setUnderbar(FONT_TOGGLE);
1517                 toggleAndShow(cur, this, font);
1518                 break;
1519         }
1520
1521         case LFUN_FONT_SIZE: {
1522                 Font font(ignore_font, ignore_language);
1523                 setLyXSize(to_utf8(cmd.argument()), font.fontInfo());
1524                 toggleAndShow(cur, this, font);
1525                 break;
1526         }
1527
1528         case LFUN_LANGUAGE: {
1529                 Language const * lang = languages.getLanguage(to_utf8(cmd.argument()));
1530                 if (!lang)
1531                         break;
1532                 Font font(ignore_font, lang);
1533                 toggleAndShow(cur, this, font);
1534                 break;
1535         }
1536
1537         case LFUN_FONT_FREE_APPLY:
1538                 toggleAndShow(cur, this, freefont, toggleall);
1539                 cur.message(_("Character set"));
1540                 break;
1541
1542         // Set the freefont using the contents of \param data dispatched from
1543         // the frontends and apply it at the current cursor location.
1544         case LFUN_FONT_FREE_UPDATE: {
1545                 Font font;
1546                 bool toggle;
1547                 if (font.fromString(to_utf8(cmd.argument()), toggle)) {
1548                         freefont = font;
1549                         toggleall = toggle;
1550                         toggleAndShow(cur, this, freefont, toggleall);
1551                         cur.message(_("Character set"));
1552                 } else {
1553                         lyxerr << "Argument not ok";
1554                 }
1555                 break;
1556         }
1557
1558         case LFUN_FINISHED_LEFT:
1559                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_LEFT:\n" << cur);
1560                 if (reverseDirectionNeeded(cur)) {
1561                         ++cur.pos();
1562                         cur.setCurrentFont();
1563                 }
1564                 break;
1565
1566         case LFUN_FINISHED_RIGHT:
1567                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_RIGHT:\n" << cur);
1568                 if (!reverseDirectionNeeded(cur)) {
1569                         ++cur.pos();
1570                         cur.setCurrentFont();
1571                 }
1572                 break;
1573
1574         case LFUN_FINISHED_BACKWARD:
1575                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_BACKWARD:\n" << cur);
1576                 break;
1577
1578         case LFUN_FINISHED_FORWARD:
1579                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_FORWARD:\n" << cur);
1580                 ++cur.pos();
1581                 cur.setCurrentFont();
1582                 break;
1583
1584         case LFUN_LAYOUT_PARAGRAPH: {
1585                 string data;
1586                 params2string(cur.paragraph(), data);
1587                 data = "show\n" + data;
1588                 bv->showDialog("paragraph", data);
1589                 break;
1590         }
1591
1592         case LFUN_PARAGRAPH_UPDATE: {
1593                 string data;
1594                 params2string(cur.paragraph(), data);
1595
1596                 // Will the paragraph accept changes from the dialog?
1597                 bool const accept = !cur.inset().forceDefaultParagraphs(cur.idx());
1598
1599                 data = "update " + convert<string>(accept) + '\n' + data;
1600                 bv->updateDialog("paragraph", data);
1601                 break;
1602         }
1603
1604         case LFUN_ACCENT_UMLAUT:
1605         case LFUN_ACCENT_CIRCUMFLEX:
1606         case LFUN_ACCENT_GRAVE:
1607         case LFUN_ACCENT_ACUTE:
1608         case LFUN_ACCENT_TILDE:
1609         case LFUN_ACCENT_CEDILLA:
1610         case LFUN_ACCENT_MACRON:
1611         case LFUN_ACCENT_DOT:
1612         case LFUN_ACCENT_UNDERDOT:
1613         case LFUN_ACCENT_UNDERBAR:
1614         case LFUN_ACCENT_CARON:
1615         case LFUN_ACCENT_SPECIAL_CARON:
1616         case LFUN_ACCENT_BREVE:
1617         case LFUN_ACCENT_TIE:
1618         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
1619         case LFUN_ACCENT_CIRCLE:
1620         case LFUN_ACCENT_OGONEK:
1621                 theLyXFunc().handleKeyFunc(cmd.action);
1622                 if (!cmd.argument().empty())
1623                         // FIXME: Are all these characters encoded in one byte in utf8?
1624                         bv->translateAndInsert(cmd.argument()[0], this, cur);
1625                 break;
1626
1627         case LFUN_FLOAT_LIST: {
1628                 TextClass const & tclass = bv->buffer().params().getTextClass();
1629                 if (tclass.floats().typeExist(to_utf8(cmd.argument()))) {
1630                         cur.recordUndo();
1631                         if (cur.selection())
1632                                 cutSelection(cur, true, false);
1633                         breakParagraph(cur);
1634
1635                         if (cur.lastpos() != 0) {
1636                                 cursorBackward(cur);
1637                                 breakParagraph(cur);
1638                         }
1639
1640                         setLayout(cur, tclass.defaultLayoutName());
1641                         ParagraphParameters p;
1642                         setParagraphs(cur, p);
1643                         insertInset(cur, new InsetFloatList(to_utf8(cmd.argument())));
1644                         cur.posForward();
1645                 } else {
1646                         lyxerr << "Non-existent float type: "
1647                                << to_utf8(cmd.argument()) << endl;
1648                 }
1649                 break;
1650         }
1651
1652         case LFUN_CHANGE_ACCEPT: {
1653                 acceptOrRejectChanges(cur, ACCEPT);
1654                 break;
1655         }
1656
1657         case LFUN_CHANGE_REJECT: {
1658                 acceptOrRejectChanges(cur, REJECT);
1659                 break;
1660         }
1661
1662         case LFUN_THESAURUS_ENTRY: {
1663                 docstring arg = cmd.argument();
1664                 if (arg.empty()) {
1665                         arg = cur.selectionAsString(false);
1666                         // FIXME
1667                         if (arg.size() > 100 || arg.empty()) {
1668                                 // Get word or selection
1669                                 selectWordWhenUnderCursor(cur, WHOLE_WORD);
1670                                 arg = cur.selectionAsString(false);
1671                         }
1672                 }
1673                 bv->showDialog("thesaurus", to_utf8(arg));
1674                 break;
1675         }
1676
1677         case LFUN_PARAGRAPH_PARAMS_APPLY: {
1678                 // Given data, an encoding of the ParagraphParameters
1679                 // generated in the Paragraph dialog, this function sets
1680                 // the current paragraph, or currently selected paragraphs,
1681                 // appropriately. 
1682                 // NOTE: This function overrides all existing settings.
1683                 setParagraphs(cur, cmd.argument());
1684                 cur.message(_("Paragraph layout set"));
1685                 break;
1686         }
1687         
1688         case LFUN_PARAGRAPH_PARAMS: {
1689                 // Given data, an encoding of the ParagraphParameters as we'd
1690                 // find them in a LyX file, this function modifies the current paragraph, 
1691                 // or currently selected paragraphs. 
1692                 // NOTE: This function only modifies, and does not override, existing
1693                 // settings.
1694                 setParagraphs(cur, cmd.argument(), true);
1695                 cur.message(_("Paragraph layout set"));
1696                 break;
1697         }
1698
1699         case LFUN_ESCAPE:
1700                 if (cur.selection()) {
1701                         cur.selection() = false;
1702                 } else {
1703                         cur.undispatched();
1704                         // This used to be LFUN_FINISHED_RIGHT, I think FORWARD is more
1705                         // correct, but I'm not 100% sure -- dov, 071019
1706                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
1707                 }
1708                 break;
1709
1710         case LFUN_OUTLINE_UP:
1711                 outline(OutlineUp, cur);
1712                 setCursor(cur, cur.pit(), 0);
1713                 updateLabels(cur.buffer());
1714                 needsUpdate = true;
1715                 break;
1716
1717         case LFUN_OUTLINE_DOWN:
1718                 outline(OutlineDown, cur);
1719                 setCursor(cur, cur.pit(), 0);
1720                 updateLabels(cur.buffer());
1721                 needsUpdate = true;
1722                 break;
1723
1724         case LFUN_OUTLINE_IN:
1725                 outline(OutlineIn, cur);
1726                 updateLabels(cur.buffer());
1727                 needsUpdate = true;
1728                 break;
1729
1730         case LFUN_OUTLINE_OUT:
1731                 outline(OutlineOut, cur);
1732                 updateLabels(cur.buffer());
1733                 needsUpdate = true;
1734                 break;
1735
1736         default:
1737                 LYXERR(Debug::ACTION, "Command " << cmd << " not DISPATCHED by Text");
1738                 cur.undispatched();
1739                 break;
1740         }
1741
1742         needsUpdate |= (cur.pos() != cur.lastpos()) && cur.selection();
1743
1744         // FIXME: The cursor flag is reset two lines below
1745         // so we need to check here if some of the LFUN did touch that.
1746         // for now only Text::erase() and Text::backspace() do that.
1747         // The plan is to verify all the LFUNs and then to remove this
1748         // singleParUpdate boolean altogether.
1749         if (cur.result().update() & Update::Force) {
1750                 singleParUpdate = false;
1751                 needsUpdate = true;
1752         }
1753
1754         // FIXME: the following code should go in favor of fine grained
1755         // update flag treatment.
1756         if (singleParUpdate) {
1757                 // Inserting characters does not change par height
1758                 ParagraphMetrics const & pms
1759                         = cur.bv().parMetrics(cur.bottom().text(), cur.bottom().pit());
1760                 if (pms.dim().height() == olddim.height()) {
1761                         // if so, update _only_ this paragraph
1762                         cur.updateFlags(Update::SinglePar |
1763                                 Update::FitCursor);
1764                         return;
1765                 }
1766                 needsUpdate = true;
1767         }
1768
1769         if (!needsUpdate
1770             && &oldTopSlice.inset() == &cur.inset()
1771             && oldTopSlice.idx() == cur.idx()
1772             && !sel // sel is a backup of cur.selection() at the biginning of the function.
1773             && !cur.selection())
1774                 // FIXME: it would be better if we could just do this
1775                 //
1776                 //if (cur.result().update() != Update::FitCursor)
1777                 //      cur.noUpdate();
1778                 //
1779                 // But some LFUNs do not set Update::FitCursor when needed, so we
1780                 // do it for all. This is not very harmfull as FitCursor will provoke
1781                 // a full redraw only if needed but still, a proper review of all LFUN
1782                 // should be done and this needsUpdate boolean can then be removed.
1783                 cur.updateFlags(Update::FitCursor);
1784         else
1785                 cur.updateFlags(Update::Force | Update::FitCursor);
1786 }
1787
1788
1789 bool Text::getStatus(Cursor & cur, FuncRequest const & cmd,
1790                         FuncStatus & flag) const
1791 {
1792         BOOST_ASSERT(cur.text() == this);
1793
1794         Font const & font = cur.real_current_font;
1795         FontInfo const & fontinfo = font.fontInfo();
1796         bool enable = true;
1797         InsetCode code = NO_CODE;
1798
1799         switch (cmd.action) {
1800
1801         case LFUN_DEPTH_DECREMENT:
1802                 enable = changeDepthAllowed(cur, DEC_DEPTH);
1803                 break;
1804
1805         case LFUN_DEPTH_INCREMENT:
1806                 enable = changeDepthAllowed(cur, INC_DEPTH);
1807                 break;
1808
1809         case LFUN_APPENDIX:
1810                 flag.setOnOff(cur.paragraph().params().startOfAppendix());
1811                 return true;
1812
1813         case LFUN_BIBITEM_INSERT:
1814                 enable = (cur.paragraph().layout()->labeltype == LABEL_BIBLIO
1815                           && cur.pos() == 0);
1816                 break;
1817
1818         case LFUN_DIALOG_SHOW_NEW_INSET:
1819                 if (cmd.argument() == "bibitem")
1820                         code = BIBITEM_CODE;
1821                 else if (cmd.argument() == "bibtex")
1822                         code = BIBTEX_CODE;
1823                 else if (cmd.argument() == "box")
1824                         code = BOX_CODE;
1825                 else if (cmd.argument() == "branch")
1826                         code = BRANCH_CODE;
1827                 else if (cmd.argument() == "citation")
1828                         code = CITE_CODE;
1829                 else if (cmd.argument() == "ert")
1830                         code = ERT_CODE;
1831                 else if (cmd.argument() == "external")
1832                         code = EXTERNAL_CODE;
1833                 else if (cmd.argument() == "float")
1834                         code = FLOAT_CODE;
1835                 else if (cmd.argument() == "graphics")
1836                         code = GRAPHICS_CODE;
1837                 else if (cmd.argument() == "href")
1838                         code = HYPERLINK_CODE;
1839                 else if (cmd.argument() == "include")
1840                         code = INCLUDE_CODE;
1841                 else if (cmd.argument() == "index")
1842                         code = INDEX_CODE;
1843                 else if (cmd.argument() == "nomenclature")
1844                         code = NOMENCL_CODE;
1845                 else if (cmd.argument() == "label")
1846                         code = LABEL_CODE;
1847                 else if (cmd.argument() == "note")
1848                         code = NOTE_CODE;
1849                 else if (cmd.argument() == "ref")
1850                         code = REF_CODE;
1851                 else if (cmd.argument() == "toc")
1852                         code = TOC_CODE;
1853                 else if (cmd.argument() == "vspace")
1854                         code = VSPACE_CODE;
1855                 else if (cmd.argument() == "wrap")
1856                         code = WRAP_CODE;
1857                 else if (cmd.argument() == "listings")
1858                         code = LISTINGS_CODE;
1859                 break;
1860
1861         case LFUN_ERT_INSERT:
1862                 code = ERT_CODE;
1863                 break;
1864         case LFUN_LISTING_INSERT:
1865             code = LISTINGS_CODE;
1866                 break;
1867         case LFUN_FOOTNOTE_INSERT:
1868                 code = FOOT_CODE;
1869                 break;
1870         case LFUN_TABULAR_INSERT:
1871                 code = TABULAR_CODE;
1872                 break;
1873         case LFUN_MARGINALNOTE_INSERT:
1874                 code = MARGIN_CODE;
1875                 break;
1876         case LFUN_FLOAT_INSERT:
1877         case LFUN_FLOAT_WIDE_INSERT:
1878                 code = FLOAT_CODE;
1879                 break;
1880         case LFUN_WRAP_INSERT:
1881                 code = WRAP_CODE;
1882                 break;
1883         case LFUN_FLOAT_LIST:
1884                 code = FLOAT_LIST_CODE;
1885                 break;
1886 #if 0
1887         case LFUN_LIST_INSERT:
1888                 code = LIST_CODE;
1889                 break;
1890         case LFUN_THEOREM_INSERT:
1891                 code = THEOREM_CODE;
1892                 break;
1893 #endif
1894         case LFUN_CAPTION_INSERT:
1895                 code = CAPTION_CODE;
1896                 break;
1897         case LFUN_NOTE_INSERT:
1898                 code = NOTE_CODE;
1899                 break;
1900         case LFUN_FLEX_INSERT: {
1901                 code = FLEX_CODE;
1902                 string s = cmd.getArg(0);
1903                 InsetLayout il =  cur.buffer().params().getTextClass().insetlayout(from_utf8(s));
1904                 if (il.lyxtype != "charstyle" &&
1905                     il.lyxtype != "custom" &&
1906                     il.lyxtype != "element" &&
1907                     il.lyxtype != "standard")
1908                         enable = false;
1909                 break;
1910                 }
1911         case LFUN_BOX_INSERT:
1912                 code = BOX_CODE;
1913                 break;
1914         case LFUN_BRANCH_INSERT:
1915                 code = BRANCH_CODE;
1916                 if (cur.buffer().masterBuffer()->params().branchlist().empty())
1917                         enable = false;
1918                 break;
1919         case LFUN_LABEL_INSERT:
1920                 code = LABEL_CODE;
1921                 break;
1922         case LFUN_INFO_INSERT:
1923                 code = INFO_CODE;
1924                 break;
1925         case LFUN_OPTIONAL_INSERT:
1926                 code = OPTARG_CODE;
1927                 enable = cur.paragraph().insetList().count(OPTARG_CODE)
1928                         < cur.paragraph().layout()->optionalargs;
1929                 break;
1930         case LFUN_ENVIRONMENT_INSERT:
1931                 code = BOX_CODE;
1932                 break;
1933         case LFUN_INDEX_INSERT:
1934                 code = INDEX_CODE;
1935                 break;
1936         case LFUN_INDEX_PRINT:
1937                 code = INDEX_PRINT_CODE;
1938                 break;
1939         case LFUN_NOMENCL_INSERT:
1940                 code = NOMENCL_CODE;
1941                 break;
1942         case LFUN_NOMENCL_PRINT:
1943                 code = NOMENCL_PRINT_CODE;
1944                 break;
1945         case LFUN_TOC_INSERT:
1946                 code = TOC_CODE;
1947                 break;
1948         case LFUN_HYPERLINK_INSERT:
1949                 code = HYPERLINK_CODE;
1950                 break;
1951         case LFUN_QUOTE_INSERT:
1952                 // always allow this, since we will inset a raw quote
1953                 // if an inset is not allowed.
1954                 break;
1955         case LFUN_HFILL_INSERT:
1956         case LFUN_SPECIALCHAR_INSERT:
1957                 code = SPECIALCHAR_CODE;
1958                 break;
1959         case LFUN_SPACE_INSERT:
1960                 // slight hack: we know this is allowed in math mode
1961                 if (cur.inTexted())
1962                         code = SPACE_CODE;
1963                 break;
1964
1965         case LFUN_INSET_MODIFY:
1966                 // We need to disable this, because we may get called for a
1967                 // tabular cell via
1968                 // InsetTabular::getStatus() -> InsetText::getStatus()
1969                 // and we don't handle LFUN_INSET_MODIFY.
1970                 enable = false;
1971                 break;
1972
1973         case LFUN_FONT_EMPH:
1974                 flag.setOnOff(fontinfo.emph() == FONT_ON);
1975                 return true;
1976
1977         case LFUN_FONT_NOUN:
1978                 flag.setOnOff(fontinfo.noun() == FONT_ON);
1979                 return true;
1980
1981         case LFUN_FONT_BOLD:
1982                 flag.setOnOff(fontinfo.series() == BOLD_SERIES);
1983                 return true;
1984
1985         case LFUN_FONT_SANS:
1986                 flag.setOnOff(fontinfo.family() == SANS_FAMILY);
1987                 return true;
1988
1989         case LFUN_FONT_ROMAN:
1990                 flag.setOnOff(fontinfo.family() == ROMAN_FAMILY);
1991                 return true;
1992
1993         case LFUN_FONT_TYPEWRITER:
1994                 flag.setOnOff(fontinfo.family() == TYPEWRITER_FAMILY);
1995                 return true;
1996
1997         case LFUN_CUT:
1998         case LFUN_COPY:
1999                 enable = cur.selection();
2000                 break;
2001
2002         case LFUN_PASTE:
2003                 if (cmd.argument().empty()) {
2004                         if (theClipboard().isInternal())
2005                                 enable = cap::numberOfSelections() > 0;
2006                         else
2007                                 enable = !theClipboard().empty();
2008                 } else {
2009                         string const arg = to_utf8(cmd.argument());
2010                         if (isStrUnsignedInt(arg)) {
2011                                 unsigned int n = convert<unsigned int>(arg);
2012                                 enable = cap::numberOfSelections() > n;
2013                         } else
2014                                 // unknown argument
2015                                 enable = false;
2016                 }
2017                 break;
2018
2019         case LFUN_CLIPBOARD_PASTE:
2020                 enable = !theClipboard().empty();
2021                 break;
2022
2023         case LFUN_PRIMARY_SELECTION_PASTE:
2024                 enable = cur.selection() || !theSelection().empty();
2025                 break;
2026
2027         case LFUN_PARAGRAPH_MOVE_UP:
2028                 enable = cur.pit() > 0 && !cur.selection();
2029                 break;
2030
2031         case LFUN_PARAGRAPH_MOVE_DOWN:
2032                 enable = cur.pit() < cur.lastpit() && !cur.selection();
2033                 break;
2034
2035         case LFUN_INSET_DISSOLVE:
2036                 if (!cmd.argument().empty()) {
2037                         InsetLayout il = cur.inset().getLayout(cur.buffer().params());
2038                         enable = cur.inset().lyxCode() == FLEX_CODE
2039                                  && il.lyxtype == to_utf8(cmd.argument());
2040                 } else {
2041                         enable = !isMainText(cur.bv().buffer()) 
2042                                  && cur.inset().nargs() == 1;
2043                 }
2044                 break;
2045
2046         case LFUN_CHANGE_ACCEPT:
2047         case LFUN_CHANGE_REJECT:
2048                 // TODO: context-sensitive enabling of LFUN_CHANGE_ACCEPT/REJECT
2049                 // In principle, these LFUNs should only be enabled if there
2050                 // is a change at the current position/in the current selection.
2051                 // However, without proper optimizations, this will inevitably
2052                 // result in unacceptable performance - just imagine a user who
2053                 // wants to select the complete content of a long document.
2054                 enable = true;
2055                 break;
2056
2057         case LFUN_OUTLINE_UP:
2058         case LFUN_OUTLINE_DOWN:
2059         case LFUN_OUTLINE_IN:
2060         case LFUN_OUTLINE_OUT:
2061                 enable = (cur.paragraph().layout()->toclevel != Layout::NOT_IN_TOC);
2062                 break;
2063
2064         case LFUN_WORD_DELETE_FORWARD:
2065         case LFUN_WORD_DELETE_BACKWARD:
2066         case LFUN_LINE_DELETE:
2067         case LFUN_WORD_FORWARD:
2068         case LFUN_WORD_BACKWARD:
2069         case LFUN_WORD_RIGHT:
2070         case LFUN_WORD_LEFT:
2071         case LFUN_CHAR_FORWARD:
2072         case LFUN_CHAR_FORWARD_SELECT:
2073         case LFUN_CHAR_BACKWARD:
2074         case LFUN_CHAR_BACKWARD_SELECT:
2075         case LFUN_CHAR_LEFT:
2076         case LFUN_CHAR_LEFT_SELECT:
2077         case LFUN_CHAR_RIGHT:
2078         case LFUN_CHAR_RIGHT_SELECT:
2079         case LFUN_UP:
2080         case LFUN_UP_SELECT:
2081         case LFUN_DOWN:
2082         case LFUN_DOWN_SELECT:
2083         case LFUN_PARAGRAPH_UP_SELECT:
2084         case LFUN_PARAGRAPH_DOWN_SELECT:
2085         case LFUN_SCREEN_UP_SELECT:
2086         case LFUN_SCREEN_DOWN_SELECT:
2087         case LFUN_LINE_BEGIN_SELECT:
2088         case LFUN_LINE_END_SELECT:
2089         case LFUN_WORD_FORWARD_SELECT:
2090         case LFUN_WORD_BACKWARD_SELECT:
2091         case LFUN_WORD_RIGHT_SELECT:
2092         case LFUN_WORD_LEFT_SELECT:
2093         case LFUN_WORD_SELECT:
2094         case LFUN_PARAGRAPH_UP:
2095         case LFUN_PARAGRAPH_DOWN:
2096         case LFUN_LINE_BEGIN:
2097         case LFUN_LINE_BREAK:
2098         case LFUN_LINE_END:
2099         case LFUN_NEW_LINE:
2100         case LFUN_CHAR_DELETE_FORWARD:
2101         case LFUN_DELETE_FORWARD_SKIP:
2102         case LFUN_CHAR_DELETE_BACKWARD:
2103         case LFUN_DELETE_BACKWARD_SKIP:
2104         case LFUN_BREAK_PARAGRAPH:
2105         case LFUN_BREAK_PARAGRAPH_SKIP:
2106         case LFUN_PARAGRAPH_SPACING:
2107         case LFUN_INSET_INSERT:
2108         case LFUN_WORD_UPCASE:
2109         case LFUN_WORD_LOWCASE:
2110         case LFUN_WORD_CAPITALIZE:
2111         case LFUN_CHARS_TRANSPOSE:
2112         case LFUN_SERVER_GET_XY:
2113         case LFUN_SERVER_SET_XY:
2114         case LFUN_SERVER_GET_FONT:
2115         case LFUN_SERVER_GET_LAYOUT:
2116         case LFUN_LAYOUT:
2117         case LFUN_DATE_INSERT:
2118         case LFUN_SELF_INSERT:
2119         case LFUN_LINE_INSERT:
2120         case LFUN_NEWPAGE_INSERT:
2121         case LFUN_PAGEBREAK_INSERT:
2122         case LFUN_CLEARPAGE_INSERT:
2123         case LFUN_CLEARDOUBLEPAGE_INSERT:
2124         case LFUN_MATH_DISPLAY:
2125         case LFUN_MATH_IMPORT_SELECTION:
2126         case LFUN_MATH_MODE:
2127         case LFUN_MATH_MACRO:
2128         case LFUN_MATH_MATRIX:
2129         case LFUN_MATH_DELIM:
2130         case LFUN_MATH_BIGDELIM:
2131         case LFUN_MATH_INSERT:
2132         case LFUN_MATH_SUBSCRIPT:
2133         case LFUN_MATH_SUPERSCRIPT:
2134         case LFUN_FONT_DEFAULT:
2135         case LFUN_FONT_UNDERLINE:
2136         case LFUN_FONT_SIZE:
2137         case LFUN_LANGUAGE:
2138         case LFUN_FONT_FREE_APPLY:
2139         case LFUN_FONT_FREE_UPDATE:
2140         case LFUN_LAYOUT_PARAGRAPH:
2141         case LFUN_PARAGRAPH_UPDATE:
2142         case LFUN_ACCENT_UMLAUT:
2143         case LFUN_ACCENT_CIRCUMFLEX:
2144         case LFUN_ACCENT_GRAVE:
2145         case LFUN_ACCENT_ACUTE:
2146         case LFUN_ACCENT_TILDE:
2147         case LFUN_ACCENT_CEDILLA:
2148         case LFUN_ACCENT_MACRON:
2149         case LFUN_ACCENT_DOT:
2150         case LFUN_ACCENT_UNDERDOT:
2151         case LFUN_ACCENT_UNDERBAR:
2152         case LFUN_ACCENT_CARON:
2153         case LFUN_ACCENT_SPECIAL_CARON:
2154         case LFUN_ACCENT_BREVE:
2155         case LFUN_ACCENT_TIE:
2156         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
2157         case LFUN_ACCENT_CIRCLE:
2158         case LFUN_ACCENT_OGONEK:
2159         case LFUN_THESAURUS_ENTRY:
2160         case LFUN_PARAGRAPH_PARAMS_APPLY:
2161         case LFUN_PARAGRAPH_PARAMS:
2162         case LFUN_ESCAPE:
2163         case LFUN_BUFFER_END:
2164         case LFUN_BUFFER_BEGIN:
2165         case LFUN_BUFFER_BEGIN_SELECT:
2166         case LFUN_BUFFER_END_SELECT:
2167         case LFUN_UNICODE_INSERT:
2168                 // these are handled in our dispatch()
2169                 enable = true;
2170                 break;
2171
2172         default:
2173                 return false;
2174         }
2175
2176         if (code != NO_CODE
2177             && (cur.empty() || !cur.inset().insetAllowed(code)))
2178                 enable = false;
2179
2180         flag.enabled(enable);
2181         return true;
2182 }
2183
2184
2185 void Text::pasteString(Cursor & cur, docstring const & clip,
2186                 bool asParagraphs)
2187 {
2188         cur.clearSelection();
2189         if (!clip.empty()) {
2190                 cur.recordUndo();
2191                 if (asParagraphs)
2192                         insertStringAsParagraphs(cur, clip);
2193                 else
2194                         insertStringAsLines(cur, clip);
2195         }
2196 }
2197
2198 } // namespace lyx