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