]> git.lyx.org Git - lyx.git/blob - src/Text3.cpp
Unify LFUN naming.
[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 = graphics::getCurrentGraphicsInset(cur);
897                 if (!ins)
898                         break;
899
900                 cur.recordUndoFullDocument();
901
902                 string id = to_utf8(cmd.argument());
903                 string grp = graphics::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                 case mouse_button::none:
1310                 case mouse_button::button4:
1311                 case mouse_button::button5:
1312                         break;
1313                 } // switch (cmd.button())
1314
1315                 break;
1316
1317         case LFUN_SELF_INSERT: {
1318                 if (cmd.argument().empty())
1319                         break;
1320
1321                 // Automatically delete the currently selected
1322                 // text and replace it with what is being
1323                 // typed in now. Depends on lyxrc settings
1324                 // "auto_region_delete", which defaults to
1325                 // true (on).
1326
1327                 if (lyxrc.auto_region_delete && cur.selection())
1328                         cutSelection(cur, false, false);
1329
1330                 cur.clearSelection();
1331                 Font const old_font = cur.real_current_font;
1332
1333                 docstring::const_iterator cit = cmd.argument().begin();
1334                 docstring::const_iterator end = cmd.argument().end();
1335                 for (; cit != end; ++cit)
1336                         bv->translateAndInsert(*cit, this, cur);
1337
1338                 cur.resetAnchor();
1339                 moveCursor(cur, false);
1340                 break;
1341         }
1342
1343         case LFUN_HYPERLINK_INSERT: {
1344                 InsetCommandParams p(HYPERLINK_CODE);
1345                 docstring content;
1346                 if (cur.selection()) {
1347                         content = cur.selectionAsString(false);
1348                         cutSelection(cur, true, false);
1349                 }
1350                 p["target"] = (cmd.argument().empty()) ?
1351                         content : cmd.argument();
1352                 string const data = InsetCommand::params2string("href", p);
1353                 if (p["target"].empty()) {
1354                         bv->showDialog("href", data);
1355                 } else {
1356                         FuncRequest fr(LFUN_INSET_INSERT, data);
1357                         dispatch(cur, fr);
1358                 }
1359                 break;
1360         }
1361
1362         case LFUN_LABEL_INSERT: {
1363                 InsetCommandParams p(LABEL_CODE);
1364                 // Try to generate a valid label
1365                 p["name"] = (cmd.argument().empty()) ?
1366                         cur.getPossibleLabel() :
1367                         cmd.argument();
1368                 string const data = InsetCommand::params2string("label", p);
1369
1370                 if (cmd.argument().empty()) {
1371                         bv->showDialog("label", data);
1372                 } else {
1373                         FuncRequest fr(LFUN_INSET_INSERT, data);
1374                         dispatch(cur, fr);
1375                 }
1376                 break;
1377         }
1378
1379         case LFUN_INFO_INSERT: {
1380                 Inset * inset = createInset(cur.bv().buffer(), cmd);
1381                 if (!inset)
1382                         break;
1383                 // if an empty inset is created (cmd.argument() is empty)
1384                 // use current selection as parameter.
1385                 if (cmd.argument().empty() && cur.selection()) {
1386                         // use selected text as info to avoid a separate UI
1387                         docstring ds = cur.selectionAsString(false);
1388                         cutSelection(cur, true, false);
1389                         static_cast<InsetInfo *>(inset)->setInfo(to_utf8(ds));
1390                         static_cast<InsetInfo *>(inset)->updateInfo();
1391                 }
1392                 insertInset(cur, inset);
1393                 cur.posForward();
1394                 break;
1395         }
1396 #if 0
1397         case LFUN_LIST_INSERT:
1398 #endif
1399         case LFUN_CAPTION_INSERT:
1400         case LFUN_FOOTNOTE_INSERT:
1401         case LFUN_NOTE_INSERT:
1402         case LFUN_FLEX_INSERT:
1403         case LFUN_BOX_INSERT:
1404         case LFUN_BRANCH_INSERT:
1405         case LFUN_BIBITEM_INSERT:
1406         case LFUN_ERT_INSERT:
1407         case LFUN_LISTING_INSERT:
1408         case LFUN_MARGINALNOTE_INSERT:
1409         case LFUN_OPTIONAL_INSERT:
1410         case LFUN_ENVIRONMENT_INSERT:
1411         case LFUN_INDEX_INSERT:
1412                 // Open the inset, and move the current selection
1413                 // inside it.
1414                 doInsertInset(cur, this, cmd, true, true);
1415                 cur.posForward();
1416                 // Some insets are numbered, others are shown in the outline pane so
1417                 // let's update the labels and the toc backend.
1418                 updateLabels(bv->buffer());
1419                 break;
1420
1421         case LFUN_TABULAR_INSERT:
1422                 // if there were no arguments, just open the dialog
1423                 if (doInsertInset(cur, this, cmd, false, true))
1424                         cur.posForward();
1425                 else
1426                         bv->showDialog("tabularcreate");
1427
1428                 break;
1429
1430         case LFUN_FLOAT_INSERT:
1431         case LFUN_FLOAT_WIDE_INSERT:
1432         case LFUN_WRAP_INSERT: {
1433                 bool content = cur.selection();  // will some text be moved into the inset?
1434
1435                 doInsertInset(cur, this, cmd, true, true);
1436                 cur.posForward();
1437                 ParagraphList & pars = cur.text()->paragraphs();
1438
1439                 DocumentClass const & tclass = bv->buffer().params().documentClass();
1440
1441                 // add a separate paragraph for the caption inset
1442                 pars.push_back(Paragraph());
1443                 pars.back().setInsetOwner(pars[0].inInset());
1444                 pars.back().setEmptyOrDefaultLayout(tclass);
1445                 int cap_pit = pars.size() - 1;
1446
1447                 // if an empty inset was created, we create an additional empty
1448                 // paragraph at the bottom so that the user can choose where to put
1449                 // the graphics (or table).
1450                 if (!content) {
1451                         pars.push_back(Paragraph());
1452                         pars.back().setInsetOwner(pars[0].inInset());
1453                         pars.back().setEmptyOrDefaultLayout(tclass);
1454                 }
1455
1456                 // reposition the cursor to the caption
1457                 cur.pit() = cap_pit;
1458                 cur.pos() = 0;
1459                 // FIXME: This Text/Cursor dispatch handling is a mess!
1460                 // We cannot use Cursor::dispatch here it needs access to up to
1461                 // date metrics.
1462                 FuncRequest cmd_caption(LFUN_CAPTION_INSERT);
1463                 cur.text()->dispatch(cur, cmd_caption);
1464                 cur.updateFlags(Update::Force);
1465                 // FIXME: When leaving the Float (or Wrap) inset we should
1466                 // delete any empty paragraph left above or below the
1467                 // caption.
1468                 break;
1469         }
1470
1471         case LFUN_NOMENCL_INSERT: {
1472                 FuncRequest cmd1 = cmd;
1473                 if (cmd.argument().empty())
1474                         cmd1 = FuncRequest(cmd,
1475                                 bv->cursor().innerText()->getStringToIndex(bv->cursor()));
1476                 Inset * inset = createInset(cur.bv().buffer(), cmd1);
1477                 if (!inset)
1478                         break;
1479                 cur.recordUndo();
1480                 cur.clearSelection();
1481                 insertInset(cur, inset);
1482                 // Show the dialog for the nomenclature entry, since the
1483                 // description entry still needs to be filled in.
1484                 if (cmd.action == LFUN_NOMENCL_INSERT)
1485                         inset->edit(cur, true);
1486                 cur.posForward();
1487                 break;
1488         }
1489
1490         case LFUN_INDEX_PRINT:
1491         case LFUN_NOMENCL_PRINT:
1492         case LFUN_TOC_INSERT:
1493         case LFUN_LINE_INSERT:
1494         case LFUN_NEWPAGE_INSERT:
1495                 // do nothing fancy
1496                 doInsertInset(cur, this, cmd, false, false);
1497                 cur.posForward();
1498                 break;
1499
1500         case LFUN_DEPTH_DECREMENT:
1501                 changeDepth(cur, DEC_DEPTH);
1502                 break;
1503
1504         case LFUN_DEPTH_INCREMENT:
1505                 changeDepth(cur, INC_DEPTH);
1506                 break;
1507
1508         case LFUN_MATH_DISPLAY:
1509                 mathDispatch(cur, cmd, true);
1510                 break;
1511
1512         case LFUN_MATH_IMPORT_SELECTION:
1513         case LFUN_MATH_MODE:
1514                 if (cmd.argument() == "on")
1515                         // don't pass "on" as argument
1516                         mathDispatch(cur, FuncRequest(LFUN_MATH_MODE), false);
1517                 else
1518                         mathDispatch(cur, cmd, false);
1519                 break;
1520
1521         case LFUN_MATH_MACRO:
1522                 if (cmd.argument().empty())
1523                         cur.errorMessage(from_utf8(N_("Missing argument")));
1524                 else {
1525                         string s = to_utf8(cmd.argument());
1526                         string const s1 = token(s, ' ', 1);
1527                         int const nargs = s1.empty() ? 0 : convert<int>(s1);
1528                         string const s2 = token(s, ' ', 2);
1529                         MacroType type = MacroTypeNewcommand;
1530                         if (s2 == "def")
1531                                 type = MacroTypeDef;
1532                         cur.insert(new MathMacroTemplate(from_utf8(token(s, ' ', 0)), nargs, false, type));
1533                         //cur.nextInset()->edit(cur, true);
1534                 }
1535                 break;
1536
1537         // passthrough hat and underscore outside mathed:
1538         case LFUN_MATH_SUBSCRIPT:
1539                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "_"), false);
1540                 break;
1541         case LFUN_MATH_SUPERSCRIPT:
1542                 mathDispatch(cur, FuncRequest(LFUN_SELF_INSERT, "^"), false);
1543                 break;
1544
1545         case LFUN_MATH_INSERT:
1546         case LFUN_MATH_MATRIX:
1547         case LFUN_MATH_DELIM:
1548         case LFUN_MATH_BIGDELIM: {
1549                 cap::replaceSelection(cur);
1550                 cur.insert(new InsetMathHull(hullSimple));
1551                 checkAndActivateInset(cur, true);
1552                 LASSERT(cur.inMathed(), /**/);
1553                 cur.dispatch(cmd);
1554                 break;
1555         }
1556
1557         case LFUN_FONT_EMPH: {
1558                 Font font(ignore_font, ignore_language);
1559                 font.fontInfo().setEmph(FONT_TOGGLE);
1560                 toggleAndShow(cur, this, font);
1561                 break;
1562         }
1563
1564         case LFUN_FONT_BOLD: {
1565                 Font font(ignore_font, ignore_language);
1566                 font.fontInfo().setSeries(BOLD_SERIES);
1567                 toggleAndShow(cur, this, font);
1568                 break;
1569         }
1570
1571         case LFUN_FONT_NOUN: {
1572                 Font font(ignore_font, ignore_language);
1573                 font.fontInfo().setNoun(FONT_TOGGLE);
1574                 toggleAndShow(cur, this, font);
1575                 break;
1576         }
1577
1578         case LFUN_FONT_TYPEWRITER: {
1579                 Font font(ignore_font, ignore_language);
1580                 font.fontInfo().setFamily(TYPEWRITER_FAMILY); // no good
1581                 toggleAndShow(cur, this, font);
1582                 break;
1583         }
1584
1585         case LFUN_FONT_SANS: {
1586                 Font font(ignore_font, ignore_language);
1587                 font.fontInfo().setFamily(SANS_FAMILY);
1588                 toggleAndShow(cur, this, font);
1589                 break;
1590         }
1591
1592         case LFUN_FONT_ROMAN: {
1593                 Font font(ignore_font, ignore_language);
1594                 font.fontInfo().setFamily(ROMAN_FAMILY);
1595                 toggleAndShow(cur, this, font);
1596                 break;
1597         }
1598
1599         case LFUN_FONT_DEFAULT: {
1600                 Font font(inherit_font, ignore_language);
1601                 toggleAndShow(cur, this, font);
1602                 break;
1603         }
1604
1605         case LFUN_FONT_UNDERLINE: {
1606                 Font font(ignore_font, ignore_language);
1607                 font.fontInfo().setUnderbar(FONT_TOGGLE);
1608                 toggleAndShow(cur, this, font);
1609                 break;
1610         }
1611
1612         case LFUN_FONT_SIZE: {
1613                 Font font(ignore_font, ignore_language);
1614                 setLyXSize(to_utf8(cmd.argument()), font.fontInfo());
1615                 toggleAndShow(cur, this, font);
1616                 break;
1617         }
1618
1619         case LFUN_LANGUAGE: {
1620                 Language const * lang = languages.getLanguage(to_utf8(cmd.argument()));
1621                 if (!lang)
1622                         break;
1623                 Font font(ignore_font, lang);
1624                 toggleAndShow(cur, this, font);
1625                 break;
1626         }
1627
1628         case LFUN_FONT_FREE_APPLY:
1629                 toggleAndShow(cur, this, freefont, toggleall);
1630                 cur.message(_("Character set"));
1631                 break;
1632
1633         // Set the freefont using the contents of \param data dispatched from
1634         // the frontends and apply it at the current cursor location.
1635         case LFUN_FONT_FREE_UPDATE: {
1636                 Font font;
1637                 bool toggle;
1638                 if (font.fromString(to_utf8(cmd.argument()), toggle)) {
1639                         freefont = font;
1640                         toggleall = toggle;
1641                         toggleAndShow(cur, this, freefont, toggleall);
1642                         cur.message(_("Character set"));
1643                 } else {
1644                         lyxerr << "Argument not ok";
1645                 }
1646                 break;
1647         }
1648
1649         case LFUN_FINISHED_LEFT:
1650                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_LEFT:\n" << cur);
1651                 // We're leaving an inset, going left. If the inset is LTR, we're 
1652                 // leaving from the front, so we should not move (remain at --- but
1653                 // not in --- the inset). If the inset is RTL, move left, without 
1654                 // entering the inset itself; i.e., move to after the inset.
1655                 if (cur.paragraph().getFontSettings(
1656                                 cur.bv().buffer().params(), cur.pos()).isRightToLeft())
1657                         cursorVisLeft(cur, true);
1658                 break;
1659
1660         case LFUN_FINISHED_RIGHT:
1661                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_RIGHT:\n" << cur);
1662                 // We're leaving an inset, going right. If the inset is RTL, we're 
1663                 // leaving from the front, so we should not move (remain at --- but
1664                 // not in --- the inset). If the inset is LTR, move right, without 
1665                 // entering the inset itself; i.e., move to after the inset.
1666                 if (!cur.paragraph().getFontSettings(
1667                                 cur.bv().buffer().params(), cur.pos()).isRightToLeft())
1668                         cursorVisRight(cur, true);
1669                 break;
1670
1671         case LFUN_FINISHED_BACKWARD:
1672                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_BACKWARD:\n" << cur);
1673                 break;
1674
1675         case LFUN_FINISHED_FORWARD:
1676                 LYXERR(Debug::DEBUG, "handle LFUN_FINISHED_FORWARD:\n" << cur);
1677                 ++cur.pos();
1678                 cur.setCurrentFont();
1679                 break;
1680
1681         case LFUN_LAYOUT_PARAGRAPH: {
1682                 string data;
1683                 params2string(cur.paragraph(), data);
1684                 data = "show\n" + data;
1685                 bv->showDialog("paragraph", data);
1686                 break;
1687         }
1688
1689         case LFUN_PARAGRAPH_UPDATE: {
1690                 string data;
1691                 params2string(cur.paragraph(), data);
1692
1693                 // Will the paragraph accept changes from the dialog?
1694                 bool const accept = 
1695                         cur.inset().allowParagraphCustomization(cur.idx());
1696
1697                 data = "update " + convert<string>(accept) + '\n' + data;
1698                 bv->updateDialog("paragraph", data);
1699                 break;
1700         }
1701
1702         case LFUN_ACCENT_UMLAUT:
1703         case LFUN_ACCENT_CIRCUMFLEX:
1704         case LFUN_ACCENT_GRAVE:
1705         case LFUN_ACCENT_ACUTE:
1706         case LFUN_ACCENT_TILDE:
1707         case LFUN_ACCENT_CEDILLA:
1708         case LFUN_ACCENT_MACRON:
1709         case LFUN_ACCENT_DOT:
1710         case LFUN_ACCENT_UNDERDOT:
1711         case LFUN_ACCENT_UNDERBAR:
1712         case LFUN_ACCENT_CARON:
1713         case LFUN_ACCENT_BREVE:
1714         case LFUN_ACCENT_TIE:
1715         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
1716         case LFUN_ACCENT_CIRCLE:
1717         case LFUN_ACCENT_OGONEK:
1718                 theLyXFunc().handleKeyFunc(cmd.action);
1719                 if (!cmd.argument().empty())
1720                         // FIXME: Are all these characters encoded in one byte in utf8?
1721                         bv->translateAndInsert(cmd.argument()[0], this, cur);
1722                 break;
1723
1724         case LFUN_FLOAT_LIST_INSERT: {
1725                 DocumentClass const & tclass = bv->buffer().params().documentClass();
1726                 if (tclass.floats().typeExist(to_utf8(cmd.argument()))) {
1727                         cur.recordUndo();
1728                         if (cur.selection())
1729                                 cutSelection(cur, true, false);
1730                         breakParagraph(cur);
1731
1732                         if (cur.lastpos() != 0) {
1733                                 cursorBackward(cur);
1734                                 breakParagraph(cur);
1735                         }
1736
1737                         docstring const laystr = cur.inset().useEmptyLayout() ?
1738                                 tclass.emptyLayoutName() :
1739                                 tclass.defaultLayoutName();
1740                         setLayout(cur, laystr);
1741                         ParagraphParameters p;
1742                         setParagraphs(cur, p);
1743                         // FIXME This should be simplified when InsetFloatList takes a 
1744                         // Buffer in its constructor.
1745                         InsetFloatList * ifl = new InsetFloatList(to_utf8(cmd.argument()));
1746                         ifl->setBuffer(bv->buffer());
1747                         insertInset(cur, ifl);
1748                         cur.posForward();
1749                 } else {
1750                         lyxerr << "Non-existent float type: "
1751                                << to_utf8(cmd.argument()) << endl;
1752                 }
1753                 break;
1754         }
1755
1756         case LFUN_CHANGE_ACCEPT: {
1757                 acceptOrRejectChanges(cur, ACCEPT);
1758                 break;
1759         }
1760
1761         case LFUN_CHANGE_REJECT: {
1762                 acceptOrRejectChanges(cur, REJECT);
1763                 break;
1764         }
1765
1766         case LFUN_THESAURUS_ENTRY: {
1767                 docstring arg = cmd.argument();
1768                 if (arg.empty()) {
1769                         arg = cur.selectionAsString(false);
1770                         // FIXME
1771                         if (arg.size() > 100 || arg.empty()) {
1772                                 // Get word or selection
1773                                 selectWordWhenUnderCursor(cur, WHOLE_WORD);
1774                                 arg = cur.selectionAsString(false);
1775                         }
1776                 }
1777                 bv->showDialog("thesaurus", to_utf8(arg));
1778                 break;
1779         }
1780
1781         case LFUN_PARAGRAPH_PARAMS_APPLY: {
1782                 // Given data, an encoding of the ParagraphParameters
1783                 // generated in the Paragraph dialog, this function sets
1784                 // the current paragraph, or currently selected paragraphs,
1785                 // appropriately. 
1786                 // NOTE: This function overrides all existing settings.
1787                 setParagraphs(cur, cmd.argument());
1788                 cur.message(_("Paragraph layout set"));
1789                 break;
1790         }
1791         
1792         case LFUN_PARAGRAPH_PARAMS: {
1793                 // Given data, an encoding of the ParagraphParameters as we'd
1794                 // find them in a LyX file, this function modifies the current paragraph, 
1795                 // or currently selected paragraphs. 
1796                 // NOTE: This function only modifies, and does not override, existing
1797                 // settings.
1798                 setParagraphs(cur, cmd.argument(), true);
1799                 cur.message(_("Paragraph layout set"));
1800                 break;
1801         }
1802
1803         case LFUN_ESCAPE:
1804                 if (cur.selection()) {
1805                         cur.selection() = false;
1806                 } else {
1807                         cur.undispatched();
1808                         // This used to be LFUN_FINISHED_RIGHT, I think FORWARD is more
1809                         // correct, but I'm not 100% sure -- dov, 071019
1810                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
1811                 }
1812                 break;
1813
1814         case LFUN_OUTLINE_UP:
1815                 outline(OutlineUp, cur);
1816                 setCursor(cur, cur.pit(), 0);
1817                 updateLabels(cur.buffer());
1818                 needsUpdate = true;
1819                 break;
1820
1821         case LFUN_OUTLINE_DOWN:
1822                 outline(OutlineDown, cur);
1823                 setCursor(cur, cur.pit(), 0);
1824                 updateLabels(cur.buffer());
1825                 needsUpdate = true;
1826                 break;
1827
1828         case LFUN_OUTLINE_IN:
1829                 outline(OutlineIn, cur);
1830                 updateLabels(cur.buffer());
1831                 needsUpdate = true;
1832                 break;
1833
1834         case LFUN_OUTLINE_OUT:
1835                 outline(OutlineOut, cur);
1836                 updateLabels(cur.buffer());
1837                 needsUpdate = true;
1838                 break;
1839
1840         default:
1841                 LYXERR(Debug::ACTION, "Command " << cmd << " not DISPATCHED by Text");
1842                 cur.undispatched();
1843                 break;
1844         }
1845
1846         needsUpdate |= (cur.pos() != cur.lastpos()) && cur.selection();
1847
1848         // FIXME: The cursor flag is reset two lines below
1849         // so we need to check here if some of the LFUN did touch that.
1850         // for now only Text::erase() and Text::backspace() do that.
1851         // The plan is to verify all the LFUNs and then to remove this
1852         // singleParUpdate boolean altogether.
1853         if (cur.result().update() & Update::Force) {
1854                 singleParUpdate = false;
1855                 needsUpdate = true;
1856         }
1857
1858         // FIXME: the following code should go in favor of fine grained
1859         // update flag treatment.
1860         if (singleParUpdate) {
1861                 // Inserting characters does not change par height in general. So, try
1862                 // to update _only_ this paragraph. BufferView will detect if a full
1863                 // metrics update is needed anyway.
1864                 cur.updateFlags(Update::SinglePar | Update::FitCursor);
1865                 return;
1866         }
1867
1868         if (!needsUpdate
1869             && &oldTopSlice.inset() == &cur.inset()
1870             && oldTopSlice.idx() == cur.idx()
1871             && !sel // sel is a backup of cur.selection() at the biginning of the function.
1872             && !cur.selection())
1873                 // FIXME: it would be better if we could just do this
1874                 //
1875                 //if (cur.result().update() != Update::FitCursor)
1876                 //      cur.noUpdate();
1877                 //
1878                 // But some LFUNs do not set Update::FitCursor when needed, so we
1879                 // do it for all. This is not very harmfull as FitCursor will provoke
1880                 // a full redraw only if needed but still, a proper review of all LFUN
1881                 // should be done and this needsUpdate boolean can then be removed.
1882                 cur.updateFlags(Update::FitCursor);
1883         else
1884                 cur.updateFlags(Update::Force | Update::FitCursor);
1885 }
1886
1887
1888 bool Text::getStatus(Cursor & cur, FuncRequest const & cmd,
1889                         FuncStatus & flag) const
1890 {
1891         LASSERT(cur.text() == this, /**/);
1892
1893         Font const & font = cur.real_current_font;
1894         FontInfo const & fontinfo = font.fontInfo();
1895         bool enable = true;
1896         InsetCode code = NO_CODE;
1897
1898         switch (cmd.action) {
1899
1900         case LFUN_DEPTH_DECREMENT:
1901                 enable = changeDepthAllowed(cur, DEC_DEPTH);
1902                 break;
1903
1904         case LFUN_DEPTH_INCREMENT:
1905                 enable = changeDepthAllowed(cur, INC_DEPTH);
1906                 break;
1907
1908         case LFUN_APPENDIX:
1909                 flag.setOnOff(cur.paragraph().params().startOfAppendix());
1910                 break;
1911
1912         case LFUN_BIBITEM_INSERT:
1913                 enable = (cur.paragraph().layout().labeltype == LABEL_BIBLIO
1914                           && cur.pos() == 0);
1915                 break;
1916
1917         case LFUN_DIALOG_SHOW_NEW_INSET:
1918                 if (cmd.argument() == "bibitem")
1919                         code = BIBITEM_CODE;
1920                 else if (cmd.argument() == "bibtex")
1921                         code = BIBTEX_CODE;
1922                 else if (cmd.argument() == "box")
1923                         code = BOX_CODE;
1924                 else if (cmd.argument() == "branch")
1925                         code = BRANCH_CODE;
1926                 else if (cmd.argument() == "citation")
1927                         code = CITE_CODE;
1928                 else if (cmd.argument() == "ert")
1929                         code = ERT_CODE;
1930                 else if (cmd.argument() == "external")
1931                         code = EXTERNAL_CODE;
1932                 else if (cmd.argument() == "float")
1933                         code = FLOAT_CODE;
1934                 else if (cmd.argument() == "graphics")
1935                         code = GRAPHICS_CODE;
1936                 else if (cmd.argument() == "href")
1937                         code = HYPERLINK_CODE;
1938                 else if (cmd.argument() == "include")
1939                         code = INCLUDE_CODE;
1940                 else if (cmd.argument() == "index")
1941                         code = INDEX_CODE;
1942                 else if (cmd.argument() == "nomenclature")
1943                         code = NOMENCL_CODE;
1944                 else if (cmd.argument() == "label")
1945                         code = LABEL_CODE;
1946                 else if (cmd.argument() == "note")
1947                         code = NOTE_CODE;
1948                 else if (cmd.argument() == "ref")
1949                         code = REF_CODE;
1950                 else if (cmd.argument() == "space")
1951                         code = SPACE_CODE;
1952                 else if (cmd.argument() == "toc")
1953                         code = TOC_CODE;
1954                 else if (cmd.argument() == "vspace")
1955                         code = VSPACE_CODE;
1956                 else if (cmd.argument() == "wrap")
1957                         code = WRAP_CODE;
1958                 else if (cmd.argument() == "listings")
1959                         code = LISTINGS_CODE;
1960                 break;
1961
1962         case LFUN_ERT_INSERT:
1963                 code = ERT_CODE;
1964                 break;
1965         case LFUN_LISTING_INSERT:
1966                 code = LISTINGS_CODE;
1967                 break;
1968         case LFUN_FOOTNOTE_INSERT:
1969                 code = FOOT_CODE;
1970                 break;
1971         case LFUN_TABULAR_INSERT:
1972                 code = TABULAR_CODE;
1973                 break;
1974         case LFUN_MARGINALNOTE_INSERT:
1975                 code = MARGIN_CODE;
1976                 break;
1977         case LFUN_FLOAT_INSERT:
1978         case LFUN_FLOAT_WIDE_INSERT:
1979                 code = FLOAT_CODE;
1980                 break;
1981         case LFUN_WRAP_INSERT:
1982                 code = WRAP_CODE;
1983                 break;
1984         case LFUN_FLOAT_LIST_INSERT:
1985                 code = FLOAT_LIST_CODE;
1986                 break;
1987 #if 0
1988         case LFUN_LIST_INSERT:
1989                 code = LIST_CODE;
1990                 break;
1991 #endif
1992         case LFUN_CAPTION_INSERT:
1993                 code = CAPTION_CODE;
1994                 break;
1995         case LFUN_NOTE_INSERT:
1996                 code = NOTE_CODE;
1997                 // in commands (sections etc., only Notes are allowed)
1998                 enable = (cmd.argument().empty() || cmd.getArg(0) == "Note" ||
1999                           !cur.paragraph().layout().isCommand());
2000                 break;
2001         case LFUN_FLEX_INSERT: {
2002                 code = FLEX_CODE;
2003                 string s = cmd.getArg(0);
2004                 InsetLayout il = 
2005                         cur.buffer().params().documentClass().insetLayout(from_utf8(s));
2006                 if (il.lyxtype() != "charstyle" &&
2007                     il.lyxtype() != "custom" &&
2008                     il.lyxtype() != "element" &&
2009                     il.lyxtype ()!= "standard")
2010                         enable = false;
2011                 break;
2012                 }
2013         case LFUN_BOX_INSERT:
2014                 code = BOX_CODE;
2015                 break;
2016         case LFUN_BRANCH_INSERT:
2017                 code = BRANCH_CODE;
2018                 if (cur.buffer().masterBuffer()->params().branchlist().empty())
2019                         enable = false;
2020                 break;
2021         case LFUN_LABEL_INSERT:
2022                 code = LABEL_CODE;
2023                 break;
2024         case LFUN_INFO_INSERT:
2025                 code = INFO_CODE;
2026                 break;
2027         case LFUN_OPTIONAL_INSERT:
2028                 code = OPTARG_CODE;
2029                 enable = cur.paragraph().insetList().count(OPTARG_CODE)
2030                         < cur.paragraph().layout().optionalargs;
2031                 break;
2032         case LFUN_ENVIRONMENT_INSERT:
2033                 code = BOX_CODE;
2034                 break;
2035         case LFUN_INDEX_INSERT:
2036                 code = INDEX_CODE;
2037                 break;
2038         case LFUN_INDEX_PRINT:
2039                 code = INDEX_PRINT_CODE;
2040                 break;
2041         case LFUN_NOMENCL_INSERT:
2042                 code = NOMENCL_CODE;
2043                 break;
2044         case LFUN_NOMENCL_PRINT:
2045                 code = NOMENCL_PRINT_CODE;
2046                 break;
2047         case LFUN_TOC_INSERT:
2048                 code = TOC_CODE;
2049                 break;
2050         case LFUN_HYPERLINK_INSERT:
2051                 code = HYPERLINK_CODE;
2052                 break;
2053         case LFUN_QUOTE_INSERT:
2054                 // always allow this, since we will inset a raw quote
2055                 // if an inset is not allowed.
2056                 break;
2057         case LFUN_SPECIALCHAR_INSERT:
2058                 code = SPECIALCHAR_CODE;
2059                 break;
2060         case LFUN_SPACE_INSERT:
2061                 // slight hack: we know this is allowed in math mode
2062                 if (cur.inTexted())
2063                         code = SPACE_CODE;
2064                 break;
2065
2066         case LFUN_INSET_MODIFY:
2067                 // We need to disable this, because we may get called for a
2068                 // tabular cell via
2069                 // InsetTabular::getStatus() -> InsetText::getStatus()
2070                 // and we don't handle LFUN_INSET_MODIFY.
2071                 enable = false;
2072                 break;
2073
2074         case LFUN_FONT_EMPH:
2075                 flag.setOnOff(fontinfo.emph() == FONT_ON);
2076                 break;
2077
2078         case LFUN_FONT_NOUN:
2079                 flag.setOnOff(fontinfo.noun() == FONT_ON);
2080                 break;
2081
2082         case LFUN_FONT_BOLD:
2083                 flag.setOnOff(fontinfo.series() == BOLD_SERIES);
2084                 break;
2085
2086         case LFUN_FONT_SANS:
2087                 flag.setOnOff(fontinfo.family() == SANS_FAMILY);
2088                 break;
2089
2090         case LFUN_FONT_ROMAN:
2091                 flag.setOnOff(fontinfo.family() == ROMAN_FAMILY);
2092                 break;
2093
2094         case LFUN_FONT_TYPEWRITER:
2095                 flag.setOnOff(fontinfo.family() == TYPEWRITER_FAMILY);
2096                 break;
2097
2098         case LFUN_CUT:
2099         case LFUN_COPY:
2100                 enable = cur.selection();
2101                 break;
2102
2103         case LFUN_PASTE: {
2104                 if (cmd.argument().empty()) {
2105                         if (theClipboard().isInternal())
2106                                 enable = cap::numberOfSelections() > 0;
2107                         else
2108                                 enable = !theClipboard().empty();
2109                         break;
2110                 }
2111                 
2112                 // we have an argument
2113                 string const arg = to_utf8(cmd.argument());
2114                 if (isStrUnsignedInt(arg)) {
2115                         // it's a number and therefore means the internal stack
2116                         unsigned int n = convert<unsigned int>(arg);
2117                         enable = cap::numberOfSelections() > n;
2118                         break;
2119                 }
2120                 
2121                 // explicit graphics type?
2122                 if ((arg == "pdf" && theClipboard().hasGraphicsContents(Clipboard::PdfGraphicsType))
2123                     || (arg == "png" && theClipboard().hasGraphicsContents(Clipboard::PngGraphicsType))
2124                     || (arg == "jpeg" && theClipboard().hasGraphicsContents(Clipboard::JpegGraphicsType))
2125                     || (arg == "linkback" && theClipboard().hasGraphicsContents(Clipboard::LinkBackGraphicsType))) {
2126                         enable = true;
2127                         break;
2128                 }
2129                 
2130                 // unknown argument
2131                 enable = false;
2132                 break;
2133          }
2134
2135         case LFUN_CLIPBOARD_PASTE:
2136                 enable = !theClipboard().empty();
2137                 break;
2138
2139         case LFUN_PRIMARY_SELECTION_PASTE:
2140                 enable = cur.selection() || !theSelection().empty();
2141                 break;
2142
2143         case LFUN_PARAGRAPH_MOVE_UP:
2144                 enable = cur.pit() > 0 && !cur.selection();
2145                 break;
2146
2147         case LFUN_PARAGRAPH_MOVE_DOWN:
2148                 enable = cur.pit() < cur.lastpit() && !cur.selection();
2149                 break;
2150
2151         case LFUN_INSET_DISSOLVE:
2152                 if (!cmd.argument().empty()) {
2153                         InsetLayout il = cur.inset().getLayout(cur.buffer().params());
2154                         enable = cur.inset().lyxCode() == FLEX_CODE
2155                                  && il.lyxtype() == to_utf8(cmd.argument());
2156                 } else {
2157                         enable = !isMainText(cur.bv().buffer()) 
2158                                  && cur.inset().nargs() == 1;
2159                 }
2160                 break;
2161
2162         case LFUN_CHANGE_ACCEPT:
2163         case LFUN_CHANGE_REJECT:
2164                 // TODO: context-sensitive enabling of LFUN_CHANGE_ACCEPT/REJECT
2165                 // In principle, these LFUNs should only be enabled if there
2166                 // is a change at the current position/in the current selection.
2167                 // However, without proper optimizations, this will inevitably
2168                 // result in unacceptable performance - just imagine a user who
2169                 // wants to select the complete content of a long document.
2170                 enable = true;
2171                 break;
2172
2173         case LFUN_OUTLINE_UP:
2174         case LFUN_OUTLINE_DOWN:
2175         case LFUN_OUTLINE_IN:
2176         case LFUN_OUTLINE_OUT:
2177                 enable = (cur.paragraph().layout().toclevel != Layout::NOT_IN_TOC);
2178                 break;
2179
2180         case LFUN_NEWLINE_INSERT:
2181                 // LaTeX restrictions (labels or empty par)
2182                 enable = (cur.pos() > cur.paragraph().beginOfBody());
2183                 break;
2184
2185         case LFUN_SET_GRAPHICS_GROUP: {
2186                 InsetGraphics * ins = graphics::getCurrentGraphicsInset(cur);
2187                 if (!ins) 
2188                         enable = false;
2189                 else
2190                         flag.setOnOff(to_utf8(cmd.argument()) == ins->getParams().groupId);
2191                 break;
2192         }
2193
2194         case LFUN_WORD_DELETE_FORWARD:
2195         case LFUN_WORD_DELETE_BACKWARD:
2196         case LFUN_LINE_DELETE:
2197         case LFUN_WORD_FORWARD:
2198         case LFUN_WORD_BACKWARD:
2199         case LFUN_WORD_RIGHT:
2200         case LFUN_WORD_LEFT:
2201         case LFUN_CHAR_FORWARD:
2202         case LFUN_CHAR_FORWARD_SELECT:
2203         case LFUN_CHAR_BACKWARD:
2204         case LFUN_CHAR_BACKWARD_SELECT:
2205         case LFUN_CHAR_LEFT:
2206         case LFUN_CHAR_LEFT_SELECT:
2207         case LFUN_CHAR_RIGHT:
2208         case LFUN_CHAR_RIGHT_SELECT:
2209         case LFUN_UP:
2210         case LFUN_UP_SELECT:
2211         case LFUN_DOWN:
2212         case LFUN_DOWN_SELECT:
2213         case LFUN_PARAGRAPH_UP_SELECT:
2214         case LFUN_PARAGRAPH_DOWN_SELECT:
2215         case LFUN_LINE_BEGIN_SELECT:
2216         case LFUN_LINE_END_SELECT:
2217         case LFUN_WORD_FORWARD_SELECT:
2218         case LFUN_WORD_BACKWARD_SELECT:
2219         case LFUN_WORD_RIGHT_SELECT:
2220         case LFUN_WORD_LEFT_SELECT:
2221         case LFUN_WORD_SELECT:
2222         case LFUN_PARAGRAPH_UP:
2223         case LFUN_PARAGRAPH_DOWN:
2224         case LFUN_LINE_BEGIN:
2225         case LFUN_LINE_END:
2226         case LFUN_CHAR_DELETE_FORWARD:
2227         case LFUN_DELETE_FORWARD_SKIP:
2228         case LFUN_CHAR_DELETE_BACKWARD:
2229         case LFUN_DELETE_BACKWARD_SKIP:
2230         case LFUN_BREAK_PARAGRAPH:
2231         case LFUN_BREAK_PARAGRAPH_SKIP:
2232         case LFUN_PARAGRAPH_SPACING:
2233         case LFUN_INSET_INSERT:
2234         case LFUN_WORD_UPCASE:
2235         case LFUN_WORD_LOWCASE:
2236         case LFUN_WORD_CAPITALIZE:
2237         case LFUN_CHARS_TRANSPOSE:
2238         case LFUN_SERVER_GET_XY:
2239         case LFUN_SERVER_SET_XY:
2240         case LFUN_SERVER_GET_LAYOUT:
2241         case LFUN_LAYOUT:
2242         case LFUN_DATE_INSERT:
2243         case LFUN_SELF_INSERT:
2244         case LFUN_LINE_INSERT:
2245         case LFUN_NEWPAGE_INSERT:
2246         case LFUN_MATH_DISPLAY:
2247         case LFUN_MATH_IMPORT_SELECTION:
2248         case LFUN_MATH_MODE:
2249         case LFUN_MATH_MACRO:
2250         case LFUN_MATH_MATRIX:
2251         case LFUN_MATH_DELIM:
2252         case LFUN_MATH_BIGDELIM:
2253         case LFUN_MATH_INSERT:
2254         case LFUN_MATH_SUBSCRIPT:
2255         case LFUN_MATH_SUPERSCRIPT:
2256         case LFUN_FONT_DEFAULT:
2257         case LFUN_FONT_UNDERLINE:
2258         case LFUN_FONT_SIZE:
2259         case LFUN_LANGUAGE:
2260         case LFUN_FONT_FREE_APPLY:
2261         case LFUN_FONT_FREE_UPDATE:
2262         case LFUN_LAYOUT_PARAGRAPH:
2263         case LFUN_PARAGRAPH_UPDATE:
2264         case LFUN_ACCENT_UMLAUT:
2265         case LFUN_ACCENT_CIRCUMFLEX:
2266         case LFUN_ACCENT_GRAVE:
2267         case LFUN_ACCENT_ACUTE:
2268         case LFUN_ACCENT_TILDE:
2269         case LFUN_ACCENT_CEDILLA:
2270         case LFUN_ACCENT_MACRON:
2271         case LFUN_ACCENT_DOT:
2272         case LFUN_ACCENT_UNDERDOT:
2273         case LFUN_ACCENT_UNDERBAR:
2274         case LFUN_ACCENT_CARON:
2275         case LFUN_ACCENT_BREVE:
2276         case LFUN_ACCENT_TIE:
2277         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
2278         case LFUN_ACCENT_CIRCLE:
2279         case LFUN_ACCENT_OGONEK:
2280         case LFUN_THESAURUS_ENTRY:
2281         case LFUN_PARAGRAPH_PARAMS_APPLY:
2282         case LFUN_PARAGRAPH_PARAMS:
2283         case LFUN_ESCAPE:
2284         case LFUN_BUFFER_END:
2285         case LFUN_BUFFER_BEGIN:
2286         case LFUN_BUFFER_BEGIN_SELECT:
2287         case LFUN_BUFFER_END_SELECT:
2288         case LFUN_UNICODE_INSERT:
2289                 // these are handled in our dispatch()
2290                 enable = true;
2291                 break;
2292
2293         default:
2294                 return false;
2295         }
2296
2297         if (code != NO_CODE
2298             && (cur.empty() || !cur.inset().insetAllowed(code)))
2299                 enable = false;
2300
2301         flag.setEnabled(enable);
2302         return true;
2303 }
2304
2305
2306 void Text::pasteString(Cursor & cur, docstring const & clip,
2307                 bool asParagraphs)
2308 {
2309         cur.clearSelection();
2310         if (!clip.empty()) {
2311                 cur.recordUndo();
2312                 if (asParagraphs)
2313                         insertStringAsParagraphs(cur, clip);
2314                 else
2315                         insertStringAsLines(cur, clip);
2316         }
2317 }
2318
2319 } // namespace lyx