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